@charset "UTF-8";

/* タイトルエリア */
.about-title-section {
    text-align: center;
    padding: 40px 20px 20px;
    background-color: #fff;
    border-bottom: 4px solid #00A968;
}

.about-title-section h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Breadcrumb */
.about-breadcrumb {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
}

/* Intro Section */
.intro-section {
    width: 100%;
    /* 背景画像設定のための準備 */
    position: relative;
    padding-bottom: 100px;
}

/* 背景画像用のコンテナ（現状は緑色で代用） */
.intro-bg-placeholder {
    /* background-color: #00A968; */
    padding: 30px 20px 30px;
    background-image: url('../img/page/about/about-us-background-image1.png');
    background-size: cover;
    background-position: center;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 24px;
    color: #fff;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 40px;
    font-weight: bold;
}

/* 雲の部分 */
.message-cloud-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 800px;
    margin: 0 auto;
    z-index: 1;
    /* Establish stacking context */
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-cloud-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content, but inside container's context */
    background-image: url('../img/page/about/about-us-cloud-background-image.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.message-box {
    width: 100%;
    /* Ensure it can take up space if needed */
    padding: 60px 40px 150px;
    /* Adjusted to lift content slightly up */
    text-align: center;
    position: relative;
    z-index: 1;
}

.message-header {
    font-size: 34px;
    /* Increased from 26px */
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-highlight {
    /* Modified to use pseudo-element for rounded highlight */
    position: relative;
    padding: 0 10px;
    display: inline-block;
    line-height: 1.4;
    z-index: 1;
}

.header-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    /* Moved down */
    width: 100%;
    height: 40%;
    background: #C4F2DD;
    border-radius: 8px;
    /* Slightly rounded corners */
    z-index: -1;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Optional gap for spacing */
    white-space: nowrap;
}

.logo-text {
    font-family: sans-serif;
    font-weight: 900;
    font-size: 1.2em;
    color: #333;
}

.logo-text .plus {
    color: #fff;
    background: #00A968;
    border-radius: 50%;
    width: 1.1em;
    height: 1.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    margin: 0 2px;
    vertical-align: middle;
}

.message-body {
    max-width: 720px;
    /* Reduced width to prevent overflow */
    margin: 0 auto;
}

.message-text {
    font-size: 15px;
    line-height: 2.0;
    margin-bottom: 24px;
    color: #444;
    font-weight: 500;
}

.message-text.last {
    margin-bottom: 0;
}

/* --- Sanpo Yoshi Section --- */
.sanpo-yoshi-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.sanpo-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.sanpo-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    border-bottom: 3px solid #00A968;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.sanpo-lead {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.6;
}

.sp-br {
    display: none;
}

.sanpo-lead .text-green,
.message-text .text-green {
    color: #00A968;
    font-weight: bold;
}

