<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* すべてのページに適用される設定 */
html {
    font-size: 16px;
    font-family: sans-serif;
    background-color: antiquewhite;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 0 0 0;
}

p,
li,
td {
    line-height: 1.7;
}

a:link {
    color: #F07D34;
    text-decoration: none;
}

a:visited {
    color: #F07D34;
    text-decoration: none;
}

a:hover {
    color: #F07D34;
    text-decoration: underline;
}

a:active {
    color: #F07D34;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* すべてのページに適用-ヘッダー */
.nav ul {
    margin: 30px 0 0 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav a:link {
    color: #253958;
}

.nav a:visited {
    color: #253958;
}

.nav a:hover {
    text-decoration: none;
}

.nav a:active {
    text-decoration: none;
}

.top {
    margin: 0px auto 90px auto;
    max-width: 1000px;
}

.rogo {
    padding: 10px 10px 0px 10px;
}

header p {
    padding: 0 20px 0 20px;
}

header {
    border-top: 10px solid #ff8c00;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: auto;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.btn-flat-vertical-border {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.5em 1em;
    text-decoration: none;
    border-left: solid 4px #ff8c00;
    border-right: solid 4px #ff8c00;
    color: #ff8c00;
    background: #ffddb3;
    transition: .4s;
}

.btn-flat-vertical-border:hover {
    background: #ff8c00;
    color: #FFF;
}

/* すべてのページに適用-ヒーロー */
/* すべてのページに適用-メイン */
.items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    border-bottom: 5px solid #ff8c00;
}

.items2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    border-bottom: 5px solid #ff8c00;
}

main {
    margin: 90px auto 90px auto;
    max-width: 1000px;
}

h1 {
    position: relative;
    color: black;
    background: #ffddb3;
    line-height: 1.4;
    padding: 0.25em 0.5em;
    margin: 2em 0 0.5em;
    border-radius: 0 5px 5px 5px;
}

h1:after {
    /*タブ*/
    position: absolute;
    font-family: "Font Awesome 5 Free", 'Quicksand', 'Avenir', 'Arial', sans-serif;
    font-weight: 900;
    content: '\f00c Check';
    background: #ff8c00;
    color: #fff;
    left: 0px;
    bottom: 100%;
    border-radius: 5px 5px 0 0;
    padding: 3px 7px 1px;
    font-size: 0.7em;
    line-height: 1;
    letter-spacing: 0.05em
}

h2 {
    font-size: 18px;
}

blockquote {
    position: relative;
    padding: 10px 15px 10px 50px;
    box-sizing: border-box;
    font-style: italic;
    color: #464646;
    background: #c2e8ed;
    font-weight: bold;
}

blockquote:before {
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 0px;
    content: "“";
    font-family: sans-serif;
    color: #77c0c9;
    font-size: 70px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/* すべてのページに適用-フッター */
.gotop {
    text-align: center;
}

.copyright {
    margin-top: 20px;
    margin-bottom: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ff8c00;
    color: #ffffff;
    text-align: center;
}


/* 個別のスタイル */
/*モバイル対応*/
@media(max-width: 767px) {
    main {
        padding: 0 4%;
    }

    header {
        padding: 0 4%;
    }

}</pre></body></html>