<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-color: #201010;
    --highlight-color: #602010;
    --main-bg-color: white;
    --header-bg-color: #FFA040;
}

* {
    padding: 0px;
    margin: 0px;
}

body {
    background: #805020;
    max-width: 84em;
    min-width: 30em;
    margin: auto;
}


div.itemArea {
    background: var(--main-bg-color);
    padding: 12em 1em 2em;
    display: flex;
    flex-wrap: wrap;
    row-gap: 3em;
    column-gap: 2em;
    justify-content: center;
}

div.item {
    color: var(--main-color);
    width: 80%;
    max-width: 32em;
    min-width: 20em;
}

.item&gt;img {
    margin: 0 1em 0 0;
    width: 10em;
    float: left;
}

.item&gt;div {
    margin: 0 1em 0 0;
    overflow: hidden;
}

.item h2 {
    font-size: 1.2em;
    text-decoration: underline;
    margin-bottom: 0.5em;
}


@media screen and (min-width: 45em) {
    div.item {
        width: 40%;
    }
}

@media screen and (min-width: 84em) {
    div.item {
        width: 30%;
    }
}


div.header {
    color: var(--highlight-color);
    font-weight: bold;
    position: fixed;
    width: 100%;
    max-width: 84em;
}

div.headerInside {
    background: var(--header-bg-color);
    background-image: url(images/header_back.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 128px 128px;
    padding: 1.2em 8%;
}

div.headerMessage {
    color: var(--highlight-color);
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}

img.headerLogo {
    width: 70%;
    max-width: 20em;
    min-width: 16em;
    padding-top: 0.2em;
}

div.headerMessage2 {
    color: var(--highlight-color);
    background: var(--main-bg-color);
    display: none;
    padding-top: 6em;
    padding-left: 8%;
    font-weight: bold;
}



@media screen and (orientation: landscape) and (max-height: 20em) {
    div.headerInside {
        padding: 0.8em 8%;
    }

    div.headerMessage {
        display: none;
    }

    img.headerLogo {
        width: 40%;
        max-width: 16em;
        min-width: 12em;
    }

    div.headerMessage2 {
        display: block;
    }

    div.itemArea {
        padding-top: 3em;
    }
}

div.tel {
    background: var(--main-bg-color);
    font-weight: bold;
    padding: 2em 8%;
    display: flex;
    flex-wrap: wrap;
}

.tel&gt;div {
    color: var(--highlight-color);
    margin-right: 1em;
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.tel&gt;img {
    width: 70%;
    max-width: 20em;
}


div.footer {
    color: var(--highlight-color);
    background: var(--header-bg-color);
    padding: 2em 8%;
}

div.footerHead {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

div.footerItem {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
}


.footer dt {
    width: 2.5em;
    margin-right: 0.5em;
    float: left;
    clear: left;
}</pre></body></html>