/* ========================================
   リセット・基本設定
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ========================================
   ヘッダー
======================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a73e8;
    letter-spacing: 0.5px;
}

/* PC用ナビゲーション */
.pc-navigation {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #1a73e8;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header-register {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-header-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}


/* ========================================
   ハンバーガーメニュー（SP版）
   Figmaデザインに基づく実装
======================================== */

/* メニューオーバーレイ（背景） */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 34, 34, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* メニューヘッダー部分 */
.mobile-menu-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-header.active {
    opacity: 1;
    visibility: visible;
}

/* ロゴ（FlipNine） */
.mobile-menu-logo {
    height: 22px;
    width: 52px;
    object-fit: contain;
}

/* 運用メディアの方はこちらボタン */
.mobile-menu-media-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #222222;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    padding: 6px 10px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

/* 閉じるボタン（X） */
.mobile-menu-close {
    position: relative;
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 50px;
    top: 50%;
    left: 50%;
}

.mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* メニューナビゲーション */
.mobile-menu-nav {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 295px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-item {
    margin: 0;
    padding: 0;
}

.mobile-menu-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

/* ハンバーガーボタン（トグル） */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 10001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ハンバーガーボタンがアクティブな時 */
.hamburger-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ffffff;
}

.hamburger-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ffffff;
}

/* ========================================
   レスポンシブ対応
======================================== */

/* SP版: 767px以下 */
@media screen and (max-width: 767px) {
    .hamburger-toggle {
        display: flex;
    }
    
    /* PC用ナビゲーションを非表示 */
    .pc-navigation {
        display: none;
    }
}

/* PC版: 768px以上 */
@media screen and (min-width: 768px) {
    /* モバイルメニュー関連を全て非表示 */
    .mobile-menu-overlay,
    .mobile-menu-header,
    .mobile-menu-nav,
    .hamburger-toggle {
        display: none !important;
    }
}

/* 375px以下でのメニュー調整 */
@media screen and (max-width: 375px) {
    .mobile-menu-nav {
        width: 90%;
        max-width: 295px;
    }
}

/* body固定（メニュー開いている時） */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ========================================
   共通レイアウト
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-header {
    margin-bottom: 20px;
  }
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
    color: #222;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 14px;
    line-height: 19px;
  }
}

.section-title::before,
.section-title::after {
  width: 1px;
  height: 28px;
  content: "";
  background-color: #222;
}
@media screen and (max-width: 767px) {
    .section-title::before,
    .section-title::after {
        height: 55px;
    }
}

.section-title::before {
  margin-right: 0.4em;
  transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
    .section-title::before {
      margin-right: 1.2em;
    }
}
.section-title::after {
  margin-left: 0;
  transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
    .section-title::after {
      margin-left: 1em;
    }
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   メインビジュアル
======================================== */
.main-visual {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: #fff;
    padding: 60px 20px;
}

.visual-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .visual-container {
        display: block !important;
    }
}
.visual-catch {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.visual-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  #mailaf .visual-title {
    font-size: 29px;
    letter-spacing: initial;
  }
}

.visual-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.visual-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-visual-primary {
    background: #fff;
    color: #1a73e8;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-visual-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-visual-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: background 0.3s, border-color 0.3s;
}

.btn-visual-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.visual-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.visual-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   特徴セクション
======================================== */
.section-features {
    padding: 80px 20px;
    background: #f8f9fa;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-highlight {
    border: 2px solid #1a73e8;
}

.feature-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.feature-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.feature-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 20px;
}

.feature-list li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

/* ========================================
   使い方セクション
======================================== */
.section-howto {
    padding: 80px 20px;
    background: #fff;
}

.howto-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.step-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    border-color: #1a73e8;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.1);
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.step-visual {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.step-visual img {
    width: 100%;
    height: auto;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.step-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.step-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 20px;
}

.step-details li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.howto-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
    border-radius: 12px;
    padding: 40px 24px;
}

.howto-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.btn-howto-register {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 16px 48px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-howto-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ========================================
   料金プラン
======================================== */
.section-pricing {
    padding: 80px 20px;
    background: #f8f9fa;
}

.pricing-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-popular {
    border-color: #ff6b35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-plan {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 12px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a73e8;
}

.pricing-description {
    font-size: 14px;
    color: #666;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    font-size: 15px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.feature-available::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
    font-size: 18px;
}

.feature-unavailable {
    color: #ccc;
}

.feature-unavailable::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #ccc;
    font-weight: 700;
    font-size: 18px;
}

