@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.cf-turnstile {
    display: none !important;
}

/* CTAコンテナ */
.zeirishi-cta {
    max-width: 720px;
    margin: 40px auto;
    background-color: #2473a9;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* 背景の装飾 */
.zeirishi-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background-color: #00ADB4;
    opacity: 0.1;
    border-radius: 50%;
}

/* メインコンテンツ */
.zeirishi-cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
	padding-left: 20px;
}

/* 画像エリア */
.zeirishi-cta-image {
    flex: 0 0 240px;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #00ADB4;
    background-image: url('path-to-your-image.jpg'); /* ここに画像URLを設定 */
    background-size: cover;
    background-position: center;
    border-radius: 4px 0 0 4px;
}

.zeirishi-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* テキストエリア */
.zeirishi-cta-text {
    flex: 1;
    padding: 32px 32px 32px 0;
    position: relative;
    z-index: 1;
}

/* ヘッダー部分 */
.zeirishi-cta-header {
    margin-bottom: 24px;
    text-align: center;
}

.zeirishi-cta-title {
    color: #f7f7f7;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.zeirishi-cta-subtitle {
    color: #f7f7f7;
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* 特徴リスト */
.zeirishi-cta-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.zeirishi-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zeirishi-cta-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #f7f7f7;
    border-radius: 50%;
    flex-shrink: 0;
}

.zeirishi-cta-check svg {
    width: 12px;
    height: 12px;
    fill: #0f1d29;
}

.zeirishi-cta-feature-text {
    color: #f7f7f7;
    font-size: 14px;
    line-height: 1.4;
}

/* ボタン部分 */
.zeirishi-cta-action {
    position: relative;
    z-index: 1;
    text-align: center;
}

.zeirishi-cta-button {
    display: inline-block;
    position: center;
    text-align: center;
    margin: 0 auto;
    background-color: #00ADB4;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 173, 180, 0.3);
width: 90%;
}

.zeirishi-cta-button:hover {
    background-color: #f7f7f7;
    color: #0f1d29;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(247, 247, 247, 0.3);
}

.zeirishi-cta-note {
    color: #f7f7f7;
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
    .zeirishi-cta {
        margin: 24px 0px;
    }
    
    .zeirishi-cta-content {
        flex-direction: column;
        gap: 0;
		padding:0;
    }
    
    .zeirishi-cta-image {
        flex: 0 0 200px;
        width: 100%;
        border-radius: 4px 4px 0 0;
    }
    
    .zeirishi-cta-text {
        padding: 24px 20px;
    }
    
    .zeirishi-cta-title {
        font-size: 32px;
    }
    
    .zeirishi-cta-subtitle {
        font-size: 14px;
    }
    
    .zeirishi-cta-features {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .zeirishi-cta-button {
        padding: 12px 50px;
        font-size: 14px;
    }
}
