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

Description:
    ユーザーエージェントスタイルの初期化を行う

Contents:
    reset style
========================================================== */
/* ---------------------------------------------
*   reset style
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font: inherit;
    font-size: 100%;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

caption, th, td {
    vertical-align: middle;
    text-align: left;
    font-weight: normal;
}

q, blockquote {
    quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
    clear: both;
    content: "";
    content: none;
}

a img {
    border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}


/* ==========================================================
Name:
    base.css

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

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Josefin Sans
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Roboto:700&display=swap");
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Noto Sans CJK JP';
    src: url("../font/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../font/NotoSansCJKjp-Regular.woff") format("woff"), url("../font/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../font/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Noto Sans CJK JP';
    src: url("../font/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../font/NotoSansCJKjp-Bold.woff") format("woff"), url("../font/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../font/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}

@font-face {
    font-weight: 900;
    font-style: normal;
    font-family: 'Noto Sans CJK JP';
    src: url("../font/NotoSansCJKjp-Black.woff2") format("woff2"), url("../font/NotoSansCJKjp-Black.woff") format("woff"), url("../font/NotoSansCJKjp-Black.ttf") format("truetype"), url("../font/NotoSansCJKjp-Black.eot") format("embedded-opentype");
}

/* ---------------------------------------------
*   Roboto
--------------------------------------------- */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    font-family: "Noto Sans CJK JP", "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: 750px) {
    html,
    body {
        font-size: 4vw;
    }
}

html {
    overflow: auto;
}

