* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    letter-spacing: .1em;
}
.font_1 {
    background-color: #ff0;
    padding: 10px 0px;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.textcenter {
    text-align: center;
}

/* margin */

.mb1em {
    margin-bottom: 1em;
}

/* color */

.green {
    color: #278404;
}

p {
    font-size: 100%;
    line-height: 250%;
}

a {
    text-decoration: none;
    color: #000;
}

i {
    font-size: 300%;
}

.body {
    overflow-y: scroll;
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70vh;
    min-height: 600px;
    width: 100%;
    padding: 10% 1em;
}

.flex_item {
    display: block;
    flex: 1;
}

.flex_item:first-of-type {
    text-align: end;
}

.flex_item:last-of-type {
    text-align: start;
}

.flex.icon {
    flex-direction: row;
    gap: 1em;
}

.logo {
    max-width: 340px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.map {
    width: 100%;
    height: 30vh;
    object-fit: cover;
}

.map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 680px) {
    .flex {
        flex-direction: column;
        gap: 0;
    }

    p {
        line-height: 200%;
    }
}
