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

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

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ---------------------------------------------
*   article
--------------------------------------------- */
.article {
    overflow-x: hidden;
}

/*  article-content
--------------------------------------------- */
.article-content {
    position: relative;
    display: flex;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    /* padding-bottom: 5.37109vw; */
    width: 72.75391%;

    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 1000px) {
    .article-content {
        margin-right: 15.625%;
        margin-left: 15.625%;
        width: auto;
    }
}

@media screen and (max-width: 1000px) {
    .article-content {
        margin-right: 0;
        margin-left: 0;
        padding-bottom: 17.1875vw;
    }
}

/* .article-content:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #172852;
    content: "";
}

@media screen and (max-width: 1000px) {
    .article-content:before {
        right: auto;
        left: 50%;
        width: 87.5%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
} */

/* ---------------------------------------------
*   acordion-area
--------------------------------------------- */
.acordion-area__button {
    position: relative;
    display: inline-block;
    margin-bottom: 0.48828vw;
    padding: 0.48828vw 2.92969vw 0.48828vw 0.97656vw;
    font-weight: 600;
    font-size: 1.26953vw;
    cursor: pointer;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .acordion-area__button {
        margin-bottom: 1.5625vw;
        padding-top: 3.125vw;
        padding-right: 0;
        padding-bottom: 1.5625vw;
        padding-left: 0;
        width: 100%;
        text-align: left;
        font-size: 3.4375vw;
        line-height: 1.3;
    }
}

.acordion-area__button:before, .acordion-area__button:after {
    position: absolute;
    content: "";
}

.acordion-area__button:before {
    bottom: 0.48828vw;
    left: 0.48828vw;
    width: 85%;
    height: 1px;
    background-color: #000;
}

@media screen and (max-width: 1000px) {
    .acordion-area__button:before {
        bottom: 0.9375vw;
        left: 0;
        width: 65.90909%;
    }
}

.acordion-area__button:after {
    top: 50%;
    right: 0.68359vw;
    display: block;
    width: 1.46484vw;
    height: 1.46484vw;
    background: url(../img/icon_plus_.png) 50% 50% no-repeat;
    background-size: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .acordion-area__button:after {
        top: 3.125vw;
        right: 17.1875vw;
        width: 4.6875vw;
        height: 4.6875vw;
        -webkit-transform: none;
        transform: none;
    }
}

.acordion-area__button.on:after {
    background: url(../img/icon_close_.png) 50% 50% no-repeat;
    background-size: 100%;
}

.acordion-area__text {
    font-size: 1.07422vw;
}

@media screen and (max-width: 1000px) {
    .acordion-area__text {
        text-align: left;
        font-size: 2.8125vw;
    }
}

.acordion-area__content {
    display: none;
    margin-right: auto;
    margin-left: auto;
    width: 58.59375%;
}

@media screen and (max-width: 1000px) {
    .acordion-area__content {
        width: 100%;
    }
}

/*  acordion-area-frame
--------------------------------------------- */
.acordion-area-frame {
    text-align: center;
}

/* ---------------------------------------------
*   button-item
--------------------------------------------- */
.button-item {
    display: flex;
}

.button-item--orange .button-item__text {
    box-sizing: border-box;
    width: 25.87891vw;
    height: 3.61328vw;
    border-radius: 1.75781vw;
    background-color: #CB6D4F;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.7);
    color: #fff;
    transition: 0.3s ease;

    will-change: transform;
}

.ie .button-item--orange .button-item__text {
    padding-top: 0.78125vw;
}

@media screen and (max-width: 1000px) {
    .button-item--orange .button-item__text {
        width: 75.3125vw;
        height: 10.625vw;
        border-radius: 5.3125vw;
        box-shadow: 0.625vw 0.625vw 1.25vw 0px rgba(0, 0, 0, 0.7);
        font-size: 4.0625vw;
    }
}

@media screen and (min-width: 1001px) {
    .button-item--orange .button-item__text:hover {
        -webkit-transform: scale(0.98, 0.98);
        transform: scale(0.98, 0.98);
    }
}

.button-item--blue .button-item__text {
    position: relative;
    box-sizing: border-box;
    width: 38.08594vw;
    height: 5.56641vw;
    border: 1px solid #172852;
    background-color: #fff;
    color: #172852;
}

@media screen and (max-width: 1000px) {
    .button-item--blue .button-item__text {
        width: 70vw;
        height: 10.3125vw;
        font-size: 3.4375vw;
    }
}

.ie .button-item--blue .button-item__text {
    padding-top: 0.78125vw;
}

.button-item--blue .button-item__text:before {
    position: absolute;
    top: 50%;
    right: 2.44141vw;
    width: 1.26953vw;
    height: 1.26953vw;
    background: url(../img/icon_link_blue.png) 50% 50% no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .button-item--blue .button-item__text:before {
        right: 4.0625vw;
        width: 2.5vw;
        height: 2.1875vw;
    }
}

.button-item--center {
    justify-content: center;
}

.keyvisual .button-item, .keyvisual .button-item-img {
    position: absolute;
    bottom: 4.90625vw;
    left: 6.83594vw;
}

