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

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

Contents:
    base settings
    base blocks
    ========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/*  Noto Sans Japanese
--------------------------------------------- */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.otf") format("opentype");
    src: url("../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.woff") format("woff");
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Noto Sans Japanese Bold';
    src: url("../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.otf") format("opentype");
    src: url("../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff") format("woff");
}

.ff_Bold {
    font-family: 'Noto Sans Japanese Bold';
}

/*  DINCondensedBold
--------------------------------------------- */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'DIN Condensed Bold';
    src: url("../fonts/DINCondensedBold/DINCondensedBold.ttf") format("truetype");
    src: url("../fonts/DINCondensedBold/DINCondensedBold.woff") format("woff");
}

.ff_din {
    font-family: 'DIN Condensed Bold';
}

/*  font-color
--------------------------------------------- */
.fc_white {
    color: #fff;
}

.fc_black {
    color: #000;
}

.fc_gray {
    color: #404040;
}

.fc_red {
    color: #c02528;
}

/*  html, body
--------------------------------------------- */
html,
body {
    background: url(../img/pc/bg_gradation.png) center top repeat-y;
    background-size: 100% auto;
    color: #231815;
    font-size: 35px;
    font-family: "Noto Sans Japanese", sans-serif;

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

@media screen and (max-width: 738px) {
    html,
    body {
        background-image: url(../img/sp/bg_gradation.png);
        font-size: 3.25521vw;
    }
    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;
}

/*  <hr> tag as anchor target
--------------------------------------------- */
hr[id^="anchor"] {
    display: block;
    margin: 0;
    margin-top: -70px;
    padding: 0;
    padding-top: 70px;
    width: auto;
    height: 0;
    border: 0;
}

@media screen and (max-width: 738px) {
    hr[id^="anchor"] {
        margin-top: 0;
        padding-top: 0;
    }
}

/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 1%;
    width: 100%;
    height: 40px;
    background-color: #231815;
    opacity: 1;
    -webkit-transition: all 3.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 3.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.header-link__button {
    padding: 3px 25px;
    border: 1px solid #fff;
    font-size: 13.5px;
}

@media screen and (max-width: 738px) {
    .header {
        z-index: 999;
        padding: 0;
        height: 60px;
    }
}

/*  header-container
--------------------------------------------- */
.header-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding: 5px 0;
    max-width: 1180px;
}

.header-container:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 738px) {
    .header-container {
        padding: 0 4.6875vw 0 6.25vw;
        max-width: none;
        width: auto;
    }
}

@media screen and (max-width: 738px) and (min-width: 1101px) {
    padding: 0 51.5px 0 69px;
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    float: left;
}

@media screen and (max-width: 738px) {
    .header-logo {
        padding-top: 8px;
    }
}

.header-logo__text {
    display: block;
    overflow: hidden;
    padding-top: 30px;
    width: 54px;
    height: 0;
    background-image: url(../img/pc/logo_header.png);
    background-position: 0 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 738px) {
    .header-logo__text {
        padding-top: 42px;
        width: 74px;
        background-image: url(../img/sp/logo_header.png);
        background-position: 50% 50%;
        background-size: 100% auto;
    }
}

/*  header-list
--------------------------------------------- */
.header-list {
    display: none;
    overflow: hidden;
    padding-top: 11.71875vw;
    color: #fff;
    font-weight: bold;
    font-size: 1.20968vw;
}

@media screen and (max-width: 738px) {
    .header-list {
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        z-index: 99;
        display: none;
        overflow-y: scroll;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: auto;
        padding-top: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(0, 0, 0, 0.9);
    }
}

.header-list__content {
    float: left;
    margin-right: 2.62096vw;
    font-size: 1.330645vw;
    line-height: 30px;
}

@media screen and (max-width: 738px) {
    .header-list__content {
        float: none;
        margin: 0 3.125vw;
        width: auto;
        border-bottom: 1px solid #fff;
        background: none;
        text-align: center;
        font-size: 3.90625vw;
    }
}

@media screen and (max-width: 738px) {
    .header-list__content a {
        display: block;
        padding-right: 0;
        height: 80px;
        line-height: 80px;
    }
}

/*  header-link
--------------------------------------------- */
.header-link {
    float: right;
    margin-top: 8px;
    color: #fff;
    font-size: 1.330645vw;
}

@media screen and (min-width: 1101px) {
    .header-link {
        font-size: 14.5px;
    }
}

@media screen and (max-width: 738px) {
    .header-link {
        display: none;
        width: 155px;
    }
}

/*  header-sp-trigger
--------------------------------------------- */
.header-sp-trigger {
    position: absolute;
    top: 0;
    right: 2.82258vw;
    z-index: 11;
    display: none;
    overflow: hidden;
    padding-top: 60px;
    width: 60px;
    height: 0;
    cursor: pointer;
}

@media screen and (min-width: 1101px) {
    .header-sp-trigger {
        right: 31px;
    }
}

@media screen and (max-width: 738px) {
    .header-sp-trigger {
        display: block;
    }
}