.btn-pricing {
    display: block;
    background: #1a73e8;
    color: #fff;
    padding: 14px 0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.btn-pricing:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.btn-pricing-popular {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.btn-pricing-popular:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7733 100%);
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.pricing-note p {
    margin-bottom: 8px;
}

/* ========================================
   導入事例
======================================== */
.section-cases {
    padding: 80px 20px;
    background: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.case-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px;
    transition: box-shadow 0.3s;
}

.case-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.case-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.case-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.case-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.case-meta {
    font-size: 13px;
    color: #888;
}

.case-achievement {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #ff6b35;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievement-label {
    font-size: 14px;
    color: #666;
}

.achievement-amount {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
}

.case-comment {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.case-comment::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 40px;
    color: #e0e0e0;
    font-family: Georgia, serif;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.case-stat {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.case-stat .stat-label {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
}

.case-stat .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a73e8;
}

.overall-stats {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    border-radius: 12px;
    padding: 48px 32px;
    color: #fff;
}

.overall-stats-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.overall-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.overall-stat {
    text-align: center;
}

.overall-stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overall-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   よくある質問
======================================== */
.section-faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #1a73e8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding-right: 16px;
    line-height: 1.6;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 300;
    color: #1a73e8;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-contact-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.btn-faq-contact {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-faq-contact:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

/* ========================================
   お問い合わせ
======================================== */
.section-contact {
    padding: 80px 20px;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
}

.contact-method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-method-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 13px;
    color: #888;
}

.contact-form {
    background: #f8f9fa;
    /* border-radius: 12px; */
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #ff6b35;
    font-size: 12px;
    margin-left: 4px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.btn-contact-submit {
    width: 100%;
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: #fff;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.3);
}

/* ========================================
   CTAセクション
======================================== */
.section-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.cta-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta-main {
    display: inline-block;
    background: #fff;
    color: #ff6b35;
    padding: 18px 56px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 32px;
}

.btn-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cta-feature {
    font-size: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* ========================================
   レスポンシブ（タブレット以上）
======================================== */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .pc-navigation {
        display: block;
    }

    .visual-container {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .visual-title {
        font-size: 42px;
    }

    .visual-buttons {
        flex-direction: row;
    }

    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .pricing-table {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .overall-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-wrapper {
        /* grid-template-columns: 1fr 1.2fr; */
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

/* ========================================
   レスポンシブ（PC）
======================================== */
@media (min-width: 1024px) {
    .main-visual {
        padding: 60px 20px;
    }

    .visual-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-features,
    .section-howto,
    .section-pricing,
    .section-cases,
    .section-faq,
    .section-contact,
    .section-cta {
        padding: 100px 20px;
    }

    .features-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .howto-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* ========================================
   プロモーションの悩みセクション
======================================== */
.section-problems {
    position: relative;
    margin-bottom: 60px;
}

.section-problems .container {
    background: linear-gradient(180deg, #d4eff3 0%, #e0f5f8 100%);
    padding: 60px 20px 50px;
}
#ifaf .section-problems .container {
    background: #ECD2E2;
}
#mailaf .section-problems .container {
    background: #D9D4F5;
}

.problems-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #222222;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
}

.problems-title .sp-only {
    display: none;
}

.problems-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.problem-card {
    background: #fff;
    border-radius: 80px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.problem-text {
    margin-bottom: 32px;
}
.problem-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #222222;
    text-align: center;
    letter-spacing: initial;
}
@media screen and (min-width: 768px){
    .problem-text p {
        min-height: auto;
        line-height: auto;
    }
}
@media screen and (max-width: 767px){
    #mailaf .problem-text p {
        font-size: 19px;
    }
}

.problem-text p {
    margin: 0;
}

.problem-illustration {
    width: 100%;
    max-width: 280px;
    height: 186px;
    overflow: hidden;
    border-radius: 20px;
}

.problem-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problems-solution {
    background: #222;
    color: #fff;
    padding: 32px 60px;
    border-radius: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.problems-solution::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #222;
}

.problems-solution p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1024px) {
    .problems-cards {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    .problem-card {
        padding: 40px 32px;
    }

    .problems-title .sp-only {
        display: inline;
    }

    .problems-solution {
        padding: 24px 40px;
        border-radius: 40px;
    }

    .problems-solution p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .section-problems {
        margin-bottom: 40px;
        padding: 40px 20px 0;
    }

    .problems-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .problems-cards {
        gap: 32px;
        padding: 0 10px;
    }

    .problem-card {
        padding: 32px 24px;
        border-radius: 60px;
    }

    .problem-text {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 24px;
    }

    .problem-illustration {
        max-width: 100%;
        height: 200px;
    }

    .problems-solution {
        padding: 20px 30px;
        border-radius: 30px;
    }

    .problems-solution p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ========================================
   ADアフィリエイトとは？セクション
======================================== */
.section-about-ad {
    background: #ebfdff;
    display: flex;
    margin: 0 auto;
    padding: 100px 120px;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
}
#ifaf .section-about-ad {
    background: #FFEFF9;
}
#mailaf .section-about-ad {
    background: #F4F2FF;
}

.about-ad-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1440px;
    color: #222222;
}

.about-ad-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

.about-ad-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    text-align: left;
    max-width: 1200px;
    width: 100%;
}

.about-ad-text p {
    margin: 0;
}

@media (max-width: 1024px) {
    .section-about-ad {
        padding: 60px 40px;
    }

    .about-ad-container {
        gap: 40px;
    }

    .about-ad-title {
        font-size: 32px;
        line-height: 40px;
    }

    .about-ad-text {
        font-size: 18px;
        line-height: 32px;
    }
}

@media (max-width: 767px) {
    .section-about-ad {
        padding: 40px 20px;
    }

    .about-ad-container {
        gap: 24px;
    }

    .about-ad-title {
        font-size: 24px;
        line-height: 48px;
        white-space: normal;
        letter-spacing: initial;
    }
    #mailaf .about-ad-title {
        font-size: 23px;
    }

    .about-ad-text {
        font-size: 16px;
        line-height: 26px;
        max-width: 335px;
    }
}

/* ========================================
   導入のメリットセクション
======================================== */
.section-benefits {
    background: #00c2de;
    padding: 100px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#ifaf .section-benefits {
    background: #FF1DA7;
}
#mailaf .section-benefits {
    background: #6853FF;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 128px;
    width: 100%;
    max-width: 1440px;
}

.benefits-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.benefits-cards {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.benefit-card {
    background: #fff;
    border-radius: 80px;
    padding: 38px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #222222;
    margin: 0;
    width: 284px;
}

.benefit-card-title p {
    margin: 0;
}

.benefit-card-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #222222;
    width: 288px;
}

.benefit-card-text p {
    margin: 0;
}

.text-highlight {
    font-weight: 700;
    color: #f43545;
}

@media (max-width: 1200px) {
    .section-benefits {
        padding: 80px 60px;
    }

    .benefits-cards {
        flex-direction: column;
        max-width: 380px;
        margin: 0 auto;
    }

    .benefits-container {
        gap: 64px;
    }
}

@media (max-width: 767px) {
    .section-benefits {
        padding: 40px 20px 80px;
    }

    .benefits-container {
        gap: 24px;
    }

    .benefits-title {
        font-size: 24px;
        line-height: 48px;
        white-space: normal;
    }

    .benefits-cards {
        gap: 30px;
        max-width: 335px;
    }

    .benefit-card {
        border-radius: 40px;
        padding: 20px 20px 40px;
        width: 100%;
        gap: 20px;
    }

    .benefit-card-title {
        font-size: 20px;
        line-height: 28px;
        width: 100%;
        max-width: 284px;
    }

    .benefit-card-text {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        max-width: 295px;
    }
}

/* ========================================
   特徴（新デザイン）セクション
======================================== */
.section-characteristics {
    /* background: #d4f7fb; */
    background: #EBFDFF url(../images/bg_char_pc.png) no-repeat center/cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
#ifaf .section-characteristics {
    background: #FFEFF9 url(../images/ifaf/bg_char_pc.png) no-repeat center/cover;
}
#mailaf .section-characteristics {
    background: #F4F2FF url(../images/mailaf/bg_char_pc.png) no-repeat center/cover;
}

.characteristics-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.characteristics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.characteristics-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 100px;
}

.characteristics-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.characteristic-card {
    background: #fff;
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.characteristic-card-reverse {
    flex-direction: row-reverse;
}

.characteristic-illustration {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding: 54px 60px;
    width: 420px;
    height: 400px;
    overflow: hidden;
}

.characteristic-illustration img {
    width: auto;
    height: auto;
    object-fit: cover;
    display: block;
}

.characteristic-text-area {
    flex: 1;
    padding: 54px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.characteristic-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 46px;
    color: #222222;
    margin: 0 0 40px;
    white-space: nowrap;
    text-align: center;
}

.characteristic-card-title .text-red {
    color: #f43545;
    font-weight: 600;
}

.characteristic-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #222222;
    margin: 0;
}