/* Image Area Placeholder */
.sanpo-image-area {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.sanpo-img-placeholder {
    width: 100%;
    height: 400px;
    /* 画像の高さに合わせて調整 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* レスポンシブ対応 - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .message-cloud-container {
        max-height: none;
    }

    .message-box {
        padding: 50px 30px 100px;
    }

    .message-header {
        font-size: 28px;
    }
}

/* レスポンシブ対応 - SP */
@media screen and (max-width: 767px) {
    .intro-section .message-cloud-container {
        max-height: none;
    }

    .intro-section .message-cloud-bg {
        opacity: 0.3;
    }

    .intro-section .message-box {
        padding: 40px 20px;
        border-radius: 20px;
        background-color: rgba(255, 255, 255, 0.95);
    }

    .intro-section .message-header {
        font-size: 20px;
        flex-direction: column;
        gap: 5px;
    }

    .intro-section .intro-bg-placeholder {
        padding: 40px 15px 60px;
    }

    section.intro-section {
        padding-bottom: 35px;
    }

    section.sanpo-yoshi-section {
        padding: 35px 20px;
    }

    .sanpo-yoshi-section .sanpo-lead {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .sp-br {
        display: block;
    }

    .sanpo-yoshi-section .sanpo-img-placeholder {
        height: 250px;
    }

    .facility-manager-section .fm-intro,
    .staff-section .staff-intro,
    .guardian-section .guardian-intro {
        padding: 35px 20px;
    }

    section.fm-features-section,
    section.staff-features-section,
    section.guardian-features-section {
        padding: 35px 20px;
    }

    section.about-cta-section {
        padding: 25px 20px;
    }
}

/* レスポンシブ対応 - 小さいスマホ (414px以下) */
@media screen and (max-width: 413px) {
    .header-inner {
        flex-direction: column;
        gap: 5px;
    }

    .header-highlight::before {
        bottom: -3px;
        height: 20%;
    }

    .header-inner img {
        height: 1.8em;
    }
}

/* --- Facility Manager Section --- */
.facility-manager-section {
    width: 100%;
}

/* 緑バナー */
.fm-banner {
    background-image: url('../img/page/about/about-us-background-image3.png');
    background-color: #00A968;
    background-size: cover;
    background-position: center;
    padding: 30px 20px;
    text-align: center;
}

.fm-banner-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.05em;
}

/* イントロエリア */
.fm-intro {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.fm-intro-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.fm-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.fm-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.fm-title .text-green {
    color: #00A968;
}

.fm-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 60px;
}

.fm-description p {
    margin: 0 0 5px;
}

.fm-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}

.fm-images img {
    max-width: 400px;
    height: auto;
}

/* --- Features Section --- */
.fm-features-section {
    background-image: radial-gradient(#00A968 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #fff;
    padding: 80px 20px;
}

.fm-features-inner {
    max-width: 900px;
    margin: 0 auto;
}

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

.fm-feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border: 3px solid #ccc;
}

.fm-feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fm-feature-icon img {
    max-height: 60px;
    width: auto;
}

.fm-feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.fm-feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .fm-banner-text {
        font-size: 18px;
    }

    .fm-title {
        font-size: 22px;
    }

    .fm-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .fm-images img {
        max-width: 100%;
    }

    .fm-features-grid {
        grid-template-columns: 1fr;
    }

    .fm-feature-card {
        padding: 30px 20px;
    }
}

/* --- Staff Section --- */
.staff-section {
    width: 100%;
}

/* イントロエリア */
.staff-intro {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.staff-intro-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.staff-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.staff-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.5;
}

.staff-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.staff-images img {
    max-width: 300px;
    height: auto;
}

/* --- Staff Features Section --- */
.staff-features-section {
    background-image: radial-gradient(#00A968 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #fff;
    padding: 80px 20px;
}

.staff-features-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.staff-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.staff-feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    border: 3px solid #ccc;
}

.staff-feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.staff-feature-icon img {
    max-height: 60px;
    width: auto;
}

.staff-feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.staff-feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* Staff Section レスポンシブ対応 - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .staff-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .staff-images img {
        max-width: 250px;
    }
}

/* Staff Section レスポンシブ対応 - SP */
@media screen and (max-width: 767px) {
    .staff-features-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .staff-title {
        font-size: 22px;
    }

    .staff-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .staff-images img {
        max-width: 80%;
    }

    .staff-feature-card {
        padding: 30px 20px;
    }
}

/* --- Guardian Section --- */
.guardian-section {
    width: 100%;
}

/* イントロエリア */
.guardian-intro {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.guardian-intro-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.guardian-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.guardian-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.guardian-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 60px;
}

.guardian-description p {
    margin: 0 0 5px;
}

.guardian-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.guardian-images img {
    max-width: 300px;
    height: auto;
}

/* --- Guardian Features Section --- */
.guardian-features-section {
    background-image: radial-gradient(#00A968 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #fff;
    padding: 80px 20px;
}

.guardian-features-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.guardian-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guardian-feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    border: 3px solid #ccc;
}

.guardian-feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.guardian-feature-icon img {
    max-height: 60px;
    width: auto;
}

.guardian-feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.guardian-feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* Guardian Section レスポンシブ対応 - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .guardian-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .guardian-images img {
        max-width: 250px;
    }
}

/* Guardian Section レスポンシブ対応 - SP */
@media screen and (max-width: 767px) {
    .guardian-features-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .guardian-title {
        font-size: 22px;
    }

    .guardian-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .guardian-images img {
        max-width: 80%;
    }

    .guardian-feature-card {
        padding: 30px 20px;
    }
}

/* --- CTA Buttons Section --- */
.about-cta-section {
    background-color: #00A968;
    padding: 60px 20px;
}

.about-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 60px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 280px;
}

.about-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.about-cta-arrow {
    font-size: 12px;
}

/* CTA Section レスポンシブ対応 */
@media screen and (max-width: 960px) {
    .about-cta-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .about-cta-section {
        padding: 40px 20px;
    }

    .about-cta-btn {
        padding: 15px 30px;
        font-size: 14px;
        min-width: unset;
    }
}