@media screen and (max-width: 1000px) {
    .keyvisual .button-item {
        bottom: 10.9375vw;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .keyvisual .button-item-img{
        bottom: 10.9375vw;
        left: 20%;
        -webkit-transform: translateX(-13%);
        transform: translateX(-13%);
    }
}

.button-item__text {
    display: flex;
    font-weight: 600;
    font-size: 1.46484vw;

    align-items: center;
    justify-content: center;
}

/* ---------------------------------------------
*   card-item
--------------------------------------------- */
.card-item {
    box-sizing: border-box;
    margin-right: 20px;
    margin-bottom: 1px;
    margin-left: 20px;
    padding: 19px;
    width: 263px;
    outline: none;
    border: 1px solid #172852;
    background-color: #fff;
    color: #35150A;
}
.button-img-width{
    width: 30vw;
}
@media screen and (max-width: 1000px) {
    .card-item {
        margin-right: 3.125vw;
        margin-left: 3.125vw;
        padding: 3.75vw 6.875vw 6.25vw 6.875vw;
        width: 100%;
    }
    .button-img-width{
        width: 80vw;
    }
}

.card-item__image {
    margin-bottom: 6px;
}

@media screen and (max-width: 1000px) {
    .card-item__image {
        margin-bottom: 6.25vw;
    }
}

@media screen and (max-width: 1000px) {
    .card-item__image img {
        width: 100%;
    }
}

.card-item__name {
    display: flex;
    margin-bottom: 13px;

    align-items: center;
}

@media screen and (max-width: 1000px) {
    .card-item__name {
        margin-bottom: 3.125vw;
    }
}

.card-item__name-image {
    margin-right: 10px;
    width: 2.92969vw;
}

@media screen and (max-width: 1000px) {
    .card-item__name-image {
        margin-right: 4.6875vw;
        width: 10.625vw;
    }
}

.card-item__name-text {
    font-weight: 600;
    font-size: 1.26953vw;
}

@media screen and (max-width: 1000px) {
    .card-item__name-text {
        font-size: 4.0625vw;
    }
}

.card-item__text {
    color: #35150A;
    font-size: 1.07422vw;
}

@media screen and (max-width: 1000px) {
    .card-item__text {
        font-size: 4.0625vw;
    }
}

.card-item__text-inner {
    display: inline-block;
}

.card-item__text-inner:nth-of-type(n + 2) {
    margin-top: 0.68359vw;
}

@media screen and (max-width: 1000px) {
    .card-item__text-inner:nth-of-type(n + 2) {
        margin-top: 3.125vw;
    }
}

.card-item__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: block;
    overflow: hidden;
    padding-top: 2.63672vw;
    width: 2.53906vw;
    height: 0;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .card-item__arrow {
        margin-top: -12.5vw;
        padding-top: 9.375vw;
        width: 9.375vw;
    }
}