@media (max-width: 1024px) {
    .section-characteristics {
        padding: 60px 0;
    }

    .characteristics-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .characteristics-content {
        gap: 40px;
    }

    .characteristic-card {
        flex-direction: column;
        height: auto;
    }

    .characteristic-illustration {
        width: 100%;
        height: 300px;
    }

    .characteristic-text-area {
        padding: 40px 30px;
    }

    .characteristic-card-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
        white-space: normal;
    }

    .characteristic-description {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .section-characteristics {
        background: #EBFDFF url(../images/bg_char_sp.png) no-repeat center/cover;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }
    #ifaf .section-characteristics {
        background: #FFEFF9 url(../images/ifaf/bg_char_sp.png) no-repeat center/cover;
    }
    #mailaf .section-characteristics {
        background: #F4F2FF url(../images/mailaf/bg_char_sp.png) no-repeat center/cover;
    }
    .characteristics-bg::before {
        width: 400px;
        height: 400px;
        top: -5%;
        right: -10%;
    }

    .characteristics-bg::after {
        width: 350px;
        height: 350px;
        bottom: -10%;
        left: -10%;
    }

    .characteristics-container {
        padding: 0 20px;
    }

    .characteristics-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    .characteristics-content {
        gap: 30px;
    }

    .characteristic-illustration {
        height: 240px;
    }

    .characteristic-text-area {
        padding: 24px 20px;
    }
    .characteristic-card:nth-of-type(2) .characteristic-text-area {
        order: 2;
    }

    .characteristic-card-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 16px;
    }

    .characteristic-description {
        font-size: 16px;
        line-height: 28px;
    }
}

/* ========================================
   ADアフィリエイトの仕組みセクション
======================================== */
.section-mechanism {
    background: #00c2de;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#ifaf .section-mechanism {
    background: #FF1DA7;
}

#mailaf .section-mechanism {
    background: #6853FF;
}

.mechanism-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 128px;
    width: 100%;
    max-width: 1440px;
    padding: 0 120px;
}

.mechanism-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.mechanism-cards {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.mechanism-card {
    background: #fff;
    border-radius: 80px;
    padding: 40px 46px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mechanism-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mechanism-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 32px;
    text-align: center;
    color: #222222;
    margin: 0;
    width: 100%;
    white-space: nowrap;
}

.mechanism-card-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #222222;
    margin: 0;
    width: 288px;
}

@media (max-width: 1200px) {
    .mechanism-container {
        padding: 0 60px;
    }

    .mechanism-cards {
        flex-direction: column;
        max-width: 380px;
        margin: 0 auto;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .section-mechanism {
        padding: 40px 20px 80px;
    }

    .mechanism-container {
        gap: 24px;
        padding: 0;
    }

    .mechanism-title {
        font-size: 24px;
        line-height: 48px;
        white-space: normal;
    }

    .mechanism-cards {
        gap: 30px;
        max-width: 335px;
    }

    .mechanism-card {
        border-radius: 40px;
        padding: 20px 20px 40px;
        width: 100%;
        gap: 20px;
    }

    .mechanism-card-title {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
        width: 100%;
        max-width: 284px;
        margin: 0 auto;
    }

    .mechanism-card-text {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        max-width: 295px;
    }
}

/* ========================================
   配信媒体セクション
======================================== */
.section-media {
    background: #ebfdff;
    padding: 100px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#ifaf .section-media {
    background: #FFEFF9;
}
#mailaf .section-media {
    background: #F4F2FF;
}

.media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.media-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
}

.media-subtitle {
    margin: 0 0 74px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    color: #222222;
}

.media-subtitle .pc-only {
    display: block;
}

.media-subtitle .sp-only {
    display: none;
}

.media-cards {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}
@media screen and (min-width: 768px){
    #mailaf .media-cards {
        flex-wrap: wrap;
    }
}

.media-card {
    background: #fff;
    width: 380px;
    height: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 46px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px){
    #ifaf .media-card,
    #mailaf .media-card {
        width: 580px;
    }
}
@media screen and (min-width: 768px){
    #mailaf .media-card {
        height: auto;
    }
}

#ifaf .media-card {
    height: auto;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.media-card-tall {
    height: 380px;
}

.media-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 32px;
    white-space: nowrap;
}
#mailaf .media-card-title {
    line-height: 32px;
}

.media-card-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #222222;
    margin: 0 0 auto;
    width: 308px;
    flex-grow: 1;
}
#ifaf .media-card-text {
    width: auto;
}
@media screen and (min-width: 768px){
    #mailaf .media-card-text {
        margin-bottom: 30px;
    }
}

.media-logos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0 0;
}

.media-logos-2col {
    gap: 32px;
}

.media-logos-4col {
    gap: 14px;
}

.media-logos-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    width: 100%;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-google {
    width: 125px;
    height: 39px;
}

.logo-google-small {
    width: 118px;
    height: 39px;
}

.logo-yahoo-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #FF0033;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-yahoo-text .japan {
    font-size: 8px;
    margin-top: 2px;
}

.logo-yahoo-text.small {
    font-size: 28px;
}

.logo-yahoo-text.small .japan {
    font-size: 7px;
}

.logo-facebook,
.logo-instagram,
.logo-tiktok,
.logo-x {
    width: 56px;
    height: 56px;
}

.logo-meta-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #0081FB;
}

.logo-shorts-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-shorts-text .icon {
    width: 24px;
    height: 24px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .section-media {
        padding: 60px 40px;
    }

    .media-cards {
        flex-direction: column;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .media-card {
        height: auto;
        min-height: 258px;
    }

    .media-card-tall {
        min-height: 306px;
    }
}

@media (max-width: 767px) {
    .section-media {
        padding: 40px 20px 80px;
    }

    .media-container {
        gap: 0;
    }

    .media-title {
        font-size: 24px;
        line-height: 48px;
        margin-bottom: 28px;
    }

    .media-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 40px;
        max-width: 335px;
    }

    .media-subtitle .pc-only {
        display: none;
    }

    .media-subtitle .sp-only {
        display: block;
    }

    .media-cards {
        gap: 30px;
        max-width: 335px;
    }

    .media-card {
        width: 100%;
        padding: 20px;
        min-height: 258px;
    }

    .media-card-title {
        font-size: 20px;
        line-height: 48px;
        margin-bottom: 16px;
        white-space: normal;
    }

    .media-card-text {
        font-size: 14px;
        line-height: 24px;
        width: 100%;
        max-width: 295px;
    }

    .media-logos {
        padding-top: 16px;
    }

    .media-logos-2col {
        background: white;
        padding: 16px 0;
        width: 295px;
    }

    .media-logos-4col {
        background: white;
        padding: 8px 11px;
        width: 295px;
        gap: 16px;
    }

    .media-logos-2x2 {
        background: white;
        padding: 13px 3px;
        width: 295px;
        grid-template-columns: 1fr 1fr;
        gap: 10px 4px;
    }

    .logo-google {
        width: 118px;
        height: 39px;
    }

    .logo-google-small {
        width: 118px;
        height: 33px;
    }

    .logo-yahoo-text {
        font-size: 28px;
    }

    .logo-facebook,
    .logo-instagram,
    .logo-tiktok,
    .logo-x {
        width: 54px;
        height: 54px;
    }

    .logo-meta-text {
        font-size: 20px;
    }

    .logo-shorts-text {
        font-size: 16px;
    }
}

