@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: 10px;
    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: 812px) {
    html,
    body {
        font-size: 1.5625vw;
    }
}

body {
    min-width: 1200px;
    line-height: 1.5;
}

@media screen and (max-width: 812px) {
    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;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
/*  header-container
--------------------------------------------- */
.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    padding: 26px 45px 25px 25px;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 812px) {
    .header-container {
        padding: 4.0625% 7.03125% 3.90625% 3.90625%;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-logos__item {
    overflow: hidden;
    width: 111px;
    -webkit-transform: translateX(-314.15%);
    transform: translateX(-314.15%);
}

@media screen and (max-width: 812px) {
    .header-logos__item {
        margin-right: 0;
        width: 23.3125vw;
    }

    .header-logos__item img {
        width: 100%;
    }
}

.loaded .header-logos__item {
    -webkit-animation: logo_move 1s ease .1s both;
    animation: logo_move 1s ease .1s both;
}

@-webkit-keyframes logo_move {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-314.15%);
        transform: translateX(-314.15%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes logo_move {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-314.15%);
        transform: translateX(-314.15%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.loaded .header-logos__item img {
    -webkit-animation: logo_rotate 1s ease .1s both;
    animation: logo_rotate 1s ease .1s both;
}

@-webkit-keyframes logo_rotate {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes logo_rotate {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

/*  header-link
--------------------------------------------- */
@media screen and (max-width: 812px) {
    .header-link {
        width: 27.34375vw;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    overflow: hidden;
    width: 100%;
    background-position: 0 0;
}

@media screen and (min-width: 813px) {
    .wrapper {
        background-image: url(/library/stories/7pj/img/bg_deco.png), url(/library/stories/7pj/img/bg.png);
        background-size: cover, auto;
        background-repeat: no-repeat, repeat;
    }
}

@media screen and (max-width: 812px) {
    .wrapper {
        height: calc(var(--vh, 1vh) * 100);
        background-image: url(/library/stories/7pj/img/bg.png);
        background-repeat: repeat;
    }
    .wrapper--index {
        height: auto;
        background-image: url(/library/stories/7pj/img/index/bg_deco_sp.png), url(/library/stories/7pj/img/bg.png);
        background-size: 100% auto, auto;
        background-repeat: repeat-y, repeat;
    }
}

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    position: relative;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;

    -webkit-perspective: 1000px;
    perspective: 1000px;
}

@media screen and (min-width: 813px) {
    .contents {
        width: 834.25px;
        height: 470px;
    }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
    .contents {
        width: calc(var(--vh, 1vh) * 100 * 1.775);
        height: calc(100% + 1px);
    }
}

.disable .contents {
    pointer-events: none;
}

.noslide .contents {
    pointer-events: none;
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    padding: 20px 10px 90px;
    border-top: 1px solid #c9c9c9;
    background-image: url(/library/stories/7pj/img/bg_line.png);
    background-position:  left 100px;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 16px;
    background-color: #009944;
    top: 119px;
    left: 170px;
    z-index: -1;
}

@media screen and (max-width: 812px) {
    .footer {
        padding: 6.25% 6.25% 23.8125%;
        background: url(/library/stories/7pj/img/sp-bg_line.png) left no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
        -ms-background-position-y: 90%;
        background-position-y: 90%;
    }

    .footer:before {
        content: none;
    }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    margin-right: auto;
    margin-left: auto;
    width: 960px;
}

@media screen and (max-width: 812px) {
    .footer-container {
        width: auto;
    }
}

.footer-container__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    width: 100%;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 812px) {
    .footer-container__top {
        display: block;
    }
}

.footer-container__bottom {
    text-align: right;
}

@media screen and (max-width: 812px) {
    .footer-container__bottom {
        margin-top: 4.2rem;
        text-align: center;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    overflow: hidden;
    width: 620px;
    text-align: right;
}

@media screen and (max-width: 812px) {
    .footer-nav {
        margin-top: 4.2rem;
        width: auto;
        text-align: center;
    }
}

.footer-nav__list {
    margin-right: -10px;
}

.footer-nav__item {
    display: inline-block;
    margin: 0 5px 12px 0;
    padding-right: 5px;
    border-right: 1px solid #bcbcbc;
    font-size: 11px;
    line-height: 1;
}

@media screen and (max-width: 812px) {
    .footer-nav__item {
        margin: 3.90625vw 2.34375vw 0 0;
        padding-right: 2.34375vw;
        border-right-width: 0.3125vw;
        vertical-align: middle;
        font-size: 1.6rem;
        line-height: 1;
    }
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    text-align: center;
}

@media screen and (max-width: 812px) {
    .footer-logo img {
        width: 31.5625vw;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    color: #000;
    font-size: 11px;
}

@media screen and (max-width: 812px) {
    .footer-copyright {
        font-size: 1.6rem;
    }
}

/*  footer-container__bottom-txt
--------------------------------------------- */
.footer-container__bottom-txt {
    font-size: 12px;
    color: #fff;
    position: relative;
    top: 32px;
    text-align: right;
}