.card-item__arrow--prev {
    left: 5.37109vw;
    background: url(../img/modal_left_blue.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 1000px) {
    .card-item__arrow--prev {
        left: 3.4375vw;
    }
}

.card-item__arrow--next {
    right: 5.37109vw;
    background: url(../img/modal_right_blue.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 1000px) {
    .card-item__arrow--next {
        right: 3.4375vw;
    }
}

/*  card-item-lineup
--------------------------------------------- */
.card-item-lineup {
    display: flex;
    overflow: hidden;
}

/* ---------------------------------------------
*   cassette-item
--------------------------------------------- */
.cassette-item {
    padding-top: 98px;
    padding-bottom: 95px;
    background-color: #FAF5E3;
}

@media screen and (max-width: 1000px) {
    .cassette-item {
        padding-top: 21.875vw;
        padding-bottom: 15.625vw;
    }
}

.cassette-item__content {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-top: 2.34375%;
    padding-bottom: 3.02734%;
    width: 55.66406%;
    background-color: #fff;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content {
        position: relative;
        z-index: 1;
        width: 76.5625%;
        background-color: transparent;
    }
    .cassette-item__content:before {
        position: absolute;
        top: -6.25vw;
        left: -9.125vw;
        z-index: -1;
        width: 93.125vw;
        height: 34.0625vw;
        background-color: #fff;
        background-size: 100% 100%;
        content: "";
    }
}

.cassette-item__content-image {
    position: absolute;
}

.cassette-item__content-image--1 {
    top: 1.95312vw;
    left: -5.85938vw;
    width: 16.50391vw;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-image--1 {
        top: -14.04688vw;
        left: -5.85938vw;
        width: 50.50391vw;
    }
}

.cassette-item__content-image--2 {
    top: 6.64062vw;
    left: 5.37109vw;
    width: 16.40625vw;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-image--2 {
        top: 2.64062vw;
        left: 31.37109vw;
        width: 50.40625vw;
    }
}

.cassette-item__content-texts {
    padding-left: 45.61404%;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts {
        padding-left: 10.36735%;
        padding-top: 58%;
    }
}

.cassette-item__content-texts-title {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    margin-bottom: 1.46484vw;
    padding-top: 1.36719vw;
    width: 12.69531vw;
    height: 0;
    background: url(../img/title_1box.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-title {
        margin-bottom: 3.125vw;
        padding-top: 4.0625vw;
        width: 37.5vw;
    }
}

.cassette-item__content-texts-yen {
    display: flex;
    margin-bottom: 1.26953vw;

    align-items: center;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-yen {
        margin-bottom: 7.5vw;
    }
}

.cassette-item__content-texts-yen-main {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    margin-right: 0.78125vw;
    padding-top: 2.14844vw;
    width: 9.08203vw;
    height: 0;
    background: url(../img/text_1980yen.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-yen-main {
        margin-right: 1.5625vw;
        padding-top: 6.25vw;
        width: 29.0625vw;
        background: url(../img/sp/text_1980yen.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.cassette-item__content-texts-yen-text {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    padding-top: 1.36719vw;
    width: 10.35156vw;
    height: 0;
    background: url(../img/text_yen_note.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-yen-text {
        margin-top: 0.9375vw;
        padding-top: 3.75vw;
        width: 28.125vw;
        background: url(../img/sp/text_yen_note.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.cassette-item__content-texts-caption {
    margin-bottom: 1.26953vw;
    color: #CDA176;
    font-weight: 600;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-caption {
        margin-bottom: 4.6875vw;
        font-size: 3.75vw;
    }
}

.cassette-item__content-texts-note {
    line-height: 1.3;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-note {
        font-size: 3.125vw;
        line-height: 1.7;
    }
}

.cassette-item__content-texts-note:nth-of-type(n + 2) {
    margin-top: 0.78125vw;
}

.cassette-item__content-texts-note--small {
    font-size: 1.17188vw;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-note--small {
        font-size: 2.8125vw;
    }
}

.cassette-item__content-texts-note-large {
    font-weight: 600;
    font-size: 1.36719vw;
}

@media screen and (max-width: 1000px) {
    .cassette-item__content-texts-note-large {
        font-size: 3.4375vw;
    }
}

/* ---------------------------------------------
*   container
--------------------------------------------- */
.container {
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 72.75391%;
}

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

/* ---------------------------------------------
*   content-fixed
--------------------------------------------- */
.content-fixed {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    display: flex;
    padding-top: 15px;
    padding-bottom: 12px;
    background-color: rgba(0, 0, 0, 0.5);

    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .content-fixed {
        padding-top: 4.6875vw;
        padding-bottom: 3.75vw;
    }
}

/* ---------------------------------------------
*   content-slide
--------------------------------------------- */
.content-slide {
    display: flex;
    overflow: hidden;
    pointer-events: none;
}

.content-slide__item {
    margin-right: 9px;
    margin-left: 9px;
    width: 109px;
    outline: none;
}

@media screen and (max-width: 1000px) {
    .content-slide__item {
        margin-right: 1.40625vw;
        margin-left: 1.40625vw;
        width: 25vw;
    }
}

.content-slide__item-text {
    text-align: center;
    letter-spacing: .05em;
    font-size: 1.17188vw;
}

@media screen and (max-width: 1000px) {
    .content-slide__item-text {
        margin-top: 1.5625vw;
        font-size: 2.8125vw;
    }
}

/* ---------------------------------------------
*   font-family
--------------------------------------------- */
/*  ff-hiragino
--------------------------------------------- */
.ff-hiragino {
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

/* ---------------------------------------------
*   frame-content
--------------------------------------------- */
.frame-content {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 28.32031vw;
    border: 1px solid #172852;
}

@media screen and (max-width: 1000px) {
    .frame-content {
        position: relative;
        margin-right: auto;
        margin-left: auto;
        width: 87.5vw;
        border: none;
        background-color: #E5E4E2;
    }
}

.frame-content:before, .frame-content:after {
    position: absolute;
    content: "";
}

.frame-content:before {
    top: 2.14844vw;
    left: -17px;
    width: 20px;
    height: 20px;
    background: url(../img/icon_arrow_blue.png) 0 0 no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 1000px) {
    .frame-content:before {
        top: -3.51562vw;
        left: 10.9375vw;
        width: 4.84375vw;
        height: 3.82812vw;
        background: url(../img/sp/icon_arrow_gray.png) 0 0 no-repeat;
        background-size: 100% 100%;
    }
}

.frame-content:after {
    top: 50%;
    left: 1.66016vw;
    width: 6.83594vw;
    height: 7.12891vw;
    background: url(../img/icon_heart.png) 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .frame-content:after {
        left: 9.375vw;
        width: 23.125vw;
        height: 24.0625vw;
        background: url(../img/sp/icon_heart.png) 0 0 no-repeat;
        background-size: 100% 100%;
    }
}

.frame-content__text {
    padding-top: 0.97656vw;
    padding-right: 1.75781vw;
    padding-bottom: 0.97656vw;
    padding-left: 9.27734vw;
}

@media screen and (max-width: 1000px) {
    .frame-content__text {
        padding-top: 5.3125vw;
        padding-right: 9.375vw;
        padding-bottom: 5.3125vw;
        padding-left: 37.5vw;
        font-size: 3.4375vw;
        line-height: 1.7;
    }
}

/* ---------------------------------------------
*   heading-outer
--------------------------------------------- */
.heading-outer {
    position: relative;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 57.61719%;
}

@media screen and (max-width: 1000px) {
    .heading-outer {
        width: 70.3125%;
    }
}

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

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

/* ---------------------------------------------
*   image-content
--------------------------------------------- */
.image-content {
    width: 21.875%;
    outline: none;
}

@media screen and (max-width: 1000px) {
    .image-content {
        padding-right: 15.625vw;
        padding-left: 15.625vw;
        width: 100%;
    }
}

.image-content--1 .image-content__item img {
    width: 9.57031vw;
}

@media screen and (max-width: 1000px) {
    .image-content--1 .image-content__item img {
        margin-top: 0.9375vw;
        margin-left: -2.5vw;
        width: 28.4375vw;
        height: 38.75vw;
    }
}

.image-content--1 .image-content__item:before {
    width: 1.85547vw;
    height: 1.5625vw;
    background-image: url(../img/icon_1_blue.png);
}

@media screen and (max-width: 1000px) {
    .image-content--1 .image-content__item:before {
        width: 5.625vw;
        height: 5.3125vw;
    }
}

.image-content--2 .image-content__item img {
    width: 10.83984vw;
}

@media screen and (max-width: 1000px) {
    .image-content--2 .image-content__item img {
        width: 31.875vw;
        height: 36.5625vw;
    }
}

.image-content--2 .image-content__item:before {
    width: 2.53906vw;
    height: 1.5625vw;
    background-image: url(../img/icon_2_blue.png);
}

@media screen and (max-width: 1000px) {
    .image-content--2 .image-content__item:before {
        width: 7.8125vw;
        height: 5vw;
    }
}

.image-content--3 .image-content__item img {
    width: 10.9375vw;
}

@media screen and (max-width: 1000px) {
    .image-content--3 .image-content__item img {
        width: 32.8125vw;
        height: 26.875vw;
    }
}

.image-content--3 .image-content__item:before {
    width: 2.44141vw;
    height: 1.5625vw;
    background-image: url(../img/icon_3_blue.png);
}

@media screen and (max-width: 1000px) {
    .image-content--3 .image-content__item:before {
        width: 7.8125vw;
        height: 5vw;
    }
}

@media screen and (min-width: 1001px) {
    .image-content:nth-of-type(n + 2) {
        margin-left: 35px;
    }
}

.image-content__item {
    position: relative;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    width: 16.40625vw;
    height: 16.40625vw;
    border-radius: 50%;
    background-color: rgba(229, 228, 226, 0.5);
}

@media screen and (max-width: 1000px) {
    .image-content__item {
        margin-bottom: 0;
        width: 50vw;
        height: 50vw;
    }
}

.image-content__item img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.image-content__item:before {
    position: absolute;
    top: 0;
    left: 0;
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 1000px) {
    .image-content__item:before {
        top: 3.125vw;
        left: 3.125vw;
    }
}

.image-content__caption {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.46484vw;
}

@media screen and (max-width: 1000px) {
    .image-content__caption {
        margin-top: -3.125vw;
        margin-bottom: 6.25vw;
        letter-spacing: .05em;
        font-size: 4.0625vw;
    }
}

.image-content__text {
    text-align: center;
    letter-spacing: .07em;
    font-size: 1.17188vw;
}

@media screen and (max-width: 1000px) {
    .image-content__text {
        font-size: 3.4375vw;
        line-height: 1.7;
    }
}

@media screen and (max-width: 1000px) {
    .image-content__arrow {
        position: absolute;
        top: 23.4375vw;
        z-index: 1;
        display: block;
        overflow: hidden;
        padding-top: 5.9375vw;
        width: 4.6875vw;
        height: 0;
        cursor: pointer;
    }
    .image-content__arrow.slick-disabled {
        display: none !important;
    }
    .image-content__arrow--prev {
        left: 16.5625vw;
        background: url(../img/sp/icon_slider_black.png) 0 0 no-repeat;
        background-size: 100% auto;
        -webkit-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }
    .image-content__arrow--next {
        right: 16.5625vw;
        background: url(../img/sp/icon_slider_black.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

/*  image-content-lineup
--------------------------------------------- */
.image-content-lineup {
    display: flex;
    overflow: hidden;

    justify-content: center;
}

/* ---------------------------------------------
*   image-link
--------------------------------------------- */
.image-link {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 4.49219vw;
}

@media screen and (max-width: 1000px) {
    .image-link {
        width: 14.375vw;
    }
}

/* ---------------------------------------------
*   logo-slider
--------------------------------------------- */
.logo-slider {
    overflow: hidden;
}

.logo-slider__item {
    margin-right: 15px;
    margin-left: 15px;
    outline: none;
}

@media screen and (max-width: 1000px) {
    .logo-slider__item {
        margin-right: 4.6875vw;
        margin-left: 4.6875vw;
    }
}

.logo-slider__item img {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

/* ---------------------------------------------
*   keyvisual
--------------------------------------------- */
.keyvisual {
    position: relative;
    overflow: hidden;
}

/*  keyvisual-content
--------------------------------------------- */
.keyvisual-content__title-outer {
    position: absolute;
    top: 13.67188vw;
    left: 5.56641vw;
    z-index: 1;
    width: 26.17188vw;
    height: 4.19922vw;
}

@media screen and (max-width: 1000px) {
    .keyvisual-content__title-outer {
        top: 40.625vw;
        right: 12.5vw;
        left: auto;
        width: 65.625vw;
        height: 9.6875vw;
    }
}

.keyvisual-content__title-outer:before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    content: "";
}

@media screen and (max-width: 1000px) {
    .keyvisual-content__title-outer:before {
        height: 9.375vw;
    }
}

.keyvisual-content__title {
    position: relative;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    overflow: hidden;
    padding-top: 2.63672vw;
    width: 23.82812vw;
    height: 0;
    background: url(../img/title_oyatsu.png) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 1000px) {
    .keyvisual-content__title {
        padding-top: 6.5625vw;
        width: 60.625vw;
        background: url(../img/sp/title_oyatsu.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.keyvisual-content__logo {
    position: absolute;
    top: 20.80078vw;
    left: 5.56641vw;
    z-index: 1;
    padding: 0 0.97656vw;
}

@media screen and (max-width: 1000px) {
    .keyvisual-content__logo {
        top: 60.9375vw;
        right: 12.5vw;
        left: auto;
    }
}

.keyvisual-content__logo:before {
    position: absolute;
    bottom: -0.68359vw;
    left: 0;
    z-index: -1;
    width: 21.48438vw;
    height: 4.19922vw;
    background-color: rgba(255, 255, 255, 0.7);
    content: "";
}

@media screen and (max-width: 1000px) {
    .keyvisual-content__logo:before {
        right: 0;
        bottom: -1.5625vw;
        left: auto;
        width: 53.125vw;
        height: 9.375vw;
        height: 9.6875vw;
    }
}

.keyvisual-content__logo-item {
    position: relative;
    left: 0.29297vw;
    z-index: 1;
    display: block;
    overflow: hidden;
    padding-top: 2.24609vw;
    width: 18.26172vw;
    height: 0;
    background: url(../img/logo_snaqme.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 1000px) {
    .keyvisual-content__logo-item {
        left: -2.1875vw;
        padding-top: 5.625vw;
        width: 47.5vw;
        background: url(../img/sp/logo_snaqme.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

/* ---------------------------------------------
*   page-title
--------------------------------------------- */
.page-title {
    display: flex;
    padding-top: 3.51562vw;
    padding-bottom: 2.34375vw;
    /* background-color: #172852; */

    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .page-title {
        padding-top: 5vw;
        padding-bottom: 5vw;
    }
}

.page-title__icon {
    width: 232px;
}

@media screen and (max-width: 1000px) {
    .page-title__icon {
        display: none;
    }
}

/*  page-title-content
--------------------------------------------- */
.page-title-content {
    display: flex;

    align-items: center;
}

@media screen and (max-width: 1000px) {
    .page-title-content {
        display: block;
    }
}

.page-title-content__item {
    display: block;
    color: #172852;
    font-size: 1.95312vw;
}

@media screen and (max-width: 1000px) {
    .page-title-content__item {
        text-align: center;
        letter-spacing: .08em;
        font-weight: 600;
        font-size: 4.6875vw;
    }
}

.page-title-content__item--1 {
    display: flex;
    margin-right: 1.66016vw;

    align-items: center;
}

@media screen and (max-width: 1000px) {
    .page-title-content__item--1 {
        margin-right: 0;
        margin-bottom: 3.125vw;
    }
}

.page-title-content__item--1 img {
    display: block;
    margin-right: 0.29297vw;
    width: 9.13086vw;
    height: 2.05078vw;
}

@media screen and (max-width: 1000px) {
    .page-title-content__item--1 img {
        margin-top: 0.9375vw;
        margin-right: 1.5625vw;
        width: 21.25vw;
        height: 4.77272727273vw;
    }
}

.ie .page-title-content__item--1 img {
    position: relative;
    top: -0.29297vw;
}

.page-title-content__item--1 span {
    display: block;
}

.ie .page-title-content__item--1 .page-title-content__item-inner {
    position: relative;
    top: 0.48828vw;
}

.page-title-content__item--2 {
    position: relative;
    top: -0.68359vw;
    z-index: 1;
    display: block;
    overflow: hidden;
    margin-right: 2.14844vw;
    padding-top: 3.32031vw;
    width: 18.55469vw;
    height: 0;
    background: url(../img/logo_7me_.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 1000px) {
    .page-title-content__item--2 {
        margin-right: auto;
        margin-bottom: 3.125vw;
        margin-left: auto;
        padding-top: 7.8125vw;
        width: 48.75vw;
        background: url(../img/sp/logo_7me_.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.page-title-content__item--3 {
    margin-right: 25px;
}

@media screen and (max-width: 1000px) {
    .page-title-content__item--3 {
        margin-right: 0;
    }
}

.ie .page-title-content__item--3 {
    position: relative;
    top: 0.48828vw;
}

/* ---------------------------------------------
*   panel-item
--------------------------------------------- */
.panel-item {
    position: relative;
    margin-bottom: 3.71094vw;
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .panel-item {
        margin-bottom: 18.75vw;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--1 {
        order: 1;
    }
}

.panel-item--1 .panel-item__image {
    width: 77.85235%;
}

@media screen and (max-width: 1000px) {
    .panel-item--1 .panel-item__image {
        width: 61.5625%;
    }
}

.panel-item--1 .panel-item__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 16.77852%;
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
}

@media screen and (min-width: 1001px) {
    .panel-item--1 .panel-item__content {
        padding-top: 0.68359vw;
        padding-right: 3.3557%;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--1 .panel-item__content {
        top: -11.875vw;
        right: auto;
        left: 15.625vw;
        width: 71.875%;
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.panel-item--1 .panel-item__content:before {
    top: 2.44141vw;
    right: 0;
}

.panel-item--1 .panel-item__content.fadein {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (min-width: 1001px) {
    .panel-item--2 {
        width: 46.30872%;

        order: 2;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--2 .panel-item__image {
        margin-top: 0.48828vw;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--2 .panel-item__image {
        width: 61.5625%;
    }
}

.panel-item--2 .panel-item__content {
    position: relative;
    bottom: 0;
    left: 50%;
    box-sizing: border-box;
    padding-left: 2.92969vw;
    width: 65.21739%;
    -webkit-transform: translateX(-250%);
    transform: translateX(-250%);
}

@media screen and (min-width: 1001px) {
    .panel-item--2 .panel-item__content {
        padding-top: 0.97656vw;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--2 .panel-item__content {
        position: absolute;
        top: -11.875vw;
        right: 15.625vw;
        left: auto;
        width: 67.1875%;
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
    }
}

.panel-item--2 .panel-item__content:before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.panel-item--2 .panel-item__content.fadein {
    opacity: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .panel-item--2 .panel-item__content.fadein {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--2 .panel-item__content-text {
        text-align: right;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--3 {
        width: 46.30872%;

        order: 3;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--3 .panel-item__image {
        width: 61.5625%;
    }
}

.panel-item--3 .panel-item__content {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    width: 65.21739%;
    -webkit-transform: translateX(250%);
    transform: translateX(250%);
}

@media screen and (max-width: 1000px) {
    .panel-item--3 .panel-item__content {
        position: absolute;
        top: -11.875vw;
        left: 15.625vw;
        width: 68.75%;
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.panel-item--3 .panel-item__content:before {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.panel-item--3 .panel-item__content.fadein {
    opacity: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .panel-item--3 .panel-item__content.fadein {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--3 .panel-item__content-title {
        text-align: right;

        order: 2;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--3 .panel-item__content-text {
        text-align: right;

        order: 1;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--4 {
        order: 4;
    }
}

.panel-item--4 .panel-item__image {
    margin-left: auto;
    width: 77.85235%;
}

@media screen and (max-width: 1000px) {
    .panel-item--4 .panel-item__image {
        margin-left: 0;
        width: 61.5625%;
    }
}

.panel-item--4 .panel-item__content {
    position: absolute;
    top: 4.88281vw;
    left: 0;
    width: 16.77852%;
    -webkit-transform: translateX(-200%) translateY(-50%);
    transform: translateX(-200%) translateY(-50%);
}

@media screen and (min-width: 1001px) {
    .panel-item--4 .panel-item__content {
        padding-top: 0.97656vw;
        padding-left: 3.3557%;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--4 .panel-item__content {
        position: absolute;
        top: -11.875vw;
        right: 15.625vw;
        left: auto;
        width: 67.1875%;
        -webkit-transform: translateX(200%) translateY(0);
        transform: translateX(200%) translateY(0);
    }
}

.panel-item--4 .panel-item__content:before {
    top: 2.92969vw;
    left: 0;
}

.panel-item--4 .panel-item__content.fadein {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .panel-item--4 .panel-item__content.fadein {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}

.ie .panel-item--4 .panel-item__content-title {
    position: relative;
    top: 0.48828vw;
}

@media screen and (max-width: 1000px) {
    .panel-item--4 .panel-item__content-text {
        text-align: right;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--5 {
        width: 46.30872%;

        order: 6;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--5 .panel-item__image {
        margin-top: 0.48828vw;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--5 .panel-item__image {
        width: 61.5625%;
    }
}

.panel-item--5 .panel-item__content {
    position: relative;
    top: 0;
    left: 50%;
    width: 65.21739%;
    -webkit-transform: translateX(250%);
    transform: translateX(250%);
}

.panel-item--5 .panel-item__content:before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (min-width: 1001px) {
    .panel-item--5 .panel-item__content {
        padding-top: 0.97656vw;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--5 .panel-item__content {
        position: absolute;
        top: -11.875vw;
        left: 15.625vw;
        width: 70.3125%;
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.panel-item--5 .panel-item__content.fadein {
    opacity: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .panel-item--5 .panel-item__content.fadein {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--5 .panel-item__content-title {
        text-align: right;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--5 .panel-item__content-text {
        text-align: right;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--6 {
        width: 46.30872%;

        order: 5;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--6 .panel-item__image {
        width: 61.5625%;
    }
}

.panel-item--6 .panel-item__content {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    width: 65.21739%;
    -webkit-transform: translateX(-250%);
    transform: translateX(-250%);
}

.panel-item--6 .panel-item__content:before {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .panel-item--6 .panel-item__content {
        position: absolute;
        top: -11.875vw;
        right: 15.625vw;
        left: auto;
        width: 70.3125%;
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
    }
}

.panel-item--6 .panel-item__content.fadein {
    opacity: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .panel-item--6 .panel-item__content.fadein {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--6 .panel-item__content-title {
        order: 2;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--6 .panel-item__content-text {
        order: 1;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--6 .panel-item__content-text {
        text-align: right;
    }
}

@media screen and (min-width: 1001px) {
    .panel-item--7 {
        order: 7;
    }
}

.panel-item--7 .panel-item__image {
    width: 77.85235%;
}

@media screen and (max-width: 1000px) {
    .panel-item--7 .panel-item__image {
        width: 61.5625%;
    }
}

.panel-item--7 .panel-item__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 16.77852%;
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
}

@media screen and (min-width: 1001px) {
    .panel-item--7 .panel-item__content {
        padding-top: 0.97656vw;
        padding-right: 3.3557%;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item--7 .panel-item__content {
        top: -11.875vw;
        right: auto;
        left: 15.625vw;
        width: 70.3125%;
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.panel-item--7 .panel-item__content:before {
    top: 2.44141vw;
    right: 0;
}

.panel-item--7 .panel-item__content.fadein {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 1000px) {
    .panel-item:nth-of-type(odd) {
        margin-left: auto;
    }
    .panel-item:nth-of-type(odd) .panel-item__image {
        margin-left: auto;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item:nth-of-type(even) {
        margin-right: auto;
    }
    .panel-item:nth-of-type(even) .panel-item__image {
        margin-right: auto;
    }
    .panel-item:nth-of-type(even) .panel-item__content {
        text-align: right;
    }
    .panel-item:nth-of-type(even) .panel-item__content-title {
        text-align: right;
    }
}

.panel-item:last-child {
    margin-bottom: 0;
}

.panel-item__content {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: #172852;
    text-align: right;
    opacity: 0;
    transition: all 1000ms;
}

@media screen and (max-width: 1000px) {
    .panel-item__content {
        text-align: left;
    }
}

.panel-item__content:before {
    position: absolute;
    z-index: -1;
    display: inline-block;
    width: 26.07422vw;
    height: 10.54688vw;
    /* background-color: rgba(205, 161, 118, 0.3); */
    background-color: rgba(239, 223, 163, 0.3);
    background-size: 16px 15px;
    content: "";
}

@media screen and (max-width: 1000px) {
    .panel-item__content:before {
        display: none;
    }
}

.panel-item__content-title {
    text-align: left;
}

.panel-item__content-title-jp {
    font-weight: 600;
    font-size: 1.95312vw;
}

@media screen and (max-width: 1000px) {
    .panel-item__content-title-jp {
        font-size: 6.25vw;
    }
}

.panel-item__content-title-en {
    letter-spacing: .02em;
    font-weight: bold;
    font-size: 2.14844vw;
}

@media screen and (max-width: 1000px) {
    .panel-item__content-title-en {
        font-size: 6.875vw;
    }
}

.panel-item__content-text {
    text-align: left;
    font-weight: 600;
    font-size: 1.07422vw;
    line-height: 1.7;
}

@media screen and (max-width: 1000px) {
    .panel-item__content-text {
        font-size: 3.4375vw;
    }
}

@media screen and (max-width: 1000px) {
    .panel-item__content-text span {
        background-color: rgba(255, 255, 255, 0.8);
        white-space: nowrap;
    }
}

/* ---------------------------------------------
*   section
--------------------------------------------- */
.section--space {
    padding-top: 5.85938vw;
}

@media screen and (max-width: 1000px) {
    .section--space {
        padding-top: 17.1875vw;
    }
}

.section--user {
    position: relative;
    padding-top: 4.88281vw;
    padding-bottom: 9.27734vw;
    background-color: #ECF6F7;
}

@media screen and (max-width: 1000px) {
    .section--user {
        padding-top: 7.8125vw;
        padding-bottom: 11.875vw;
    }
}

.section--user:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    content: "";
    pointer-events: none;
}

@media screen and (max-width: 1000px) {
    .section--user:before {
        display: none;
    }
}

/* ---------------------------------------------
*   text-detail
--------------------------------------------- */
.text-detail {
    display: flex;

    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .text-detail {
        display: none;
    }
}

.text-detail__item {
    margin-right: 19px;
    padding-right: 19px;
    background: url(../img/icon_blue_dot.png) 100% 50% repeat-y;
    background-size: 1px 4px;
}

.text-detail__item:last-child {
    margin-right: 0;
    padding-right: 0;
    background: none;
}

.text-detail__caption {
    padding-left: 5.17578vw;
    background: url(../img/icon_heart_blue.png) 0 50% no-repeat;
    background-size: 2.92969vw 2.92969vw;
    color: #172852;
    font-weight: 600;
}

.text-detail__text {
    letter-spacing: .02em;
    font-size: 1.17188vw;
}

/* ---------------------------------------------
*   text-item
--------------------------------------------- */
.text-item--center {
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .text-item--sp-left {
        text-align: left;
    }
}

.text-item--bold {
    font-weight: 600;
}

.text-item--blue {
    color: #172852;
}

.text-item--low {
    line-height: 1.4;
}

@media screen and (max-width: 1000px) {
    .text-item--low {
        line-height: 1.6;
    }
}

.text-item--height {
    line-height: 1.9;
}

@media screen and (max-width: 1000px) {
    .text-item--sp-height {
        line-height: 1.8;
    }
}

.text-item--wide {
    letter-spacing: .09em;
}

@media screen and (max-width: 1000px) {
    .text-item--sp-wide {
        letter-spacing: .05em;
    }
}

@media screen and (max-width: 1000px) {
    .text-item--sp-narrow {
        letter-spacing: normal;
    }
}

.text-item--large {
    font-size: 1.85547vw;
}

@media screen and (max-width: 1000px) {
    .text-item--large {
        font-size: 3.4375vw;
    }
}

.heading-outer .text-item {
    margin-right: auto;
    margin-left: auto;
    padding-right: 57.62712%;
    width: 42.37288%;
}

@media screen and (max-width: 1000px) {
    .heading-outer .text-item {
        padding-right: 0;
        width: 100%;
    }
}

.cassette-item .text-item {
    margin-right: auto;
    margin-left: auto;
    width: 37.10938%;
}

@media screen and (max-width: 1000px) {
    .cassette-item .text-item {
        width: 67.1875%;
    }
}

/* ---------------------------------------------
*   title-item
--------------------------------------------- */
.title-item {
    text-align: center;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 1.95312vw;
    line-height: 1.8;
}

@media screen and (max-width: 1000px) {
    .title-item {
        text-align: left;
        font-size: 4.6875vw;
        line-height: 1.6;
    }
}

@media screen and (max-width: 1000px) {
    .title-item--sp-center {
        text-align: center;
    }
}

@media screen and (max-width: 1000px) {
    .title-item--sp-small {
        font-size: 4.0625vw;
    }
}

@media screen and (max-width: 1000px) {
    .title-item--sp-wide {
        letter-spacing: .03em;
    }
}

.title-item__jp {
    position: relative;
    display: block;
    color: #172852;
}

@media screen and (max-width: 1000px) {
    .title-item__jp {
        margin-bottom: 1.5625vw;
        padding-bottom: 0.9375vw;
    }
}

.title-item__jp:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 13.37891vw;
    height: 0.29297vw;
    background-color: #172852;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .title-item__jp:before {
        width: 37.5vw;
        height: 0.9375vw;
    }
}

.title-item__en {
    display: block;
    color: #172852;
    letter-spacing: -.03em;
    font-size: 1.17188vw;
}

@media screen and (max-width: 1000px) {
    .title-item__en {
        font-size: 3.125vw;
    }
}

/* ---------------------------------------------
*   unit-content
--------------------------------------------- */
.unit-content {
    margin-right: auto;
    margin-left: auto;
    width: 54.29688%;
}

.seven-me {
    width: 20vw;
    position: absolute;
}
.seven-me-bottom {
    width: 20vw;
}
@media screen and (max-width: 1000px) {
    .unit-content {
        width: 100%;
    }
    .seven-me {
        width: 40vw;
        position: relative;
    }
    .seven-me-bottom {
        width: 40vw;
    }
}

.unit-content__list-item:nth-of-type(n + 2) {
    margin-top: 0.78125vw;
}

.unit-content__button {
    position: relative;
    box-sizing: border-box;
    padding: 2.53906vw 4.88281vw;
    width: 100%;
    background-color: #FAF5E3;
    color: #000;
    text-align: left;
    font-weight: 600;
    font-size: 1.26953vw;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .unit-content__button {
        padding: 4.0625vw 8.75vw;
        letter-spacing: .05em;
        font-size: 3.4375vw;
    }
}

.ie .unit-content__button {
    padding-top: 2.92969vw;
    padding-bottom: 2.14844vw;
}

.unit-content__button:after {
    position: absolute;
    top: 50%;
    right: 2.17578vw;
    display: block;
    width: 2.92969vw;
    height: 2.92969vw;
    background: url(../img/icon_plus_.png) 50% 50% no-repeat;
    background-size: 100%;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .unit-content__button:after {
        top: 3.75vw;
        right: 6.3125vw;
        width: 4.6875vw;
        height: 4.6875vw;
        -webkit-transform: none;
        transform: none;
    }
}

.mac.safari .unit-content__button:after {
    background-size: 98%;
}

.unit-content__button.on:after {
    background: url(../img/icon_close_.png) 50% 50% no-repeat;
    background-size: 100%;
}

.unit-content__content {
    display: none;
    padding: 1.95312vw 4.6875vw 0.97656vw 4.88281vw;
}

.ie .unit-content__content {
    padding-bottom: 0.68359vw;
}

@media screen and (max-width: 1000px) {
    .unit-content__content {
        padding: 4.0625vw 6.875vw;
    }
}

.unit-content__content-text {
    text-align: justify;
    letter-spacing: .07em;
}

@media screen and (max-width: 1000px) {
    .unit-content__content-text {
        font-size: 3.4375vw;
        line-height: 1.7;
    }
}

th {
    text-align: left;
    vertical-align: top;
    font-weight: normal;
}
td {
    text-align: left;
    vertical-align: top;
}
.footer__tbl {
    width: 80vw;
    margin: 7.3333333333vw auto 0;
    border-top: solid 2px #172852;
    font-size: 3.3333333333vw;
}

.footer__tbl td {
    border-bottom: solid 2px #172852;
    padding: 4vw 0;
}

.footer__tbl th {
    border-bottom: solid 2px #172852;
    width: 37.3333333333vw;
    padding: 4vw 0 4vw 8vw;
}


@media screen and (min-width: 1000px){
    .footer__tbl {
        width: 800px;
        margin: 60px auto 0;
        font-size: 16px;
    }
    .footer__tbl td {
        padding: 25px 0;
    }
    .footer__tbl th {
        width: 280px;
        padding: 25px 0 25px 60px;
    }
}

.custom_subtitle{
    font-size: 20px;
    font-weight: bold;
}
.custom_disc {
    font-size: 16px;
}
/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 1000px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 1.5625vw !important;
    }
    .mgt-sp--10 {
        margin-top: 3.125vw !important;
    }
    .mgt-sp--15 {
        margin-top: 4.6875vw !important;
    }
    .mgt-sp--20 {
        margin-top: 6.25vw !important;
    }
    .mgt-sp--25 {
        margin-top: 7.8125vw !important;
    }
    .mgt-sp--30 {
        margin-top: 9.375vw !important;
    }
    .mgt-sp--35 {
        margin-top: 10.9375vw !important;
    }
    .mgt-sp--40 {
        margin-top: 12.5vw !important;
    }
    .mgt-sp--45 {
        margin-top: 14.0625vw !important;
    }
    .mgt-sp--50 {
        margin-top: 15.625vw !important;
    }
    .mgt-sp--55 {
        margin-top: 17.1875vw !important;
    }
    .mgt-sp--60 {
        margin-top: 18.75vw !important;
    }
    .mgt-sp--65 {
        margin-top: 20.3125vw !important;
    }
    .mgt-sp--70 {
        margin-top: 21.875vw !important;
    }
    .mgt-sp--75 {
        margin-top: 23.4375vw !important;
    }
    .mgt-sp--80 {
        margin-top: 25vw !important;
    }
    .mgt-sp--85 {
        margin-top: 26.5625vw !important;
    }
    .mgt-sp--90 {
        margin-top: 28.125vw !important;
    }
    .mgt-sp--95 {
        margin-top: 29.6875vw !important;
    }
    .mgt-sp--100 {
        margin-top: 31.25vw !important;
    }
    .mgt-sp--105 {
        margin-top: 32.8125vw !important;
    }
    .mgt-sp--110 {
        margin-top: 34.375vw !important;
    }
    .mgt-sp--115 {
        margin-top: 35.9375vw !important;
    }
    .mgt-sp--120 {
        margin-top: 37.5vw !important;
    }
    .mgt-sp--125 {
        margin-top: 39.0625vw !important;
    }
    .mgt-sp--130 {
        margin-top: 40.625vw !important;
    }
    .mgt-sp--135 {
        margin-top: 42.1875vw !important;
    }
    .mgt-sp--140 {
        margin-top: 43.75vw !important;
    }
    .mgt-sp--145 {
        margin-top: 45.3125vw !important;
    }
    .mgt-sp--150 {
        margin-top: 46.875vw !important;
    }
    .mgt-sp--155 {
        margin-top: 48.4375vw !important;
    }
    .mgt-sp--160 {
        margin-top: 50vw !important;
    }
    .mgt-sp--165 {
        margin-top: 51.5625vw !important;
    }
    .mgt-sp--170 {
        margin-top: 53.125vw !important;
    }
    .mgt-sp--175 {
        margin-top: 54.6875vw !important;
    }
    .mgt-sp--180 {
        margin-top: 56.25vw !important;
    }
    .mgt-sp--185 {
        margin-top: 57.8125vw !important;
    }
    .mgt-sp--190 {
        margin-top: 59.375vw !important;
    }
    .mgt-sp--195 {
        margin-top: 60.9375vw !important;
    }
    .mgt-sp--200 {
        margin-top: 62.5vw !important;
    }
    .mgt-sp--205 {
        margin-top: 64.0625vw !important;
    }
    .mgt-sp--210 {
        margin-top: 65.625vw !important;
    }
    .mgt-sp--215 {
        margin-top: 67.1875vw !important;
    }
    .mgt-sp--220 {
        margin-top: 68.75vw !important;
    }
    .mgt-sp--225 {
        margin-top: 70.3125vw !important;
    }
    .mgt-sp--230 {
        margin-top: 71.875vw !important;
    }
    .mgt-sp--235 {
        margin-top: 73.4375vw !important;
    }
    .mgt-sp--240 {
        margin-top: 75vw !important;
    }
    .mgt-sp--245 {
        margin-top: 76.5625vw !important;
    }
    .mgt-sp--250 {
        margin-top: 78.125vw !important;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 1000px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 1.5625vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 3.125vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 4.6875vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 6.25vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 7.8125vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 9.375vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 10.9375vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 12.5vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 14.0625vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 15.625vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 17.1875vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 18.75vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 20.3125vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 21.875vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 23.4375vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 25vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 26.5625vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 28.125vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 29.6875vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 31.25vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 32.8125vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 34.375vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 35.9375vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 37.5vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 39.0625vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 40.625vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 42.1875vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 43.75vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 45.3125vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 46.875vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 48.4375vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 50vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 51.5625vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 53.125vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 54.6875vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 56.25vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 57.8125vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 59.375vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 60.9375vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 62.5vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 64.0625vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 65.625vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 67.1875vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 68.75vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 70.3125vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 71.875vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 73.4375vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 75vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 76.5625vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 78.125vw !important;
    }
}

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

@media screen and (max-width: 1000px) and (min-width:559px) {
    .tablet-hide {
        display: none !important;
    }
}
@media screen and (max-width: 558px) {
    .sp-hide {
        display: none !important;
    }
}
