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

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    base blocks
    ========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/*  html, body
--------------------------------------------- */
html,
body {
    color: #333;
    font-size: 14px;
    font-family: "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 1060px;
    background: none;
    line-height: 1.5;
}

@media screen and (max-width: 738px) {
    html,
    body {
        font-size: 2.1875vw;
    }
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/*  &lt;h2&gt; tag
--------------------------------------------- */
h2 {
    background: none;
}

/*  &lt;h2&gt; &lt;span&gt;
--------------------------------------------- */
h2 span {
    display: inline;
    padding: 0;
    background-color: inherit;
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
}

/*  &lt;h3&gt;
--------------------------------------------- */
h3 {
    color: inherit;
}

/*  &lt;a&gt; tag
--------------------------------------------- */
a,
a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

/*  &lt;table&gt; tag
--------------------------------------------- */
table th,
table td {
    padding: 0;
    border: none;
}

/*  &lt;img&gt; tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

/*  &lt;hr&gt; tag as anchor target
--------------------------------------------- */
hr[id^="anchor-"] {
    display: inline;
    margin-top: 0;
    padding-top: 0;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
}

@media screen and (max-width: 738px) {
    hr[id^="anchor-"] {
        display: block;
        margin-top: -50px;
        padding-top: 50px;
    }
}

/*  js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    outline: none;
    cursor: default;
}

.js-tel-disabled:hover {
    text-decoration: none;
    opacity: 1;
}

/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    width: 100%;
    background-color: #000;
}

@media screen and (max-width: 738px) {
    .header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 999;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        height: 50px;
        background-color: #000;
    }
}

/*  header-container
--------------------------------------------- */
.header-container {
    margin-right: auto;
    margin-left: auto;
    padding: 15px 0;
    width: 1040px;
}

.header-container:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 738px) {
    .header-container {
        padding: 10px;
        width: auto;
    }
}

/* ---------------------------------------------
*   header-inner
--------------------------------------------- */
.header-inner {
    float: left;
    width: 876px;
}

@media screen and (max-width: 738px) {
    .header-inner {
        width: auto;
    }
}

/*  header-upper
--------------------------------------------- */
.header-upper {
    display: table;
    margin-bottom: 22px;
}

@media screen and (max-width: 738px) {
    .header-upper {
        display: block;
        margin-bottom: 0;
    }
}

.header-upper .header-upper__text {
    display: table-cell;
    vertical-align: top;
}

