/*************************************************
 * servces.twigのサービス名を折り返さないように
 *************************************************/

/* スマホでサービス名を折り返さない（1行固定） */
@media (max-width: 768px) {

  /* テーブル全体を横スクロール可能に */
  .well-float {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* テーブルを広げる（横に長くなる） */
  #service-table {
    min-width: 1100px !important;   /* ←好みで900〜1400に調整OK */
  }

  /* サービス名は折り返さない */
  .service-name {
    white-space: nowrap !important; /* ← コレで折り返し完全禁止 */
  }
}



/*************************************************
 * servces.twigの説明行（collapse行）は区切り線を消す
 *************************************************/

#service-table tr.desc-row td {
  border-top: none !important;
  border-bottom: none !important;
  padding-top: 0;
  padding-bottom: 0;
}

  /* Description ヘッダーを1行に固定 */
  th.service-description__th {
    white-space: nowrap !important;  /* 改行禁止 */
  }
}



/*************************************************
 * 区切り線
 *************************************************/

.section-divider {
  margin: 50px 0 40px;
  border-color: #f1f3f7;
}


/*************************************************
 * ヒーロー（キャッチコピー）周り
 *************************************************/

.hero-title {
  margin-top: 60px; /* ↑ 上方向にスペースを追加 */
}

.hero-title {
font-family: 'Poppins', sans-serif;
  font-size: 3.4rem; /* ↑ 3.0 → 3.4rem */
  font-weight: 700;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 2.2rem;
  text-align: center;
  animation: hero-fade-in 1.2s ease-out;
}

.hero-sub {
  font-size: 1.15rem; /* ↑ 0.95 → 1.15rem */
  color: #6d84a3;
  max-width: 800px;
  margin: 0 auto 40px auto; /* フォームとの余白広め */
  line-height: 2;
  text-align: center;
  animation: hero-fade-in 1.6s ease-out;
}

/* フェードインアニメーション */
@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ヒーロー セクション用レスポンシブ */
@media (min-width: 576px) {
  .hero-title { font-size: 3rem; }
  .hero-sub { font-size: 1.2rem; }
}

@media (min-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .hero-sub { font-size: 1.25rem; }
}

/*************************************************
 * 統計セクション
 *************************************************/

.stats-section {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.stats-section .section-title,
.stats-section .section-sub {
  text-align: center;
}

.stats-section .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem; /* ↑ 1.4 → 2.0rem */
  font-weight: 700;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stats-section .section-sub {
  color: #6d84a3;
  font-size: 1.15rem; /* ↑ 0.9 → 1.15rem */
  margin-bottom: 40px;
  line-height: 1.9;
}

/* 統計カード */

.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.stat-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(109, 132, 163, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 191, 255, 0.5);
}

.stat-item i {
  font-size: 2.4rem; /* ↑ 2.0 → 2.4rem */
  color: #4dbfff;
  margin-bottom: 16px;
}

.stat-item h4 {
  font-size: 2.2rem; /* ↑ 1.8 → 2.2rem */
  font-weight: 700;
  color: #4dbfff;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.05rem; /* ↑ 0.95 → 1.05rem */
  color: #6d84a3;
  margin: 0;
}

/* レスポンシブ */

@media (min-width: 576px) {
  .stats-section .section-title { font-size: 2.1rem; }
  .stats-section .section-sub { font-size: 1.1rem; }
}

@media (min-width: 992px) {
  .stats-section .section-title { font-size: 2.2rem; }
  .stats-section .section-sub { font-size: 1.2rem; }
}

@media (max-width: 992px) {
  .stats-section { max-width: 900px; }
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .stats-section {
    max-width: 100%;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .stats-cards { grid-template-columns: 1fr; }
}



/*************************************************
 * Features Section (Why Choose SMM.MS)
 *************************************************/

.features-section {
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.02));
}

.features-section .section-title {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem; /* ↑ 1.8 → 2.4rem */
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-section .section-sub {
  color: #6d84a3;
  font-size: 1.2rem; /* ↑ 1.0 → 1.2rem */
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 2;
}

/* カードレイアウト */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* 各カード */
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(109, 132, 163, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 191, 255, 0.5);
}

.feature-icon {
  font-size: 2.4rem; /* ↑ 1.8 → 2.4rem */
  color: #4dbfff;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 1.5rem; /* ↑ 1.1 → 1.5rem */
  font-weight: 700;
  color: #2e3b4e;
  margin-bottom: 12px;
}

.feature-card p {
  color: #6d84a3;
  font-size: 1.15rem; /* ↑ 0.95 → 1.15rem */
  line-height: 1.9;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .features-section .section-title { font-size: 2rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card h4 { font-size: 1.3rem; }
  .feature-card p { font-size: 1rem; }
}

/*************************************************
 * How to Start Section (4 paths)
 *************************************************/

.howto-section {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.02));
}

.howto-section .section-title {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.howto-section .section-sub {
  color: #6d84a3;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 2;
}

/* 各パス（①〜④）のブロック */
.howto-block {
  margin-bottom: 70px;
}

.howto-block:last-of-type {
  margin-bottom: 0;
}

.howto-block-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2e3b4e;
  margin-bottom: 8px;
}

