/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');


body {
    background-color: #292929;
    color: #ffffff;
    font-family: 'Noto Serif JP', serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    padding: 10px 0;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

.btn {
    display: inline-block;
    background: #e6b422;
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #f0c94d;
}

h2 {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 40px;
    color: #e6b422; 
}


h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #e6b422;
    border-radius: 2px;
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btn {
    background: #e6b422;
    color: #000;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
}

.hero-bg {
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    0% {
        transform: translateX(-50%) scale(1);
    }
    100% {
        transform: translateX(-50%) scale(1.08);
    }
}


.academy-intro {
    padding: 70px 0;
    color: #fff;
}

.academy-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.academy-intro p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    font-weight: 400;
}

.coach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px; /* 上下・左右ともに32pxの余白に統一 */
    margin-top: 60px;
    margin-bottom: 60px;
}


.coach-card {
    background: #333;
    padding: 24px 16px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px; /* 上下の余白をしっかり確保 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid #444;
}

.coach-card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.coach-card .catch {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.coach-card .btn {
    margin-top: auto;
}
.coach-card .price {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f0d58c; 
}
.coach-description {
    font-size: 16px;
    line-height: 1.9;
    color: #fff; 
    margin-top: 10px;
    margin-bottom: 40px;
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea, select {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}
#contact p {
    margin: 1px 0;
}

.access-info {
    margin-bottom: 30px;
    color: #fff;
}

.access-photo {
    width: 100%;
    max-width: none;
    border-radius: 10px;
    margin-top: 15px;
    display: block;
}


.map-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: opacity 0.3s;
}

.map-image:hover {
    opacity: 0.85;
}

.site-footer {
    background: #1f1f1f;
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 1px solid #444;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-info h3 {
    font-size: 22px;
    color: #e6b422;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 15px;
    margin: 4px 0;
    line-height: 1.6;
}

.footer-copy {
    margin-top: 20px;
    font-size: 13px;
    color: #bbb;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .coach-card img {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 380px;
    }
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.4;
    }
    .hero-content p {
        font-size: 14px;
    }
    .academy-intro {
        padding: 40px 0;
    }

    .academy-intro h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .academy-intro p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }
    .coach-card {
        min-height: 380px;
        padding: 20px 14px;
    }
    .coach-card img {
        width: 90px;
        height: 90px;
    }
    .coach-card .catch {
        font-size: 13px;
    }
    .coach-card .price {
        font-size: 14px;
    }
    .coach-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    input, textarea, select {
        font-size: 15px;
        padding: 10px;
    }
    .site-footer {
        padding: 40px 0 25px;
        margin-top: 40px;
    }
    .map-image {
        border-radius: 8px;
    }
    .footer-info h3 {
        font-size: 18px;
    }

    .footer-info p {
        font-size: 13px;
    }

    .footer-copy {
        font-size: 12px;
    }
}
@media (max-width: 768px) and (min-width: 481px) {
    .academy-intro {
        padding: 50px 0;
    }

    .academy-intro h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .academy-intro p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 16px;
    }
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    .coach-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 35px;
    }
    .coach-card {
        min-height: 400px;
    }
    .map-image {
        border-radius: 9px;
    }
    .site-footer {
        padding: 45px 0 28px;
    }

    .footer-info h3 {
        font-size: 20px;
    }

    .footer-info p {
        font-size: 14px;
    }

    .footer-copy {
        font-size: 12px;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {

    .hero {
        height: 75vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 40px;
    }
    .academy-intro {
        padding: 60px 0;
    }

    .academy-intro h2 {
        font-size: 30px;
    }

    .academy-intro p {
        font-size: 16px;
        line-height: 1.85;
    }
    .coach-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }
    .coach-card {
        min-height: 420px;
    }
    .map-image {
        border-radius: 10px;
    }
    .site-footer {
        padding: 50px 0 30px;
    }

    .footer-info h3 {
        font-size: 21px;
    }

    .footer-info p {
        font-size: 15px;
    }
}
@media (max-width: 1366px) and (min-width: 1025px) {

    .hero {
        height: 80vh;
    }
    .academy-intro {
        padding: 65px 0;
    }

    .academy-intro h2 {
        font-size: 32px;
    }

    .academy-intro p {
        font-size: 17px;
        line-height: 1.9;
    }
    .coach-list {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
    .map-image {
        border-radius: 10px;
    }
    .site-footer {
        padding: 55px 0 32px;
    }
    .footer-info h3 {
        font-size: 22px;
    }

    .footer-info p {
        font-size: 15px;
    }
}
