/* 楽天スタイル完全再現 */
.hero-rakuten-style {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

/* ===== 上部ピンク＆黒の斜めスプリットエリア ===== */
.rakuten-top-area {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: visible;
  background: linear-gradient(135deg, 
    #87CEEB 0%, #6BB6EA 25%, #5DADE2 50%, #6BB6EA 75%, #87CEEB 100%
  ) !important;
  border: 1px solid #4FA5E6 !important;
  box-shadow: 
    0 4px 12px rgba(135, 206, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* シマーエフェクト */
.rakuten-top-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 47%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 53%,
    transparent 60%,
    transparent 100%
  );
  animation: maline-silver-shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

/* グラデーションオーバーレイ */
.rakuten-top-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 800px 300px at 30% 20%, rgba(135, 206, 235, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 70% 80%, rgba(107, 182, 234, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 9;
}

.rakuten-top-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px;
  color: white;
}

.rakuten-left-text {
  flex: 0 0 35%;
  padding-right: 20px;
  padding-top: 20px;
}

.rakuten-left-text > div:first-child {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.rakuten-left-text > div:last-child {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
}

/* シルバーラップトップコンテナ */
.silver-laptop-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  perspective: 1200px;
}

/* 3Dラップトップ */
.laptop-3d {
  position: relative;
  /* animation: float 6s ease-in-out infinite; */ /* アニメーション無効化 */
}

/* フローティングアニメーション無効化 */
/* @keyframes float {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateY(-15px) rotateX(2deg);
  }
} */

/* スクリーンフレーム（画面部分） - 完全非表示 */
.laptop-screen-frame {
  display: none !important;
}

/* スクリーン内側の暗い画面効果 - 完全非表示 */
.laptop-screen-frame::before {
  display: none !important;
}



/* キーボード部分 - 完全非表示 */
.laptop-keyboard {
  display: none !important;
}

/* キーボードのキーテクスチャ - 完全非表示 */
.laptop-keyboard::before {
  display: none !important;
}

/* ラップトップベース（底面） - 非表示 */
.laptop-base {
  display: none;
}

/* ホバーエフェクト */
.laptop-3d:hover {
  animation-play-state: paused;
}

.laptop-3d:hover .laptop-screen-frame {
  box-shadow: 
    inset 0 2px 8px rgba(255,255,255,0.9),
    inset 0 -2px 8px rgba(0,0,0,0.15),
    0 20px 50px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.2),
    0 0 40px rgba(192,196,200,0.5);
}

.rakuten-center-text {
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: white;
  display: none; /* 非表示にする */
}

.rakuten-right-text {
  flex: 0 0 40%;
  text-align: right;
  padding-left: 20px;
  padding-top: 20px;
  margin-left: auto;
  color: #1a1a1a;
}

.rakuten-right-text > div:first-child {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.rakuten-right-text > div:last-child {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.rakuten-center-catch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: white;
}

.catch-small {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.catch-large {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  margin-top: 8px;
}

/* ===== MALINEブルーボックス ===== */
.rakuten-black-section {
  background: #4FA5E6;
  color: white;
  text-align: center;
  padding: 15px 40px 15px;
  margin: 40px auto 0;
  max-width: 900px;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.rakuten-black-section::before,
.rakuten-black-section::after {
  display: none !important;
}

.rakuten-top-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.rakuten-new {
  display: inline-block;
  background: #da0500;
  padding: 3px 18px;
  border-radius: 5px;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
}

.rakuten-black-text {
  font-size: 1.05rem;
  font-weight: 500;
}

.rakuten-black-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.maline-white-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  display: inline-block;
}

.plan-text {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== 白エリア ===== */
.rakuten-white-section {
  background: white;
  padding: 40px 40px 30px;
  max-width: 900px;
  margin: -10px auto 0;
  border-radius: 0 0 20px 20px;
  border: 2px solid #D0D0D0;
  border-top: none;
}

/* 価格ボックスコンテナ */
.rakuten-price-container {
  padding: 0;
  margin-bottom: 20px;
  background: transparent;
}

.rakuten-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .rakuten-price-row {
    flex-wrap: wrap;
  }
}

.rakuten-badges-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rakuten-badge-1 {
  border: 3px solid #4FA5E6;
  color: #4FA5E6;
  background: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.rakuten-badge-cross {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.rakuten-badge-2 {
  border: 3px solid #4FA5E6;
  color: #4FA5E6;
  background: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.badge-small {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.badge-large {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.1;
}

.rakuten-main-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-tax-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.price-num {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
}

.marine-blue-shine {
  color: #4FA5E6;
  position: relative;
  display: inline-block;
  overflow: visible;
}

.marine-blue-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 400%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 70%,
    transparent 100%
  );
  animation: price-number-shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes price-number-shimmer {
  0% {
    left: -120%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    left: 120%;
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

.price-yen {
  font-size: 2.2rem;
  font-weight: 700;
}

.marine-blue-text {
  color: #4FA5E6;
}

.price-tax {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}

/* MALINEブルーバー */
.rakuten-pink-bar {
  background: #E6F4FC;
  text-align: center;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 1.05rem;
  margin: 25px 0;
  font-weight: 600;
  color: #333;
}

.phone-icon {
  font-size: 1.3rem;
  margin-right: 10px;
  vertical-align: middle;
}

.rakuten-pink-bar .highlight-text {
  color: #4FA5E6 !important;
  font-weight: 900 !important;
  font-size: 1.15rem !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  animation: none !important;
  position: static !important;
  overflow: visible !important;
}

.rakuten-divider {
  height: 1px;
  background: #E0E0E0;
  margin: 20px 0;
}

/* 特別価格ボックス */
.rakuten-special-box {
  background: linear-gradient(135deg, #FF1493 0%, #FF3385 50%, #FF69B4 100%);
  color: white;
  padding: 40px 35px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.3);
}

.special-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.special-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 18px;
}

.now-text {
  font-size: 1.3rem;
  font-weight: 600;
}

.special-num {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
}

.special-yen {
  font-size: 2rem;
  font-weight: 700;
}

.special-tax {
  font-size: 1.05rem;
  font-weight: 600;
  margin-left: 4px;
}

.special-note {
  font-size: 0.88rem;
  opacity: 0.95;
  line-height: 1.4;
}

/* ボタン */
.rakuten-button {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  background: linear-gradient(135deg, #4FA5E6 0%, #6BB6EA 50%, #3394E1 100%);
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  padding: 18px 40px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(79, 165, 230, 0.3);
}

.rakuten-button:hover {
  background: linear-gradient(135deg, #3394E1 0%, #4FA5E6 50%, #6BB6EA 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 165, 230, 0.4);
}

/* 注釈 */
.rakuten-notes {
  text-align: center;
  font-size: 0.72rem;
  color: #999;
  margin-top: 18px;
  line-height: 1.7;
}

/* シルバーシャインアニメーション定義 - MALINEと同じ */
@keyframes rakuten-silver-shimmer {
  0% {
    left: -200%;
    opacity: 0;
    transform: skewX(-15deg);
  }
  12% {
    opacity: 0.7;
  }
  25% {
    left: -100%;
    opacity: 1;
    transform: skewX(-8deg);
  }
  50% {
    left: 0%;
    opacity: 1;
    transform: skewX(0deg);
  }
  75% {
    left: 100%;
    opacity: 1;
    transform: skewX(8deg);
  }
  88% {
    opacity: 0.7;
  }
  100% {
    left: 200%;
    opacity: 0;
    transform: skewX(15deg);
  }
}

/* LINEプラン独立セクション */
.line-plan-section {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

.line-green-section {
  background: #00B900 !important;
  overflow: hidden !important;
}

.line-green-section::before,
.line-green-section::after {
  display: none !important;
}

.line-badge {
  border-color: #00B900 !important;
  color: #00B900 !important;
}

/* 企業ロゴセクション - シンプル版 */
.company-logos-section {
  padding: 70px 0 50px;
  background: #FFFFFF;
  border-top: 1px solid #E8E8E8;
}

.company-logos-header-stylish {
  text-align: center;
  margin-bottom: 50px;
}

.trusted-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #87CEEB 0%, #5DADE2 100%);
  padding: 10px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(93, 173, 226, 0.3);
}

.company-title-elegant {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .company-logos-section {
    padding: 50px 0 40px;
  }
  
  .company-title-elegant {
    font-size: 1.8rem;
  }
  
  .company-maline-logo {
    height: 2em !important;
  }
}

/* 企業ロゴ - 2列スライダー */
.company-logos {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.logos-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  animation: scroll-logos 30s linear infinite;
}

.logos-row-1 {
  animation-direction: normal;
}

.logos-row-2 {
  animation-direction: reverse;
  animation-duration: 35s;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.company-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.8rem;
  background: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
  height: 120px;
  min-width: 200px;
  flex-shrink: 0;
}

.company-logo-img:hover {
  transform: scale(1.05);
}

.company-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.company-logo-img:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .company-logos-section {
    padding: 40px 0 30px;
  }
  
  .company-main-title {
    font-size: 1.5rem;
  }
  
  .maline-inline-logo {
    height: 30px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-plus {
    font-size: 2rem;
  }
  
  .stats-box {
    padding: 18px 35px;
  }
  
  .logos-row {
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    animation: scroll-logos 15s linear infinite;
  }
  
  .logos-row-1 {
    animation-direction: normal;
  }
  
  .logos-row-2 {
    animation-direction: reverse;
    animation-duration: 18s;
  }
  
  .company-logo-img {
    height: 105px;
    min-width: 210px;
    padding: 0.6rem 0.9rem;
  }
}

/* SMSプラン独立セクション */
.sms-plan-section {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

.sms-pink-section {
  background: #ff567d !important;
  overflow: hidden !important;
}

.sms-pink-section::before,
.sms-pink-section::after {
  display: none !important;
}

.sms-badge {
  border-color: #ff567d !important;
  color: #ff567d !important;
}

.line-green-shine {
  color: #00B900;
  position: relative;
  display: inline-block;
  overflow: visible;
}

.line-green-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 400%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 70%,
    transparent 100%
  );
  animation: price-number-shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

.line-green-text {
  color: #00B900;
}

.line-button {
  background: linear-gradient(135deg, #00B900 0%, #06C755 50%, #00A300 100%) !important;
  box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3) !important;
  margin-top: 25px;
}

.line-button:hover {
  background: linear-gradient(135deg, #00A300 0%, #00B900 50%, #06C755 100%) !important;
  box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4) !important;
}

.sms-pink-shine {
  color: #ff567d;
  position: relative;
  display: inline-block;
  overflow: visible;
}

.sms-pink-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 400%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 70%,
    transparent 100%
  );
  animation: price-number-shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

.sms-pink-text {
  color: #ff567d;
}

.sms-button {
  background: linear-gradient(135deg, #ff567d 0%, #ff85a2 50%, #ff3366 100%) !important;
  box-shadow: 0 4px 15px rgba(255, 86, 125, 0.3) !important;
  margin-top: 25px;
}

.sms-button:hover {
  background: linear-gradient(135deg, #ff3366 0%, #ff567d 50%, #ff85a2 100%) !important;
  box-shadow: 0 6px 20px rgba(255, 86, 125, 0.4) !important;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .rakuten-button {
    font-size: 1.15rem;
    padding: 20px 35px;
    white-space: nowrap;
  }
  
  .rakuten-top-area {
    min-height: 600px;
  }
  
  .rakuten-top-area::before {
    clip-path: polygon(0 0, 100% 0, 80% 50%, 0 65%);
  }
  
  .rakuten-top-area::after {
    clip-path: polygon(100% 0, 100% 100%, 0 65%, 80% 50%);
  }
  
  .rakuten-top-content {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    align-items: flex-start;
  }
  
  .rakuten-left-text {
    padding-right: 0;
  }
  
  .rakuten-left-text > div:first-child {
    font-size: 1.8rem;
  }
  
  .rakuten-left-text > div:last-child {
    font-size: 2.5rem;
  }
  
  .rakuten-right-text {
    padding-left: 0;
    text-align: left;
    margin-top: 20px;
  }
  
  .rakuten-right-text > div:first-child {
    font-size: 1.8rem;
  }
  
  .rakuten-right-text > div:last-child {
    font-size: 2.5rem;
  }
  
  /* シルバーラップトップ - モバイル */
  .silver-laptop-container {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 30px auto;
  }
  
  .laptop-screen-frame {
    display: none !important; /* モバイルでも完全非表示 */
  }
  
  .laptop-keyboard {
    display: none !important; /* モバイルでも完全非表示 */
  }
  
  .laptop-base {
    width: 310px;
    height: 10px;
  }
  

  
  .rakuten-center-text {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    font-size: 1.2rem;
    white-space: normal;
  }
  
  .rakuten-center-catch {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 30px auto;
  }
  
  .catch-small {
    font-size: 1.1rem;
  }
  
  .catch-large {
    font-size: 1.5rem;
  }
  
  body,
  .main {
    background: white !important;
  }
  
  .rakuten-black-section {
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    margin: 40px 16px 0;
    max-width: calc(100% - 32px);
  }
  
  .rakuten-black-title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 6px;
  }
  
  .maline-white-logo {
    height: 45px;
  }
  
  .plan-text {
    font-size: 1.8rem;
    writing-mode: horizontal-tb;
  }
  
  .rakuten-new {
    font-size: 0.85rem;
    padding: 3px 14px;
  }
  
  .rakuten-black-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .rakuten-white-section {
    padding: 25px 16px 20px;
    border-radius: 0 0 15px 15px;
    max-width: calc(100% - 32px);
    margin: -10px 16px 0;
  }
  
  .price-num, .special-num {
    font-size: 3.5rem;
  }
  
  .price-yen, .special-yen {
    font-size: 1.4rem;
  }
  
  .rakuten-price-row {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .rakuten-badges-group {
    justify-content: center;
  }
  
  .rakuten-main-price {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .rakuten-divider {
    margin: 18px 0;
  }
  
  .rakuten-price-container {
    margin-bottom: 18px;
  }
  
  .line-plan-section,
  .sms-plan-section {
    margin-top: 30px !important;
    background: white !important;
    position: relative;
    z-index: 1;
  }
  
  .line-plan-section::before,
  .line-plan-section::after,
  .sms-plan-section::before,
  .sms-plan-section::after {
    display: none !important;
  }
}

/* 小画面サイズ（480px以下）の調整 */
@media (max-width: 480px) {
  body,
  .main {
    background: white !important;
  }
  
  .rakuten-black-section {
    margin: 30px 12px 0;
    max-width: calc(100% - 24px);
    border-radius: 12px 12px 0 0;
    padding: 14px 16px;
  }
  
  .rakuten-button {
    font-size: 1.05rem;
    padding: 14px 20px;
    white-space: normal;
    line-height: 1.4;
  }
  
  .rakuten-black-title {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 4px;
  }
  
  .maline-white-logo {
    height: 35px;
  }
  
  .plan-text {
    font-size: 1.3rem;
    writing-mode: horizontal-tb;
  }
  
  .rakuten-new {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  
  .rakuten-black-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .rakuten-white-section {
    padding: 22px 16px 18px;
    max-width: calc(100% - 24px);
    margin: -10px 12px 0;
    border-radius: 0 0 12px 12px;
  }
  
  .rakuten-divider {
    margin: 15px 0;
  }
  
  .rakuten-price-container {
    margin-bottom: 15px;
  }
  
  .price-num, .special-num {
    font-size: 3rem;
  }
  
  .price-yen, .special-yen {
    font-size: 1.2rem;
  }
  
  .rakuten-main-price {
    gap: 2px;
  }
  
  .price-main-row {
    gap: 4px;
  }
  
  .price-tax {
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  .rakuten-price-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .badge-small {
    white-space: nowrap;
    font-size: 0.65rem;
    line-height: 1.1;
  }
  
  .badge-large {
    white-space: nowrap;
    font-size: 1.1rem;
    line-height: 1.1;
  }
  
  .rakuten-badge-1,
  .rakuten-badge-2 {
    padding: 8px 16px;
    white-space: nowrap;
    min-width: auto;
    width: auto;
    gap: 2px;
  }
  
  .rakuten-badges-group {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  
  .rakuten-notes {
    font-size: 0.7rem;
    line-height: 1.6;
    padding: 0 8px;
    margin-top: 14px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  
  .company-title-elegant {
    font-size: 1.4rem;
  }
  
  .company-maline-logo {
    height: 1.8em !important;
  }
  
  .line-plan-section,
  .sms-plan-section {
    margin-top: 0 !important;
    background: white !important;
    position: relative;
    z-index: 1;
  }
  
  .line-plan-section::before,
  .line-plan-section::after,
  .sms-plan-section::before,
  .sms-plan-section::after {
    display: none !important;
  }
}

/* ヒーロープロモーションバッジ */
.hero-promo-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px 0;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
}

.promo-badge {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.3s ease;
  cursor: default;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1.3;
  text-shadow: none;
}

.promo-badge:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.1);
}

.promo-badge-email {
  border-color: #ffffff;
}

.promo-badge-line {
  border-color: #ffffff;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .hero-promo-badges {
    flex-direction: row;
    gap: 10px;
    margin: 16px auto;
    max-width: 100%;
    flex-wrap: nowrap;
    padding: 0 10px;
  }
  
  .promo-badge {
    font-size: 0.68rem;
    padding: 7px 12px;
    flex: 1;
    min-width: 0;
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 480px) {
  .hero-promo-badges {
    gap: 8px;
    margin: 14px auto;
    padding: 0 8px;
    max-width: 100%;
  }
  
  .promo-badge {
    font-size: 0.62rem;
    padding: 6px 10px;
    letter-spacing: -0.02em;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 380px) {
  .hero-promo-badges {
    gap: 6px;
    margin: 12px auto;
    padding: 0 5px;
  }
  
  .promo-badge {
    font-size: 0.58rem;
    padding: 5px 8px;
    letter-spacing: -0.03em;
    border-radius: 4px;
  }
}
