@charset "UTF-8";
/* ==========================================================
Name:
    base.css

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

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-size: 16px;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;

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

@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 2.60417vw;
    }
}

html {
    overflow: auto;
}

body {
    overflow-x: hidden;
    min-width: 1280px;
    background-color: #FDFDF3;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    min-width: 1280px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .header {
        min-width: 0;
    }
}

/*  header-container
--------------------------------------------- */
/*  header-fonts
--------------------------------------------- */
.header-fonts {
    padding: 5px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#E4E4E4), color-stop(95%, #dedede), to(#dedede));
    background: linear-gradient(to bottom, #E4E4E4 0%, #dedede 95%, #dedede 100%);
}

@media screen and (max-width: 750px) {
    .header-fonts {
        padding: 0.35rem 0;
    }
}

.header-fonts__text {
    margin-right: 7px;
    font-size: 0.875rem;
    line-height: 1.2;
}

@media screen and (max-width: 750px) {
    .header-fonts__text {
        margin-right: 0.75rem;
        font-size: 0.75rem;
        line-height: 1;
    }
}

.header-fonts__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.header-fonts__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-fonts__list-item:nth-of-type(n + 2) {
    margin-left: 8px;
}

@media screen and (max-width: 750px) {
    .header-fonts__list-item:nth-of-type(n + 2) {
        margin-left: 0.5rem;
    }
}

.header-fonts__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 2.3125rem;
    height: 1.25rem;
    border: 1px solid #707070;
    background-color: #fff;
    font-size: 0.875rem;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .header-fonts__button {
        width: 2.15rem;
        height: 1.2rem;
        border-width: 0.05rem;
        font-size: 0.75rem;
    }
}

.header-fonts__button.current, .header-fonts__button:hover {
    border-color: #707070;
    background-color: #B0E8FC;
}

.windows .header-fonts__button {
    padding-top: 2px;
}

/* -- header-fonts-inner -- */
.header-fonts-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 1260px;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 750px) {
    .header-fonts-inner {
        margin-right: 2.34375%;
        margin-left: 2.34375%;
        width: auto;
    }
}

/*  header-body
--------------------------------------------- */
.header-body {
    position: relative;
    padding-top: 14px;
    padding-bottom: 7px;
    background-color: #EFFAFE;
}

@media screen and (max-width: 750px) {
    .header-body {
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }
}

/* -- header-body-inner -- */
.header-body-inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 1260px;
}

@media screen and (max-width: 750px) {
    .header-body-inner {
        margin-right: 2.34375%;
        margin-left: 2.34375%;
        width: auto;
    }
}

@media screen and (max-width: 750px) {
    .header-body-inner {
        padding-right: 11.32812%;
    }
}

/*  header-menu
--------------------------------------------- */
.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-bottom: 23px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .header-menu {
        -ms-flex-align: center;
        margin-bottom: 0;

        -webkit-box-align: center;
        align-items: center;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo__link {
    position: relative;
    display: inline-block;
    padding-left: 72px;
    color: #404143;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .header-logo__link {
        padding-left: 3.1rem;
    }
}

