/* ========================================
   ヒーローセクション2カラムレイアウト
======================================== */

.hero-two-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 20px 40px 20px 100px;
  max-width: 2000px;
  margin: 0 auto;
  overflow: visible;
}

/* 左側：テキストコンテンツ */
.hero-left-side {
  flex: 0 0 520px;
  max-width: 520px;
  min-width: 520px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  z-index: 2;
}

/* PCでボタンのラッパーを中央配置 */
.hero-left-side > div:last-child {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  background: white;
  color: #5DADE2;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.hero-main-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: white;
  line-height: 1.35;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  margin: 0 0 25px 0;
  opacity: 0.95;
  text-align: left;
}

/* バッジセクション */
.hero-badges-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  margin-bottom: 28px;
  flex-wrap: nowrap;
  max-width: 100%;
}

.hero-badge-img {
  width: 155px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-badge-img:hover {
  transform: scale(1.05);
}

.hero-cta-button {
  background: white;
  color: #5DADE2;
  padding: 16px 45px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-top: 5px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-width: 300px;
  justify-content: center;
}

.hero-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    transparent 70%,
    transparent 100%
  );
  animation: silver-shine 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.hero-cta-button:hover .cta-icon {
  transform: translateX(5px);
}

/* 右側：ラップトップ画像 */
.hero-right-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  position: relative;
  padding-right: 0;
  padding-left: 0;
  overflow: visible;
}

.hero-laptop-img {
  width: 115%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: -40px;
  margin-left: -60px;
}

.hero-laptop-img:hover {
  transform: scale(1.02);
}

/* レスポンシブ対応 */
@media (min-width: 1400px) and (max-width: 1999px) {
  .hero-two-column {
    gap: 50px;
    padding: 20px 30px 20px 80px;
  }
  
  .hero-left-side {
    flex: 0 0 500px;
    max-width: 500px;
    min-width: 500px;
  }
  
  .hero-main-title {
    font-size: 2rem;
  }
  
  .hero-badge-img {
    width: 148px;
  }
  
  .hero-badges-section {
    flex-wrap: nowrap;
    gap: 12px;
  }
  
  .hero-laptop-img {
    width: 115%;
    max-width: 860px;
    margin-right: -30px;
    margin-left: -50px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-two-column {
    gap: 30px;
    padding: 20px 0 20px 40px;
  }
  
  .hero-left-side {
    flex: 0 0 480px;
    max-width: 480px;
    min-width: 480px;
  }
  
  .hero-main-title {
    font-size: 1.9rem;
    margin-bottom: 18px;
  }
  
  .hero-badge-img {
    width: 140px;
  }
  
  .hero-badges-section {
    margin-bottom: 22px;
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .hero-laptop-img {
    width: 115%;
    max-width: 800px;
    margin-right: 0;
    margin-left: -60px;
  }
}

@media (min-width: 993px) and (max-width: 1199px) {
  .hero-two-column {
    gap: 30px;
    padding: 20px 0 20px 35px;
  }
  
  .hero-left-side {
    flex: 0 0 440px;
    max-width: 440px;
    min-width: 440px;
  }

  .hero-main-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  
  .hero-badge-img {
    width: 130px;
  }
  
  .hero-badges-section {
    margin-bottom: 22px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-laptop-img {
    width: 115%;
    max-width: 720px;
    margin-right: 0;
    margin-left: -50px;
  }
}

@media (max-width: 992px) {
  .hero-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 15px;
  }

  .hero-left-side {
    flex: 1;
    max-width: 100%;
    min-width: auto;
    text-align: center;
    align-items: center;
    grid-row: 1;
    display: contents;
  }
  
  .hero-main-title {
    font-size: 1.7rem;
    grid-row: 1;
    text-align: center;
  }
  
  .hero-badges-section {
    grid-row: 2;
    justify-content: center;
    margin-bottom: 15px;
  }

  .hero-right-side {
    width: 100%;
    justify-content: center;
    grid-row: 3;
  }
  
  .hero-promo-badges {
    grid-row: 4;
    width: 100%;
    margin: 15px 0;
  }
  
  .hero-left-side > div:last-child {
    grid-row: 5;
    width: 100%;
    margin-top: 0;
  }
  
  .hero-badge-img {
    width: 120px;
  }

  .hero-laptop-img {
    width: 100%;
    max-width: 650px;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-two-column {
    padding: 35px 15px;
    gap: 35px;
  }

  .hero-main-title {
    font-size: 1.45rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta-button {
    padding: 14px 60px;
    font-size: 1.05rem;
    text-decoration: none;
    min-width: 320px;
    white-space: nowrap;
  }

  .hero-badge-img {
    width: 125px;
  }

  .hero-badges-section {
    gap: 12px;
    margin-bottom: 22px;
    justify-content: center;
    padding: 0 5px;
  }
  
  .hero-laptop-img {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-two-column {
    padding: 30px 10px;
    gap: 30px;
  }

  .hero-main-title {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 8px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta-button {
    padding: 13px 50px;
    font-size: 1rem;
    text-decoration: none;
    min-width: 300px;
    white-space: nowrap;
  }

  .hero-badge-img {
    width: 108px;
  }

  .hero-badges-section {
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0 5px;
    width: 100%;
  }
  
  .hero-laptop-img {
    width: 100%;
    max-width: 420px;
    margin-left: 0;
  }
}

/* 超小画面（380px以下）の追加調整 */
@media (max-width: 380px) {
  .hero-two-column {
    padding: 25px 8px;
  }
  
  .hero-main-title {
    font-size: 1.15rem;
    line-height: 1.35;
    padding: 0 3px;
    margin-bottom: 12px;
  }
  
  .hero-left-side {
    padding: 0 5px;
  }
  
  .hero-badges-section {
    gap: 6px;
    margin-bottom: 15px;
    padding: 0 3px;
    width: 100%;
  }
  
  .hero-badge-img {
    width: 100px;
  }
  
  .hero-laptop-img {
    width: 100%;
    max-width: 360px;
  }
}

/* ボタンのシルバーキラーンアニメーション */
@keyframes silver-shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
