/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    color: #333;
    background-color: var(--bg-color);
}

/* パンくずリスト */
.breadcrumbs {
    margin: 1% 0;
    font-size: 1.0em;
    padding: 1%;
    width: fit-content;
}
.breadcrumbs a:hover {
    background-color: var(--breadcrumbs-hover-color);
}
.breadcrumbs i {
    vertical-align: middle;
    font-size: 1.3em;
    margin: 0 5px;
}

/* メインビジュアル */
.main-visual {
    position: relative;
    overflow: hidden;
}

.main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* メインコンテンツ - オーバーラップデザイン */
.main-content {
    position: relative;
    width: 100%;
    height: 100%; /* 高さを指定 */
    min-height: 500px;
    overflow: hidden;
}

/* 大きめの背景画像 */
.content-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%; /* 画面の70%を占める */
    height: 100%;
    z-index: 1;
}

.content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 説明文エリア - 画像に重ねる */
.content-left {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 45%;
    padding: 30px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2; /* 画像より前面に */
}

.content-left {
    width: 50%;
    padding: 40px;
    background-color: rgba(232, 248, 245, 0.8);
}

.content-left h1 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #1a5050; /* より暗めの緑色で読みやすく */
}

.content-left p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #2c4f4f; /* 読みやすい色 */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    /* background-color: #30B4B4; */
    background-color: rgb(76, 165, 216);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    /* background-color: #279b9b; */
    background-color: rgba(76, 165, 216, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-button .icon {
    margin-left: 10px;
    background-color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button .icon svg {
    width: 12px;
    height: 12px;
    /* fill: #30B4B4; */
    fill: rgb(76, 165, 216);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .content-right {
        width: 100%;
    }
    
    .content-left {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
    }
}

/* 特に小さい画面サイズの場合 */
@media (max-width: 480px) {
    .content-left {
        width: 90%;
        padding: 20px;
        top: 50%;
        background-color: rgba(232, 248, 245, 0.87);
    }
    
    .content-left h1 {
        font-size: 20px;
    }
    
    .content-left p {
        font-size: 14px;
    }
}

.info-section {
    padding: 20px;
    background-color: var(--bg-color);
    text-align: center;
}

.info-section h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