/* ========================================
   料金セクション
======================================== */
.section-pricing {
    background: url(../images/bg_pricing.png) no-repeat center/cover;
    padding: 120px 120px 100px;
    position: relative;
    overflow: hidden;
}
#ifaf .section-pricing {
    background: url(../images/ifaf/bg_pricing.png) no-repeat center/cover;
}
#mailaf .section-pricing {
    background: url(../images/mailaf/bg_pricing.png) no-repeat center/cover;
}

@media  (max-width: 767px) {
    .section-pricing {
        background: url(../images/bg_pricing_sp.png) no-repeat center/cover;
    }
    #ifaf .section-pricing {
        background: url(../images/ifaf/bg_pricing_sp.png) no-repeat center/cover;
    }
    #mailaf .section-pricing {
        background: url(../images/mailaf/bg_pricing_sp.png) no-repeat center/cover;
    }
}

.pricing-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.pricing-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
}

.pricing-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-subtitle.sp-only {
    display: none;
}

/* 料金比較テーブル */
.pricing-comparison-table {
    max-width: 1040px;
    margin: 0 auto 20px;
}

.pricing-comparison-table table {
    border-collapse: inherit;
    border-spacing: 0.5em 0.2em;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .pricing-comparison-table table {
        border-spacing: 0.3em 0.2em;
    }
}

.pricing-comparison-table thead,
.pricing-comparison-table tbody {
    display: table-row-group;
}

.pricing-comparison-table tr {
    display: table-row;
}

.pricing-table-cell {
    height: 70px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    line-height: 68px;
    color: #222222;
    padding: 0 10px;
}

.pricing-table-category {
    background: #e8fcff;
    font-weight: 400;
    width: 259px;
}
#ifaf .pricing-table-category {
    background: #FFEFF9;
}
#mailaf .pricing-table-category {
    background: #F4F2FF;
}

.pricing-table-asp {
    background: #e8fcff;
    font-weight: 400;
    width: 380px;
}
#ifaf .pricing-table-asp {
    background: #FFEFF9;
}
#mailaf .pricing-table-asp {
    background: #F4F2FF;
}

.pricing-table-flipnine {
    background: #ffd592;
    font-weight: 400;
    width: 380px;
}
#ifaf .pricing-table-flipnine {
    background: #D5EEFF;
}

.pricing-table-header .pricing-table-asp {
    font-weight: 700;
}

.pricing-table-header .pricing-table-flipnine {
    background: #ff8901;
    color: #fff;
    font-weight: 700;
}
#ifaf .pricing-table-header .pricing-table-flipnine {
    background: #0071BD;
}

.price-large {
    font-size: 28px;
}

.price-unit {
    font-size: 24px;
}

.price-note {
    font-size: 20px;
    margin-left: 4px;
}

.percentage {
    font-size: 26px;
}

.price-range {
    font-size: 28px;
}

.price-note-small {
    font-size: 12px;
    display: block;
    line-height: 16px;
    margin-top: -20px;
    padding-bottom: 5px;
}

.pricing-table-flipnine {
    flex-direction: column;
}

/* 比較ノート */
.pricing-comparison-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #222222;
    margin: 0 0 40px;
    line-height: 30px;
}

.pricing-comparison-note strong {
    font-size: 24px;
    font-weight: 700;
}

.pricing-comparison-note .sp-only {
    display: none;
}

/* 注記バー */
.pricing-notice-bar {
    background: #222222;
    border-radius: 20px;
    padding: 12px;
    max-width: 1040px;
    margin: 0 auto 70px;
}

.pricing-notice-bar p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    margin: 0;
    letter-spacing: 1.3px;
}

.pricing-notice-bar .sp-only {
    display: none;
}

/* 計算例ボックス */
.pricing-calculation-box {
    border: 2px solid #222222;
    padding: 40px 34px;
    max-width: 1040px;
    margin: 0 auto 60px;
}

.pricing-calc-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 40px;
}

.pricing-calc-title .sp-only {
    display: none;
}

.price-highlight {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -2.4px;
}

/* 計算式 */
.pricing-calc-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.pricing-calc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 8px; */
}

.pricing-calc-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #222222;
    height: 40px;
    line-height: 46px;
    background: #ebfdff;
    padding: 5px 20px 0;
    width: 280px;
    text-align: center;
}
#ifaf .pricing-calc-label {
    background: #FFEFF9;
}
#mailaf .pricing-calc-label {
    background: #F4F2FF;
}

.pricing-calc-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #222222;
    background: #e8fcff;
    height: 100px;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
#ifaf .pricing-calc-value {
    background: #FFEFF9;
}
#mailaf .pricing-calc-value {
    background: #F4F2FF;
}

.calc-number {
    font-size: 62px;
    line-height: 48px;
    letter-spacing: -3.2px;
}

.calc-unit {
    font-size: 32px;
    line-height: 48px;
    margin: 0 0 -20px 3px;
}

.pricing-calc-operator {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #5b5b5b;
    line-height: 48px;
    width: 46px;
    text-align: center;
}

.pricing-calc-operator.equals {
    font-size: 32px;
    color: #222222;
}

/* 計算結果バー */
.pricing-calc-result {
    background: #ff8901;
    padding: 18px 0 13px;
    text-align: center;
}
#ifaf .pricing-calc-result {
    background: #0071BD;
}

.pricing-calc-result p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 48px;
    color: #fff;
    margin: 0;
}

.pricing-calc-result .sp-only {
    display: none;
}

.result-price {
    font-size: 61px;
    font-weight: 600;
    letter-spacing: -0.64px;
}

.result-note_wrap {
    position: relative;
}

.result-note {
    position: absolute;
    bottom: -23px;
    left: -20px;
    font-size: 12px;
    line-height: 28px;
    display: inline-block;
    margin-left: 8px;
}

/* 最終メッセージ */
.pricing-final-message {
    text-align: center;
    padding: 0 20px 40px 20px;
}

.pricing-final-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #222222;
    margin: 0 0 20px;
}

.pricing-final-title.sp-only {
    display: none;
}

.pricing-final-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 50px;
    color: #222222;
    margin: 0;
}

.pricing-final-text.sp-only {
    display: none;
}

