/* greeting */
.greeting-content {
    max-width: 1000px;
    flex-direction: column  ;
    gap: 40px;
    align-items: center;
}

.greeting-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.greeting-text {
    flex: 1;
    font-family: 'jalnangothic', sans-serif;
    font-size: 1.5vw;
    line-height: 1.8;
    color: #333;
}

.greeting-text strong {
    font-weight: normal;
    color: var(--color-primary);
}

.greeting-text .sign {
    display: block;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

@media screen and (max-width: 1024px) {
    .greeting-content {
        flex-direction: column;
    }

    .greeting-content {
        margin: 40px auto;
    }

    .greeting-image {
        max-width: 700px;
    }
    .greeting-text {
        font-size: 3.5vw;
    }
}

@media screen and(max-width:480px) {
    .greeting-text {
        font-size: 4vw;
    }
}


/* brand */
.brand-content {
    max-width: 1000px;
    text-align: center;
}

.brand-slogan {
    font-size: 3vw;
    font-family: 'jalnangothic', sans-serif;
    color: var(--color-primary);
}


.brand-logo {
    max-width: 200px;
    margin: 0 auto 20px;
}

.brand-content img {
    margin: 0 auto;
    max-width: 300px;
    object-fit: contain;
}

.brand-wrap,
.brand-img-wrap1,
.brand-img-wrap2,
.brand-img-wrap3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.brand-img-wrap1 {
    flex-direction: column;
    justify-content: space-between;
}

.brand-img-wrap1 img {
    width: 300px;
}

.brand-img-wrap2 img {
    width: 200px;
}

.brand-img-wrap3 img {
    width: 120px;
}

.brand-text-wrap {
    font-size: 1.5vw;
    line-height: 2.5;
}

.font-hightlight {
    color: var(--color-primary);
}

@media screen and (max-width: 1024px) {

    .brand-slogan {
        font-size: 5vw;
    }

    .brand-text-wrap {
        font-size: 2.5vw;
    }

    .brand-wrap {
        margin-top: 40px;
    }
    
    .brand-img-wrap2 img {
        width: 145px;
    }
    
}
@media screen and (max-width:820px) {
    .brand-wrap {
        flex-direction: column;
    }
}
@media screen and (max-width: 480px) {
    .brand-logo {
        margin-bottom: 0;
    }

    .brand-slogan {
        font-size: 7vw;
    }
    .brand-text-wrap {
        margin-top: 20px;
        font-size: 4vw;
        line-height: 2;
    }
}


/* location */
.location-content {
    align-items: unset;
    flex-direction: column;
    gap: 40px;
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.map-btn {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.map-btn a {
    display: block;
    padding: 10px 25px;
    border-radius: 6px;
    color: #fff;
    background: var(--color-primary);
}
.map-btn a span {
    margin-left: 5px;
}
.info-wrap {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.info-wrap h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .map-wrap iframe {
        height: 300px;
    }

    .info-wrap {
        font-size: 16px;
    }
}