@charset 'UTF-8';

/* Aboutページのスタイル
================================================ */
.about-page {
    padding-top: 80px;
    background-color: #fafafa;
}

.about-hero {
    position: relative;
    height: 800px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 100%
    ),
    url('../../images/about/about_hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.about-hero__title {
    font-size: 4.5rem;
    font-weight: normal;
    margin-bottom: 30px;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.about-hero__subtitle {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-family: "Crimson Text", serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.about-hero__divider {
    width: 80px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 30px auto;
    opacity: 0;
    transform: scaleX(0);
    animation: scaleIn 0.8s ease 0.6s forwards;
}

.about-overview {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
}

.about-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fafafa, #fff);
}

.about-overview .c-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-overview__title {
    margin-bottom: 50px;
}

.about-overview__title .main {
    font-size: 2.8rem;
    font-weight: normal;
    color: #2a5d1f;
    line-height: 1.6;
    display: block;
    margin-bottom: 20px;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.1em;
}

.about-overview__title .sub {
    font-size: 1.3rem;
    color: #666;
    display: block;
    font-family: "Crimson Text", serif;
    letter-spacing: 0.05em;
}

.about-overview__body p {
    font-size: 1.15rem;
    line-height: 2.2;
    color: #333;
    margin-bottom: 25px;
    font-family: "Crimson Text", serif;
    letter-spacing: 0.05em;
}

.about-overview__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-overview__image:hover {
    transform: translateY(-5px);
}

.about-overview__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-overview__image:hover img {
    transform: scale(1.05);
}

.about-info {
    padding: 120px 0;
    background-color: #fafafa;
    position: relative;
}

.about-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fff, #fafafa);
}

.c-section-title {
    text-align: center;
    margin-bottom: 80px;
}

.c-section-title .sub {
    display: block;
    font-size: 1.3rem;
    color: #2a5d1f;
    opacity: 0.7;
    margin-bottom: 8px;
    font-family: "Crimson Text", serif;
    letter-spacing: 0.1em;
}

.c-section-title .main {
    font-size: 2.8rem;
    font-weight: normal;
    color: #2a5d1f;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
}

.c-section-title .main::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2a5d1f, transparent);
}

.info-list {
    max-width: 900px;
    margin: 0 auto 80px;
    border-top: 1px solid rgba(42, 93, 31, 0.2);
    background-color: #fff;
    padding: 0 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-list dt {
    font-size: 1.15rem;
    color: #2a5d1f;
    font-weight: normal;
    padding: 30px 0;
    width: 220px;
    float: left;
    clear: left;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.05em;
}

.info-list dd {
    font-size: 1.15rem;
    padding: 30px 0 30px 240px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(42, 93, 31, 0.1);
    margin: 0;
    font-family: "Crimson Text", serif;
    letter-spacing: 0.05em;
    color: #333;
}

.map-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-title {
    font-size: 2rem;
    color: #2a5d1f;
    text-align: center;
    margin-bottom: 40px;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 20px;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2a5d1f, transparent);
}

.google-map {
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(42, 93, 31, 0.15);
    position: relative;
    transition: all 0.4s ease;
    height: 550px;
}

.google-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(42, 93, 31, 0.2);
}

.google-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a5d1f, #4a9d2e);
    z-index: 1;
}

.google-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
    transition: all 0.4s ease;
}

.google-map:hover iframe {
    filter: grayscale(0) contrast(1);
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 400px;
    }

    .about-hero__inner {
        padding: 0 20px;
    }

    .about-hero__title {
        font-size: 2.8rem;
    }

    .about-hero__subtitle {
        font-size: 1.2rem;
    }

    .about-hero__divider {
        width: 60px;
        margin: 20px auto;
    }

    .about-overview {
        padding: 80px 0;
    }

    .about-overview::before {
        height: 60px;
    }

    .about-overview .c-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .about-overview__title .main {
        font-size: 2.2rem;
    }

    .about-overview__title .sub {
        font-size: 1.1rem;
    }

    .about-overview__body p {
        font-size: 1rem;
        line-height: 2;
    }

    .about-info {
        padding: 80px 0;
    }

    .about-info::before {
        height: 60px;
    }

    .c-section-title {
        margin-bottom: 50px;
    }

    .c-section-title .sub {
        font-size: 1.1rem;
    }

    .c-section-title .main {
        font-size: 2.2rem;
    }

    .info-list {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .info-list dt {
        float: none;
        width: 100%;
        padding: 15px 0 5px;
        border-bottom: none;
        font-size: 1.1rem;
    }

    .info-list dd {
        padding: 5px 0 15px;
        font-size: 1rem;
    }

    .map-section {
        padding: 0 20px;
    }

    .map-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .google-map {
        height: 350px;
        border-radius: 10px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