@media (max-width: 1200px) {
    .section-pricing {
        padding: 60px 40px;
    }

    .pricing-subtitle {
        font-size: 24px;
        line-height: 36px;
    }

    .pricing-table-row {
        grid-template-columns: 200px 280px 280px;
    }

    .pricing-table-cell {
        font-size: 20px;
        height: 60px;
        line-height: 58px;
    }

    .price-large {
        font-size: 20px;
    }

    .price-unit {
        font-size: 18px;
    }

    .price-note {
        font-size: 16px;
    }

    .pricing-comparison-note {
        font-size: 18px;
    }

    .pricing-comparison-note strong {
        font-size: 20px;
    }

    .pricing-calc-formula {
        /* flex-wrap: wrap; */
        gap: 20px;
    }

    .pricing-calc-label,
    .pricing-calc-value {
        width: 200px;
    }

    .calc-number {
        font-size: 48px;
    }

    .calc-unit {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .section-pricing {
        padding: 40px 20px;
    }

    .pricing-title {
        font-size: 24px;
        line-height: 48px;
        margin-bottom: 28px;
    }

    .pricing-subtitle.pc-only {
        display: none;
    }

    .pricing-subtitle.sp-only {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 40px;
        max-width: 335px;
    }

    .pricing-comparison-table {
        max-width: 335px;
    }

    .pricing-table-row {
        grid-template-columns: 83px 122px 122px;
    }

    .pricing-table-cell {
        font-size: 12px;
        height: 34.5px;
        line-height: 36px;
        padding: 0 5px;
    }
    .pricing-table-cell.pricing-table-asp,
    .pricing-table-cell.pricing-table-flipnine {
        padding: 0;
    }

    .price-large {
        font-size: 12px;
    }

    .price-unit {
        font-size: 10px;
    }

    .price-note {
        font-size: 8px;
    }

    .percentage {
        font-size: 10px;
    }

    .price-range {
        font-size: 12px;
    }

    .price-note-small {
        margin-top: -10px;
        padding: 0 0 5px;
        font-size: 8px;
        line-height: 11px;
    }

    .pricing-comparison-note.pc-only {
        display: none;
    }

    .pricing-comparison-note {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .pricing-comparison-note .sp-only {
        display: block;
    }

    .pricing-comparison-note strong {
        font-size: 17px;
    }

    .pricing-notice-bar {
        padding: 16px 20px;
        max-width: 283px;
        margin-bottom: 40px;
    }

    .pricing-notice-bar .pc-only {
        display: none;
    }

    .pricing-notice-bar .sp-only {
        display: block;
    }

    .pricing-notice-bar p {
        font-size: 14px;
        line-height: 23px;
        letter-spacing: 0.7px;
    }

    .pricing-calculation-box {
        border-width: 2px;
        padding: 20px;
        max-width: 335px;
        margin-bottom: 20px;
    }

    .pricing-calc-title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .pricing-calc-title .pc-only {
        display: none;
    }

    .pricing-calc-title .sp-only {
        display: block;
    }

    .price-highlight {
        font-size: 30px;
        letter-spacing: -3px;
    }

    .pricing-calc-formula {
        /* flex-direction: column; */
        align-items: center;
        gap: 2px;
        margin-bottom: 20px;
    }

    .pricing-calc-item {
        /* flex-direction: row;
        gap: 10px;
        width: 100%;
        max-width: 295px; */
    }

    .pricing-calc-label {
        background: #ebfdff;
        padding: 0;
        font-size: 12px;
        line-height: 1;
        height: 35px;
        width: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pricing-calc-value {
        background: #e8fcff;
        padding: 5px 0 20px 0;
        font-size: 18px;
        height: 20px;
        width: 85px;
        /* flex: 1; */
        max-width: 85px;
    }

    .calc-number {
        font-size: 18px;
        line-height: 1;
        letter-spacing: -1.8px;
    }

    .calc-unit {
        margin: 4px 0 0 2px;
        font-size: 12px;
        line-height: 1;
    }

    .pricing-calc-operator {
        font-size: 18px;
        width: 14px;
        margin: 0;
        align-self: center;
    }

    .pricing-calc-operator.equals {
        font-size: 19px;
    }

    .pricing-calc-result {
        padding: 12px 0;
    }

    .pricing-calc-result .pc-only {
        display: none;
    }

    .pricing-calc-result .sp-only {
        display: block;
    }

    .pricing-calc-result p {
        font-size: 18px;
        line-height: 27px;
    }

    .result-price {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .result-note {
        top: -15px;
        left: -10px;
        font-size: 8px;
        line-height: 18px;
    }

    .pricing-final-message {
        padding: 20px 20px 0;
    }

    .pricing-final-title.pc-only {
        display: none;
    }

    .pricing-final-title.sp-only {
        display: block;
    }

    .pricing-final-title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .pricing-final-text.pc-only {
        display: none;
    }

    .pricing-final-text.sp-only {
        display: block;
    }

    .pricing-final-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ========================================
   おすすめ業種セクション
======================================== */
.section-industries {
    background: #ebfdff;
    padding: 120px 120px 100px;
    position: relative;
    overflow: hidden;
}
#ifaf .section-industries {
    background: #FFEFF9;
}
#mailaf .section-industries {
    background: #F4F2FF;
}

.industries-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industries-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
}

.industries-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
    max-width: 1100px;
}

.industries-subtitle.sp-only {
    display: none;
}

/* 業種リストボックス */
.industries-list-box {
    background: #fff;
    border-radius: 80px;
    padding: 48px 80px;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 200px 200px 254px 168px;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
}

.industries-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.industries-column p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #222222;
    margin: 0;
}

.industries-note {
    font-size: 10px;
    display: block;
    line-height: 16px;
}

.industries-disclaimer {
    position: absolute;
    bottom: 48px;
    right: 57px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    color: #222222;
    margin: 0;
}

/* 実績表示 */
.industries-achievement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1200px;
}

.achievement-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    color: #222222;
    margin: 0 0 24px;
}

.achievement-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 60px;
}

.achievement_wrap {
    display: flex;
    gap: 10px;
}
@media (max-width: 767px) {
    .achievement-content {
        gap: 10px;
    }
}
.achievement-number {
    margin-top: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 215px;
    line-height: 1;
    color: #f43545;
    letter-spacing: -10px;
}

.achievement-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.achievement-text-top {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 68px;
    color: #222222;
    letter-spacing: 2.28px;
    /* margin: 34px 0 0; */
}

.achievement-text-middle {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 75px;
    line-height: 100px;
    color: #f43545;
    margin: 0;
}
p.achievement-text-middle::after {
    content: '';
    background: url(../images/img_b.png) no-repeat 0 0;
    background-size: 100%;
    position: absolute;
    right: -5px;
    top: 0;
    width: 29px;
    height: 33px;
}
@media (max-width: 767px) {
    p.achievement-text-middle::after {
        right: -12px;
        width: 14px;
        height: 16px;
    }
}

.achievement-text-bottom {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 66px;
    line-height: 60px;
    color: #f43545;
    margin: 0;
}

.achievement-arrow {
    position: absolute;
    top: 103px;
    right: -70px;
    width: 29px;
    height: 33px;
}

.achievement-arrow svg {
    width: 100%;
    height: 100%;
}

/* イラスト */
.achievement-illustration {
    position: relative;
    width: 400px;
    height: 229px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-monitor {
    position: relative;
    width: 200px;
    height: 160px;
    z-index: 2;
}

.monitor-screen {
    background: #fff;
    border: 4px solid #464646;
    border-radius: 8px;
    width: 200px;
    height: 140px;
    padding: 20px;
    box-sizing: border-box;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
}

.monitor-stand {
    background: #464646;
    width: 60px;
    height: 20px;
    margin: 0 auto;
    position: relative;
    border-radius: 0 0 30px 30px;
}

.illustration-person {
    position: absolute;
    width: 40px;
    height: 80px;
    background: #FFC593;
    border-radius: 20px 20px 0 0;
}

.illustration-person-left {
    bottom: 0;
    left: 60px;
}

.illustration-person-right {
    bottom: 0;
    right: 60px;
}

.illustration-person::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: #FFC593;
    border-radius: 50%;
}