.header-logo__link:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    background: url(/img/common/logo_header.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .header-logo__link:before {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.header-logo__link-caption {
    display: block;
    font-size: 22px;
}

@media screen and (max-width: 750px) {
    .header-logo__link-caption {
        font-size: 0.95rem;
    }
}

.header-logo__link-title {
    display: block;
    font-size: 30px;
}

@media screen and (max-width: 750px) {
    .header-logo__link-title {
        font-size: 1.3rem;
    }
}

/*  header-information
--------------------------------------------- */
.header-information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .header-information {
        display: block;
    }
}

@media screen and (max-width: 750px) {
    .header-information__add {
        margin-bottom: 0.2rem;
    }
}

.header-information__add-text {
    color: #404143;
    letter-spacing: .2em;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .header-information__add-text {
        margin-bottom: 0.13021vw;
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

.header-information__add-link {
    display: block;
    margin-top: 0.625rem;
    color: #404143;
    letter-spacing: .09em;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'ヒラギノ角ゴ Pro W6', 'HiraKakuPro-W6', "meiryo", sans-serif;
}

@media screen and (max-width: 750px) {
    .header-information__add-link {
        margin-top: 0;
        text-align: right;
        font-size: 1.05rem;
        line-height: 1.3;
    }
}

.header-information__admin {
    margin-left: 17px;
}

@media screen and (max-width: 750px) {
    .header-information__admin {
        margin-left: 0;
    }
}

.header-information__admin-link {
    display: block;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
    width: 140px;
    height: 0;
    background: url(/img/common/logo_keihan.svg) 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

@media screen and (max-width: 750px) {
    .header-information__admin-link {
        margin-right: 1.04167vw;
        padding-top: 2rem;
        width: 7rem;
    }
}

.header-information__admin-link:hover {
    opacity: .75;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

/*  header-nav
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        overflow-y: scroll;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 11.71875vw;
        padding-bottom: 11.71875vw;
        width: 100%;
        height: 100vh;
        background-color: #EFFAFE;
        -webkit-transform: translateX(-100vw);
        transform: translateX(-100vw);
    }
}

@media screen and (max-width: 750px) {
    .header-nav.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.header-nav.click {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .header-nav__list {
        display: block;
    }
}

.header-nav__list-item {
    position: relative;
    width: calc(100% / 6);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item {
        width: 100%;
    }
}

.header-nav__list-item:before {
    position: absolute;
    top: 0;
    left: 50%;
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item:before {
        top: 50%;
        left: 25.39062vw;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

.header-nav__list-item--1:before {
    width: 2.1875rem;
    height: 2.375rem;
    background-image: url(/img/common/icon_building_blue.svg);
}

.windows .header-nav__list-item--1:before {
    background-image: url(/img/common/icon_building_blue.png);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--1:before {
        width: 6.25vw;
        height: 6.64062vw;
        background-image: url(/img/sp/common/icon_building_nav.png);
    }
}

.header-nav__list-item--1:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 100%;
    background: url(/img/common/icon_dot_blue.png) 0 10px repeat-y;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--1:after {
        display: none;
    }
}

@media screen and (min-width: 751px) {
    .header-nav__list-item--1 .header-nav__link.current .header-nav__link-text, .header-nav__list-item--1 .header-nav__link:hover .header-nav__link-text {
        background-color: #03AEFE;
    }
}

.header-nav__list-item--2:before {
    width: 2.25rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_calendar_yellow.svg);
}

.windows .header-nav__list-item--2:before {
    background-image: url(/img/common/icon_calendar_yellow.png);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--2:before {
        width: 6.38021vw;
        height: 6.51042vw;
        background-image: url(/img/sp/common/icon_calendar_nav.png);
    }
}

@media screen and (min-width: 751px) {
    .header-nav__list-item--2 .header-nav__link.current .header-nav__link-text, .header-nav__list-item--2 .header-nav__link:hover .header-nav__link-text {
        background-color: #DDAC53;
    }
}

.header-nav__list-item--3:before {
    width: 2.125rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_wallet_green.svg);
}

.windows .header-nav__list-item--3:before {
    background-image: url(/img/common/icon_wallet_green.png);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--3:before {
        width: 6.11979vw;
        height: 6.64062vw;
        background-image: url(/img/sp/common/icon_wallet_nav.png);
    }
}

@media screen and (min-width: 751px) {
    .header-nav__list-item--3 .header-nav__link.current .header-nav__link-text, .header-nav__list-item--3 .header-nav__link:hover .header-nav__link-text {
        background-color: #81AA3F;
    }
}

.header-nav__list-item--4:before {
    width: 2.625rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_memo_pink.svg);
}

.windows .header-nav__list-item--4:before {
    background-image: url(/img/common/icon_memo_pink.png);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--4:before {
        width: 7.42188vw;
        height: 6.64062vw;
        background-image: url(/img/sp/common/icon_memo_nav.png);
    }
}

@media screen and (min-width: 751px) {
    .header-nav__list-item--4 .header-nav__link.current .header-nav__link-text, .header-nav__list-item--4 .header-nav__link:hover .header-nav__link-text {
        background-color: #F18DF1;
    }
}

.header-nav__list-item--5:before {
    width: 2.25rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_map_blue.svg);
}

.windows .header-nav__list-item--5:before {
    background-image: url(/img/common/icon_map_blue.png);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--5:before {
        width: 6.38021vw;
        height: 6.64062vw;
        background-image: url(/img/sp/common/icon_map_nav.png);
    }
}

@media screen and (min-width: 751px) {
    .header-nav__list-item--5 .header-nav__link.current .header-nav__link-text, .header-nav__list-item--5 .header-nav__link:hover .header-nav__link-text {
        background-color: #5FD1FE;
    }
}

.header-nav__list-item--6:before {
    width: 2.5rem;
    height: 1.9375rem;
    background-image: url(/img/common/icon_mail_red.svg);
}

.windows .header-nav__list-item--6:before {
    background-image: url(/img/common/icon_mail_red.png);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--6:before {
        width: 7.03125vw;
        height: 5.59896vw;
        background-image: url(/img/sp/common/icon_mail_nav.png);
    }
}

@media screen and (min-width: 751px) {
    .header-nav__list-item--6 .header-nav__link.current .header-nav__link-text, .header-nav__list-item--6 .header-nav__link:hover .header-nav__link-text {
        background-color: #FA6D6B;
    }
}

.header-nav__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    padding-top: 2.9375rem;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;

    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .header-nav__link {
        -ms-flex-pack: start;
        padding: 6.51042vw 0 6.51042vw 44.27083vw;

        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.header-nav__link:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.25rem;
    height: 100%;
    background: url(/img/common/icon_dot_blue.png) 0 10px repeat-y;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .header-nav__link:after {
        display: none;
    }
}

@media screen and (min-width: 751px) {
    .header-nav__link.current .header-nav__link-text, .header-nav__link:hover .header-nav__link-text {
        color: #fff;
    }
}

.header-nav__link-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 6.4375rem;
    height: 2.0625rem;
    border-radius: 1rem;
    color: #404143;
    white-space: nowrap;
    font-weight: bold;
    font-size: 1.125rem;
    font-family: 'ヒラギノ角ゴ Pro W6', 'HiraKakuPro-W6', "meiryo", sans-serif;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .header-nav__link-text {
        width: auto;
        height: auto;
        color: #000;
        font-size: 2rem;
    }
}

.windows .header-nav__link-text {
    padding-top: 2px;
}

@media screen and (max-width: 750px) {
    .header-nav__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        margin-top: 18.22917vw;
        margin-bottom: 13.02083vw;

        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__menu-item:nth-of-type(n + 2) {
        margin-left: 6.51042vw;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__menu-link-text {
        font-weight: bold;
        font-size: 1.5rem;
        font-family: 'ヒラギノ角ゴ Pro W6', 'HiraKakuPro-W6', "meiryo", sans-serif;
    }
}

/*  header-sp-trigger
--------------------------------------------- */
.header-sp-trigger,
.header-sp-trigger span {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.header-sp-trigger {
    position: absolute;
    top: 50%;
    right: 0.85rem;
    width: 3.3rem;
    height: 3.3rem;
    border: 1px solid #599ED4;
    border-radius: 0.25rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 751px) {
    .header-sp-trigger {
        display: none;
    }
}

.header-sp-trigger span {
    position: absolute;
    left: 50%;
    width: 2rem;
    height: 0.4rem;
    background-color: #599ED4;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header-sp-trigger span:nth-of-type(1) {
    top: 0.7rem;
}

.header-sp-trigger span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header-sp-trigger span:nth-of-type(3) {
    bottom: 0.7rem;
}

.header-sp-trigger.active span:nth-of-type(1) {
    top: 0.4rem;
    -webkit-transform: translateY(1rem) translateX(-50%) rotate(-45deg);
    transform: translateY(1rem) translateX(-50%) rotate(-45deg);
}

.header-sp-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
}

.header-sp-trigger.active span:nth-of-type(3) {
    bottom: 0.4rem;
    -webkit-transform: translateY(-1rem) translateX(-50%) rotate(45deg);
    transform: translateY(-1rem) translateX(-50%) rotate(45deg);
}

@-webkit-keyframes active-menu-bar02 {
    100% {
        height: 0;
    }
}

@keyframes active-menu-bar02 {
    100% {
        height: 0;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   main
--------------------------------------------- */
/*  main-contents
--------------------------------------------- */
.main-contents {
    padding-top: 2.6875rem;
}

@media screen and (max-width: 750px) {
    .main-contents {
        padding-top: 0.9rem;
    }
}

.main-contents:last-child {
    padding-bottom: 2.8125rem;
}

@media screen and (max-width: 750px) {
    .main-contents:last-child {
        padding-bottom: 0.9rem;
    }
}

.main-contents--top-no-space {
    padding-top: 0;
}

/* -- main-contents-inner -- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 45px;
    height: 818px;
    background-image: url(/img/common/img_footer.png);
    background-position: 50% 0;
    background-repeat: no-repeat;
    color: #fff;
}

@media screen and (max-width: 750px) {
    .footer {
        padding-top: 5.20833vw;
        padding-bottom: 3.25521vw;
        height: 75vw;
        background-image: url(/img/sp/common/img_footer.png);
        background-size: 100% auto;
    }
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop__link {
    position: absolute;
    right: 38px;
    bottom: 210px;
    z-index: 1;
    display: block;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    padding-top: 65px;
    width: 65px;
    height: 0;
    background-image: url(/img/common/icon_pagetop.svg);
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
}

@media screen and (max-width: 750px) {
    .footer-pagetop__link {
        right: 0.9rem;
        bottom: 3.5rem;
        padding-top: 2.75rem;
        width: 2.75rem;
    }
}

.footer-pagetop__link:hover {
    background-image: url(/img/common/icon_pagetop_hover.svg);
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 1260px;
    height: 100%;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 750px) {
    .footer-container {
        margin-right: 2.34375%;
        margin-left: 2.34375%;
        width: auto;
    }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .footer-logo {
        margin-bottom: 0.75rem;
    }
}

.footer-logo__link {
    position: relative;
    display: inline-block;
    padding-left: 72px;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .footer-logo__link {
        padding-left: 3rem;
    }
}

.footer-logo__link:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    background: url(/img/common/logo_footer_white.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .footer-logo__link:before {
        width: 2.25rem;
        height: 2.25rem;
    }
}

.footer-logo__link-caption {
    display: block;
    font-size: 22px;
}

@media screen and (max-width: 750px) {
    .footer-logo__link-caption {
        font-size: 0.9rem;
    }
}

.footer-logo__link-title {
    display: block;
    font-size: 30px;
}

@media screen and (max-width: 750px) {
    .footer-logo__link-title {
        font-size: 1.25rem;
    }
}

/*  footer-menu
--------------------------------------------- */
.footer-menu__list-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 53px;
}

@media screen and (max-width: 750px) {
    .footer-menu__list-item {
        padding-left: 2.25rem;
    }
}

.footer-menu__list-item:nth-of-type(n + 2) {
    margin-top: 14px;
}

@media screen and (max-width: 750px) {
    .footer-menu__list-item:nth-of-type(n + 2) {
        margin-top: 0.7rem;
    }
}

.footer-menu__list-item:before {
    position: absolute;
    top: 50%;
    left: 10px;
    background-position: 0 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .footer-menu__list-item:before {
        left: 0.4rem;
    }
}

.footer-menu__list-item--1:before {
    width: 34px;
    height: 27px;
    background-image: url(/img/common/icon_tel_white.svg);
}

@media screen and (max-width: 750px) {
    .footer-menu__list-item--1:before {
        width: 1.4rem;
        height: 1.1rem;
    }
}

.footer-menu__list-item--2:before {
    width: 32px;
    height: 33px;
    background-image: url(/img/common/icon_map_white.svg);
}

@media screen and (max-width: 750px) {
    .footer-menu__list-item--2:before {
        width: 1.35rem;
        height: 1.4rem;
    }
}

.footer-menu__list-item--3:before {
    width: 32px;
    height: 32px;
    background-image: url(/img/common/icon_time_white.svg);
}

@media screen and (max-width: 750px) {
    .footer-menu__list-item--3:before {
        width: 1.35rem;
        height: 1.35rem;
    }
}

.footer-menu__list-item--4:before {
    width: 30px;
    height: 33px;
    background-image: url(/img/common/icon_schedule_white.svg);
}

@media screen and (max-width: 750px) {
    .footer-menu__list-item--4:before {
        width: 1.2rem;
        height: 1.35rem;
    }
}

.footer-menu__text {
    font-size: 1.1875rem;
}

@media screen and (max-width: 750px) {
    .footer-menu__text {
        font-size: 0.75rem;
    }
}

.footer-menu__text--space {
    margin-left: 1em;
}

/*  footer-sns
--------------------------------------------- */
.footer-sns {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
}

.footer-sns__link {
    display: block;
}

@media screen and (max-width: 750px) {
    .footer-sns__link {
        width: 2.15rem;
        height: 2.15rem;
    }
}

/*  footer-body
--------------------------------------------- */
.footer-body {
    position: relative;
    margin-top: auto;
}

@media screen and (max-width: 750px) {
    .footer-body {
        padding-right: 3.5rem;
    }
    .Large .footer-body {
        padding-right: 0;
    }
}

/* -- footer-body-inner -- */
.footer-body-inner--line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: end;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 750px) {
    .footer-body-inner--line {
        -ms-flex-pack: justify;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 360px) {
    .footer-body-inner--line {
        display: block;
    }
}

/*  footer-head-line
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .footer-head-line {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        -ms-flex-align: center;

        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .Large .footer-head-line {
        padding-right: 3.5rem;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

.footer-nav__list-item {
    position: relative;
    width: calc(100% / 6);
}

.footer-nav__list-item:before {
    position: absolute;
    top: 0;
    left: 50%;
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.footer-nav__list-item--1:before {
    width: 2.1875rem;
    height: 2.375rem;
    background-image: url(/img/common/icon_building_white.svg);
}

.windows .footer-nav__list-item--1:before {
    background-image: url(/img/common/icon_building_white.png);
}

.footer-nav__list-item--1:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 100%;
    background: url(/img/common/icon_dot_white.png) 0 10px repeat-y;
    background-size: 100% auto;
    content: "";
}

.footer-nav__list-item--2:before {
    width: 2.25rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_calendar_white.svg);
}

.windows .footer-nav__list-item--2:before {
    background-image: url(/img/common/icon_calendar_white.png);
}

.footer-nav__list-item--3:before {
    width: 2.125rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_wallet_white.svg);
}

.windows .footer-nav__list-item--3:before {
    background-image: url(/img/common/icon_wallet_white.png);
}

.footer-nav__list-item--4:before {
    width: 2.625rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_memo_white.svg);
}

.windows .footer-nav__list-item--4:before {
    background-image: url(/img/common/icon_memo_white.png);
}

.footer-nav__list-item--5:before {
    width: 2.25rem;
    height: 2.3125rem;
    background-image: url(/img/common/icon_map_white.svg);
}

.windows .footer-nav__list-item--5:before {
    background-image: url(/img/common/icon_map_white.png);
}

.footer-nav__list-item--6:before {
    width: 2.5rem;
    height: 1.9375rem;
    background-image: url(/img/common/icon_mail_white.svg);
}

.windows .footer-nav__list-item--6:before {
    background-image: url(/img/common/icon_mail_white.png);
}

.footer-nav__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    padding-top: 2.9375rem;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;

    -webkit-box-pack: center;
    justify-content: center;
}

.footer-nav__link:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.25rem;
    height: 100%;
    background: url(/img/common/icon_dot_white.png) 0 10px repeat-y;
    background-size: 100% auto;
    content: "";
}

.footer-nav__link.current .footer-nav__link-text, .footer-nav__link:hover .footer-nav__link-text {
    background-color: #fff;
    color: #81AA3F;
}

.footer-nav__link-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 6.4375rem;
    height: 2.0625rem;
    border-radius: 1rem;
    white-space: nowrap;
    font-weight: bold;
    font-size: 1.125rem;
    font-family: 'ヒラギノ角ゴ Pro W6', 'HiraKakuPro-W6', "meiryo", sans-serif;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

/*  footer-admin
--------------------------------------------- */
.footer-admin {
    position: absolute;
    top: 96px;
    right: 0;
}

@media screen and (max-width: 750px) {
    .footer-admin {
        position: static;
    }
}

.Large .footer-admin {
    top: 148px;
}

.footer-admin__link {
    display: block;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
    width: 140px;
    height: 0;
    background: url(/img/common/logo_keihan.svg) 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

@media screen and (max-width: 750px) {
    .footer-admin__link {
        padding-top: 2rem;
        width: 7rem;
    }
}

.footer-admin__link:hover {
    opacity: .75;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    margin-right: 35px;
    white-space: nowrap;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        margin-right: 0;
    }
}

@media screen and (max-width: 360px) {
    .footer-copyright {
        margin-top: 0.65104vw;
    }
}

.footer-copyright__text {
    display: block;
}

@media screen and (max-width: 750px) {
    .footer-copyright__text {
        letter-spacing: .02em;
        font-size: 0.65rem;
    }
}

/*  footer-sub-nav
--------------------------------------------- */
.footer-sub-nav {
    margin-right: 20px;
}

@media screen and (max-width: 750px) {
    .footer-sub-nav {
        margin-right: 0;
    }
}

.footer-sub-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.footer-sub-nav__list-item:nth-of-type(n + 2) {
    margin-left: 35px;
}

@media screen and (max-width: 750px) {
    .footer-sub-nav__list-item:nth-of-type(n + 2) {
        margin-left: 3.38542vw;
    }
}

.footer-sub-nav__link {
    letter-spacing: .02em;
    font-weight: bold;
    font-size: 1.125rem;
    font-family: 'ヒラギノ角ゴ Pro W6', 'HiraKakuPro-W6', "meiryo", sans-serif;
}

@media screen and (max-width: 750px) {
    .footer-sub-nav__link {
        font-size: 0.75rem;
    }
}

.footer-sub-nav__link:hover {
    text-decoration: underline;
}

/*  footer-caption
--------------------------------------------- */
.footer-caption {
    white-space: nowrap;
    font-size: 0.75rem;
}

@media screen and (max-width: 750px) {
    .footer-caption {
        font-size: 0.5rem;
    }
}
