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

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

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   font-face
--------------------------------------------- */
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium"), local("YuGothic-Medium");
}

@font-face {
    font-weight: bold;
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold"), local("YuGothic-Bold");
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #482426;
    font-size: 14px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;

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

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

body {
    min-width: 1220px;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
        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;
}

/* ---------------------------------------------
*   <hr> tag
--------------------------------------------- */
hr {
    margin: 0;
    border: none;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 65px;
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
}

@media screen and (max-width: 767px) {
    .header {
        height: 60px;
    }
}

.js-scroll .header {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}

.mfp-zoom-out-cur .header {
    display: none;
}

/*  header-container
--------------------------------------------- */
.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 50px;
    min-width: 1220px;
    height: 100%;

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

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

/*  header-logo
--------------------------------------------- */
.header-logo {
    width: 174px;
    margin-right: 5px;
    margin-top: 12px;
}

@media screen and (max-width: 767px) {
    .header-logo {
        width: 174px;
        margin-right: 5px;
        margin-top: 12px;
    }
}

.header-logo__link {
    display: block;
    overflow: hidden;
    padding-top: 33px;
    height: 0;
    background: url(https://www.bellevie-group.jp/common/test_hall/img/logo_header.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (min-width: 768px) {
    .header-logo__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-logo__link:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 767px) {
    .header-logo__link {
        padding-top: 25px;
    }
}

/*  header-main
--------------------------------------------- */
.header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .header-main {
        display: none;
    }
}

/*  header-tel
--------------------------------------------- */
.header-tel {
    margin-right: 37px;
    padding-top: 13px;
}

.header-tel__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;

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

.header-tel__item {
    margin-right: 45px;
    text-align: center;
}

.header-tel__item:last-of-type {
    margin-right: 0;
}

.header-tel__txt {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85714rem;
    font-family: "Times New Roman", serif;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .ie11 .header-tel__txt {
        margin-bottom: 10px;
    }
}

.header-tel__number {
    letter-spacing: 1px;
    font-size: 1.85714rem;
    line-height: 1;
}

/*  header-nav-btn
--------------------------------------------- */
.header-nav-btn {
    height: 65px;
}

.header-nav-btn__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    height: 100%;

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

.header-nav-btn__item {
    margin-right: 1px;
    width: 65px;
    text-align: center;
}

.header-nav-btn__item:last-of-type {
    margin-right: 0;
}

.header-nav-btn__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    -ms-flex-pack: justify;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 44px;
    height: 100%;
    background-color: #F26968;
    background-repeat: no-repeat;

    -webkit-box-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (min-width: 768px) {
    .ie11 .header-nav-btn__link {
        padding-top: 47px;
    }
}

.header-nav-btn__item--access .header-nav-btn__link {
    background-color: #E7D7D4;
    background-image: url(../img/common/icon_access.svg);
    background-position: 50% 9px;
    background-size: 26px auto;
}

.header-nav-btn__item--doc .header-nav-btn__link {
    background-image: url(../img/common/icon_book.svg);
    background-position: 50% 14px;
    background-size: 25px auto;
}

.header-nav-btn__item--consultation .header-nav-btn__link {
    padding-top: 38px;
    background-image: url(../img/common/icon_consultation.svg);
    background-position: 50% 11px;
    background-size: 21px auto;
}

@media screen and (min-width: 768px) {
    .ie11 .header-nav-btn__item--consultation .header-nav-btn__link {
        padding-top: 41px;
    }
}

.header-nav-btn__item--visit .header-nav-btn__link {
    background-image: url(https://www.bellevie-group.jp/common/img/common/icon_visit.svg);
    background-position: 50% 10px;
    background-size: 25px auto;
}

@media screen and (min-width: 768px) {
    .header-nav-btn__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-nav-btn__link:hover {
        opacity: 0.8;
    }
}

.header-nav-btn__txt {
    display: block;
    color: #fff;
    letter-spacing: -1px;
    font-size: 0.71429rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    line-height: 1.2;
}

/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
    position: relative;
    display: block;
    margin: 0;
    padding-top: 8px;
    width: 65px;
    height: 100%;
    outline: none;
    border: 0;
    border-radius: 0;
    background: none;
    background-color: #EABCAC;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (min-width: 768px) {
    .header-menu-button {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-menu-button:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 767px) {
    .header-menu-button {
        padding-top: 8px;
        width: 60px;
    }
    .header-menu .header-menu-button {
        position: absolute;
        top: 0;
        right: 2.66667%;
        height: 77px;
    }
}

.header-menu-button::after {
    display: block;
    margin-top: 7px;
    color: #482426;
    content: "MENU";
    font-size: 0.85714rem;
    font-family: "Times New Roman", serif;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 767px) {
    .header-menu-button::after {
        margin-top: 4px;
        font-size: 12px;
    }
}

.header-menu-button__lines {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 35px;
    height: 23px;
}

@media screen and (max-width: 767px) {
    .header-menu-button__lines {
        width: 30px;
        height: 20px;
    }
}

.header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    padding-top: 2px;
    width: 100%;
    height: 0;
    background-color: #482426;
}

.js-menu-opened .header-menu-button__line {
    left: 2px;
    width: 85%;
}

.header-menu-button__line--top, .header-menu-button__line--center, .header-menu-button__line--bottom {
    -webkit-transition: .25s;
    transition: .25s;
}

.header-menu-button__line--top {
    top: 0;
}

.header-menu-button__line--center {
    top: 50%;
    margin-top: -1px;
}

.header-menu-button__line--bottom {
    bottom: 0;
}

.js-menu-opened .header-menu-button__line--top {
    top: calc(50% - 2px);
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.js-menu-opened .header-menu-button__line--center {
    background-color: rgba(0, 0, 0, 0);
}

.js-menu-opened .header-menu-button__line--bottom {
    bottom: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

/*  header-menu-button-sp
--------------------------------------------- */
.header-menu-button-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .header-menu-button-sp {
        position: absolute;
        top: 0;
        right: 4%;
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
        margin-top: 20px;
        width: 60px;
        outline: none;
        border: 0;
        border-radius: 0;
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: 0;
        cursor: pointer;
        -webkit-transition: opacity .2s;
        transition: opacity .2s;

        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .js-menu-opened .header-menu-button-sp {
        opacity: 1;
    }
}

.header-menu-button-sp::after {
    display: block;
    margin-top: 2px;
    color: #482426;
    content: "MENU";
    font-size: 12px;
    font-family: "Times New Roman", serif;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.header-menu-button-sp__lines {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 35px;
    height: 23px;
}

@media screen and (max-width: 767px) {
    .header-menu-button-sp__lines {
        width: 30px;
        height: 30px;
    }
}

.header-menu-button-sp__line {
    position: absolute;
    left: 0;
    display: block;
    padding-top: 2px;
    width: 100%;
    height: 0;
    background-color: #482426;
}

.header-menu-button-sp__line--top, .header-menu-button-sp__line--center, .header-menu-button-sp__line--bottom {
    -webkit-transition: .25s;
    transition: .25s;
}

.header-menu-button-sp__line--top {
    top: calc(50% - 2px);
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.header-menu-button-sp__line--center {
    top: 50%;
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0);
}

.header-menu-button-sp__line--bottom {
    bottom: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

/*  header-menu
--------------------------------------------- */
.header-menu {
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 1001;
    display: none;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 65px 20px 50px;
    min-width: 1220px;
    width: 100%;
    background: #EBEBEB url(../img/common/bg_header-menu.png) 100% 50% no-repeat;
    background-size: 179px 445px;
}

@media screen and (max-width: 767px) {
    .header-menu {
        top: 0;
        padding: 0;
        min-width: initial;
        min-width: auto;
        height: 100%;
        background-image: none;
    }
}

.header-menu__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

@media screen and (max-width: 767px) {
    .header-menu__inner {
        padding: 77px 6.66667% 0;
        background: url(../img/common/bg_header-menu_sp.png) 0 100% no-repeat;
        background-size: 100% 56.8vw;
    }
}

.header-menu__lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;

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

/*  header-menu-tel
--------------------------------------------- */
.header-menu-tel {
    margin-right: 4%;
    margin-left: 1%;
    padding-top: 6px;
}

@media screen and (max-width: 1380px) {
    .header-menu-tel {
        margin-right: 5.30303%;
    }
}

@media screen and (max-width: 767px) {
    .header-menu-tel {
        -ms-flex-order: 4;
        margin-right: 0;
        margin-bottom: 8vw;
        padding-top: 0;
        width: 100%;

        -webkit-box-ordinal-group: 5;
        order: 4;
    }
}

.header-menu-tel__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;

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

@media screen and (max-width: 767px) {
    .header-menu-tel__list {
        display: block;
    }
}

.header-menu-tel__item {
    margin-right: 35px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .header-menu-tel__item {
        margin-right: 0;
        margin-bottom: 4vw;
    }
}

.header-menu-tel__item:last-of-type {
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    .header-menu-tel__item:last-of-type {
        margin-bottom: 0;
    }
}

.header-menu-tel__txt {
    display: block;
    margin-bottom: 2px;
    letter-spacing: -.2px;
    font-size: 0.78571rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

@media screen and (max-width: 767px) {
    .header-menu-tel__txt {
        margin-bottom: 1.33333vw;
        letter-spacing: -.3vw;
        font-size: 3.73333vw;
    }
}

.header-menu-tel__number {
    display: inline-block;
    letter-spacing: 1px;
    font-size: 2rem;
    font-family: "Times New Roman", serif;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .header-menu-tel__number {
        letter-spacing: .1vw;
        font-size: 8.53333vw;
    }
}

/*  header-menu-contact
--------------------------------------------- */
.header-menu-contact {
    margin-right: 3%;
    width: 32%;
}

@media screen and (max-width: 767px) {
    .header-menu-contact {
        -ms-flex-order: 1;
        margin-right: 0;
        margin-bottom: 2.93333vw;
        width: 100%;

        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

.header-menu-contact__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;

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

@media screen and (max-width: 767px) {
    .header-menu-contact__list {
        -ms-flex-pack: justify;

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

.header-menu-contact__item {
    margin-right: 1.8%;
    width: 32%;
}

@media screen and (max-width: 767px) {
    .header-menu-contact__item {
        margin-right: 0;
        width: 49.23077%;
        margin-top: 1.6vw;
    }
}

.header-menu-contact__item:last-of-type {
    margin-right: 0;
}

.header-menu-contact__item--visit {
    background: url(https://www.bellevie-group.jp/common/img/common/icon_visit.svg) 50% 10px no-repeat;
    background-size: 24px 25px;
}

@media screen and (max-width: 767px) {
    .header-menu-contact__item--doc {
        width: 100%;
    }
}

.header-menu-contact__link {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 35px;
    height: 60px;
    background-color: #F26968;
    background-repeat: no-repeat;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .header-menu-contact__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-menu-contact__link:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 767px) {
    .header-menu-contact__link {
        padding-top: 11.73333vw;
        height: 18.66667vw;
    }
}

.header-menu-contact__item--visit .header-menu-contact__link {
    background-image: url(https://www.bellevie-group.jp/common/img/common/icon_visit.svg);
    background-position: 50% 8px;
    background-size: 24px 25px;
}

@media screen and (max-width: 767px) {
    .header-menu-contact__item--visit .header-menu-contact__link {
        background-position: 50% 2.4vw;
        background-size: 8.53333vw 8.53333vw;
    }
}

.header-menu-contact__item--consultation .header-menu-contact__link {
    background-image: url(../img/common/icon_consultation.svg);
    background-position: 50% 9px;
    background-size: 22px 22px;
}

@media screen and (max-width: 767px) {
    .header-menu-contact__item--consultation .header-menu-contact__link {
        background-position: 50% 2.4vw;
        background-size: 8.16vw 8.16vw;
    }
}

.header-menu-contact__item--doc .header-menu-contact__link {
    background-image: url(../img/common/icon_book.svg);
    background-position: 50% 8px;
    background-size: 31px 22px;
}

@media screen and (max-width: 767px) {
    .header-menu-contact__item--doc .header-menu-contact__link {
        background-position: 50% 2.4vw;
        background-size: 10.32vw 7.41333vw;
    }
}

.header-menu-contact__item--blog .header-menu-contact__link {
    background-image: url(../img/common/icon_blog.svg);
    background-position: 50% 8px;
    background-size: 31px 22px;
}

@media screen and (max-width: 767px) {
    .header-menu-contact__item--blog .header-menu-contact__link {
        background-position: 50% 2.4vw;
        background-size: 10.32vw 7.41333vw;
    }
}

.header-menu-contact__txt {
    color: #fff;
    font-size: 0.85714rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

@media screen and (max-width: 767px) {
    .header-menu-contact__txt {
        font-size: 4vw;
    }
}

/*  header-menu-subnav
--------------------------------------------- */
.header-menu-subnav {
    width: 18.18182%;
}

@media screen and (max-width: 767px) {
    .header-menu-subnav {
        -ms-flex-order: 3;
        margin-top: 8vw;
        margin-bottom: 18.66667vw;
        width: 100%;

        -webkit-box-ordinal-group: 4;
        order: 3;
    }
}

.header-menu-subnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;

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

@media screen and (max-width: 767px) {
    .header-menu-subnav__list {
        -ms-flex-pack: center;

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

.header-menu-subnav__item {
    width: 50%;
}

@media screen and (min-width: 768px) {
    .header-menu-subnav__item {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .header-menu-subnav__item:nth-of-type(2n + 1) {
        position: relative;
    }
    .header-menu-subnav__item:nth-of-type(n+3) {
        margin-top: 15px;
    }
    .header-menu-subnav__item:nth-of-type(2n) {
        padding-left: 15px;
    }
    .header-menu-subnav__item:nth-of-type(4) {
        padding-left: 23px;
    }
}

@media screen and (max-width: 767px) {
    .header-menu-subnav__item {
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: auto;
    }
}

.header-menu-subnav__item::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: 1em;
    background-color: #482426;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .header-menu-subnav__item:nth-of-type(2n)::after {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .header-menu-subnav__item:last-of-type::after {
        display: none;
    }
}

.header-menu-subnav__link {
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .header-menu-subnav__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-menu-subnav__link:hover {
        opacity: 0.8;
    }
    .ie11 .header-menu-subnav__link {
        position: relative;
        top: 3px;
    }
}

@media screen and (max-width: 767px) {
    .header-menu-subnav__link {
        display: inline-block;
        padding-right: .84em;
        padding-left: .65em;
        font-size: 3.73333vw;
    }
    .header-menu-subnav__item:first-of-type .header-menu-subnav__link {
        padding-left: 0;
    }
    .header-menu-subnav__item:last-of-type .header-menu-subnav__link {
        padding-right: 0;
    }
}

/*  header-menu-subnav02
--------------------------------------------- */
.header-menu-subnav02 {
    display: none;
}

@media screen and (max-width: 767px) {
    .header-menu-subnav02 {
        display: block;
        -ms-flex-order: 2;
        width: 100%;

        -webkit-box-ordinal-group: 3;
        order: 2;
    }
}

.header-menu-subnav02__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-pack: justify;

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

.header-menu-subnav02__item {
    width: 30.76923%;
}

.header-menu-subnav02__link {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 11.46667vw;
    height: 18.66667vw;
    border: 1px solid #482426;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 1rem;
}

.header-menu-subnav02__item--fair .header-menu-subnav02__link {
    background-image: url(../img/common/icon_fair_brown.svg);
    background-position: 50% 2.4vw;
    background-size: 9.33333vw 9.33333vw;
}

.header-menu-subnav02__item--tel .header-menu-subnav02__link {
    background-image: url(../img/common/icon_tel_brown.svg);
    background-position: 50% 2.4vw;
    background-size: 7.73333vw 7.73333vw;
}

.header-menu-subnav02__item--access .header-menu-subnav02__link {
    background-image: url(../img/common/icon_access_brown.svg);
    background-position: 50% 1.86667vw;
    background-size: 9.29333vw 9.61333vw;
}

/*  header-menu-logo
--------------------------------------------- */
.header-menu-logo {
    display: none;
}

@media screen and (max-width: 767px) {
    .header-menu-logo {
        display: block;
        padding-top: 4.26667%;
        padding-bottom: 4.26667%;
        background-color: #fff;
    }
}

.header-menu-logo__link {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 34.93333%;
}

.header-menu-logo__link img {
    width: 100%;
}

/*  header-menu-overlay
--------------------------------------------- */
.header-menu-overlay {
    position: fixed;
    top: 65px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: calc(100% - 65px);
}

@media screen and (max-width: 767px) {
    .header-menu-overlay {
        top: 60px;
        height: calc(100% - 60px);
    }
}

.js-menu-opened .header-menu-overlay {
    display: block;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    overflow: hidden;
    padding-top: 65px;
}

@media screen and (max-width: 767px) {
    .wrapper {
        padding-top: 60px;
    }
}

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
.global-nav {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 72px;
    padding-left: 0.78125%;
    max-width: 1145px;
}

@media screen and (max-width: 767px) {
    .global-nav {
        margin-bottom: 1.6vw;
        padding-left: 0;
    }
}

.global-nav__lv1-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;

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

.nav_sp span, .nav_spplan span {
    font-size: 1vw!important;
}

@media screen and (max-width: 767px) {
    .global-nav__lv1-list {
        -ms-flex-pack: justify;

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

    .nav_sp span, .nav_spplan span {
        font-size: 3.5vw!important;
    }
}

.global-nav__sp-list a {
    padding: 10px;
    background-color: #E8D8D6;
    width: 80%;
    border-bottom: 1px solid #fff0f0;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .global-nav__sp-list a {
        width: 100%;
    }
    .global-nav__sp-list .global-nav__lv1-item:first-of-type {
        display: none;
    }
    .global-nav__sp-list .global-nav__lv1-item:nth-of-type(n+2) {
        margin-top: 1.33333vw;
    }
}

.global-nav__lv1-item {
    margin-bottom: 28px;
    width: 19.9115%;
}


@media screen and (min-width: 768px) {
    .global-nav__lv1-item:first-of-type {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .global-nav__lv1-item {
        margin-bottom: 0;
        width: 49.23077%;
        background: rgba(255, 255, 255, 0.75);
    }
    .global-nav__lv1-item:nth-of-type(n+3) {
        margin-top: 1.33333vw;
    }
}

.global-nav__lv1-link {
    display: inline-block;
    color: #874E4C;
}

@media screen and (min-width: 768px) {
    .global-nav__lv1-link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .global-nav__lv1-link:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 767px) {
    .global-nav__lv1-link {
        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;
        padding-top: 4.33333vw;
        padding-bottom: 3vw;
        height: 100%;
        text-align: center;

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

@media screen and (max-width: 767px) {
    .global-nav__lv1-txt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-pack: start;

        -webkit-box-pack: start;
        justify-content: start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
    }
}

.global-nav__lv1-txt-en {
    display: block;
    margin-bottom: 11px;
    letter-spacing: 1.7px;
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .global-nav__lv1-txt-en {
        margin-bottom: 0;
        letter-spacing: .3vw;
        font-size: 3.2vw;
    }
}

.global-nav__lv1-txt-jp {
    display: block;
    letter-spacing: 1px;
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .global-nav__lv1-txt-jp {
        margin-bottom: 0.8vw;
        letter-spacing: 0;
        font-size: 4.26667vw;
    }
}

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    padding-top: 80px;
}

@media screen and (max-width: 767px) {
    .contents {
        padding-top: 9.33333vw;
    }
}

.toppage .contents {
    padding-top: 0;
}

.contents--sidebar01 .contents__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: center;
    padding-right: 10px;
    padding-left: 10px;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .contents--sidebar01 .contents__inner {
        display: block;
        padding-right: 0;
        padding-left: 0;
    }
}

.contents--sidebar02 .contents__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

@media screen and (max-width: 767px) {
    .contents--sidebar02 .contents__inner {
        display: block;
    }
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
.contents--sidebar01 .main {
    margin-right: 35px;
    max-width: 900px;
}

@media screen and (max-width: 767px) {
    .contents--sidebar01 .main {
        margin-right: 0;
    }
}

.contents--sidebar02 .main {
    margin-left: auto;
    max-width: 1350px;
    width: 70.3125%;
}

@media screen and (max-width: 767px) {
    .contents--sidebar02 .main {
        width: 100%;
    }
}

/* ---------------------------------------------
*   breadcrumb
--------------------------------------------- */
.breadcrumb {
    margin-top: 30px;
    margin-bottom: 35px;
    padding-right: 9.89583%;
    padding-left: 9.89583%;
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        margin-top: 5.33333vw;
        margin-bottom: 9.33333vw;
        padding-right: 5.33333%;
        padding-left: 5.33333%;
    }
}

.breadcrumb__item {
    position: relative;
    display: inline;
    margin-right: 29px;
    letter-spacing: normal;
    font-size: 1.14286rem;
}

@media screen and (max-width: 767px) {
    .breadcrumb__item {
        margin-right: 7.73333vw;
        font-size: 4.26667vw;
    }
}

.breadcrumb__item a {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .breadcrumb__item a:hover {
        text-decoration: none;
    }
}

.breadcrumb__item:after {
    position: absolute;
    top: 5px;
    right: -18px;
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #482426;
    border-right: 1px solid #482426;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .breadcrumb__item:after {
        top: 1.33333vw;
        right: -4.8vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}

.breadcrumb__item:last-of-type::after {
    display: none;
}

/*  sidebar
--------------------------------------------- */
.contents--sidebar01 .sidebar {
    width: 340px;
}

@media screen and (max-width: 767px) {
    .contents--sidebar01 .sidebar {
        margin-right: auto;
        margin-bottom: 8vw;
        margin-left: auto;
        width: 90.66667%;
    }
}

.contents--sidebar02 .sidebar {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    width: 285px;
}

@media screen and (max-width: 1650px) {
    .contents--sidebar02 .sidebar {
        padding-left: 50px;
    }
}

@media screen and (max-width: 767px) {
    .contents--sidebar02 .sidebar {
        padding-right: 4%;
        padding-left: 4%;
        width: 100%;
    }
}

/*  sidebar-nav01-wrap
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .sidebar-nav01-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/*  sidebar-nav01
--------------------------------------------- */
.sidebar-nav01 {
    margin-bottom: 16px;
    padding: 17px 30px 30px;
    background-color: #F3EBEA;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01 {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 0;
        padding: 4.8vw 1em 5.86667vw 7.64706%;
        width: 50%;
    }
}

@media screen and (min-width: 768px) {
    .sidebar-nav01 [href]:hover {
        text-decoration: underline;
    }
}

.sidebar-nav01__ttl {
    text-align: center;
    font-size: 1.57143rem;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__ttl {
        position: relative;
        padding-left: 4.26667vw;
        text-align: left;
        font-size: 3.2vw;
    }
    .sidebar-nav01__ttl::before {
        position: absolute;
        top: 0;
        left: 0;
        content: ">";
    }
    .js-sp-acc-open .sidebar-nav01__ttl::before {
        top: .3vw;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

.sidebar-nav01__ttl-txt {
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-bottom: 1px solid #fff;
}

@media screen and (min-width: 768px) {
    .ie11 .sidebar-nav01__ttl-txt {
        padding-bottom: 2px;
    }
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__ttl-txt {
        padding: 0;
        border: none;
    }
}

.sidebar-nav01__lv1-list {
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .sidebar-nav01__lv1-list {
        display: block !important;
    }
    .ie11 .sidebar-nav01__lv1-list {
        margin-top: 22px;
    }
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv1-list {
        display: none;
        margin-top: 3.46667vw;
    }
}

.sidebar-nav01__lv1-item {
    margin-bottom: 10px;
    padding-left: 20px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv1-item {
        margin-bottom: 2.13333vw;
        padding-left: 1em;
        -webkit-transition: .2s;
        transition: .2s;
    }
}

.sidebar-nav01__lv1-item.js-acc-open {
    padding-left: 27px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv1-item.js-acc-open {
        padding-left: 1em;
    }
}

.sidebar-nav01__lv1-item:last-of-type {
    margin-bottom: 0;
}

.sidebar-nav01__lv1-txt {
    position: relative;
    font-size: 1.28571rem;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .sidebar-nav01__lv1-txt {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .sidebar-nav01__lv1-txt:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv1-txt {
        font-size: 3.46667vw;
    }
}

.sidebar-nav01__lv1-txt::before {
    position: absolute;
    top: 3px;
    left: -21px;
    display: inline-block;
    content: ">";
    font-size: 1.28571rem;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv1-txt::before {
        top: .6vw;
        left: -1em;
        font-size: 3.8vw;
    }
}

.js-acc-open .sidebar-nav01__lv1-txt::before {
    color: #707070;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media screen and (min-width: 768px) {
    .js-acc-open .sidebar-nav01__lv1-txt::before {
        top: 0;
        left: -25px;
        font-size: 2rem;
        font-family: メイリオ, Meiryo, serif;
    }
    .windows .js-acc-open .sidebar-nav01__lv1-txt::before {
        top: 1px;
        left: -30px;
        font-size: 1.8rem;
    }
    .windows.ie11 .js-acc-open .sidebar-nav01__lv1-txt::before {
        top: -2px;
    }
}

.sidebar-nav01__lv2-list {
    display: none;
    margin-top: 12px;
    margin-bottom: 20px;
    padding-left: 25px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv2-list {
        margin-top: 2.66667vw;
        margin-bottom: 2.66667vw;
        padding-left: .5em;
    }
}

.sidebar-nav01__lv2-item {
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv2-item {
        margin-bottom: 1.33333vw;
    }
}

.sidebar-nav01__lv2-item:last-of-type {
    margin-bottom: 0;
}

.sidebar-nav01__lv2-txt {
    font-size: 1.14286rem;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__lv2-txt {
        font-size: 3.46667vw;
    }
}

.sidebar-nav01__list {
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .sidebar-nav01__list {
        display: block !important;
    }
    .ie11 .sidebar-nav01__list {
        margin-top: 22px;
    }
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__list {
        display: none;
        margin-top: 3.46667vw;
    }
}

.sidebar-nav01__item {
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__item {
        margin-bottom: 1.86667vw;
    }
}

.sidebar-nav01__item:last-of-type {
    margin-bottom: 0;
}

.sidebar-nav01__link {
    font-size: 1.14286rem;
}

@media screen and (max-width: 767px) {
    .sidebar-nav01__link {
        font-size: 3.2vw;
    }
}

/*  sidebar-nav02
--------------------------------------------- */
.sidebar-nav02 {
    margin-top: 65px;
    padding-right: 2em;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02 {
        margin-top: 8vw;
        margin-bottom: 8vw;
        padding-right: 0;
    }
}

.sidebar-nav02--cuisine {
    margin-top: 383px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02--cuisine {
        margin-top: 0;
    }
}

.sidebar-nav02--dress {
    margin-top: 360px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02--dress {
        margin-top: 0;
    }
}

.sidebar-nav02__lv1-list {
    position: relative;
    padding-top: 25px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv1-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        padding-top: 4vw;
        padding-bottom: 4vw;

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

.sidebar-nav02__lv1-list:first-of-type {
    padding-top: 0;
}

.sidebar-nav02__lv1-list:last-of-type::after {
    display: none;
}

.sidebar-nav02__lv1-list:nth-of-type(n+2) {
    margin-top: 25px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv1-list:nth-of-type(n+2) {
        margin-top: 0;
    }
}

.sidebar-nav02__lv1-list:nth-of-type(n+2)::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 30px;
    height: 1px;
    border-bottom: 1px dashed #482426;
    content: "";
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv1-list:nth-of-type(n+2)::after {
        width: 13.33333vw;
    }
}

.sidebar-nav02__lv1-item {
    position: relative;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv1-item {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 50%;
    }
    .sidebar-nav02__lv1-item:nth-of-type(2n+1) {
        padding-right: 2.63158%;
    }
}

.sidebar-nav02__lv1-item:last-of-type {
    margin-bottom: 7px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv1-item:last-of-type {
        margin-bottom: 0;
    }
}

.sidebar-nav02__lv1-item::before {
    position: absolute;
    top: 0;
    left: 0;
    content: ">";
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv1-item::before {
        top: -.1vw;
    }
    .android .sidebar-nav02__lv1-item::before {
        top: -.25vw;
    }
}

.sidebar-nav02__lv1-link {
    display: inline-block;
    padding-left: 1.5em;
    font-size: 0.92857rem;
}

@media screen and (min-width: 768px) {
    .sidebar-nav02__lv1-link:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv1-link {
        padding-left: 1.5em;
        font-size: 3.2vw;
    }
}

.sidebar-nav02__lv2-list {
    margin-top: 17px;
    margin-bottom: 17px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv2-list {
        margin-top: 4vw;
        margin-bottom: 0;
    }
}

.sidebar-nav02__lv2-item {
    margin-top: 17px;
    padding-left: 13px;
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv2-item {
        margin-top: 2.66667vw;
        padding-left: 3.46667vw;
    }
}

.sidebar-nav02__lv2-item:first-of-type {
    margin-top: 0;
}

.sidebar-nav02__lv2-link {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
    font-size: 0.92857rem;
}

@media screen and (min-width: 768px) {
    .sidebar-nav02__lv2-link:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv2-link {
        font-size: 3.2vw;
    }
}

.sidebar-nav02__lv2-link::before {
    position: absolute;
    top: 0;
    left: 0;
    content: ">";
}

@media screen and (max-width: 767px) {
    .sidebar-nav02__lv2-link::before {
        top: -.1vw;
    }
    .android .sidebar-nav02__lv2-link::before {
        top: -.25vw;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    padding-top: 75px;
    background-color: #EBEBEB;
    color: #482426;
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 10.66667vw;
    }
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
}

/*  footer-container
--------------------------------------------- */
/*  footer-upper
--------------------------------------------- */
.footer-upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-pack: justify;
    margin-right: auto;
    margin-bottom: 38px;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1000px;

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

@media screen and (max-width: 767px) {
    .footer-upper {
        display: block;
        margin-bottom: 9.33333vw;
        padding-right: 4%;
        padding-left: 4%;
    }
}

/*  footer-info
--------------------------------------------- */
.footer-info {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 410px;
    border-right: 1px solid #a99595;
    border-left: 1px solid #a99595;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer-info {
        padding-top: 8vw;
        padding-bottom: 9.33333vw;
        width: 100%;
        border-top: 1px solid #a99595;
        border-right: none;
        border-bottom: 1px solid #a99595;
        border-left: none;
    }
}

.footer-info__logo {
    width: 70%;
    margin: 0 auto 10px;
}

.footer-info__logo .header-logo__link,
.footer-info__logo .header-logo__link2 {
    background-size: contain;
    background-position: center;
}

.footer-info__address {
    margin-bottom: 12px;
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .footer-info__address {
        margin-bottom: 2.66667vw;
        font-size: 4.8vw;
    }
}

.footer-info__business-hours {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .footer-info__business-hours {
        margin-bottom: 8vw;
        font-size: 4.26667vw;
        line-height: 1.8;
    }
}

.footer-info__business-hours .small {
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .footer-info__business-hours .small {
        font-size: 4vw;
    }
}

.footer-info__business-hours .large {
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .footer-info__business-hours .large {
        font-size: 3.8vw;
    }
}

.footer-info__tel {
    margin-bottom: 13px;
}

.footer-info__tel:last-of-type {
    margin-bottom: 0;
}

.footer-info__tel-txt {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    font-family: YuGothic, "Yu Gothic", sans-serif;
}

@media screen and (max-width: 767px) {
    .footer-info__tel-txt {
        margin-bottom: 1.33333vw;
        font-size: 4.8vw;
    }
}

.footer-info__tel-number {
    display: inline-block;
    font-size: 1.85714rem;
    font-family: "Times New Roman", serif;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .footer-info__tel-number {
        font-size: 12vw;
    }
}

/*  footer-contact
--------------------------------------------- */
.footer-contact {
    padding-top: 33px;
    width: 500px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer-contact {
        padding-top: 6.66667vw;
        width: 100%;
    }
}

.footer-contact__ttl {
    display: block;
    margin-bottom: 13px;
    font-size: 1.07143rem;
}

@media screen and (max-width: 767px) {
    .footer-contact__ttl {
        margin-bottom: 4.8vw;
        font-size: 5.33333vw;
    }
}

.footer-contact__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-pack: justify;

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

@media screen and (max-width: 767px) {
    .footer-contact__list {
        margin-right: auto;
        margin-left: auto;
        width: 94.2029%;
    }
}

.footer-contact__item {
    width: 120px;
    height: 120px;
}

@media screen and (max-width: 767px) {
    .footer-contact__item {
        width: 42.66667vw;
        height: 21.33333vw;
    }
    .footer-contact__item:nth-of-type(n+3) {
        margin-top: 0.8vw;
    }
}

.footer-contact__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    -ms-flex-pack: justify;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 75px;
    height: 100%;
    background-color: #F26968;
    background-repeat: no-repeat;

    -webkit-box-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (min-width: 768px) {
    .footer-contact__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-contact__link:hover {
        opacity: 0.8;
    }
    .ie11 .footer-contact__link {
        padding-top: 77px;
    }
}

@media screen and (max-width: 767px) {
    .footer-contact__link {
        padding-top: 12.8vw;
    }
}

.footer-contact__item--visit .footer-contact__link {
    background-image: url(https://www.bellevie-group.jp/common/img/common/icon_visit.svg);
    background-position: 50% 27px;
    background-size: 38px auto;
}

@media screen and (max-width: 767px) {
    .footer-contact__item--visit .footer-contact__link {
        background-position: 50% 2.13333vw;
        background-size: 10.4vw auto;
    }
}

.footer-contact__item--consultation .footer-contact__link {
    background-image: url(../img/common/icon_consultation.svg);
    background-position: 50% 29px;
    background-size: 30px auto;
}

@media screen and (max-width: 767px) {
    .footer-contact__item--consultation .footer-contact__link {
        background-position: 50% 2.93333vw;
        background-size: 9.06667vw auto;
    }
}

.footer-contact__item--doc .footer-contact__link {
    background-image: url(../img/common/icon_book.svg);
    background-position: 50% 31px;
    background-size: 40px auto;
}

@media screen and (max-width: 767px) {
    .footer-contact__item--doc .footer-contact__link {
        padding-top: 13.6vw;
        background-position: 50% 4vw;
        background-size: 10.13333vw auto;
    }
}

.footer-contact__item--contact .footer-contact__link {
    background-image: url(../img/common/icon_mail.svg);
    background-position: 50% 32px;
    background-size: 34px auto;
}

@media screen and (max-width: 767px) {
    .footer-contact__item--contact .footer-contact__link {
        padding-top: 13.6vw;
        background-position: 50% 4.26667vw;
        background-size: 9.06667vw auto;
    }
}

.footer-contact__txt {
    color: #fff;
    font-size: 0.85714rem;
}

@media screen and (max-width: 767px) {
    .footer-contact__txt {
        font-size: 4.26667vw;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    margin-bottom: 35px;
    padding-right: 10px;
    padding-left: 10px;
}

@media screen and (max-width: 767px) {
    .footer-nav {
        display: none;
    }
}

.footer-nav__cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;

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

.footer-nav__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 25px;
    width: 20%;
}

.footer-nav__col:last-of-type {
    margin-right: 0;
}

.footer-nav__lv1-item {
    margin-bottom: 12px;
}

.footer-nav__lv1-item:last-of-type {
    margin-bottom: 0;
}

.footer-nav__lv1-link {
    display: inline-block;
    font-size: 0.92857rem;
    line-height: 1.2;
}

@media screen and (min-width: 768px) {
    .footer-nav__lv1-link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-nav__lv1-link:hover {
        opacity: 0.8;
    }
}

.footer-nav__lv2-item {
    margin-top: 12px;
}

.footer-nav__lv2-item:first-of-type {
    margin-top: 14px;
}

.footer-nav__lv2-link {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    color: rgba(72, 36, 38, 0.6);
    font-size: 0.85714rem;
    line-height: 1.2;
}

.footer-nav__lv2-link::after {
    position: absolute;
    top: .6em;
    left: 0;
    display: block;
    width: 10px;
    height: 1px;
    background: rgba(72, 36, 38, 0.6);
    content: "";
}

@media screen and (min-width: 768px) {
    .footer-nav__lv2-link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-nav__lv2-link:hover {
        opacity: 0.8;
    }
}

/*  footer-lower
--------------------------------------------- */
.footer-lower {
    padding-top: 17px;
    padding-bottom: 10px;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .footer-lower {
        padding-top: 5.33333vw;
        padding-bottom: 17.33333vw;
    }
}

/*  footer-sns
--------------------------------------------- */
.footer-sns {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .footer-sns {
        margin-bottom: 5.33333vw;
    }
}

.footer-sns__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-pack: center;

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

.footer-sns__item {
    margin-right: 25px;
    width: 35px;
}

@media screen and (max-width: 767px) {
    .footer-sns__item {
        margin-right: 6.66667vw;
        width: 9.33333vw;
    }
}

.footer-sns__item:last-of-type {
    margin-right: 0;
}

.footer-sns__link {
    display: block;
}

@media screen and (min-width: 768px) {
    .footer-sns__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-sns__link:hover {
        opacity: 0.8;
    }
}

.footer-sns__link img {
    width: 100%;
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    color: #000;
    text-align: center;
}

.footer-copyright__text {
    font-size: 0.71429rem;
}

@media screen and (max-width: 767px) {
    .footer-copyright__text {
        letter-spacing: .2vw;
        font-size: 4vw;
    }
}