.illustration-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.7;
}

.illustration-icon-gear {
    top: 20px;
    left: 20px;
}

.illustration-icon-light {
    top: 10px;
    right: 30px;
}

.illustration-icon-globe {
    bottom: 40px;
    left: 10px;
}

@media (max-width: 1200px) {
    .section-industries {
        padding: 60px 40px;
    }

    .industries-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .industries-subtitle {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    .industries-list-box {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px;
        border-radius: 60px;
    }

    .industries-column {
        gap: 8px;
    }

    .industries-column p {
        font-size: 16px;
        line-height: 28px;
    }

    .achievement-number {
        font-size: 150px;
        line-height: 140px;
    }

    .achievement-text-top {
        font-size: 40px;
        line-height: 50px;
    }

    .achievement-text-middle {
        font-size: 50px;
        line-height: 70px;
    }

    .achievement-text-bottom {
        font-size: 45px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .section-industries {
        padding: 80px 20px 40px;
    }

    .industries-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 28px;
    }

    .industries-subtitle.pc-only {
        display: none;
    }

    .industries-subtitle.sp-only {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 40px;
        max-width: 335px;
    }

    .industries-list-box {
        grid-template-columns: 120px 120px;
        gap: 0 25px;
        padding: 20px 30px 60px;
        border-radius: 40px;
        max-width: 335px;
        margin-bottom: 40px;
    }

    .industries-column {
        gap: 0;
    }

    .industries-column p {
        font-size: 10px;
        line-height: 18px;
    }

    .industries-note {
        display: inline-block;
        font-size: 8px;
        line-height: 1;
    }

    .industries-disclaimer {
        font-size: 8px;
        line-height: 10px;
        bottom: 25px;
        right: 25px;
    }

    .achievement-label {
        font-size: 13px;
        line-height: 13px;
        margin: 15px 0 5px;
    }

    .achievement-content {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 40px;
    }

    .achievement-number {
        font-size: 87px;
        line-height: 91px;
        letter-spacing: -5px;
    }

    .achievement-text {
        align-items: center;
    }

    .achievement-text-top {
        font-size: 26px;
        line-height: 31px;
        letter-spacing: 1.04px;
        margin: 0;
    }

    .achievement-text-middle {
        font-size: 34px;
        line-height: 45px;
    }

    .achievement-text-bottom {
        font-size: 30px;
        line-height: 27px;
    }

    .achievement-arrow {
        top: 46px;
        right: -35px;
        width: 14px;
        height: 16px;
    }

    .achievement-illustration {
        order: 3;
        width: 296px;
        height: 178px;
    }

    .illustration-monitor {
        width: 150px;
        height: 120px;
    }

    .monitor-screen {
        width: 150px;
        height: 105px;
        border-width: 3px;
        padding: 15px;
    }

    .chart-bars {
        gap: 3px;
    }

    .monitor-stand {
        width: 45px;
        height: 15px;
    }

    .illustration-person {
        width: 30px;
        height: 60px;
    }

    .illustration-person-left {
        left: 40px;
    }

    .illustration-person-right {
        right: 40px;
    }

    .illustration-person::before {
        width: 20px;
        height: 20px;
        top: -12px;
    }

    .illustration-icon {
        font-size: 24px;
    }

    .illustration-icon-gear {
        top: 15px;
        left: 15px;
    }

    .illustration-icon-light {
        top: 8px;
        right: 20px;
    }

    .illustration-icon-globe {
        bottom: 30px;
        left: 8px;
    }
}

/* ========================================
   ご利用の流れセクション
======================================== */
.section-flow {
    background: #fff url(../images/bg_flow.png) no-repeat center/cover;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
#ifaf .section-flow {
    background: #fff url(../images/ifaf/bg_flow.png) no-repeat center/cover;
}
#mailaf .section-flow {
    background: #fff url(../images/mailaf/bg_flow.png) no-repeat center/cover;
}

/* 背景装飾 */
.flow-bg-decoration {
    /* position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; */
}

.flow-bg-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.flow-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
}

.flow-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
    max-width: 1200px;
}

/* ステップコンテナ */
.flow-steps {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* ステップ */
.flow-step {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.flow-step-left {
    justify-content: flex-start;
}

.flow-step-right {
    justify-content: flex-end;
    padding-left: 143px;
}

/* ラベル（広告主/当社） */
.flow-step-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #fff;
    width: 135px;
    height: 136px;
    font-size: 32px;
    line-height: 46px;
}
#ifaf .flow-step-label.flow-label-tall {
    height: 166px;
}
@media screen and (max-width:767px) {
    .flow-step-label {
        width: 70px;
        height: auto;
        font-size: 18px;
        line-height: 26px;
    }
}

.flow-label-advertiser {
    background: #33c8b2;
    border-radius: 30px 0 0 30px;
}

.flow-label-company {
    background: #ff8901;
    border-radius: 0 30px 30px 0;
}
#ifaf .flow-label-company {
    background: #0071BD;
}

/* コンテンツボックス */
.flow-step-content {
    flex: 1;
    max-width: 914px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flow-step-content.flow-content-tall {
    min-height: 166px;
}

.flow-content-cyan {
    background: #e2fffb;
    border-radius: 0 30px 30px 0;
}
@media (max-width: 767px) {
    .flow-content-cyan {
        border-radius: 0 10px 10px 0;
    }
}

.flow-content-beige {
    background: #ffead3;
    border-radius: 30px 0 0 30px;
}
#ifaf .flow-content-beige {
    background: #D5EEFF;
}

.flow-step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 46px;
    color: #222222;
    margin: 0;
}

.flow-step-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #222222;
    margin: 0;
    letter-spacing: initial;
}

/* 矢印 */
.flow-arrow {
    width: 60px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}

