@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: 14px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 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: 1.86667vw;
    }
}

body {
    min-width: 1110px;
    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;
}

/* ---------------------------------------------
*   button 初期化
--------------------------------------------- */
button {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;

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

/* ---------------------------------------------
*   クリック後の点線を削除
--------------------------------------------- */
a, a:focus {
    outline: none;
}

button, input, input:focus {
    outline: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: none;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: relative;
    border-bottom: 3px solid #282828;
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    /*max-width: 1440px;*/
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 750px) {
    .header {
        position: static;
    }
    .header__inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 57px;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    padding: 25px 53px 25px 25px;
    border-right: 1px solid #bfbfbf;
}

.header-logo--en {
    padding: 25px 33px 25px 25px;
}

.header-logo__img {
    margin-right: 32px;
    width: 71px;
}

.header-logo__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

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

.header-logo__txt-en {
    margin-top: 10px;
    width: 220px;
    color: #282828;
    letter-spacing: 0.02em;
    font-weight: 600;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.header-logo__txt-en--small {
    display: inline-block;
    margin-top: 5px;
    font-weight: 400;
}

.header-logo__txt-sm {
    margin-bottom: 8px;
    width: 83px;
}

.header-logo__txt-la {
    width: 196px;
}

@media screen and (max-width: 750px) {
    .header-logo {
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 12px 21px 10px 15px;
        height: 57px;
    }
    .header-logo__img {
        margin-right: 16px;
        width: 36px;
    }
    .header-logo__box {
        line-height: 1;
    }
    .header-logo__txt-en {
        margin-top: 2px;
        width: auto;
        font-size: 11px;
    }
    .header-logo__txt-en--small {
        margin-top: 2px;
    }
    .header-logo__txt-sm {
        margin-bottom: 3px;
        width: 50px;
    }
    .header-logo__txt-la {
        width: 100px;
    }
}

@media screen and (max-width: 600px) {
    .header-logo__box {
        margin-top: 5px;
    }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    margin-top: 46px;
    padding: 24px 0px 24px 55px;
    width: 100%;
    border-top: 1px #bfbfbf solid;
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.header-nav__item {
    margin-right: 64px;
}

.header-nav__item:lat-of-type {
    margin-right: 0;
}

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

.header-nav__link:hover {
    opacity: 0.6;
}

.header-nav__txt {
    color: #282728;
    white-space: nowrap;
    letter-spacing: 0.02em;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

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

/*  language-change
--------------------------------------------- */
.language-change {
    position: absolute;
    top: 16px;
    right: 24px;
}

.language-change__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.language-change__item {
    width: 45px;
    text-align: center;
}

.language-change__item--current {
    border-right: 2px solid #e5e5e5;
}

.language-change__link {
    display: block;
    width: 100%;
    text-align: center;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.language-change__link:hover {
    opacity: 0.6;
}

.language-change__link--current:hover {
    opacity: 1;
}

.language-change__link--current:hover .language-change__txt {
    color: #282728;
    -webkit-transition: .3s;
    transition: .3s;
}

.language-change__txt {
    color: #aaaaaa;
    letter-spacing: 0.02em;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    line-height: 1;
}

.language-change__txt--current {
    color: #282728;
}

/*  header-nav-link
--------------------------------------------- */
.header-nav-link {
    position: absolute;
    top: 16px;
    right: 116px;
}

.header-nav-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 310px;
}

.header-nav-link__item {
    margin-top: 12px;
    width: 155px;
    line-height: 1;
}

.header-nav-link__item:nth-of-type(-n+2) {
    margin-top: 0;
}

.header-nav-link__link {
    position: relative;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-nav-link__link:hover {
    opacity: 0.6;
}

.header-nav-link__link:after {
    position: absolute;
    top: 56%;
    right: -20px;
    width: 11px;
    height: 9px;
    background: url(/img/ico/ico_window.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-nav-link__txt {
    color: #282728;
    letter-spacing: 0.02em;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .header-nav-link {
        padding-top: 7.2vw;
        padding-left: 0;
        border-top: 1px solid #c8c8c8;
    }
    .header-nav-link__list {
        width: 100%;
    }
    .header-nav-link__link:after {
        top: 47%;
        right: -4.26667vw;
        width: 2.66667vw;
        height: 2.13333vw;
    }
    .header-nav-link__item {
        margin-top: 3.2vw;
        width: 42.66667vw;
    }
    .header-nav-link__item--nocolumn {
        width: 100%;
    }
    .header-nav-link__txt {
        font-size: 2.93333vw;
    }
}

/*  sp-menu-link
--------------------------------------------- */
.sp-menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-right: auto;
    margin-bottom: 45px;
    margin-left: auto;
}

.sp-menu-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 260px;
}

.sp-menu-link__item {
    margin-right: 24px;
    padding-right: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid #aaaaaa;
    line-height: 1;
}

.sp-menu-link__item:nth-of-type(2) {
    margin-right: 0px;
}

.sp-menu-link__link {
    position: relative;
}

.sp-menu-link__link:after {
    position: absolute;
    top: 47%;
    right: -15px;
    width: 11px;
    height: 9px;
    background: url(/img/ico/ico_window.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sp-menu-link__txt {
    color: #464646;
    letter-spacing: 0.02em;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/*  nav-language-change
--------------------------------------------- */
.nav-language-change {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-right: auto;
    margin-bottom: 10vw;
    margin-left: auto;
    width: 170px;
}

.nav-language-change__item {
    width: 85px;
    text-align: center;
}

.nav-language-change__item--current {
    border-right: 2px solid #e5e5e5;
}

.nav-language-change__link {
    display: block;
    padding-bottom: 6px;
    width: 100%;
    text-align: center;
}

.nav-language-change__txt {
    color: #e5e5e5;
    letter-spacing: 0.02em;
    font-size: 22px;
    font-family: 'Raleway', sans-serif;
    line-height: 1;
}

.nav-language-change__txt--current {
    color: #282728;
}

/*  sp-menu
--------------------------------------------- */
.sp-menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 59px;
    max-height: calc(100% - 59px);
    width: 100%;
    background-color: #fff;
}

.sp-menu__inner {
    margin-right: auto;
    margin-left: auto;
    width: 260px;
}

body.open {
    overflow: hidden;
}

/*  sp-menu-list
--------------------------------------------- */
.sp-menu-list {
    margin-top: 38px;
    margin-bottom: 45px;
}

.sp-menu-list__item {
    margin-bottom: 25px;
    border-bottom: 1px solid #aaaaaa;
}

.sp-menu-list__item:last-of-type {
    margin-bottom: 0;
}

.sp-menu-list__link {
    display: block;
    padding-bottom: 6px;
}

.sp-menu-list__txt {
    display: inline-block;
    margin-left: -3px;
    color: #464646;
    letter-spacing: 0.02em;
    font-weight: lighter;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/*  header-sp-trigger
--------------------------------------------- */
.header-sp-trigger {
    position: absolute;
    top: 5.33333vw;
    right: 4vw;
    z-index: 10;
    display: none;
}

.header-sp-trigger--opened .header-sp-trigger__text span {
    background-color: #464646 !important;
}

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

.header-sp-trigger__text {
    position: relative;
    display: block;
    width: 30px;
    height: 24px;
}

.header-sp-trigger--opened .header-sp-trigger__text span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-315deg);
    transform: translateY(11px) rotate(-315deg);
}

.header-sp-trigger--opened .header-sp-trigger__text span:nth-of-type(2) {
    opacity: 0;
}

.header-sp-trigger--opened .header-sp-trigger__text span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(315deg);
    transform: translateY(-11px) rotate(315deg);
}

.header-sp-trigger__text span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #464646;
}

.header-sp-trigger__text span:nth-of-type(1) {
    top: 0;
}

.header-sp-trigger__text span:nth-of-type(2) {
    top: 11px;
}

.header-sp-trigger__text span:nth-of-type(3) {
    bottom: 0;
}

.header--transparent .header-sp-trigger__text span {
    background-color: #464646;
}

.header--transparent .header-menu--fixed .header-sp-trigger__text span {
    background-color: #464646;
}

@media screen and (max-width: 750px) {
    .header-sp-trigger {
        top: 0;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 62px;
        height: 57px;
        border-left: 1px solid #bfbfbf;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    background-color: #eeeeee;
}

.footer__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding: 40px 0 50px 40px;
    max-width: 1400px;
}

@media screen and (max-width: 750px) {
    .footer__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 6vw 0 12vw;
        width: 89.33333vw;
    }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    margin-top: 3px;
    margin-right: 42px;
    width: 71px;
}

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

.footer-logo__link:hover {
    opacity: 0.6;
}

@media screen and (max-width: 750px) {
    .footer-logo {
        margin-right: 7.73333vw;
        width: 12.4vw;
    }
}

/*  footer-nav-anchor
--------------------------------------------- */
.footer-nav-anchor {
    padding-right: 55px;
    padding-bottom: 8px;
    border-right: 1px solid #bfbfbf;
}

.footer-nav-anchor__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 210px;
}

.footer-nav-anchor__item {
    margin-top: 9px;
    width: 105px;
    line-height: 1;
}

.footer-nav-anchor__item:nth-of-type(-n+2) {
    margin-top: 0;
}

.footer-nav-anchor__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-nav-anchor__link:hover {
    opacity: 0.6;
}

.footer-nav-anchor__txt {
    color: #282728;
    letter-spacing: 0.02em;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .footer-nav-anchor {
        padding-right: 0;
        padding-bottom: 6.66667vw;
        border-right: none;
    }
    .footer-nav-anchor__list {
        width: 50.66667vw;
    }
    .footer-nav-anchor__item {
        margin-top: 3.2vw;
        width: 22.66667vw;
    }
    .footer-nav-anchor__txt {
        font-size: 2.93333vw;
    }
}

/*  footer-nav-link
--------------------------------------------- */
.footer-nav-link {
    padding-left: 42px;
}

.footer-nav-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 360px;
}

.footer-nav-link__item {
    margin-top: 12px;
    width: 180px;
    line-height: 1;
}

.footer-nav-link__item:nth-of-type(-n+2) {
    margin-top: 0;
}

.footer-nav-link__link {
    position: relative;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-nav-link__link:hover {
    opacity: 0.6;
}

.footer-nav-link__link:after {
    position: absolute;
    top: 56%;
    right: -20px;
    width: 11px;
    height: 9px;
    background: url(/img/ico/ico_window.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.link_break:after {
    top: 76%;
}

.footer-nav-link__txt {
    color: #282728;
    letter-spacing: 0.02em;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .footer-nav-link {
        padding-top: 7.2vw;
        padding-left: 0;
        border-top: 1px solid #c8c8c8;
    }
    .footer-nav-link__list {
        width: 100%;
    }
    .footer-nav-link__link:after {
        top: 47%;
        right: -4.26667vw;
        width: 2.66667vw;
        height: 2.13333vw;
    }
    .link_break:after {
        top: 74%;
    }
    .footer-nav-link__item {
        margin-top: 3.2vw;
        width: 42.66667vw;
    }
    .footer-nav-link__item--nocolumn {
        width: 100%;
    }
    .footer-nav-link__txt {
        font-size: 2.93333vw;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    position: absolute;
    right: 20px;
    bottom: 12px;
}

.footer-copyright__txt {
    color: #464646;
    font-size: 12px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        right: -1.06667vw;
        bottom: 2.66667vw;
    }
    .footer-copyright__txt {
        font-size: 2.13333vw;
    }
}
