/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 24 2026 | 21:27:35 */
.p-mainVisual__slideTitle {
	font-weight: bold;
}

/* CTAコンテナの配置調整 */
.custom-mv-cta-container {
    position: absolute;
    top: 70%; /* キャッチコピーの下に来るよう調整 */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none; /* 下の要素のクリックを邪魔しない */
}

.custom-mv-cta-inner {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    pointer-events: auto; /* ボタン自体はクリック可能にする */
}

/* ボタンの共通デザイン（王道・信頼感） */
.custom-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 18px 24px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 4px; /* 誠実さを出すための控えめな角丸 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    /* 指定フォントの適用 */
    font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* ホバー時の挙動 */
.custom-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
    color: #000;
}

/* モバイル対応：縦並びにする */
@media (max-width: 959px) {
    .custom-mv-cta-container {
        top: 65%;
    }
    .custom-mv-cta-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .custom-cta-btn {
        min-width: 80%;
        padding: 12px 20px;
        font-size: 16px;
    }
}

.top-card {
	padding: 15px 10px;
	border: 3px solid #338df4;
	border-radius: 5px;
	background: #fff;
}

.w-footer__box .widget_custom_html p {
	padding: 15px;
	background: #ffffff;
	color: #1e73be;
	text-align: center;
}

.l-content {
	margin-bottom: 0;
}

.over-ride-pc-py-60 {
	padding-bottom: 0 !important;
}