.flow-arrow svg {
    width: 52px;
    height: 18px;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .section-flow {
        padding: 80px 0;
    }

    .flow-container {
        padding: 0 40px;
    }

    .flow-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .flow-subtitle {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 80px;
    }

    .flow-step-right {
        padding-left: 100px;
    }

    .flow-step-label {
        width: 100px;
        height: 100px;
        font-size: 24px;
    }

    .flow-step-label.flow-label-tall {
        height: 130px;
    }

    .flow-step-content {
        padding: 20px;
    }

    .flow-step-title {
        font-size: 22px;
        line-height: 36px;
    }

    .flow-step-text {
        font-size: 16px;
        line-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .section-flow {
        background: #fff url(../images/bg_flow_sp.png) no-repeat center/cover;
        padding: 40px 0;
    }
    #ifaf .section-flow {
        background: #fff url(../images/ifaf/bg_flow_sp.png) no-repeat center/cover;
    }
    #mailaf .section-flow {
        background: #fff url(../images/mailaf/bg_flow_sp.png) no-repeat center/cover;
    }

    .flow-bg-decoration {
        width: 375px;
        height: 840px;
    }

    .flow-container {
        padding: 0 20px;
    }

    .flow-title {
        font-size: 24px;
        line-height: 48px;
        margin-bottom: 28px;
    }

    .flow-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 40px;
        max-width: 335px;
    }

    .flow-steps {
        max-width: 335px;
        gap: 4px;
    }

    .flow-step {
        flex-direction: row;
        gap: 8px;
    }

    .flow-step-left,
    .flow-step-right {
        justify-content: flex-start;
        padding-left: 0;
    }

    .flow-step-right {
        /* flex-direction: row-reverse; */
    }

    /* ラベル */
    .flow-step-label {
        width: 70px;
        height: auto;
        font-size: 18px;
        line-height: 26px;
    }

    .flow-step-label.flow-label-tall {
        height: 124px;
    }

    .flow-label-advertiser {
        border-radius: 10px 0 0 10px;
    }

    .flow-label-company {
        border-radius: 0 10px 10px 0;
    }

    /* コンテンツ */
    .flow-step-content {
        max-width: 257px;
        padding: 8px 20px;
        gap: 0;
    }

    .flow-step-content.flow-content-tall {
        min-height: 124px;
    }

    .flow-content-cyan {
        border-radius: 0 10px 10px 0;
    }

    .flow-content-beige {
        border-radius: 10px 0 0 10px;
    }

    .flow-step-right .flow-content-beige {
        border-radius: 10px 0 0 10px;
    }

    .flow-step-title {
        font-size: 16px;
        line-height: 24px;
        height: auto;
        min-height: 24px;
    }

    .flow-step-text {
        font-size: 10px;
        line-height: 16px;
    }

    /* 矢印 */
    .flow-arrow {
        width: 40px;
        height: 20px;
    }

    .flow-arrow svg {
        width: 35px;
        height: 15px;
    }
}

/* ========================================
   フッター（新デザイン）
======================================== */

/* 既存フッターを非表示 */
.site-footer {
    display: none;
}

.site-footer-new {
    background: #222222;
    position: relative;
    width: 100%;
}

.footer-new-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 120px 0;
    position: relative;
    min-height: 498px;
}

/* ロゴ */
.footer-new-logo {
    position: absolute;
    left: 120px;
    top: 100px;
    width: 139px;
    height: 60px;
}

.footer-new-logo svg {
    width: 100%;
    height: 100%;
}

/* 会社情報 */
.footer-new-company {
    position: absolute;
    left: 120px;
    top: 178px;
    width: 429px;
}

.footer-company-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin: 0 0 0 0;
}

.footer-company-address {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin: 0;
}

.footer-company-address p {
    margin: 0;
}

/* ナビゲーション */
.footer-new-nav {
    position: absolute;
    display: flex;
    gap: 286px;
    top: 108px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 181px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.footer-nav-link:hover {
    opacity: 0.7;
}

/* コピーライト */
.footer-new-copyright {
    background: #222222;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-new-copyright p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    margin: 0;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .footer-new-main {
        padding: 80px 40px 0;
        max-width: 100%;
        min-height: 400px;
    }

    .footer-new-logo {
        left: 40px;
        top: 80px;
        width: 110px;
        height: 48px;
    }

    .footer-new-company {
        left: 40px;
        top: 150px;
        width: 350px;
    }

    .footer-company-name {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-company-address {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-new-nav {
        gap: 200px;
        top: 90px;
        margin-left: 140px;
    }

    .footer-nav-column {
        gap: 20px;
    }

    .footer-nav-link {
        font-size: 13px;
    }

    .footer-new-copyright {
        margin-top: 400px;
        height: 60px;
    }

    .footer-new-copyright p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer-new-main {
        padding: 40px 20px 0;
        min-height: 429px;
    }

    .footer-new-logo {
        left: 20px;
        top: 40px;
        width: 139px;
        height: 60px;
    }

    .footer-new-company {
        left: 20px;
        top: 118px;
        width: 335px;
    }

    .footer-company-name {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: normal;
        font-size: 14px;
        line-height: 30px;
    }

    .footer-company-address {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        margin-top: -1px;
    }

    .footer-new-nav {
        position: absolute;
        display: flex;
        gap: 24%;
        top: 235px;
        left: 20px;
        /* transform: translateX(-50%);
        margin-left: 0; */
    }

    .footer-nav-column {
        gap: 16px;
    }

    .footer-nav-link {
        font-size: 12px;
        line-height: 14px;
    }

    .footer-new-copyright {
        margin-top: 0;
        height: 50px;
    }

    .footer-new-copyright p {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 40px;
        width: 335px;
    }
}

.u_pc {
    display: block;
}
.u_sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .u_pc {
        display: none;
    }
    .u_sp {
        display: block;
    }
}

/* ========================================
   お問い合わせセクション（新デザイン）
======================================== */
#ad .section-contact-new {
    background: #ebfdff;
    padding: 120px 0 160px;
    position: relative;
}
#ad #ifaf .section-contact-new {
    background: #FFEFF9;
}
#ad #mailaf .section-contact-new {
    background: #F4F2FF;
}

#ad .contact-new-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* タイトル */
#ad .contact-new-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #222222;
    margin: 0 0 80px;
}

/* コンテンツエリア */
#ad .contact-new-content {
    display: flex;
    gap: 100px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

/* 左側: 資料説明 */
#ad .contact-new-left {
    flex: 0 0 480px;
}

#ad .contact-description-box {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#ad .contact-description-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    color: #222222;
    margin: 0;
    letter-spacing: initial;
}

/* 資料プレビュー */
#ad .contact-document-preview {
    background: #d3d3d3;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

#ad .document-preview-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 60px;
    text-align: center;
    color: #5b5b5b;
    margin: 0;
}

/* おすすめボックス */
#ad .contact-recommend-box {
    background: #fff;
    padding: 20px 25px;
    min-height: 180px;
}

#ad .recommend-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    color: #222222;
    margin: 0 0 8px;
}

#ad .recommend-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 30px;
    color: #222222;
}

#ad .recommend-list li {
    position: relative;
    padding-left: 0;
}

#ad .recommend-list li::before {
    content: '・';
    position: absolute;
    left: -12px;
}

/* まずはお気軽に */
#ad .contact-encourage-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #222222;
    margin: 0;
}

/* 右側: フォーム */
#ad .contact-new-right {
    flex: 1;
}

#ad .contact-form-box {
    background: #fff;
    padding: 40px 50px 60px;
}

#ad .contact-form-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: normal;
    text-align: center;
    color: #222222;
    margin: 0 0 22px;
}

#ad .contact-form-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: #222222;
    margin: 0 0 59px;
}

/* ========================================
   Snow Monkey Forms スタイル
======================================== */

/* フォーム全体 */
#ad .snow-monkey-form {
    width: 100%;
}

#ad .smf-focus-point {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* フォームコンテナ */
#ad .smf-form {
    width: 100%;
}