.howto-block-sub {
  color: #6d84a3;
  font-size: 1.05rem;
  max-width: 780px;
  margin: 0 auto 32px auto;
  line-height: 1.8;
}

/* ステップのグリッド */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* 各ステップカード */
.howto-step {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(109, 132, 163, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 230px;
}

.howto-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 191, 255, 0.5);
}

/* アイコン＆テキスト */
.step-icon {
  font-size: 2.3rem;
  color: #4dbfff;
  margin-bottom: 14px;
}

.howto-step h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2e3b4e;
  margin-bottom: 10px;
}

.howto-step p {
  color: #6d84a3;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 992px) {
  .howto-section {
    padding: 60px 20px;
    margin: 80px auto;
  }
  .howto-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .howto-section .section-title {
    font-size: 1.8rem;
  }
  .howto-block-title {
    font-size: 1.4rem;
  }
  .howto-block-sub {
    font-size: 0.98rem;
  }
  .howto-step h4 {
    font-size: 1.2rem;
  }
  .howto-step p {
    font-size: 0.95rem;
  }
}

/*************************************************
 * Provided Services Section
 *************************************************/

.services-section {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.02));
}

.services-section .section-title {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-section .section-sub {
  color: #6d84a3;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 2;
}

/* グリッド */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* カード */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(109, 132, 163, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 191, 255, 0.5);
}

.service-card i {
  font-size: 2.6rem;
  color: #4dbfff;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2e3b4e;
  margin-bottom: 10px;
}

.service-card p {
  color: #6d84a3;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 992px) {
  .services-section {
    padding: 60px 20px;
    margin: 80px auto;
  }
  .services-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .services-section .section-title {
    font-size: 1.8rem;
  }
  .service-card h4 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
}

/*************************************************
 * Reviews / Testimonials Section
 *************************************************/

.reviews-section {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.02));
}

.reviews-section .section-title {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reviews-section .section-sub {
  color: #6d84a3;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 2;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 28px;
  text-align: left;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(109, 132, 163, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 191, 255, 0.5);
}

.review-text {
  font-size: 1.05rem;
  color: #2e3b4e;
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6d84a3;
  font-size: 0.95rem;
}

.rating {
  color: #ffc107;
  font-weight: bold;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 20px;
  }
  .reviews-section .section-title {
    font-size: 2rem;
  }
  .review-text {
    font-size: 1rem;
  }
}

/*************************************************
 * FAQ Section
 *************************************************/

.faq-section {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.02));
}

.faq-section .section-title {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-section .section-sub {
  color: #6d84a3;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 2;
}

/* FAQリスト */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 各Q&Aカード */
.faq-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 24px 26px 24px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(109, 132, 163, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 191, 255, 0.5);
}

/* 質問・回答 */
.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e3b4e;
  margin-bottom: 10px;
}

.faq-answer p {
  font-size: 1.05rem;
  color: #4a5b72;
  line-height: 1.9;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
  .faq-section .section-title {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1.1rem;
  }
  .faq-answer p {
    font-size: 0.98rem;
  }
}

/************************************************* 
 * Payment Section
 *************************************************/

.payment-section {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 24px 60px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.02));
}

/* タイトル */
.payment-section .section-title {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #6d84a3, #4dbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* サブテキスト */
.payment-section .section-sub {
  color: #6d84a3;
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 2;
}

/* 支払い手段グリッド */
.payment-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* 各カード */
.payment-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px 34px 20px;
  width: 260px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(109, 132, 163, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.payment-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 191, 255, 0.5);
}

/* 円形ロゴ */
.payment-logo-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

/* 各ブランドカラー */
.payment-item.payeer .payment-logo-icon {
  background: #3fa9f5;
}
.payment-item.cryptomus .payment-logo-icon {
  background: #f4b400;
}
.payment-item.paypay .payment-logo-icon {
  background: #e60012;
}

/* ラベル文字 */
.payment-item p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2e3b4e;
  margin-top: 6px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .payment-section {
    padding: 60px 20px;
  }
  .payment-section .section-title {
    font-size: 2rem;
  }
  .payment-item {
    width: 85%;
    max-width: 320px;
  }
  .payment-item p {
    font-size: 1rem;
  }
}


/*************************************************
 * CTA Section
 *************************************************/

.cta-section {
  background: linear-gradient(135deg, #4dbfff 0%, #6d84a3 100%);
  color: #ffffff;
  padding: 40px 20px;        /* ← 100px → 60px に短縮 */
  border-radius: 20px;
  margin: 40px auto;         /* ← 120px → 60px に短縮 */
  max-width: 1100px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;       /* ← 20px → 15px */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.cta-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 28px auto;  /* ← 40px → 28px */
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.cta-btn-primary {
  background: #ffffff;
  color: #4dbfff;
  font-weight: 700;
  padding: 14px 34px;        /* ← 少しコンパクト */
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.cta-btn-primary:hover {
  background: #e8f7ff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 15px;
    margin: 50px auto;
  }
  .cta-title {
    font-size: 1.9rem;
  }
  .cta-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .cta-btn-primary {
    font-size: 1rem;
    padding: 12px 26px;
  }
}