.header-upper .header-upper__link {
    color: #fff;
    font-size: 0.85714rem;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-upper .header-upper__link:hover {
    opacity: 0.8;
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    margin-right: 425px;
    width: 362px;
}

@media screen and (max-width: 738px) {
    .header-logo {
        margin-right: 0;
        width: 250px;
    }
}

.header-logo__link {
    display: block;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-logo__link:hover {
    opacity: 0.8;
}

/* ---------------------------------------------
*   header-lower
--------------------------------------------- */
.header-lower__nav {
    display: block;
}

@media screen and (max-width: 738px) {
    .header-lower__nav {
        position: fixed;
        top: 50px;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        background-color: #333;
    }
}

@media screen and (min-width: 739px) {
    .header-lower__nav {
        display: block !important;
    }
}

.header-lower__list {
    font-size: 0;
}

.header-lower__list-item {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 34px;
    width: 193px;
    border: solid 1px #666;
    text-align: center;
}

@media screen and (max-width: 738px) {
    .header-lower__list-item {
        display: block;
        margin-right: 0;
        width: 100%;
        border-top: 1px solid #fff;
    }
}

.header-lower__list-item:last-child {
    margin-right: 0;
}

.header-lower .header-lower__link {
    display: block;
    padding: 18px 0;
    color: #fff;
    font-size: 1.14286rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-lower .header-lower__link:hover {
    opacity: 0.8;
}

.header-lower .header-lower__link:hover {
    opacity: 0.6;
}

.header-lower .header-lower__link--active {
    opacity: 0.6;
}

@media screen and (max-width: 738px) {
    .header-lower .header-lower__link {
        display: block;
        padding: 25px 0;
        color: #fff;
        text-align: center;
        font-size: 1.85714rem;
    }
}

/*  header-anniversary
--------------------------------------------- */
.header-anniversary {
    margin-top: 5px;
    text-align: right;
}

/*  header_menu_sp (使用しない場合は削除)
--------------------------------------------- */
.header_menu_sp {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    display: none;
    overflow: hidden;
    padding-top: 50px;
    width: 50px;
    height: 0;
    background-color: #c33;
    cursor: pointer;
}

@media screen and (max-width: 738px) {
    .header_menu_sp {
        display: block;
    }
}

/*  header_menu_trigger (使用しない場合は削除)
---------------------------------------- */
.header_menu_trigger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 101;
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    text-align: center;
}

.header_menu_trigger .item_line {
    position: absolute;
    top: 25px;
    left: 50%;
    display: inline-block;
    margin-left: -7.5px;
    width: 15px;
    border-bottom: 1px solid #fff;
    font-size: 0;
    line-height: 1;
    -webkit-animation: menu-center 0.5s forwards;
    animation: menu-center 0.5s forwards;
}

.header_menu_trigger .item_line:before,
.header_menu_trigger .item_line:after {
    position: absolute;
    left: 50%;
    display: inline-block;
    margin-left: -7.5px;
    width: 15px;
    border-top: 1px solid #fff;
    content: "";
}

.header_menu_trigger .item_line:before {
    top: -6px;
    -webkit-animation: menu-top 0.5s forwards;
    animation: menu-top 0.5s forwards;
}

.header_menu_trigger .item_line:after {
    top: 6px;
    -webkit-animation: menu-bottom 0.5s forwards;
    animation: menu-bottom 0.5s forwards;
}

.header_menu_trigger.skin_menu_open .item_line {
    -webkit-animation: menu-center--active 0.5s forwards;
    animation: menu-center--active 0.5s forwards;
}

.header_menu_trigger.skin_menu_open .item_line:before {
    -webkit-animation: menu-top--active 0.5s forwards;
    animation: menu-top--active 0.5s forwards;
}

.header_menu_trigger.skin_menu_open .item_line:after {
    -webkit-animation: menu-bottom--active 0.5s forwards;
    animation: menu-bottom--active 0.5s forwards;
}

@keyframes menu-top {
    100% {
        top: -6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@keyframes menu-center {
    100% {
        border-bottom: 1px solid #fff;
    }
    75% {
        border-bottom: 1px solid #fff;
    }
    0% {
        border: none;
    }
}

@keyframes menu-bottom {
    100% {
        top: 6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@-webkit-keyframes menu-top {
    100% {
        top: -6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(45deg);
    }
}

@-webkit-keyframes menu-center {
    100% {
        border-bottom: 1px solid #fff;
    }
    75% {
        border-bottom: 1px solid #fff;
    }
    0% {
        border: none;
    }
}

@-webkit-keyframes menu-bottom {
    100% {
        top: 6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(-45deg);
    }
}

@keyframes menu-top--active {
    0% {
        top: -6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@keyframes menu-center--active {
    0% {
        border-bottom: 1px solid #fff;
    }
    75% {
        border-bottom: 1px solid #fff;
    }
    100% {
        border: none;
    }
}

@keyframes menu-bottom--active {
    0% {
        top: 6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@-webkit-keyframes menu-top--active {
    0% {
        top: -6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(45deg);
    }
}

@-webkit-keyframes menu-center--active {
    0% {
        border-bottom: 1px solid #fff;
    }
    75% {
        border-bottom: 1px solid #fff;
    }
    100% {
        border: none;
    }
}

@-webkit-keyframes menu-bottom--active {
    0% {
        top: 6px;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 15px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 12px;
        -webkit-transform: rotate(-45deg);
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper--kokorozashi {
    background-color: #000;
}

@media screen and (max-width: 738px) {
    .wrapper--kokorozashi {
        padding-bottom: 10px;
    }
}

.wrapper--next {
    /*min-width: 1216px;*/
    background: url(/michinori/img/next/bg_next.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 738px) {
    .wrapper--next {
        margin-top: 50px;
        min-width: initial;
    }
}

.wrapper--index {
    overflow: hidden;
    background-color: #000;
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
.main {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 1040px;
}

@media screen and (max-width: 738px) {
    .main {
        margin-top: 50px;
        width: auto;
    }
}

.main--kokorozashi {
    width: auto;
}

@media screen and (max-width: 738px) {
    .main--kokorozashi {
        margin-bottom: 100px;
    }
}

.main--index {
    width: auto;
}

.main--sub {
    width: auto;
    border: solid 2px #aaa;
}

@media screen and (max-width: 738px) {
    .main--sub {
        margin-top: 0;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
    width: 100%;
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    padding: 34px 0 0;
    background-color: #ccc;
}

@media screen and (max-width: 738px) {
    .footer-container {
        padding: 30px 10px 10px 10px;
    }
}

/*  footer-inner
--------------------------------------------- */
.footer-inner {
    margin-right: auto;
    margin-left: auto;
    width: 1040px;
}

.footer-inner:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 738px) {
    .footer-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        width: auto;

        -webkit-box-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/*  footer-list
--------------------------------------------- */
.footer-list {
    float: left;
    margin-right: 10px;
    margin-bottom: 40px;
    width: 200px;
}

@media screen and (max-width: 738px) {
    .footer-list {
        margin-right: 0;
        margin-bottom: 0;
        width: 48%;
    }
}

.footer-list:nth-child(5) {
    margin-right: 0;
}

.footer-list__head {
    padding: 12px 0 10px;
    text-align: center;
}

@media screen and (max-width: 738px) {
    .footer-list__head {
        font-size: 1.42857rem;
    }
}

.footer-list__head--yellow {
    background-color: #ff9900;
}

.footer-list__head--blue {
    background-color: #3399cc;
}

.footer-list__head--brown {
    background-color: #996633;
}

.footer-list__head--green {
    background-color: #669933;
}

.footer-list__head--purple {
    background-color: #666699;
}

.footer-list__head-text {
    color: #fff;
}

.footer-list__box {
    margin-top: 20px;
}

.footer-list__item {
    margin-bottom: 10px;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.footer-list .footer-list__link {
    font-size: 0.85714rem;
    -webkit-transition: all .8s;
    transition: all .8s;
}

@media screen and (max-width: 738px) {
    .footer-list .footer-list__link {
        font-size: 1.21429rem;
    }
}

.footer-list .footer-list__link:after {
    display: inline-block;
    margin-left: 8px;
    width: 6px;
    height: 9px;
    background: url(/michinori/img/common/icon_arrow_off.png) 0 0 no-repeat;
    content: "";
}

.footer-list .footer-list__link--active {
    color: #999;
}

.footer-list .footer-list__link--active:after {
    display: inline-block;
    margin-left: 10px;
    width: 6px;
    height: 9px;
    background: url(/michinori/img/common/icon_arrow_on.png) 0 0 no-repeat;
    content: "";
}

@media screen and (max-width: 738px) {
    .footer-list .footer-list__link--active:after {
        margin-left: 8px;
    }
}

.footer-list .footer-list__link:hover {
    color: #999;
}

.footer-list .footer-list__link:hover:after {
    background: url(/michinori/img/common/icon_arrow_on.png) 0 0 no-repeat;
}

/*  footer-icon
--------------------------------------------- */
.footer-icon {
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 10px;
    width: 1040px;
    text-align: right;
}

@media screen and (max-width: 738px) {
    .footer-icon {
        margin-top: 150px;
        margin-right: 0;
        padding-bottom: 0;
        width: auto;
    }
}

.footer-icon .footer-icon__facebook {
    margin-right: 8px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-icon .footer-icon__facebook:hover {
    opacity: 0.8;
}

.footer-icon .footer-icon__twitter {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-icon .footer-icon__twitter:hover {
    opacity: 0.8;
}

@media screen and (max-width: 738px) {
    .footer-icon--deai {
        margin-top: 0;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 738px) {
    .footer-icon--next {
        margin-top: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 738px) {
    .footer-icon--kokorozashi {
        margin-top: 0;
        margin-right: 10px;
    }
}

@media screen and (max-width: 738px) {
    .footer-icon--index {
        margin-top: 0;
        margin-right: 10px;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    padding: 15px 0;
    background-color: #e5e5e5;
}

@media screen and (max-width: 738px) {
    .footer-copyright {
        padding: 10px 0;
    }
}

.footer-copyright__container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 1040px;
    /*text-align: right;*/
}

@media screen and (max-width: 738px) {
    .footer-copyright__container {
        padding: 0 10px;
        width: auto;
        text-align: center;
    }
}

.footer-copyright__text {
    /*font-size: 0.85714rem;*/
    font-size: 65%;
}

/*
@media screen and (max-width: 738px) {
    .footer-copyright__text {
        font-size: 1rem;
    }
}
*/

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