body {
    overflow-x: hidden;
    min-width: 1020px;
    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;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding: 5px 10px;
    max-width: 1400px;
    width: 100%;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .header {
        -ms-flex-pack: justify;
        padding: 1.33333vw 0.66667vw;

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

.header__logo {
    display: block;
}

@media screen and (max-width: 750px) {
    .header__logo {
        margin-left: 1.33333vw;
    }
}

.header__logo-link {
    display: block;
}

@media screen and (max-width: 750px) {
    .header__logo-link {
        width: 20vw;
    }
}

.header__text {
    margin-left: 15px;
    font-weight: 400;
}

@media screen and (max-width: 750px) {
    .header__text {
        margin-left: 0;
        font-size: 3.2vw;
    }
}

@media screen and (max-width: 750px) {
    .header__text-title {
        text-align: right;
    }
}

.header__text-text {
    font-size: 0.75rem;
}

@media screen and (max-width: 750px) {
    .header__text-text {
        font-size: 1.86667vw;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/*  content-main
--------------------------------------------- */
.content-main {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 900px;
}

@media screen and (max-width: 750px) {
    .content-main {
        margin-right: 3.33333%;
        margin-left: 3.33333%;
        width: auto;
    }
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    padding: 40px 0;
    background-color: #079512;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .footer {
        padding: 2vw 0;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright__text {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.8;
}

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


/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   keyvisual
--------------------------------------------- */
.keyvisual {
    position: relative;
    margin-right: auto;
    margin-bottom: 25px;
    margin-left: auto;
    width: 1400px;
}

@media screen and (max-width: 750px) {
    .keyvisual {
        margin-bottom: 9.33333vw;
        width: 100%;
    }
}

.keyvisual__caption {
    position: absolute;
    top: 88px;
    left: 228px;
    z-index: 1;
    display: block;
    overflow: hidden;
    padding-top: 102px;
    width: 540px;
    height: 0;
    background: url(../img/title_keyvisual1.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 750px) {
    .keyvisual__caption {
        top: 42.66667vw;
        left: 50%;
        padding-top: 11.73333vw;
        width: 60.4vw;
        background: url(../img/sp/title_keyvisual1.png) 0 0 no-repeat;
        background-size: 100% auto;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.keyvisual__title {
    position: absolute;
    top: 205px;
    left: 89px;
    z-index: 1;
    display: block;
    overflow: hidden;
    padding-top: 155px;
    width: 821px;
    height: 0;
    background: url(../img/title_keyvisual2.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 750px) {
    .keyvisual__title {
        top: 56vw;
        left: 50%;
        padding-top: 17.86667vw;
        width: 93.46667vw;
        background: url(../img/sp/title_keyvisual2.png) 0 0 no-repeat;
        background-size: 100% auto;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.keyvisual__note {
    position: absolute;
    bottom: 13px;
    left: 203px;
    z-index: 1;
    font-size: 0.75rem;
}

@media screen and (max-width: 750px) {
    .keyvisual__note {
        bottom: 1.33333vw;
        left: 50%;
        width: 100%;
        text-align: center;
        font-size: 2.26667vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* ---------------------------------------------
*   sns-area
--------------------------------------------- */
.sns-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
    max-width: 1400px;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 750px) {
    .sns-area {
        margin-right: 3.33333vw;
        margin-left: 3.33333vw;
        padding: 0;
    }
}

.sns-area__text {
    margin-right: 10px;
    font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 750px) {
    .sns-area__text {
        margin-right: 2.66667vw;
        font-size: 3.2vw;
    }
}

.sns-area__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.sns-area__list-item:nth-of-type(n + 2) {
    margin-left: 10px;
}

@media screen and (max-width: 750px) {
    .sns-area__list-item:nth-of-type(n + 2) {
        margin-left: 2.66667vw;
    }
}

.sns-area__list-link {
    display: block;
    width: 32px;
}

@media screen and (max-width: 750px) {
    .sns-area__list-link {
        width: 8vw;
    }
}

/* ---------------------------------------------
*   cassette-content
--------------------------------------------- */
.cassette-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

@media screen and (max-width: 750px) {
    .cassette-content {
        display: block;
    }
}

.cassette-content__texts {
    margin-left: 32px;
    width: calc(100% - 354px - 32px);
}

@media screen and (max-width: 750px) {
    .cassette-content__texts {
        margin-left: 0;
        width: 100%;
    }
}

.cassette-content__texts-item {
    letter-spacing: -.005em;
    line-height: 1.9;
}

@media screen and (max-width: 750px) {
    .cassette-content__texts-item {
        line-height: 1.7;
    }
}

.cassette-content__texts-item:nth-of-type(n + 2) {
    margin-top: 30px;
}

@media screen and (max-width: 750px) {
    .cassette-content__texts-item:nth-of-type(n + 2) {
        margin-top: 6.66667vw;
    }
}

.cassette-content__image {
    width: 354px;
}

@media screen and (max-width: 750px) {
    .cassette-content__image {
        position: relative;
        left: -3.33333vw;
        width: 100vw;
    }
}

@media screen and (max-width: 750px) {
    .cassette-content__image img {
        width: 100%;
    }
}

/* ---------------------------------------------
*   section
--------------------------------------------- */
.section {
    margin-top: 140px;
}

@media screen and (max-width: 750px) {
    .section {
        margin-top: 12vw;
    }
}

/* ---------------------------------------------
*   title-image
--------------------------------------------- */
.title-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 140px;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .title-image {
        display: block;
        margin-bottom: 12.4vw;
    }
}

.title-image--reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

.title-image__item {
    width: 50%;
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 2;
}

@media screen and (max-width: 750px) {
    .title-image__item {
        margin-bottom: 12vw;
        width: 100%;
        text-align: center;
        font-size: 5.33333vw;
    }
}

.title-image__figure {
    position: relative;
    display: block;
    width: 600px;
}

@media screen and (max-width: 750px) {
    .title-image__figure {
        left: -3.33333vw;
        width: 100vw;
    }
}

@media screen and (min-width: 751px) {
    .title-image__figure--right {
        left: 100px;
        margin-right: -150px;
    }
}

@media screen and (min-width: 751px) {
    .title-image__figure--left {
        right: 100px;
        margin-left: -150px;
    }
}

@media screen and (max-width: 750px) {
    .title-image__figure img {
        width: 100%;
    }
}

/* ---------------------------------------------
*   text-main
--------------------------------------------- */
.text-main__item {
    letter-spacing: -.005em;
    line-height: 1.9;
}

.text-main__item:nth-of-type(n + 2) {
    margin-top: 30px;
}

@media screen and (max-width: 750px) {
    .text-main__item:nth-of-type(n + 2) {
        margin-top: 6.66667vw;
    }
}

/* ---------------------------------------------
*   image-item
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .image-item {
        position: relative;
        left: -3.33333vw;
        width: 100vw;
    }
}

/* ---------------------------------------------
*   img-profile
--------------------------------------------- */
.img-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .img-profile {
        display: block;
        margin-right: 6.66667%;
        margin-left: 6.66667%;
    }
}

.img-profile__image {
    width: 350px;
}

@media screen and (max-width: 750px) {
    .img-profile__image {
        margin-bottom: 4.93333vw;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .img-profile__image img {
        width: 100%;
    }
}

.img-profile__text {
    margin-left: 20px;
    width: calc(100% - 350px - 20px);
    font-size: 0.875rem;
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .img-profile__text {
        margin-left: 0;
        width: 100%;
        letter-spacing: .02em;
        font-size: 3.2vw;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   content-product
--------------------------------------------- */
.content-product {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 1000px;
}

@media screen and (max-width: 750px) {
    .content-product {
        margin-right: 3.33333%;
        margin-left: 3.33333%;
        width: auto;
    }
}

.content-product__logo {
    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: 750px) {
    .content-product__logo {
        margin-bottom: 3.73333vw;
    }
}

@media screen and (max-width: 750px) {
    .content-product__logo-main {
        width: 67.33333vw;
    }
}

.content-product__logo-main img {
    display: block;
}

@media screen and (max-width: 750px) {
    .content-product__logo-kirin {
        width: 16vw;
    }
}

.content-product__logo-kirin img {
    display: block;
}

.content-product__detail {
    position: absolute;
    top: 50%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 12px;
    width: 500px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 750px) {
    .content-product__detail {
        position: static;
        margin-right: auto;
        margin-left: auto;
        width: 65%;
        -webkit-transform: none;
        transform: none;
    }
}

.content-product__detail-text {
    text-align: center;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .content-product__detail-text {
        line-height: 1.4;
    }
}

.content-product__detail-text-small {
    display: block;
    color: #6EBA38;
    font-size: 1.875rem;
}

@media screen and (max-width: 750px) {
    .content-product__detail-text-small {
        font-size: 2.66667vw;
    }
}

.content-product__detail-text-large {
    display: block;
    color: #006124;
    font-size: 2.5rem;
}

@media screen and (max-width: 750px) {
    .content-product__detail-text-large {
        font-size: 4vw;
    }
}

.content-product__detail-note-item {
    font-size: 0.75rem;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .content-product__detail-note-item {
        font-size: 2.66667vw;
        line-height: 1.4;
    }
}

.content-product__detail-note-item--normal {
    font-weight: 400;
}

.content-product__detail-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

.content-product__detail-link-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 300px;
    height: 40px;
    background-color: #006124;
    color: #fff;
    font-size: 1.125rem;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    will-change: transform;
}

.ie .content-product__detail-link-item {
    padding-top: 10px;
}

@media screen and (max-width: 750px) {
    .content-product__detail-link-item {
        width: 100%;
        height: 8vw;
        font-size: 3.2vw;
    }
}

.content-product__detail-link-item:before {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 23px;
    height: 12px;
    background-image: url(../img/icon_tab.png);
    background-position: 0 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .content-product__detail-link-item:before {
        top: 1.33333vw;
        right: 1.33333vw;
        width: 4vw;
        height: 1.86667vw;
    }
}

.content-product__image {
    margin-left: auto;
    width: 521px;
}

@media screen and (max-width: 750px) {
    .content-product__image {
        position: relative;
        right: -3.33333%;
        width: 100%;
        text-align: right;
    }
}

@media screen and (max-width: 750px) {
    .content-product__image img {
        width: 79.14286%;
    }
}

.content-product__recycle {
    position: absolute;
    bottom: 32px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .content-product__recycle {
        bottom: 1.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .content-product__recycle-logo {
        width: 7.2vw;
    }
}

.content-product__recycle-text {
    margin-left: 13px;
    font-weight: 400;
    font-size: 0.75rem;
}

.ie .content-product__recycle-text {
    margin-top: 4px;
}

@media screen and (max-width: 750px) {
    .content-product__recycle-text {
        margin-left: 0.66667vw;
        font-size: 1.6vw;
    }
}

.content-product__recycle-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 750px) {
    .content-product__recycle-inner {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.content-product__recycle-note {
    margin-left: 3px;
}

@media screen and (max-width: 750px) {
    .content-product__recycle-note {
        margin-left: 0.26667vw;
        position: absolute;
        bottom: 35px;
    }
}

.content-product__recycle-note-inner {
    display: block;
    padding: 0 2px;
    border: 1px solid #AFAFAF;
    background-color: #fff;
    color: #AFAFAF;
    font-size: 0.75rem;
}

.ie .content-product__recycle-note-inner {
    padding-top: 4px;
}

@media screen and (max-width: 750px) {
    .content-product__recycle-note-inner {
        padding: 0 0.26667vw;
        font-size: 1.6vw;
    }
}

/*  content-num
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .content-num1 {
        -ms-flex-order: 1;

        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

@media screen and (min-width: 751px) {
    .content-num2 {
        -ms-flex-order: 2;

        -webkit-box-ordinal-group: 3;
        order: 2;
    }
}

@media screen and (min-width: 751px) {
    .content-num3 {
        -ms-flex-order: 3;

        -webkit-box-ordinal-group: 4;
        order: 3;
    }
}

/* ---------------------------------------------
*   line-anime
--------------------------------------------- */
.line-anime {
    display: inline;
    padding-bottom: .2em;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #6ED301), color-stop(50%, transparent)) 100% bottom/200% 50% no-repeat;
    background: linear-gradient(to right, #6ED301 50%, transparent 50%) 100% bottom/200% 50% no-repeat;
    -webkit-transition: background-position 1s ease-out;
    transition: background-position 1s ease-out;
}

.ie .line-anime {
    padding-top: .2em;
    padding-bottom: 0;
}

@media screen and (max-width: 750px) {
    .line-anime {
        background: -webkit-gradient(linear, left top, right top, color-stop(50%, #6ED301), color-stop(50%, transparent)) 100% 75%/200% 20% no-repeat;
        background: linear-gradient(to right, #6ED301 50%, transparent 50%) 100% 75%/200% 20% no-repeat;
    }
}

.line-anime.on {
    background-position: 0% bottom;
}

@media screen and (max-width: 750px) {
    .line-anime.on {
        background-position: 0% 75%;
    }
}

.line-anime:nth-of-type(1) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.line-anime:nth-of-type(2) {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.line-anime--narrow {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #6ED301), color-stop(50%, transparent)) 100% 80%/200% 25% no-repeat;
    background: linear-gradient(to right, #6ED301 50%, transparent 50%) 100% 80%/200% 25% no-repeat;
    -webkit-transition: background-position .5s ease-out;
    transition: background-position .5s ease-out;
}

.ie .line-anime--narrow {
    padding-top: .5em;
}

@media screen and (max-width: 750px) {
    .line-anime--narrow {
        background: -webkit-gradient(linear, left top, right top, color-stop(50%, #6ED301), color-stop(50%, transparent)) 100% 75%/200% 20% no-repeat;
        background: linear-gradient(to right, #6ED301 50%, transparent 50%) 100% 75%/200% 20% no-repeat;
    }
}

.line-anime--narrow.on {
    background-position: 0% 80%;
}

@media screen and (max-width: 750px) {
    .line-anime--narrow.on {
        background-position: 0% 75%;
    }
}

.line-anime--narrow:nth-of-type(1) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.line-anime--narrow:nth-of-type(2) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

/* ---------------------------------------------
*   container
--------------------------------------------- */
/*  container-area
--------------------------------------------- */
.container-area {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 900px;
}

@media screen and (max-width: 750px) {
    .container-area {
        margin-right: 3.33333%;
        margin-left: 3.33333%;
        width: auto;
    }
}

/*  container-wide
--------------------------------------------- */
.container-wide {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 1000px;
}

@media screen and (max-width: 750px) {
    .container-wide {
        margin-right: 3.33333%;
        margin-left: 3.33333%;
        width: auto;
    }
}

/* ---------------------------------------------
*   hover-opacity
--------------------------------------------- */
.hover-opacity {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

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

/* ---------------------------------------------
*   JS
--------------------------------------------- */
.js-fadein {
    position: relative;
    top: 20px;
    opacity: 0;
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 0.66667vw !important;
    }
    .mgt-sp--10 {
        margin-top: 1.33333vw !important;
    }
    .mgt-sp--15 {
        margin-top: 2vw !important;
    }
    .mgt-sp--20 {
        margin-top: 2.66667vw !important;
    }
    .mgt-sp--25 {
        margin-top: 3.33333vw !important;
    }
    .mgt-sp--30 {
        margin-top: 4vw !important;
    }
    .mgt-sp--35 {
        margin-top: 4.66667vw !important;
    }
    .mgt-sp--40 {
        margin-top: 5.33333vw !important;
    }
    .mgt-sp--45 {
        margin-top: 6vw !important;
    }
    .mgt-sp--50 {
        margin-top: 6.66667vw !important;
    }
    .mgt-sp--55 {
        margin-top: 7.33333vw !important;
    }
    .mgt-sp--60 {
        margin-top: 8vw !important;
    }
    .mgt-sp--65 {
        margin-top: 8.66667vw !important;
    }
    .mgt-sp--70 {
        margin-top: 9.33333vw !important;
    }
    .mgt-sp--75 {
        margin-top: 10vw !important;
    }
    .mgt-sp--80 {
        margin-top: 10.66667vw !important;
    }
    .mgt-sp--85 {
        margin-top: 11.33333vw !important;
    }
    .mgt-sp--90 {
        margin-top: 12vw !important;
    }
    .mgt-sp--95 {
        margin-top: 12.66667vw !important;
    }
    .mgt-sp--100 {
        margin-top: 13.33333vw !important;
    }
    .mgt-sp--105 {
        margin-top: 14vw !important;
    }
    .mgt-sp--110 {
        margin-top: 14.66667vw !important;
    }
    .mgt-sp--115 {
        margin-top: 15.33333vw !important;
    }
    .mgt-sp--120 {
        margin-top: 16vw !important;
    }
    .mgt-sp--125 {
        margin-top: 16.66667vw !important;
    }
    .mgt-sp--130 {
        margin-top: 17.33333vw !important;
    }
    .mgt-sp--135 {
        margin-top: 18vw !important;
    }
    .mgt-sp--140 {
        margin-top: 18.66667vw !important;
    }
    .mgt-sp--145 {
        margin-top: 19.33333vw !important;
    }
    .mgt-sp--150 {
        margin-top: 20vw !important;
    }
    .mgt-sp--155 {
        margin-top: 20.66667vw !important;
    }
    .mgt-sp--160 {
        margin-top: 21.33333vw !important;
    }
    .mgt-sp--165 {
        margin-top: 22vw !important;
    }
    .mgt-sp--170 {
        margin-top: 22.66667vw !important;
    }
    .mgt-sp--175 {
        margin-top: 23.33333vw !important;
    }
    .mgt-sp--180 {
        margin-top: 24vw !important;
    }
    .mgt-sp--185 {
        margin-top: 24.66667vw !important;
    }
    .mgt-sp--190 {
        margin-top: 25.33333vw !important;
    }
    .mgt-sp--195 {
        margin-top: 26vw !important;
    }
    .mgt-sp--200 {
        margin-top: 26.66667vw !important;
    }
    .mgt-sp--205 {
        margin-top: 27.33333vw !important;
    }
    .mgt-sp--210 {
        margin-top: 28vw !important;
    }
    .mgt-sp--215 {
        margin-top: 28.66667vw !important;
    }
    .mgt-sp--220 {
        margin-top: 29.33333vw !important;
    }
    .mgt-sp--225 {
        margin-top: 30vw !important;
    }
    .mgt-sp--230 {
        margin-top: 30.66667vw !important;
    }
    .mgt-sp--235 {
        margin-top: 31.33333vw !important;
    }
    .mgt-sp--240 {
        margin-top: 32vw !important;
    }
    .mgt-sp--245 {
        margin-top: 32.66667vw !important;
    }
    .mgt-sp--250 {
        margin-top: 33.33333vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 0.66667vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 1.33333vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 2vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 2.66667vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 3.33333vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 4vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 4.66667vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 5.33333vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 6vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 6.66667vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 7.33333vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 8vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 8.66667vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 9.33333vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 10vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 10.66667vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 11.33333vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 12vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 12.66667vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 13.33333vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 14vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 14.66667vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 15.33333vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 16vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 16.66667vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 17.33333vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 18vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 18.66667vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 19.33333vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 20.66667vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 21.33333vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 22vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 22.66667vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 23.33333vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 24vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 24.66667vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 25.33333vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 26vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 26.66667vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 27.33333vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 28vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 28.66667vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 29.33333vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 30vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 30.66667vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 31.33333vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 32vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 32.66667vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 33.33333vw !important;
    }
}

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

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