/* フォームアイテム */
#ad .smf-item {
    margin-bottom: 0;
    padding-bottom: 0;
}

#ad .smf-item__col {
    display: block;
}

#ad .smf-item__col--label {
    /* margin-bottom: 10px; */
}

#ad .smf-item__col--controls {
    padding: 0;
    width: 100%;
}

/* ラベル */
#ad .smf-item__label {
    display: block;
}

#ad .smf-item__label__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #222222;
    display: block;
}

/* 任意バッジ */
#ad .smf-optional-badge {
    display: inline-block;
    background: #707070;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 8px;
    padding: 3px 5px;
    border-radius: 2px;
    margin-left: 8px;
    letter-spacing: 0.4px;
    line-height: 8px;
    vertical-align: middle;
}

/* コントロール */
#ad .smf-item__controls {
    width: 100%;
}

#ad .smf-placeholder {
    width: 100%;
}

/* テキストコントロール */
#ad .smf-text-control {
    width: 100%;
}

#ad .smf-text-control__control,
#ad .c-input {
    width: 100%;
    padding: 0 10px;
    border: none;
    /* border-bottom: 1px solid #b2b1b0; */
    box-shadow: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #222222;
    background: transparent;
    outline: none;
    letter-spacing: 1.0042px;
    box-sizing: border-box;
}

#ad .smf-text-control__control::placeholder,
#ad .c-input::placeholder {
    color: #a4a4a4;
}

#ad .smf-text-control__control:focus,
#ad .c-input:focus {
    border-bottom-color: #33c8b2;
}

/* コントロールの説明文 */
#ad .smf-control-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #222222;
    line-height: 30px;
    /* margin-left: 195px; */
    margin-bottom: -15px;
    letter-spacing: -0.1px;
}

#ad #your-email--input-description {
    border-top: 1px solid #b2b1b0;
    padding: 0 0 10px;
}

/* プライバシーボックス */
#ad .privacy_box {
    margin-top: 60px;
    margin-bottom: 40px;
}

#ad .wp-block-group__inner-container {
    width: 100%;
}

/* フォーム注意書き */
#ad .form-notice-new {
    margin-top: 20px;
    margin-bottom: 35px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #222222;
    line-height: 1.6;
    letter-spacing: -0.6px;
}

/* 送信ボタン */
#ad .smf-action {
    text-align: center;
    margin-top: 0;
}

#ad .smf-button-control {
    display: inline-block;
}

#ad .smf-button-control__control {
    background: #33c8b2;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 40px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 22px;
    display: inline-block;
}

#ad .smf-button-control__control:hover {
    background: #06ba71;
}

#ad .smf-button-control__control:active {
    background: #2ab89f;
}

#ad .smf-sending {
    display: none;
}

/* システムエラー */
#ad .smf-system-error-content-ready {
    display: none;
}

/* 運用会社リンク */
#ad .contact-agency-link {
    text-align: center;
    margin-top: 40px;
}

#ad .btn-agency {
    display: inline-block;
    background: #fff;
    border: 1px solid #222222;
    color: #222222;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 22px;
}

#ad .btn-agency:hover {
    background: #222222;
    color: #fff;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    #ad .section-contact-new {
        padding: 80px 0 120px;
    }

    #ad .contact-new-container {
        padding: 0 40px;
    }

    #ad .contact-new-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    #ad .contact-new-content {
        flex-direction: column;
        gap: 60px;
    }

    #ad .contact-new-left {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    #ad .contact-new-right {
        width: 100%;
    }

    #ad .contact-form-box {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    #ad .section-contact-new {
        padding: 40px 0 80px;
    }

    #ad .contact-new-container {
        padding: 0 20px;
    }

    #ad .contact-new-title {
        font-size: 24px;
        line-height: 48px;
        margin-bottom: 40px;
    }

    #ad .contact-new-content {
        gap: 40px;
    }

    #ad .contact-new-left {
        max-width: 335px;
    }

    #ad .contact-description-box {
        gap: 20px;
    }

    #ad .contact-description-title {
        font-size: 14px;
        line-height: 20px;
    }

    #ad .contact-document-preview {
        height: 195px;
    }

    #ad .document-preview-text {
        font-size: 32px;
        line-height: 60px;
    }

    #ad .contact-recommend-box {
        padding: 20px 25px;
        min-height: 145px;
    }

    #ad .recommend-title {
        font-size: 16px;
        line-height: 30px;
    }

    #ad .recommend-list {
        font-size: 10px;
        line-height: 20px;
        letter-spacing: initial;
    }

    #ad .contact-encourage-text {
        font-size: 16px;
        line-height: 20px;
    }

    #ad .contact-form-box {
        padding: 40px 20px 48px;
    }

    #ad .contact-form-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 22px;
    }

    #ad .contact-form-subtitle {
        font-size: 10px;
        line-height: 20px;
        margin-bottom: 36px;
    }

    #ad .smf-item__label__text {
        font-size: 10px;
    }

    #ad .smf-text-control__control,
    #ad .c-input {
        padding: 10px;
        font-size: 12px;
    }

    #ad .smf-control-description {
        font-size: 8px;
        line-height: 20px;
        margin-left: 0;
        margin-bottom: -10px;
        letter-spacing: -0.08px;
    }

    #ad .smf-optional-badge {
        font-size: 8px;
        padding: 2.79px 5px;
        line-height: 8px;
    }

    #ad .privacy_box {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #ad .form-notice-new {
        font-size: 7px;
        letter-spacing: -0.42px;
    }

    #ad .smf-button-control__control {
        width: 100%;
        font-size: 20px;
        padding: 10px 40px;
    }

    #ad .contact-agency-link {
        margin-top: 40px;
    }

    #ad .btn-agency {
        width: 100%;
        max-width: 295px;
        font-size: 16px;
        padding: 9px 40px;
    }
}

#ad .smf-form--business {
    text-align: left;
}

#ad .smf-form--business .smf-item {
    border: none;
    border-bottom: 1px solid #b2b1b0;
    position: relative;
    display: flex;
    margin-bottom: 0;
    padding: 10px 0;
    align-items: center;
    justify-items: center;
}

#ad .smf-form--business .smf-item__col--label {
    border-right: none;
    background: none;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #222222;
    display: block;
    /* margin-bottom: 10px; */
    position: relative;
    width: 200px;
}

/* #ad .input-message,
#ad .confirm-message,
#ad .complete-message {
  display: none;
}
form[data-screen="input"] .input-message {
  display: block;
}
form[data-screen="confirm"] .confirm-message {
  display: block;
}
form[data-screen="complete"] .complete-message {
  display: block;
} */
#ad .cdp-copy-alert-success {
    display: none !important;
}

.smf-form--business+.smf-action {
    padding-top: 2rem;
}

@media screen and (min-width: 768px) {
    .visual-content video {
        width: 90%;
    }
}

#ad .scroll-to-top {
    text-align: center;
}

#ad .ad_complete {
    width: 100%;
    height: 250px;
}

#ad .smf-form--business .smf-item__col--label {
    border-bottom: none;
}