.header-sp-trigger--current .header-sp-trigger__text {
    -webkit-animation: menu-center--active .5s forwards;
    animation: menu-center--active .5s forwards;
}

.header-sp-trigger--current .header-sp-trigger__text:before {
    -webkit-animation: menu-top--active .5s forwards;
    animation: menu-top--active .5s forwards;
}

.header-sp-trigger--current .header-sp-trigger__text:after {
    -webkit-animation: menu-bottom--active .5s forwards;
    animation: menu-bottom--active .5s forwards;
}

.header-sp-trigger__text {
    color: #251814;
}

.header-sp-trigger__text {
    position: absolute;
    top: 30px;
    left: 50%;
    display: inline-block;
    margin-left: -20px;
    width: 40px;
    border-bottom: 5px solid #fff;
    font-size: 0;
    line-height: 1;
    -webkit-animation: menu-center .5s forwards;
    animation: menu-center .5s forwards;
}

.header-sp-trigger__text:before, .header-sp-trigger__text:after {
    position: absolute;
    left: 50%;
    display: inline-block;
    margin-left: -20px;
    width: 40px;
    border-top: 5px solid #fff;
    content: "";
}

.header-sp-trigger__text:before {
    top: -12px;
    -webkit-animation: menu-top .5s forwards;
    animation: menu-top .5s forwards;
}

.header-sp-trigger__text:after {
    top: 12px;
    -webkit-animation: menu-bottom .5s forwards;
    animation: menu-bottom .5s forwards;
}

