@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: "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;

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

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

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

body {
    line-height: 1.4;
}

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

/* Noto
---------------------------------------- */
@font-face {
    font-family: "NotoSansCJKjp";
    src: url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.eot");
    src: local("Noto Sans CJK JP"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.eot?#iefix") format("embedded-opentype"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff") format("woff"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.otf") format("opentype");
}

/* bold */
@font-face {
    font-family: "NotoSansCJKjpBold";
    src: url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.eot");
    src: local("Noto Sans CJK JP Bold"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.eot?#iefix") format("embedded-opentype"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff") format("woff"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.otf") format("opentype");
}

/* light */
@font-face {
    font-family: "NotoSansCJKjpLight";
    src: url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Light.eot");
    src: local("Noto Sans CJK JP Light"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Light.eot?#iefix") format("embedded-opentype"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Light.woff") format("woff"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Light.otf") format("opentype");
}

/* Black */
@font-face {
    font-family: "NotoSansCJKjpBlack";
    src: url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Black.eot");
    src: local("Noto Sans CJK JP Black"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Black.eot?#iefix") format("embedded-opentype"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Black.woff") format("woff"), url("../_fonts/NotoSansCJKjp/NotoSansCJKjp-Black.otf") format("opentype");
}

.ff_noto {
    font-family: NotoSansCJKjp, "Hiragino Kaku Gothic Pro", "meiryo", sans-serif;
}

.ff_noto_bold {
    font-family: NotoSansCJKjpBold, "Hiragino Kaku Gothic Pro", "meiryo", sans-serif;
}

.ff_noto_light {
    font-family: NotoSansCJKjpLight, "Hiragino Kaku Gothic Pro", "meiryo", sans-serif;
}

.ff_noto_Black {
    font-family: NotoSansCJKjpBlack, "Hiragino Kaku Gothic Pro", "meiryo", sans-serif;
}

/* ---------------------------------------------
*   google fonts
--------------------------------------------- */
.gram {
    font-family: 'Sawarabi Gothic', sans-serif;
}
.gram--l {
    font-weight: bold;
}

.liter {
    font-size: 130%;
    font-family: 'Italianno', cursive;
}
.gothic {
    font-family: Zen Kaku Gothic New,;
}

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

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

/* ---------------------------------------------
*   sup
--------------------------------------------- */
.sup {
    position: relative;
    top: -0.2em;
    right: 0.2em;
    vertical-align: top;
    font-size: 9px;
}

/* ---------------------------------------------
*   l-number
--------------------------------------------- */
.l-number {
    vertical-align: -3%;
    font-size: 130%;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    padding-top: 5px;
    width: 100%;
    background-color: #000;

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

@media screen and (max-width: 1366px) {
    .header {
        padding-top: 0.36603vw;
    }
}

@media screen and (max-width: 750px) {
    .header {
        padding-top: 0.66667vw;
    }
}

.header--mix {
    background-color: #000;
}

.header--mix:before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #FFF100;
    content: "";
}

.header--black {
    background-color: #000;
}

.header--yellow {
    background-color: #FFF100;
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    margin-right: auto;
    margin-left: 15px;
    width: 326px;
}

@media screen and (max-width: 1366px) {
    .header-logo {
        margin-left: 1.0981vw;
        width: 23.8653vw;
    }
}

@media screen and (max-width: 750px) {
    .header-logo {
        margin-left: 2vw;
        width: 43.46667vw;
    }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 2000;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: right .5s;
    transition: right .5s;
}

.js-sp-menu-opened .header-nav {
    right: 0;
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-top: 20%;
    margin-right: auto;
    margin-left: auto;
    width: 1050px;

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

@media screen and (max-width: 1366px) {
    .header-nav__list {
        width: 64.7877vw;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__list {
        width: 100%;
        text-align: center;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__list-item {
        margin-bottom: 4vw;
        width: 50%;
    }
}

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

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

.header-nav__link-img {
    width: 215px;
}
.header-nav__link-img--1 {
    width: 254px;
}
.header-nav__link-img--2 {
    width: 277px;
}
.header-nav__link-img--3 {
    width: 222px;
}
.header-nav__link-img--4 {
    width: 252px;
}


@media screen and (max-width: 1366px) {
    .header-nav__link-img {
        width: 15.73939vw;
    }
}

@media screen and (max-width: 1366px) {
    .header-nav__link-img--1 {
        width: calc((254 / 1366) * 100vw);
    }
    .header-nav__link-img--2 {
        width: calc((277 / 1366) * 100vw);
    }
    .header-nav__link-img--3 {
        width: calc((222 / 1366) * 100vw);
    }
    .header-nav__link-img--4 {
        width: calc((252 / 1366) * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .header-nav__link-img {
        width: 70%;
    }
    .header-nav__link-img--4 {
        width: 79%;
    }
}

.header-nav__note {
    margin-top: 150px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
    width: 885px;
    color: #fff;
    text-align: right;
    font-size: 12px;
}

@media screen and (max-width: 1366px) {
    .header-nav__note {
        margin-top: 10.98097vw;
        width: 64.7877vw;
        font-size: 0.87848vw;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__note {
        margin-top: 0;
        width: 100%;
        font-size: 10px;
    }
}

/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
    position: relative;
    z-index: 3000;
    display: block;
    margin: 0;
    padding: 15px;
    outline: none;
    border: 0;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

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

.header-menu-button:hover {
    opacity: 0.8;
}

.js-sp-menu-opened .header-menu-button {
    position: fixed;
    top: 0;
    right: 0;
}

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

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

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

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

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

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

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

.header-menu-button__line--white {
    background-color: #fff;
}

.header-menu-button__line--black {
    background-color: #000;
}

.js-sp-menu-opened .header-menu-button__line--top {
    top: 50%;
    background-color: #fff;
    -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%;
    background-color: #fff;
    -webkit-transform: translateY(50%) rotate(-45deg);
    transform: translateY(50%) rotate(-45deg);
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer__link {
    padding-top: 60px;
    padding-bottom: 85px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 1366px) {
    .footer__link {
        padding-top: 4.39239vw;
        padding-bottom: 6.22255vw;
    }
}

@media screen and (max-width: 750px) {
    .footer__link {
        padding-top: 8vw;
        padding-bottom: 11.33333vw;
    }
}

.footer__link-title {
    padding-bottom: 10px;
    font-size: 30px;
    font-family: NotoSansCJKjpBold, "Hiragino Kaku Gothic Pro", "meiryo", sans-serif;
}

@media screen and (max-width: 1366px) {
    .footer__link-title {
        padding-bottom: 0.73206vw;
        font-size: 2.19619vw;
    }
}

@media screen and (max-width: 750px) {
    .footer__link-title {
        padding-bottom: 1.33333vw;
        font-size: 4vw;
    }
}

.footer__link-title--red {
    color: #D71618;
}

.footer__link-title .sup {
    position: relative;
    top: 0.1em;
    right: 0.2em;
    vertical-align: top;
    font-size: 9px;
}

.footer__link-txt {
    padding-bottom: 20px;
    font-size: 12px;
}

@media screen and (max-width: 1366px) {
    .footer__link-txt {
        padding-bottom: 1.46413vw;
        font-size: 0.87848vw;
    }
}

@media screen and (max-width: 750px) {
    .footer__link-txt {
        margin-right: auto;
        margin-left: auto;
        padding-bottom: 2.66667vw;
        width: 80%;
        text-align: left;
        font-size: 9px;
    }
}

.footer__link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-right: auto;
    margin-left: auto;
    width: 460px;


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

@media screen and (max-width: 1366px) {
    .footer__link-list {
        width: 35.4407vw;
    }
}

@media screen and (max-width: 750px) {
    .footer__link-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer__link-list--top {
    width: 928px;
}

.footer__link-list--top .footer__link-item:last-of-type {
    margin-left: -15px;
}

@media screen and (max-width: 1366px) {
    .footer__link-list--top {
        width: 67.7877vw;
    }

    .footer__link-list--top .footer__link-item:last-of-type {
        margin-left: -1vw;
    }
}

@media screen and (max-width: 750px) {
    .footer__link-list--top {
        width: 100%;
    }

    .footer__link-list--top .footer__link-item:last-of-type {
        margin-left: auto;
    }
}

.footer__link-list--v6 {
    width: 680px;
}
@media screen and (max-width: 1366px) {
    .footer__link-list--v6 {
        width: calc((100 / 1366) * 680vw);
    }
}
@media screen and (max-width: 750px) {
    .footer__link-list--v6 {
        width: 100%;
    }
}


.footer__link-item {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

/*.footer__link-item--1 {
    width: 246px;
}
@media screen and (max-width: 1366px) {
    .footer__link-item--1 {
        width: calc((100 / 1366) * 233vw);
    }
}
.footer__link-item--2 {
    width: 253px;
}
@media screen and (max-width: 1366px) {
    .footer__link-item--2 {
        width: calc((100 / 1366) * 253vw);
    }
}
.footer__link-item--3 {
    width: 203px;
}
@media screen and (max-width: 1366px) {
    .footer__link-item--3 {
        width: calc((100 / 1366) * 203vw);
    }
}*/

.footer__link-item:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .footer__link-item {
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 4vw;
        margin-left: auto;
        width: 49%;
    }
}

.footer__link-img {
    width: 223px;
}
.footer__link-img--1 {
    width: 227px;
}
.footer__link-img--2 {
    width: 240px;
}
.footer__link-img--3 {
    width: 190px;
}
.footer__link-img--4 {
    width: 217px;
}
.footer__link-list--v6 .footer__link-img--4 {
    width: 211px;
}


.footer__link-img--v6 {
    width: 100%;
}

@media screen and (max-width: 1366px) {
    .footer__link-img {
        width: 15.73939vw;
    }
    .footer__link-img--v6 {
        width: 100%;
    }
}

@media screen and (max-width: 1366px) {
    .footer__link-img--1 {
        width: calc((227 / 1366) * 100vw);
    }
    .footer__link-img--2 {
        width: calc((240 / 1366) * 100vw);
    }
    .footer__link-img--3 {
        width: calc((190 / 1366) * 100vw);
    }
    .footer__link-img--4 {
        width: calc((217 / 1366) * 100vw);
    }
    .footer__link-list--v6 .footer__link-img--4 {
        width: calc((211 / 1366) * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .footer__link-img {
        width: 50%;
    }
    .footer__link-list--v6 .footer__link-img--4 {
        width: 50%;
    }
    .footer__link-img--v6-s {
        width: 53.5%;
    }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 20px;
    height: 120px;
    text-align: center;
}

@media screen and (max-width: 1366px) {
    .footer-logo {
        padding-top: 2.92826vw;
        padding-bottom: 1.46413vw;
        height: 8.78477vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-logo {
        padding-top: 5.33333vw;
        padding-bottom: 2.66667vw;
        height: 16vw;
    }
}

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

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

.footer-logo__img {
    margin-bottom: 15px;
    width: 326px;
}

@media screen and (max-width: 1366px) {
    .footer-logo__img {
        margin-bottom: 1.0981vw;
        width: 23.8653vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-logo__img {
        margin-bottom: 2vw;
        width: 43.46667vw;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    font-weight: bold;
    font-size: 12px;
}

@media screen and (max-width: 1366px) {
    .footer-copyright {
        font-size: 0.87848vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        font-size: 1.6vw;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    right: 50px;
    bottom: 100px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-pagetop:hover {
    opacity: 0.8;
}

@media screen and (max-width: 1366px) {
    .footer-pagetop {
        right: 3.66032vw;
        bottom: 7.32064vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-pagetop {
        right: 6.66667vw;
        bottom: 13.33333vw;
    }
}

@media screen and (max-width: 1366px) {
    .footer-pagetop__img {
        width: 3.29429vw;
        height: 3.29429vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-pagetop__img {
        width: 6vw;
        height: 6vw;
    }
}

@media screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 1366px) {
    .tb-hide {
        display: none !important;
    }
}

@media screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}

.notosans {
    font-family: 'Noto Sans', Arial, sans-serif;
}