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

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

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */


/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #333333;
    font-size: 14px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;

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

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

body {
    min-width: 1020px;
    background-color: #f4fdfe;
    line-height: 1.5;
	word-wrap : break-word;
    overflow-wrap : break-word;
}

@media screen and (max-width: 896px) {
    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;
}

/* ---------------------------------------------
*   form parts
--------------------------------------------- */
input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: '';

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

button {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

textarea {
    display: block;
    overflow: auto;
    resize: none;
}

/* ---------------------------------------------
*   hr
--------------------------------------------- */
hr {
    margin: 0;
    height: 1px;
    border: none;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    outline: none;
    cursor: default;
}

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

/* ---------------------------------------------
*   data-fadein
--------------------------------------------- */
[data-fadein-right] {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}

[data-fadein-left] {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
}

[data-fadein-up] {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.js-fadein-right,
.js-fadein-left {
    opacity: 1;
    -webkit-transition: opacity 1s, -webkit-transform 1s !important;
    transition: opacity 1s, -webkit-transform 1s !important;
    transition: opacity 1s, transform 1s !important;
    transition: opacity 1s, transform 1s, -webkit-transform 1s !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.js-fadein-up {
    opacity: 1;
    -webkit-transition: opacity 1s, -webkit-transform 1s !important;
    transition: opacity 1s, -webkit-transform 1s !important;
    transition: opacity 1s, transform 1s !important;
    transition: opacity 1s, transform 1s, -webkit-transform 1s !important;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* ==========================================================
*
*   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: 90px;
    background-color: #fff;
    -webkit-box-shadow: 0 25px 49px rgba(24, 54, 134, 0.15);
    box-shadow: 0 25px 49px rgba(24, 54, 134, 0.15);
}

@media screen and (max-width: 896px) {
    .header {
        display: block !important;
        height: 67px;
        -webkit-box-shadow: 0 1vw 2.5vw rgba(24, 54, 134, 0.15);
        box-shadow: 0 1vw 2.5vw rgba(24, 54, 134, 0.15);
    }
    .toppage .header {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media screen and (min-width: 897px) {
    .toppage .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-right: 30px;
    padding-left: 55px;
    min-width: 1020px;
    height: 100%;

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

@media screen and (max-width: 896px) {
    .header-container {
        padding-right: 0;
        padding-left: 4.44444%;
        min-width: initial;
        min-width: auto;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    width: 120px;
}

@media screen and (max-width: 896px) {
    .header-logo {
        width: 80px;
    }
    .toppage .header-logo {
        display: none;
    }
}

.header-logo__link {
    display: block;
    overflow: hidden;
    padding-top: 57px;
    height: 0;
    background: url(../img/common/logo.png) 0 0 no-repeat;
    background-size: 100% auto;
}

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

/*  header-right
--------------------------------------------- */
.header-right {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 6px;
    height: 100%;
}

@media screen and (max-width: 1160px) {
    .header-right {
        padding-top: 6px;
    }
}

/*  header-reverse
--------------------------------------------- */
.header-reverse {
    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;
}

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

/*  header-menu
--------------------------------------------- */
@media screen and (min-width: 897px) {
    .header-menu {
        display: block !important;
    }
}

@media screen and (max-width: 896px) {
    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 27px;
        width: 100%;
        height: 100%;
        background-color: #3856a6;
    }
}

@media screen and (max-width: 896px) {
    .header-menu__inner {
        overflow-y: auto;
        height: 100%;
    }
}

.header-menu__inner {
    visibility: hidden;
}

.wf-fot-tsukuardgothic-std-n4-active.wf-fot-tsukuardgothic-std-n7-active.wf-karakazeplus-n4-active .header-menu__inner {
  visibility: visible;
}

/*  header-menu-container
--------------------------------------------- */
@media screen and (max-width: 896px) {
    .header-menu-container {
        padding-right: 10.04444%;
        padding-left: 10.04444%;
    }
}

/*  header-nav-1
--------------------------------------------- */
@media screen and (max-width: 896px) {
    .header-nav-1 {
        margin-bottom: 6.4vw;
        padding-left: 2.48889vw;
    }
}

.header-nav-1__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-pack: end;

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

@media screen and (max-width: 896px) {
    .header-nav-1__list {
        display: block;
    }
}

.header-nav-1__item {
    margin-right: 45px;
}

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

@media screen and (max-width: 1160px) {
    .header-nav-1__item {
        margin-right: 25px;
    }
}

@media screen and (max-width: 896px) {
    .header-nav-1__item {
        margin-right: 0;
        margin-bottom: 5.33333vw;
    }
    .header-nav-1__item:last-of-type {
        margin-bottom: 0;
    }
}

.header-nav-1__link {
    position: relative;
    color: #3853a6;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 1.07143rem;
    font-family: fot-tsukuardgothic-std, sans-serif;
}

@media screen and (max-width: 896px) {
    .header-nav-1__link {
        display: inline-block;
        padding: .5em 1em .5em 0;
        color: #fff;
        font-size: 3.73333vw;
    }
}

@media screen and (min-width: 897px) {
    .ie11 .header-nav-1__link {
        position: relative;
    }
    .header-nav-1__link.is-current::after, .header-nav-1__link:hover::after {
        position: absolute;
        bottom: -.2em;
        left: 50%;
        z-index: -1;
        display: block;
        width: 115%;
        height: 9px;
        background: url(../img/common/bg_nav_text.png) 0 0 no-repeat;
        background-size: 100% 100%;
        content: "";
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .ie11 .header-nav-1__link.is-current::after, .ie11 .header-nav-1__link:hover::after {
        bottom: .4em;
    }
}

/*  header-nav-2
--------------------------------------------- */
.header-nav-2 {
    margin-bottom: 16px;
    margin-left: auto;
    padding-bottom: 4px;
    min-width: 880px;
}

@media screen and (max-width: 896px) {
    .header-nav-2 {
        margin-bottom: 4.62222vw;
        padding-bottom: 0;
        width: 100%;
        min-width: 100%;
    }
}

.header-nav-2__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: 896px) {
    .header-nav-2__list {
        display: block;
    }
}

@media screen and (max-width: 896px) {
    .header-nav-2__item {
        margin-bottom: 4.44444vw;
    }
    .header-nav-2__item:last-of-type {
        margin-bottom: 0;
    }
}

.header-nav-2__link {
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid #8093c6;
    color: #000003;
    font-weight: bold;
    font-family: fot-tsukuardgothic-std, sans-serif;
}

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

@media screen and (max-width: 896px) {
    .header-nav-2__link {
        display: block;
        padding: 2.66667vw 1em 1.33333vw 5.33333vw;
        border: none;
        background-color: #fff;
    }
}

.header-nav-2__ttl {
    display: inline-block;
    letter-spacing: 1.6px;
    font-size: 0.97143rem;
}

@media screen and (max-width: 896px) {
    .header-nav-2__ttl {
        display: block;
        margin-bottom: 0.62222vw;
        letter-spacing: .2em;
        font-size: 4vw;
    }
}

.header-nav-2__txt {
    display: inline-block;
    letter-spacing: 1px;
    font-size: 0.57rem;
}

@media screen and (max-width: 896px) {
    .header-nav-2__txt {
        display: block;
        letter-spacing: 0;
        font-size: 2.93333vw;
    }
}

/*  header-sns
--------------------------------------------- */
.header-sns {
    display: none;
    margin-bottom: 6.22222vw;
}

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

.header-sns__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-sns__item {
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 10.66667vw;
    height: 10.66667vw;
    border: 0.35556vw solid #fff;
}

@media screen and (max-width: 896px) {
    .header-sns__item {
        margin-right: 4.44444vw;
    }
    .header-sns__item:last-of-type {
        margin-right: 0;
    }
}

.header-sns__link {
    display: block;
    overflow: hidden;
    height: 100%;
    background-position: center center;
    background-size: 3.82222vw 3.82222vw;
    background-repeat: no-repeat;
    font-size: 0;
}

.header-sns__item--facebook .header-sns__link {
    background-image: url(../img/common/icon_facebook.png);
}

.header-sns__item--instagram .header-sns__link {
    background-image: url(../img/common/icon_instagram.png);
}

/*  header-news
--------------------------------------------- */
.header-news {
    display: none;
    margin-bottom: 17.77778vw;
}

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

.header-news__inner {
    background-color: #fff;
}

.header-news__ttl {
    display: block;
    margin-bottom: -.2vw;
    color: #fff;
    font-weight: bold;
    font-size: 3.2vw;
    line-height: 1;
}

.header-news__contents {
    padding-top: 2.48889vw;
    padding-bottom: 2.48889vw;
    font-weight: bold;
    font-size: 3.55556vw;
}

.header-news__date {
    display: block;
    margin-bottom: .5vw;
}

a.header-news__txt {
    color: #3853a6;
}

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

@media screen and (max-width: 896px) {
    .header-menu-button {
        position: relative;
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
        padding: 18px 17px 19px;
        outline: none;
        border: 0;
        border-radius: 0;
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        cursor: pointer;

        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .toppage .header-menu-button {
        background: rgba(244, 253, 254, 0.75);
    }
    .js-sp-menu-opened.toppage .header-menu-button {
        background: none;
    }
}

.header-menu-button__lines {
    position: relative;
    display: block;
    width: 33px;
    height: 30px;
}

.js-sp-menu-opened .header-menu-button__lines {
    width: 38px;
    height: 35px;
}

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

.header-menu-button__line--top, .header-menu-button__line--center, .header-menu-button__line--bottom {
    -webkit-transition: 300ms;
    transition: 300ms;
}

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

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

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

.js-sp-menu-opened .header-menu-button__line {
    background-color: #fff;
}

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

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

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

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    position: relative;
    overflow-x: hidden;
    padding-top: 90px;
}

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

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    position: relative;
    padding-top: 60px;
}

.contents {
    visibility: hidden;
}

.wf-fot-tsukuardgothic-std-n4-active.wf-fot-tsukuardgothic-std-n7-active.wf-karakazeplus-n4-active .contents {
    visibility: visible;
}

@media screen and (max-width: 896px) {
    .contents {
        padding-top: 10.66667vw;
    }
    .toppage .contents {
        padding-top: 0;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 896px) {
    .footer {
        background-color: rgba(254, 255, 255, 0.9);
    }
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    display: none;
    width: 60px;
}

@media screen and (max-width: 896px) {
    .footer-pagetop {
        right: 3.55556vw;
        bottom: 17.6vw;
        width: 17.77778vw;
    }
}

.footer-pagetop__link {
    display: block;
    overflow: hidden;
    padding-top: 60px;
    height: 0;
    border-radius: 50%;
    background: rgba(56, 83, 166, 0.5) url(../img/common/img_pagetop_arrow.png) 50% 50% no-repeat;
    background-size: 25px auto;
}

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

@media screen and (max-width: 896px) {
    .footer-pagetop__link {
        padding-top: 17.77778vw;
        background-size: 6.4vw auto;
    }
}

/*  footer-box
--------------------------------------------- */
@media screen and (max-width: 896px) {
    .footer-box {
        display: none;
    }
}

.footer-box--01 {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: rgba(68, 69, 69, 0.9);
    color: #fff;
}

.footer-box--02 {
    padding-top: 45px;
    padding-bottom: 52px;
    background-color: rgba(254, 255, 255, 0.9);
}

.footer-box--03 {
    padding-top: 40px;
    padding-bottom: 50px;
    background-color: rgba(233, 242, 188, 0.9);
}

.footer-box--04 {
    padding-top: 20px;
    background-color: rgba(254, 255, 255, 0.9);
}

@media screen and (max-width: 896px) {
    .footer-box--04 {
        display: block;
        padding-top: 2.66667vw;
        background: none;
    }
}

.footer-box--05 {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(254, 255, 255, 0.9);
}

@media screen and (max-width: 896px) {
    .footer-box--05 {
        display: block;
        padding-top: 0;
        padding-bottom: 1.51111vw;
        background: none;
    }
}

.footer-box__container {
    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;
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    position: relative;
    z-index: 1;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 1000px;
}

@media screen and (max-width: 896px) {
    .footer-container {
        padding-right: 4.44444%;
        padding-left: 4.44444%;
        max-width: initial;
        max-width: none;
    }
}

@media screen and (max-width: 896px) {
    .footer-container {
        padding-right: 3.55556%;
        padding-left: 4.44444%;
    }
}

/*  footer-left
--------------------------------------------- */
.footer-left {
    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;
}

/*  footer-news
--------------------------------------------- */
.footer-news {
    margin-top: 25px;
    max-width: 550px;
    width: 100%;
}

.footer-news__ttl {
    display: inline-block;
    margin-bottom: 18px;
    font-weight: bold;
    font-size: 1.07143rem;
    background: url(../img/common/bg_nav_text.png) 0 0 no-repeat;
    background-size: 100% 100%;
}

.footer-news__list {
    margin-bottom: 23px;
}

.footer-news__item {
    margin-bottom: 25px;
}

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

.footer-news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    font-weight: bold;
    font-size: 1rem;
    -webkit-box-pack: start;
    justify-content: start;
}

.footer-news__date {
    display: block;
    width: 105px;
    color: #899dcc;
}

.footer-news__txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

a.footer-news__link .footer-news__txt {
    width: calc(100% - 95px);
    color: #3853a6;
    letter-spacing: .1em;
}

a.footer-news__link:hover .footer-news__txt {
    text-decoration: underline;
}

.footer-news__btn {
    position: relative;
    display: block;
    margin-left: auto;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 128px;
    background: #5a4095 url(../img/common/bg_gradation.png) 0 0 no-repeat;
    background-size: 100% 100%;
    text-align: center;
}

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

.footer-news__btn::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 27px;
    height: 11px;
    background: url(../img/common/icon_arrow_2.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-news__btn-txt {
    padding-left: 1.9em;
    color: #fff;
    font-size: 1rem;
}

/*  footer-fb
--------------------------------------------- */
.footer-fb {
    margin-right: 40px;
}

/*  footer-nav-1
--------------------------------------------- */
.footer-nav-1__cols {
    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;
}

.footer-nav-1__col {
    width: 20%;
}

.footer-nav-1__col:nth-of-type(1) {
    width: 16.5%;
}

.footer-nav-1__col:nth-of-type(2) {
    width: 18.3%;
}

.footer-nav-1__col:nth-of-type(3) {
    width: 23.8%;
}

.footer-nav-1__col:nth-of-type(4) {
    width: 23.4%;
}

.footer-nav-1__col:nth-of-type(5) {
    width: 18%;
}

.footer-nav-1__lv1-item {
    margin-bottom: 38px;
    font-weight: bold;
}

.footer-nav-1__lv1-item:last-of-type {
    margin-bottom: 0;
}

.footer-nav-1__lv1-link {
    display: inline-block;
    line-height: 1;
    color:#2c4000;
    margin-bottom: 12px;
    font-size: 1rem;
    font-family: fot-tsukuardgothic-std, sans-serif;
}

.footer-nav-1__lv2-item {
    margin-bottom: 8px;
}

.footer-nav-1__lv2-item:last-of-type {
    margin-bottom: 0;
}

.footer-nav-1__lv2-link {
    color: #4d7100;
    font-size: 0.78571rem;
    line-height: 1.4;
}

@media screen and (min-width: 897px) {
    .footer-nav-1__lv2-link:hover {
        text-decoration: underline;
    }
}

/*  footer-nav-2
--------------------------------------------- */
.footer-nav-2__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;
}

.footer-nav-2__item {
    margin-right: 45px;
}

.footer-nav-2__link {
    display: inline-block;
}

.footer-nav-2__txt {
    letter-spacing: .2em;
    font-weight: bold;
    font-size: 1.14286rem;
}

@media screen and (min-width: 897px) {
    .footer-nav-2__txt:hover {
        text-decoration: underline;
    }
}

.footer-nav-2__txt::before {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    background-position: 0 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: "";
    vertical-align: middle;
}

.footer-nav-2__item--contact .footer-nav-2__txt::before {
    top: -.2em;
    width: 25px;
    height: 25px;
    background-image: url(../img/common/icon_pen.png);
}

.footer-nav-2__item--mail .footer-nav-2__txt::before {
    top: -.1em;
    width: 20px;
    height: 17px;
    background-image: url(../img/common/icon_mail.png);
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    margin-top: 6px;
    margin-right: 43px;
    width: 134px;
}

@media screen and (max-width: 896px) {
    .footer-logo {
        margin-top: 0;
        width: 17.24444vw;
    }
}

.footer-logo__link {
    display: block;
}

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

/*  footer-sns
--------------------------------------------- */
.footer-sns {
    margin-right: 43px;
}

.footer-sns__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;
}

.footer-sns__item {
    margin-right: 70px;
    width: 21px;
}

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

.footer-sns__link {
    display: block;
}

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

/*  footer-corp
--------------------------------------------- */
.footer-corp {
    margin-top: 18px;
    color: #777777;
    font-weight: bold;
}

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

.footer-corp__corp {
    margin-bottom: 11px;
    font-size: 1rem;
}

.footer-corp__address {
    font-size: 0.85714rem;
}

@media screen and (min-width: 897px) {
    .footer-corp__address a {
        text-decoration: underline;
    }
    .footer-corp__address a:hover {
        text-decoration: none;
    }
}

/*  footer-privacy
--------------------------------------------- */
.footer-privacy {
    margin-right: 15px;
    width: 75px;
}

@media screen and (max-width: 896px) {
    .footer-privacy {
        margin-right: 0;
        width: 10.66667vw;
    }
}

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

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

@media screen and (max-width: 896px) {
    .footer-copyright {
        margin-top: -.5em;
        line-height: 1;
    }
}

.footer-copyright__text {
    color: #777777;
    font-size: 0.78571rem;
}

@media screen and (max-width: 896px) {
    .footer-copyright__text {
        font-size: 1.95556vw;
    }
}

.footer-copyright__text .copy {
    vertical-align: middle;
    font-size: 1.7em;
    line-height: 1;
}

@media screen and (min-width: 897px) {
    .windows .footer-copyright__text .copy {
        position: relative;
        top: -.05em;
        font-size: .7rem;
    }
}