/* -- js_trigger animation -- */
@keyframes menu-top {
    100% {
        top: -12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 36px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@keyframes menu-center {
    100% {
        border-bottom: 5px solid #fff;
    }
    75% {
        border-bottom: 5px solid #fff;
    }
    0% {
        border: 0;
    }
}

@keyframes menu-bottom {
    100% {
        top: 12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@-webkit-keyframes menu-top {
    100% {
        top: -12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(45deg);
    }
}

@-webkit-keyframes menu-center {
    100% {
        border-bottom: 5px solid #fff;
    }
    75% {
        border-bottom: 5px solid #fff;
    }
    0% {
        border: 0;
    }
}

@-webkit-keyframes menu-bottom {
    100% {
        top: 12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    0% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(-45deg);
    }
}

@keyframes menu-top--active {
    0% {
        top: -12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@keyframes menu-center--active {
    0% {
        border-bottom: 5px solid #fff;
    }
    75% {
        border-bottom: 5px solid #fff;
    }
    100% {
        border: 0;
    }
}

@keyframes menu-bottom--active {
    0% {
        top: 12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@-webkit-keyframes menu-top--active {
    0% {
        top: -12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(45deg);
    }
}

@-webkit-keyframes menu-center--active {
    0% {
        border-bottom: 5px solid #fff;
    }
    75% {
        border-bottom: 5px solid #fff;
    }
    100% {
        border: 0;
    }
}

@-webkit-keyframes menu-bottom--active {
    0% {
        top: 12px;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    75% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 0;
        width: 40px;
        -webkit-transform: rotate(-45deg);
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    position: relative;
    padding-top: 40px;
}

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

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
.global-nav {
    background-color: #6b0f0f;
}

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

.global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
    width: 1140px;
    height: 70px;
}

@media screen and (max-width: 1240px) {
    .global-nav__list {
        width: 91.93548vw;
        height: 5.64516vw;
    }
}

.global-nav__list-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% / 5);
}

.global-nav__list-item:first-child .global-nav__link {
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.global-nav__list-item:nth-of-type(1) .global-nav__link--content {
    padding-top: 8px;
    vertical-align: top;
    text-align: left;
    font-size: 13px;
    line-height: 1.1;
}

@media screen and (max-width: 1240px) {
    .global-nav__list-item:nth-of-type(1) .global-nav__link--content {
        padding-top: 0.64516vw;
        font-size: 1.04839vw;
    }
}

.global-nav__list-item:nth-of-type(2) .global-nav__link--content {
    padding-top: 8px;
    vertical-align: top;
    text-align: left;
    font-size: 13px;
    line-height: 1.1;
}

@media screen and (max-width: 1240px) {
    .global-nav__list-item:nth-of-type(2) .global-nav__link--content {
        padding-top: 0.64516vw;
        font-size: 1.04839vw;
    }
}

.global-nav__list-item:nth-of-type(3) .global-nav__link--content:before {
    top: 36px;
}

@media screen and (max-width: 1240px) {
    .global-nav__list-item:nth-of-type(3) .global-nav__link--content:before {
        top: 2.90323vw;
    }
}

.global-nav__list-item:nth-of-type(4) .global-nav__link--content:before {
    top: 36px;
}

@media screen and (max-width: 1240px) {
    .global-nav__list-item:nth-of-type(4) .global-nav__link--content:before {
        top: 2.90323vw;
    }
}

.global-nav__list-item:nth-of-type(5) .global-nav__link--content:before {
    top: 36px;
}

@media screen and (max-width: 1240px) {
    .global-nav__list-item:nth-of-type(5) .global-nav__link--content:before {
        top: 2.90323vw;
    }
}

.global-nav__link {
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
    height: 44px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 1240px) {
    .global-nav__link {
        margin-top: 0.80645vw;
        padding-right: 0.80645vw;
        padding-left: 0.80645vw;
        height: 3.54839vw;
    }
}

.global-nav__link--num {
    display: table-cell;
    padding-top: 3px;
    padding-right: 7px;
    font-size: 46px;
}

@media screen and (max-width: 1240px) {
    .global-nav__link--num {
        padding-top: 0.24194vw;
        padding-right: 0.56452vw;
        font-size: 3.70968vw;
    }
}

@media screen and (max-width: 738px) {
    .global-nav__link--num {
        font-size: 6.51042vw;
    }
}

.global-nav__link--content {
    position: relative;
    display: table-cell;
    width: 100%;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    letter-spacing: -.03vw;
    font-size: 15px;
}

@media screen and (max-width: 1240px) {
    .global-nav__link--content {
        font-size: 1.20968vw;
    }
}

@media screen and (max-width: 738px) {
    .global-nav__link--content {
        font-size: 3.90625vw;
        line-height: 1.3;
    }
}

.global-nav__link--content:before {
    position: absolute;
    top: 38px;
    left: 50%;
    display: block;
    width: 12px;
    height: 8px;
    background-image: url(../img/pc/icon_arrow.png);
    background-position: 0 0;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1240px) {
    .global-nav__link--content:before {
        top: 3.06452vw;
        width: 0.96774vw;
        height: 0.64516vw;
        background-size: 0.96774vw 0.64516vw;
    }
}

@media screen and (max-width: 738px) {
    .global-nav__link--content:before {
        display: none;
    }
}

.global-nav--fixed {
    position: fixed;
    z-index: 10;
    width: 100%;
}

.mac .global-nav__link--num {
    position: relative;
    top: 5px;
}

@media screen and (max-width: 1240px) {
    .mac .global-nav__link--num {
        top: 0.40323vw;
    }
}

.ipad .global-nav__link--num {
    position: relative;
    top: 5px;
}

@media screen and (max-width: 1240px) {
    .ipad .global-nav__link--num {
        top: 0.40323vw;
    }
}

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    overflow: hidden;
}

.contents-outer {
    position: relative;
    z-index: 9;
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
.main {
    position: relative;
    margin: 0 auto;
    max-width: 1140px;
    width: 91.93548vw;
}

.main--gnavfixed {
    padding-top: 70px;
}

@media screen and (max-width: 1240px) {
    .main--gnavfixed {
        padding-top: 5.64516vw;
    }
}

@media screen and (max-width: 738px) {
    .main--gnavfixed {
        padding-top: 0;
    }
}

/* ---------------------------------------------
*   pagetop
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    width: 100%;
    background-color: #231815;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    -webkit-transition: opacity 3.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 3.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

@media screen and (max-width: 738px) {
    .footer {
        margin-top: 5.20833vw;
    }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    margin-right: auto;
    margin-left: auto;
    padding: 20px 0 10px;
    max-width: 1240px;
}

.footer-container:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 738px) {
    .footer-container {
        padding: 5.375vw 9.375vw 3.125vw;
        max-width: none;
        width: auto;
    }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    display: inline-block;
    margin-top: 40px;
    padding-top: 40px;
    width: 286px;
    border-top: 2px solid #666;
}

@media screen and (max-width: 1240px) {
    .footer-logo {
        margin-top: 3.22581vw;
        padding-top: 3.22581vw;
        width: 23.06452vw;
    }
    .footer-logo__link {
        padding-top: 5.64516vw;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 738px) {
    .footer-logo {
        margin-top: 12.5vw;
        padding-top: 12.5vw;
        width: 60.625vw;
        border-width: 1px;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    position: relative;
}

.footer-nav__list {
    letter-spacing: -.4em;
}

.footer-nav__list-item {
    display: inline-block;
    margin: 0 30px;
    letter-spacing: normal;
}

.footer-nav__link {
    display: block;
}

.footer-nav__link:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-nav__link img {
    width: auto;
    height: 35px;
}

@media screen and (max-width: 1240px) {
    .footer-nav__list-item {
        margin: 0 2.41935vw;
    }
    .footer-nav__link img {
        height: 2.82258vw;
    }
}

@media screen and (max-width: 738px) {
    .footer-nav {
        margin-top: 0;
    }
    .footer-nav__list {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        letter-spacing: normal;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .footer-nav__list-item {
        margin: 0 3.125vw;
    }
    .footer-nav__link img {
        height: 8.4375vw;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    margin-top: 5px;
    line-height: 1;
}

.footer-copyright__text {
    color: inherit;
    font-weight: bold;
    font-size: 0.31429rem;
}

@media screen and (max-width: 738px) {
    .footer-copyright {
        margin-top: 6.51042vw;
    }
    .footer-copyright__text {
        font-size: 2.97687vw;
    }
}
