@charset "utf-8";

.greeting-wrap .greeting-tit{
    display: block;
    font-size: 40px; word-break: keep-all;
    text-align: center;
    margin-bottom: 45px;
}

.greeting-wrap article {
    display: flex;
    column-gap: 25px;
}

.greeting-wrap article div:first-child {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.greeting-wrap article p {
    word-break: keep-all;
    font-size: 24px; line-height: 40px;
}
@media screen and (max-width: 820px) and (min-height: 481px) {
    .greeting-wrap strong{
        font-size: 25px; line-height: 32px;
    }
}

@media screen and (max-width: 480px) {
    .greeting-wrap .greeting-tit{
        font-size: 20px; line-height: 26px;
    }
}
@media screen and (max-width: 820px) {
    .greeting-wrap .greeting-tit{
        margin-bottom: 40px;
    }
    .greeting-wrap article {
        display: flex;
        flex-direction: column-reverse;
        column-gap: 0; row-gap: 40px;
        align-items: center;
    }
    .greeting-wrap article div:first-child {
        row-gap: 35px;
    }
    .greeting-wrap article p {
        font-size: 18px; line-height: 34px;
    }

    .greeting-wrap article figure{max-width: 330px; width: 100%}
    .greeting-wrap article figure img{width: 100%}
}