/* メインコンテンツエリア */
.c-container {
    width: 100%;
    max-width: 800px; /* 読みやすい最大幅 (コンテンツエリアの幅) */
    text-align: center;
    line-height: 1.5;
}

/* アイコンセクション */
.icon-wrapper {
    margin-bottom: 32px;
}

/* 成功アイコン (SVG) スタイル */
.success-icon {
    width: 72px;
    height: 72px;
    color: #af304d;
    display: block;
    margin: 0 auto;
}

/* メッセージヘッダー */
.main-heading {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* サブメッセージ */
.sub-text {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 48px;
}

/* 情報ブロックの共通スタイル (プレーンデザインに変更) */
.info-block {
    padding: 0; /* パディングを削除 */
    border: none; /* 枠線を削除 */
    background-color: transparent; /* 背景色を透明に */
    box-shadow: none; /* 影を削除 */
    text-align: center; /* センタリングを維持 (必要に応じて変更可能) */
    margin-bottom: 40px; /* ブロック間の間隔を調整 */
    color: #374151; /* テキストの色 */
    font-size: 16px;
}

.info-block .title {
    font-weight: 700;
    color: #1f2937; /* 見出しの色を強調 */
    font-size: 18px;
    margin-bottom: 10px;
}

.info-block .content {
    font-size: 16px;
    margin-bottom: 16px;
}

.info-block a {
    display: inline-flex;
    align-items: center;
    color: #3b82f6; /* リンクの色は青で維持 */
    font-weight: 600;
    text-decoration: underline;
    font-size: 16px;
    padding: 2px 0;
}
.info-block a:hover {
    color: #1d4ed8;
}
.info-block svg {
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

/* 再送信ボタンのスタイル */
.resend-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.resend-button {
    display: inline-block;
    padding: 10px 28px;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s ease, transform 0.1s ease;
    text-decoration: none;
    font-size: 17px;
}
.resend-button:hover {
    transform: translateY(-1px);
}

.info-block .tel-number {
    font-size: 1.4rem;
    margin-bottom: 16px;
    text-decoration: none;
}

/* レスポンシブ対応 (sm:ブレークポイント相当) */
@media (min-width: 640px) {
    .main-heading {
        font-size: 40px;
    }
    .sub-text {
        font-size: 20px;
    }
    .info-block {
        text-align: center; /* デスクトップでも中央配置を維持 */
    }
    .resend-button-wrapper {
        text-align: center;
    }
    .info-block .title {
        font-size: 20px;
    }
    .info-block .content {
        font-size: 17px;
    }
    .info-block a {
        font-size: 17px;
    }
}