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

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

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

.wysiwyg:after {
    display: block;
    clear: both;
    content: "";
}

/* wysiwyg default
--------------------------------------------- */
.wysiwyg sup {
    vertical-align: super;
    font-size: smaller;
}

.wysiwyg sub {
    vertical-align: sub;
    font-size: smaller;
}

.wysiwyg h1 {
    font-size: 2em;
}

.wysiwyg h2 {
    font-size: 1.5em;
}

.wysiwyg h3 {
    font-size: 1.17em;
}

.wysiwyg h4 {
    font-size: 100%;
}

.wysiwyg h5 {
    font-size: 0.83em;
}

.wysiwyg h6 {
    font-size: 0.67em;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
    font-weight: bold;
    font-family: serif;
}

.wysiwyg i,
.wysiwyg strong {
    font-weight: bold;
    font-family: serif;
}

.wysiwyg p {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .wysiwyg p {
        margin-top: 0.3em;
        margin-bottom: 0.3em;
        font-size: 3.2vw;
    }
}

.wysiwyg em {
    font-style: italic;
}

.wysiwyg a {
    color: #43a0c0;
    text-decoration: underline;
}

.wysiwyg a:hover {
    text-decoration: none;
}

.wysiwyg ul {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 40px;
    list-style-type: disc;
}

.wysiwyg ol {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 40px;
    list-style-type: decimal;
}

.wysiwyg li {
    display: list-item;
    text-align: -webkit-match-parent;
}

.wysiwyg blockquote {
    margin: 1.12em 0;
}

.wysiwyg .aligncenter {
    display: block;
    margin: 0 auto;
}

.wysiwyg .alignright {
    float: right;
}

.wysiwyg .alignleft {
    float: left;
}

.wysiwyg img[class*="wp-image-"],
.wysiwyg img[class*="attachment-"] {
    margin-bottom: 1em;
    max-width: 100%;
    height: auto;
}

/* ---------------------------------------------
*   module
--------------------------------------------- */
/*  mod-tab
--------------------------------------------- */
.mod-tab {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: end;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 18px auto 0;
    max-width: 1200px;
    width: 100%;

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

@media screen and (max-width: 750px) {
    .mod-tab {
        margin: 18px auto;
    }
    }

.mod-tab:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

.mod-tab:after {
    position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    margin: auto;
    width: 1000px;
    height: 100%;
    -webkit-box-shadow: 0px -18px 10px -10px rgba(197, 155, 109, 0.1);
    box-shadow: 0px -18px 10px -10px rgba(197, 155, 109, 0.1);
    content: "";
}

@media screen and (max-width: 750px) {
    .mod-tab:after {
        height: 0%;
    }
    }

.mod-tab__btn {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 35px;
    padding: 8px 12px;
    border-radius: 5px 5px 0 0;
    color: #643200;
    letter-spacing: 0.1em;
    font-size: 1.21429rem;
    font-weight: 900;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .mod-tab__btn {
        margin-right: 10px;
    }
    }

.mod-tab__btn:last-child {
    margin-right: 0;
}

.mod-tab__btn:hover {
    position: relative;
    z-index: 1;
    padding: 8px 11px;
    border-top: 1px solid #C59B6D;
    border-right: 1px solid #C59B6D;
    border-left: 1px solid #C59B6D;
    background: url(../img/common/bg_paper.png) 0 0 repeat;
    background-size: 100%;
}

.mod-tab__btn.current {
    position: relative;
    bottom: -0.3px;
    z-index: 1;
    padding: 8px 12px;
    border-top: 1px solid #C59B6D;
    border-right: 1px solid #C59B6D;
    border-left: 1px solid #C59B6D;
    background: url(../img/common/bg_paper.png) 0 0 repeat;
    background-size: 100%;
}

/*  mod-head
--------------------------------------------- */
.mod-head {
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .mod-head {
        margin-bottom: 2.66667vw;
    }
}

.mod-head--company {
    margin-left: 30px;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .mod-head--company {
        margin-left: 0;
        text-align: center;
    }
}

.mod-head__txt {
    position: relative;
    display: inline-block;
    color: #C59B6D;
    letter-spacing: 0.05em;
    font-size: 1.71429rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .mod-head__txt {
        font-size: 4.8vw;
    }
}

.mod-head__txt:before, .mod-head__txt:after {
    position: absolute;
    top: 50%;
    width: 11px;
    height: 12px;
    background: url(../img/common/icon_hexagon.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .mod-head__txt:before, .mod-head__txt:after {
        width: 2.13333vw;
        height: 2.4vw;
    }
}

.mod-head__txt:before {
    left: -28px;
}

@media screen and (max-width: 750px) {
    .mod-head__txt:before {
        left: -5.33333vw;
    }
}

.mod-head__txt:after {
    right: -28px;
}

@media screen and (max-width: 750px) {
    .mod-head__txt:after {
        right: -5.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .mod-head__txt--small {
        font-size: 4.8vw;
    }
}

/*  mod-contact-link
--------------------------------------------- */
.mod-contact-link {
    text-align: center;
}

.mod-contact-link__btn {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 15px;
    width: 400px;
    height: 93px;
    border-radius: 10px;
    background-color: #C59B6D;
    color: #fff;
    letter-spacing: 0.1em;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

@media screen and (max-width: 750px) {
    .mod-contact-link__btn {
        margin: 0 auto;
        padding-top: 2vw;
        width: 80.66667vw;
        height: 18.66667vw;
        border-radius: 1.33333vw;
    }
}

@media screen and (min-width: 751px) {
    .mod-contact-link__btn:hover {
        background-color: #643200;
    }
}

.mod-contact-link--center .mod-contact-link__btn {
    margin-right: auto;
    margin-left: auto;
}

.mod-contact-link__lead {
    display: block;
    font-size: 0.92857rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .mod-contact-link__lead {
        font-size: 2.66667vw;
    }
}

.mod-contact-link__txt {
    display: block;
    font-size: 2.14286rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .mod-contact-link__txt {
        font-size: 6vw;
    }
}

/*  mod-txt-link
--------------------------------------------- */
.mod-txt-link {
    color: #C59B6D;
    text-decoration: underline;
}

.mod-txt-link:hover {
    text-decoration: none;
}

/*  fade
--------------------------------------------- */
.js-scroll-fade {
    opacity: 0;
    -webkit-transition: opacity 2s;
    transition: opacity 2s;
}

.fadein {
    opacity: 1;
}

/* ---------------------------------------------
*   brand
--------------------------------------------- */
/*  mv
--------------------------------------------- */
.mv__inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .mv__inner {
        padding: 0;
        max-width: none;
    }
}

/*  brands-detail
--------------------------------------------- */
.brands-detail {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;

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

@media screen and (max-width: 750px) {
    .brands-detail {
        -ms-flex-pack: end;
        max-width: none;

        -webkit-box-pack: end;
        justify-content: flex-end;
    }
}

.brands-detail:nth-of-type(2n+1) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

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

@media screen and (max-width: 750px) {
    .brands-detail:nth-of-type(2n+1) {
        -ms-flex-direction: row;
        flex-direction: row;

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

.brands-detail--dougnut-01 {
    margin-top: 110px;
    padding-bottom: 110px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-01 {
        margin-top: 9.33333vw;
        padding-bottom: 74.66667vw;
    }
}

.brands-detail--dougnut-02 {
    padding-bottom: 125px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-02 {
        padding-bottom: 82.66667vw;
    }
}

.brands-detail--dougnut-03 {
    padding-bottom: 165px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-03 {
        padding-bottom: 101.33333vw;
    }
}

.brands-detail--kiwamitsu-01 {
    margin-top: 145px;
    padding-bottom: 235px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-01 {
        margin-top: 7.33333vw;
        padding-bottom: 48.66667vw;
    }
}

.brands-detail--kiwamitsu-02 {
    padding-bottom: 165px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-02 {
        padding-bottom: 88.66667vw;
    }
}

.brands-detail--kiwamitsu-03 {
    padding-bottom: 110px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-03 {
        padding-bottom: 92.66667vw;
    }
}

.brands-detail--hachimitsu-01 {
    margin-top: 90px;
    padding-bottom: 75px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-01 {
        margin-top: 8vw;
        padding-bottom: 89.33333vw;
    }
}

.brands-detail--hachimitsu-02 {
    padding-bottom: 60px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-02 {
        padding-bottom: 93.33333vw;
    }
}

.brands-detail--hachimitsu-03 {
    padding-bottom: 615px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-03 {
        padding-bottom: 165.33333vw;
    }
}

.brands-detail--nerimitsu-01 {
    margin-top: 108px;
    padding-bottom: 160px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-01 {
        margin-top: 10vw;
        padding-bottom: 73.33333vw;
    }
}

.brands-detail--nerimitsu-02 {
    padding-bottom: 147px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-02 {
        padding-bottom: 78.66667vw;
    }
}

.brands-detail--nerimitsu-03 {
    padding-bottom: 200px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-03 {
        padding-bottom: 84.66667vw;
    }
}

.brands-detail--yasai-01 {
    margin-top: 82px;
    padding-bottom: 55px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-01 {
        margin-top: 10vw;
        padding-bottom: 72.66667vw;
    }
}

.brands-detail--yasai-02 {
    padding-bottom: 75px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-02 {
        padding-bottom: 56.66667vw;
    }
}

.brands-detail--yasai-03 {
    padding-bottom: 115px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-03 {
        padding-bottom: 84.66667vw;
    }
}

.brands-detail__txt-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

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

.brands-detail--dougnut-01 .brands-detail__txt-box {
    margin-right: 160px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-01 .brands-detail__txt-box {
        margin-right: 9.33333vw;
    }
}

.brands-detail--dougnut-02 .brands-detail__txt-box {
    margin-left: 150px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-02 .brands-detail__txt-box {
        margin-right: 9.33333vw;
        margin-left: auto;
    }
}

.brands-detail--dougnut-03 .brands-detail__txt-box {
    margin-right: 80px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-03 .brands-detail__txt-box {
        margin-right: 3.33333vw;
    }
}

.brands-detail--kiwamitsu-01 .brands-detail__txt-box {
    margin-right: 95px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-01 .brands-detail__txt-box {
        margin-right: 4vw;
    }
}

.brands-detail--kiwamitsu-02 .brands-detail__txt-box {
    margin-left: 115px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-02 .brands-detail__txt-box {
        margin-right: 7.33333vw;
        margin-left: auto;
    }
}

.brands-detail--kiwamitsu-03 .brands-detail__txt-box {
    margin-right: 120px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-03 .brands-detail__txt-box {
        margin-right: 7.33333vw;
    }
}

.brands-detail--hachimitsu-01 .brands-detail__txt-box {
    margin-right: 85px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-01 .brands-detail__txt-box {
        margin-right: 4vw;
    }
}

.brands-detail--hachimitsu-02 .brands-detail__txt-box {
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: 80px;

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

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-02 .brands-detail__txt-box {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        margin-right: 8.66667vw;
        margin-left: auto;

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

.brands-detail--hachimitsu-03 .brands-detail__txt-box {
    margin-right: 125px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-03 .brands-detail__txt-box {
        margin-right: 13.33333vw;
    }
}

.brands-detail--nerimitsu-01 .brands-detail__txt-box {
    margin-right: 127px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-01 .brands-detail__txt-box {
        margin-right: 11.33333vw;
    }
}

.brands-detail--nerimitsu-02 .brands-detail__txt-box {
    margin-left: 165px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-02 .brands-detail__txt-box {
        margin-right: 9.33333vw;
        margin-left: auto;
    }
}

.brands-detail--nerimitsu-03 .brands-detail__txt-box {
    margin-right: 250px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-03 .brands-detail__txt-box {
        margin-right: auto;
        margin-left: auto;
    }
}

.brands-detail--yasai-01 .brands-detail__txt-box {
    margin-right: 184px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-01 .brands-detail__txt-box {
        margin-right: 18vw;
    }
}

.brands-detail--yasai-02 .brands-detail__txt-box {
    margin-left: 180px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-02 .brands-detail__txt-box {
        margin-right: 22.66667vw;
    }
}

.brands-detail--yasai-03 .brands-detail__txt-box {
    margin-right: 200px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-03 .brands-detail__txt-box {
        margin-right: 25.33333vw;
    }
}

.brands-detail--dougnut-01 .brands-detail__ttl {
    width: 123px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-01 .brands-detail__ttl {
        width: 24.53333vw;
    }
}

.brands-detail--dougnut-02 .brands-detail__ttl {
    width: 109px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-02 .brands-detail__ttl {
        width: 21.6vw;
    }
}

.brands-detail--dougnut-03 .brands-detail__ttl {
    width: 107px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-03 .brands-detail__ttl {
        width: 21.33333vw;
    }
}

.brands-detail--kiwamitsu-01 .brands-detail__ttl {
    width: 124px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-01 .brands-detail__ttl {
        width: 88.8vw;
    }
}

.brands-detail--kiwamitsu-02 .brands-detail__ttl {
    width: 108px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-02 .brands-detail__ttl {
        width: 21.6vw;
    }
}

.brands-detail--kiwamitsu-03 .brands-detail__ttl {
    width: 105px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-03 .brands-detail__ttl {
        width: 20.93333vw;
    }
}

.brands-detail--hachimitsu-01 .brands-detail__ttl {
    width: 444px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-01 .brands-detail__ttl {
        width: 88.8vw;
    }
}

.brands-detail--hachimitsu-02 .brands-detail__ttl {
    width: 227px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-02 .brands-detail__ttl {
        width: 20.93333vw;
    }
}

.brands-detail--hachimitsu-03 .brands-detail__ttl {
    width: 105px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-03 .brands-detail__ttl {
        width: 20.93333vw;
    }
}

.brands-detail--nerimitsu-01 .brands-detail__ttl {
    width: 148px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-01 .brands-detail__ttl {
        width: 29.46667vw;
    }
}

.brands-detail--nerimitsu-02 .brands-detail__ttl {
    width: 108px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-02 .brands-detail__ttl {
        width: 21.6vw;
    }
}

.brands-detail--nerimitsu-03 .brands-detail__ttl {
    width: 105px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-03 .brands-detail__ttl {
        width: 20.93333vw;
    }
}

.brands-detail--yasai-01 .brands-detail__ttl {
    width: 191px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-01 .brands-detail__ttl {
        width: 44.4vw;
    }
}

.brands-detail--yasai-02 .brands-detail__ttl {
    width: 159px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-02 .brands-detail__ttl {
        width: 31.73333vw;
    }
}

.brands-detail--yasai-03 .brands-detail__ttl {
    width: 79px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-03 .brands-detail__ttl {
        width: 15.73333vw;
    }
}

.brands-detail__txt {
    -ms-writing-mode: tb-rl;
    font-size: 1.14286rem;
    line-height: 1.75;

    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 750px) {
    .brands-detail__txt {
        font-size: 3.2vw;
    }
}

.brands-detail--dougnut-01 .brands-detail__txt {
    margin-top: 30px;
    margin-right: 10px;
    height: 280px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-01 .brands-detail__txt {
        margin-top: 5.33333vw;
        margin-right: 1.33333vw;
        height: 43.06667vw;
    }
}

.brands-detail--dougnut-02 .brands-detail__txt {
    margin-top: 35px;
    margin-right: 20px;
    height: 248px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-02 .brands-detail__txt {
        margin-top: 6.66667vw;
        margin-right: 3.33333vw;
        height: 49.6vw;
    }
}

.brands-detail--dougnut-03 .brands-detail__txt {
    margin-top: 35px;
    margin-right: 20px;
    height: 312px;
}

@media screen and (max-width: 750px) {
    .brands-detail--dougnut-03 .brands-detail__txt {
        margin-top: 6.66667vw;
        margin-right: 3.33333vw;
        height: 62.26667vw;
    }
}

.brands-detail--kiwamitsu-01 .brands-detail__txt {
    margin-top: 30px;
    margin-right: 10px;
    height: 322px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-01 .brands-detail__txt {
        margin-top: 9.33333vw;
        margin-right: -69.33333vw;
        height: 40.8vw;
    }
}

.brands-detail--kiwamitsu-02 .brands-detail__txt {
    margin-top: 40px;
    margin-right: 20px;
    height: 288px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-02 .brands-detail__txt {
        margin-top: 6.66667vw;
        margin-right: 3.33333vw;
        height: 57.6vw;
    }
}

.brands-detail--kiwamitsu-03 .brands-detail__txt {
    margin-top: 35px;
    margin-right: 20px;
    height: 302px;
}

@media screen and (max-width: 750px) {
    .brands-detail--kiwamitsu-03 .brands-detail__txt {
        margin-top: 7.33333vw;
        margin-right: 3.33333vw;
        height: 74.66667vw;
    }
}

.brands-detail--hachimitsu-01 .brands-detail__txt {
    margin-top: 50px;
    margin-right: -350px;
    height: 366px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-01 .brands-detail__txt {
        margin-top: 8.66667vw;
        margin-right: -70.66667vw;
        height: 73.73333vw;
    }
}

.brands-detail--hachimitsu-02 .brands-detail__txt {
    position: relative;
    left: -110px;
    margin-top: 370px;
    height: 255px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-02 .brands-detail__txt {
        position: static;
        margin-top: 7.33333vw;
        margin-right: 3.33333vw;
        height: 47.6vw;
    }
}

.brands-detail--hachimitsu-03 .brands-detail__txt {
    margin-top: 35px;
    margin-right: 20px;
    height: 228px;
}

@media screen and (max-width: 750px) {
    .brands-detail--hachimitsu-03 .brands-detail__txt {
        margin-top: 6.66667vw;
        margin-right: 3.33333vw;
        height: 47.6vw;
    }
}

.brands-detail--nerimitsu-01 .brands-detail__txt {
    margin-top: 35px;
    margin-right: 0;
    height: 272px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-01 .brands-detail__txt {
        margin-top: 5.33333vw;
        margin-right: 0;
        height: 54.4vw;
    }
}

.brands-detail--nerimitsu-02 .brands-detail__txt {
    margin-top: 30px;
    margin-right: 20px;
    height: 298px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-02 .brands-detail__txt {
        margin-top: 7.33333vw;
        margin-right: 3.33333vw;
        height: 49.46667vw;
    }
}

.brands-detail--nerimitsu-03 .brands-detail__txt {
    margin-top: 30px;
    margin-right: 15px;
    height: 248px;
}

@media screen and (max-width: 750px) {
    .brands-detail--nerimitsu-03 .brands-detail__txt {
        margin-top: 6.66667vw;
        margin-right: 3.33333vw;
        height: 49.6vw;
    }
}

.brands-detail--yasai-01 .brands-detail__txt {
    margin-top: 30px;
    margin-right: 25px;
    height: 240px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-01 .brands-detail__txt {
        margin-top: 6vw;
        margin-right: 2vw;
        height: 45.73333vw;
    }
}

.brands-detail--yasai-02 .brands-detail__txt {
    margin-top: 30px;
    margin-right: 15px;
    height: 315px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-02 .brands-detail__txt {
        margin-top: 6vw;
        margin-right: 2.66667vw;
        height: 61.06667vw;
    }
}

.brands-detail--yasai-03 .brands-detail__txt {
    margin-top: 35px;
    margin-right: 10px;
    height: 266px;
}

@media screen and (max-width: 750px) {
    .brands-detail--yasai-03 .brands-detail__txt {
        margin-top: 6.66667vw;
        margin-right: 2vw;
        height: 53.33333vw;
    }
}

.brands-detail__txt .text-combine {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
}

.edge .brands-detail__txt .text-combine {
    position: relative;
    bottom: 6px;
}

@media screen and (max-width: 750px) {
    .edge .brands-detail__txt .text-combine {
        position: static;
    }
}

.brands-detail__img {
    position: absolute;
}

.brands-detail__img--dougnut-01 {
    top: -30px;
    left: 75px;
    width: 589px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--dougnut-01 {
        top: auto;
        right: 0;
        bottom: 10.66667vw;
        left: 0;
        margin: auto;
        width: 90.4vw;
    }
}

.brands-detail__img--dougnut-02 {
    top: -10px;
    right: 50px;
    width: 540px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--dougnut-02 {
        top: auto;
        right: 0;
        bottom: 13.33333vw;
        left: 0;
        margin: auto;
        width: 95.06667vw;
    }
}

.brands-detail__img--dougnut-03 {
    top: -55px;
    left: 45px;
    width: 598px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--dougnut-03 {
        top: auto;
        right: 0;
        bottom: 22.66667vw;
        left: 0;
        margin: auto;
        width: 97.6vw;
    }
}

.brands-detail__img--kiwamitsu-01 {
    top: -70px;
    left: 20px;
    width: 542px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--kiwamitsu-01 {
        top: auto;
        bottom: 24vw;
        left: 1.33333vw;
        width: 69.33333vw;
    }
}

.brands-detail__img--kiwamitsu-02 {
    bottom: 93px;
    left: 340px;
    width: 468px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--kiwamitsu-02 {
        right: -2.66667vw;
        bottom: 9.33333vw;
        left: auto;
        width: 60vw;
    }
}

.brands-detail__img--kiwamitsu-03 {
    top: -65px;
    right: 30px;
    width: 613px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--kiwamitsu-03 {
        top: auto;
        right: 0;
        bottom: 6.66667vw;
        width: 96vw;
    }
}

.brands-detail__img--kiwamitsu-04 {
    top: -70px;
    left: -15px;
    width: 590px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--kiwamitsu-04 {
        top: auto;
        bottom: 16vw;
        left: 0;
        width: 100%;
    }
}

.brands-detail__img--hachimitsu-01 {
    top: -60px;
    left: -11px;
    width: 668px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--hachimitsu-01 {
        top: auto;
        right: 0;
        bottom: 13.33333vw;
        left: auto;
        width: 96vw;
    }
}

.brands-detail__img--hachimitsu-02 {
    right: 245px;
    bottom: 90px;
    width: 323px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--hachimitsu-02 {
        top: 54.66667vw;
        right: auto;
        bottom: auto;
        left: 2.66667vw;
        width: 64vw;
    }
}

.brands-detail__img--hachimitsu-03 {
    top: 0;
    right: 30px;
    width: 941px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--hachimitsu-03 {
        top: auto;
        right: -6vw;
        bottom: 14.4vw;
        width: 115.73333vw;
    }
}

.brands-detail__img--hachimitsu-04 {
    top: 28px;
    left: 15px;
    width: 668px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--hachimitsu-04 {
        top: 62.66667vw;
        left: -2.66667vw;
        width: 113.06667vw;
    }
}

.brands-detail__img--hachimitsu-05 {
    right: -7px;
    bottom: 100px;
    width: 700px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--hachimitsu-05 {
        right: 2.66667vw;
        bottom: 13.33333vw;
        width: 97.33333vw;
    }
}

.brands-detail__img--nerimitsu-01 {
    top: -25px;
    left: 70px;
    width: 610px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--nerimitsu-01 {
        top: auto;
        bottom: 10vw;
        left: 50%;
        width: 89.33333vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.brands-detail__img--nerimitsu-02 {
    top: -56px;
    right: 35px;
    width: 774px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--nerimitsu-02 {
        top: auto;
        right: -1.2vw;
        bottom: -5.06667vw;
        width: 124.66667vw;
    }
}

.brands-detail__img--nerimitsu-03 {
    top: -120px;
    left: 100px;
    width: 519px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--nerimitsu-03 {
        top: auto;
        bottom: 8vw;
        left: 50%;
        width: 69.2vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.brands-detail__img--yasai-01 {
    top: -40px;
    left: 40px;
    width: 677px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--yasai-01 {
        top: auto;
        bottom: 4vw;
        left: 50%;
        width: 88.66667vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.brands-detail__img--yasai-02 {
    top: -70px;
    right: 50px;
    width: 648px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--yasai-02 {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        width: 86.4vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.brands-detail__img--yasai-03 {
    top: -48px;
    left: 82px;
    width: 615px;
}

@media screen and (max-width: 750px) {
    .brands-detail__img--yasai-03 {
        top: auto;
        bottom: 12vw;
        left: 50%;
        width: 88.53333vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/*  brand-product
--------------------------------------------- */
.brand-product {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .brand-product {
        max-width: none;
    }
}

.brand-product__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    margin: 0 auto;
    width: 810px;

    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

.brand-product--single .brand-product__inner {
    -ms-flex-pack: center;

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

.brand-product--multi .brand-product__inner {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

@media screen and (max-width: 750px) {
    .brand-product--multi .brand-product__inner {
        -ms-flex-pack: center;

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

.brand-product__box {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .brand-product__box {
        position: relative;
        margin-bottom: 24vw;
    }
}

@media screen and (max-width: 750px) {
    .brand-product__box:after {
        position: absolute;
        bottom: -10.66667vw;
        left: -12vw;
        width: 100vw;
        height: 1px;
        background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
        background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
        background-position: center;
        background-repeat: no-repeat;
        content: "";
    }
}

@media screen and (max-width: 750px) {
    .brand-product__box:last-of-type {
        margin-bottom: 0;
    }
}

.brand-product__box:last-of-type:after {
    content: none;
}

.brand-product__img {
    margin: 0 auto 30px;
}

@media screen and (max-width: 750px) {
    .brand-product__img {
        margin: 0 auto 5.33333vw;
    }
}

.brand-product--single .brand-product__img {
    max-width: 377px;
}

@media screen and (max-width: 750px) {
    .brand-product--single .brand-product__img {
        max-width: none;
        width: 100%;
    }
}

.brand-product--single .brand-product__img img {
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .brand-product--single .brand-product__img img {
        max-width: 76vw;
        max-height: 113.33333vw;
    }
}

.brand-product--multi .brand-product__img {
    max-width: 284px;
}

@media screen and (max-width: 750px) {
    .brand-product--multi .brand-product__img {
        max-width: none;
        width: 100%;
    }
}

.brand-product--multi .brand-product__img img {
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .brand-product--multi .brand-product__img img {
        max-width: 76vw;
        max-height: 113.33333vw;
    }
}

.brand-product__name {
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 1.85714rem;
}

@media screen and (max-width: 750px) {
    .brand-product__name {
        margin-bottom: 9.33333vw;
        font-size: 5.2vw;
    }
}

.brand-product__link {
    display: block;
}

.brand-product--single .brand-product__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;

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

@media screen and (max-width: 750px) {
    .brand-product--single .brand-product__link {
        display: block;
    }
}

.brand-product__btn {
    position: relative;
    display: block;
    margin: 0 5px;
    width: 350px;
}

@media screen and (max-width: 750px) {
    .brand-product__btn {
        margin: 0 auto;
        width: 66.66667vw;
    }
}

.brand-product__btn:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.brand-product__btn--detail:after {
    background-image: url(../img/common/btn_detail_mo.png);
}

.brand-product__btn--buy:after {
    background-image: url(../img/common/btn_buy_large_mo.png);
}

.brand-product__btn--doughnut:after {
    background-image: url(../img/common/btn_make_doughnut_mo.png);
}

.brand-product__btn--karinto:after {
    background-image: url(../img/common/btn_make_karinto_mo.png);
}

.brand-product__btn--make {
    margin: 0 auto;
}

.brand-product__btn:hover:after {
    opacity: 1;
}

.brand-product--multi .brand-product__btn {
    margin: 0 auto;
}

.brand-product__make {
    margin: 0 auto;
    width: 350px;
}

@media screen and (max-width: 750px) {
    .brand-product__make {
        width: 66.66667vw;
    }
}

/* ---------------------------------------------
*   product
--------------------------------------------- */
/*  product-list
--------------------------------------------- */
.product-list {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .product-list {
        max-width: none;
    }
}

.product-list__inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 100px;
}

@media screen and (max-width: 750px) {
    .product-list__inner {
        padding: 0 4.66667vw;
    }
}

.product-list__list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);
    box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);

    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .product-list__list {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.product-list__item {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 45px;
    padding-top: 58px;
    padding-bottom: 40px;
    width: 216px;
}

@media screen and (max-width: 750px) {
    .product-list__item {
        margin-right: 4.53333vw;
        padding-top: 9.33333vw;
        padding-bottom: 8vw;
        width: 43.06667vw;
    }
}

.product-list__item:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .product-list__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.product-list__item:nth-of-type(4n+1):before {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 1200px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .product-list__item:nth-of-type(4n+1):before {
        content: none;
    }
}

@media screen and (max-width: 750px) {
    .product-list__item:nth-of-type(2n+1):before {
        position: absolute;
        top: 0;
        left: -100px;
        left: -4.66667vw;
        width: 100vw;
        height: 1px;
        background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
        background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
        background-position: center;
        background-repeat: no-repeat;
        content: "";
    }
}

@media screen and (max-width: 750px) {
    .product-list__item:first-of-type:before {
        content: none;
    }
}

.product-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 358px;
    border: 1px solid #C59B6D;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

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

.ios .product-list__link:hover,
.android .product-list__link:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .product-list__link {
        height: 71.73333vw;
    }
}

.product-list__link img {
    max-width: 176px;
    max-height: 275px;
}

@media screen and (max-width: 750px) {
    .product-list__link img {
        max-width: 37.06667vw;
        max-height: 55.06667vw;
    }
}

.product-list__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 100%;

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

.product-list__detail {
    padding: 10px 0;
    background-color: #C59B6D;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
}

@media screen and (max-width: 750px) {
    .product-list__detail {
        padding: 2vw 0;
        font-size: 4.13333vw;
    }
}

.product-list__name {
    padding-top: 5px;
    text-align: center;
    font-size: 1.07143rem;
    line-height: 1.4;
}

@media screen and (max-width: 750px) {
    .product-list__name {
        padding-top: 1.33333vw;
        font-size: 2.93333vw;
    }
}

.product-list__buy {
    position: relative;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 163px;
}

@media screen and (max-width: 750px) {
    .product-list__buy {
        margin-top: 2.66667vw;
        width: 32.53333vw;
    }
}

.product-list__buy:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/common/btn_buy_small_mo.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.product-list__buy:hover:after {
    opacity: 1;
}

/*  product-detail
--------------------------------------------- */
.product-detail {
    padding-top: 50px;
}

@media screen and (max-width: 750px) {
    .product-detail {
        padding-top: 0;
    }
}

/*  product-info
--------------------------------------------- */
.product-info {
    position: relative;
    margin-bottom: 55px;
}

@media screen and (max-width: 750px) {
    .product-info {
        margin-top: 6.66667vw;
        margin-bottom: 14.66667vw;
    }
}

.product-info:after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 78%;
    border: 2px solid rgba(197, 155, 109, 0.1);
    background: url(../img/common/bg_check.png) 0 0 repeat;
    background-size: 177px;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .product-info:after {
        content: none;
    }
}

.product-info__inner {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px 50px 30px 0;
    max-width: 966px;
    width: 100%;
    border: 1px solid #C59B6D;
    border-radius: 4px;
    background-color: #fff;

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

@media screen and (max-width: 750px) {
    .product-info__inner {
        display: block;
        margin-bottom: 6vw;
        padding: 0 4.66667vw;
        max-width: none;
        width: 100%;
        border: none;
        background-color: transparent;
    }
}

@media screen and (max-width: 750px) {
    .product-info__inner:after {
        position: absolute;
        top: 50%;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 91%;
        border: 2px solid rgba(197, 155, 109, 0.1);
        background: url(../img/common/bg_check.png) 0 0 repeat;
        background-size: 33.33333vw;
        content: "";
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.product-info__main {
    width: calc(100% - 513px);
    text-align: center;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .product-info__main {
        position: relative;
        z-index: 1;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 8vw 4vw 4vw;
        width: auto;
        border: 1px solid #C59B6D;
        border-radius: 4px;
        background-color: #fff;
        text-align: left;
    }
}

.product-info__img {
    margin: 0 auto 20px;
}

@media screen and (max-width: 750px) {
    .product-info__img {
        margin: 0 auto 6.66667vw;
    }
}

.product-info__img img {
    max-width: 357px;
    max-height: 500px;
}

@media screen and (max-width: 750px) {
    .product-info__img img {
        display: block;
        margin: 0 auto;
        max-width: 63.6vw;
        max-height: 100vw;
    }
}

.product-info__link {
    margin: 0 auto;
    width: 238px;
}

@media screen and (max-width: 750px) {
    .product-info__link {
        width: 66vw;
    }
}

.product-info__btn {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

@media screen and (max-width: 750px) {
    .product-info__btn {
        margin-bottom: 0.66667vw;
    }
}

.product-info__btn:last-of-type {
    margin-bottom: 0;
}

.product-info__btn:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.product-info__btn--brand:after {
    background-image: url(../img/common/btn_brand_mo.png);
}

.product-info__btn--buy:after {
    background-image: url(../img/common/btn_buy_medium_mo.png);
}

.product-info__btn--make-karinto:after {
    background-image: url(../img/common/btn_make_karinto_mo.png);
}

.product-info__btn--make-doughnut:after {
    background-image: url(../img/common/btn_make_doughnut_mo.png);
}

.product-info__btn:hover:after {
    opacity: 1;
}

.product-info__detail {
    width: 513px;
}

@media screen and (max-width: 750px) {
    .product-info__detail {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 4.66667vw;
        width: 100%;
    }
}

.product-info__name {
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .product-info__name {
        margin-bottom: 1.33333vw;
        text-align: center;
        font-size: 6.93333vw;
        line-height: 1.4;
    }
}

.product-info__txt {
    margin-bottom: 25px;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .product-info__txt {
        margin-bottom: 0;
        font-size: 3.73333vw;
    }
}

.product-info__summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-info__box {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .product-info__box {
        margin-bottom: 4vw;
    }
}

.product-info__box--double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 248px;

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

@media screen and (max-width: 750px) {
    .product-info__box--double {
        width: 43.46667vw;
    }
}

.product-info__box--double .product-info__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    height: 100%;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.product-info__box--table {
    margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
    .product-info__box--table {
        margin-bottom: 1.33333vw;
    }
}

.product-info__head {
    padding: 6px;
    background-color: #C59B6D;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .product-info__head {
        padding: 1.2vw;
        font-size: 2.93333vw;
    }
}

.product-info__body {
    border: 1px solid #C59B6D;
}

@media screen and (max-width: 750px) {
    .product-info__body {
        background-color: #fff;
    }
}

.product-info__desc {
    padding: 6px;
    text-align: center;
    word-break: break-all;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .product-info__desc {
        padding: 1.2vw;
        font-size: 2.93333vw;
    }
}

.product-info__list {
    padding: 6px;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .product-info__list {
        padding: 1.2vw;
        background-color: #fff;
        font-size: 2.93333vw;
    }
}

.product-info__table {
    width: 100%;
}

.product-info__table tr {
    border-bottom: 1px solid #C59B6D;
}

.product-info__table tr:last-of-type {
    border-bottom: none;
}

.product-info__table th {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 6px 17px;
    width: 147px;
    background-color: rgba(197, 155, 109, 0.2);
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .product-info__table th {
        padding: 1.2vw 3.33333vw;
        width: 29.33333vw;
        background-color: rgba(197, 155, 109, 0.3);
        font-size: 2.93333vw;
    }
}

.product-info__table td {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 6px 35px;
    width: calc(100% - 147px);
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .product-info__table td {
        padding: 1.2vw 1.33333vw 1.2vw 6.66667vw;
        background-color: #fff;
        font-size: 2.93333vw;
    }
}

.product-info__note {
    text-align: right;
    font-size: 0.57143rem;
}

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

/*  product-relation
--------------------------------------------- */
.product-relation {
    margin: 0 auto 25px;
    max-width: 966px;
    width: 100%;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 750px) {
    .product-relation {
        margin: 0 auto 0;
        max-width: none;
        width: 100%;
    }
}

.product-relation__head {
    position: relative;
    margin-bottom: -15px;
    padding-bottom: 10px;
    color: #643200;
    text-align: center;
    font-size: 1.71429rem;
}

@media screen and (max-width: 750px) {
    .product-relation__head {
        margin-bottom: 0;
        padding-bottom: 2.66667vw;
        font-size: 4.8vw;
    }
}

.product-relation__head:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 172px;
    height: 6.5px;
    background: url(../img/common/img_border_ttl.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .product-relation__head:after {
        width: 34.66667vw;
        height: 1.86667vw;
    }
}

.product-relation__list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);
    box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);

    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .product-relation__list {
        padding: 0 4.66667vw;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.product-relation__list:before {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 1200px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .product-relation__list:before {
        content: none;
    }
}

.product-relation__item {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 34px;
    padding-top: 55px;
    padding-bottom: 50px;
    width: 216px;
}

@media screen and (max-width: 750px) {
    .product-relation__item {
        margin-right: 4.53333vw;
        padding-top: 9.33333vw;
        padding-bottom: 8vw;
        width: 43.06667vw;
    }
}

.product-relation__item:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .product-relation__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.product-relation__item:nth-of-type(4n+1):before {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 1200px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .product-relation__item:nth-of-type(4n+1):before {
        content: none;
    }
}

@media screen and (max-width: 750px) {
    .product-relation__item:nth-of-type(2n+1):before {
        position: absolute;
        top: 0;
        left: -100px;
        left: -4.66667vw;
        width: 100vw;
        height: 1px;
        background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
        background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
        background-position: center;
        background-repeat: no-repeat;
        content: "";
    }
}

@media screen and (max-width: 750px) {
    .product-relation__item:first-of-type:before {
        content: none;
    }
}

.product-relation__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 358px;
    border: 1px solid #C59B6D;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

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

.ios .product-relation__link:hover,
.android .product-relation__link:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .product-relation__link {
        height: 71.73333vw;
    }
}

.product-relation__link img {
    max-width: 176px;
    max-height: 275px;
}

@media screen and (max-width: 750px) {
    .product-relation__link img {
        max-width: 37.06667vw;
        max-height: 55.06667vw;
    }
}

.product-relation__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 100%;

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

.product-relation__detail {
    padding: 10px 0;
    background-color: #C59B6D;
    color: #fff;
    font-size: 1.5rem;
}

@media screen and (max-width: 750px) {
    .product-relation__detail {
        padding: 2vw 0;
        font-size: 4.13333vw;
    }
}

.product-relation__name {
    padding-top: 5px;
    text-align: center;
    font-size: 1.07143rem;
}

@media screen and (max-width: 750px) {
    .product-relation__name {
        padding-top: 1.33333vw;
        font-size: 2.93333vw;
    }
}

.product-relation__buy {
    position: relative;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 163px;
}

@media screen and (max-width: 750px) {
    .product-relation__buy {
        margin-top: 2.66667vw;
        width: 32.53333vw;
    }
}

.product-relation__buy:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/btn_buy_small_mo.png);
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.product-relation__buy:hover:after {
    opacity: 1;
}

/*  click-path
--------------------------------------------- */
.click-path {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    margin: 0 auto;
    width: 860px;

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

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

/*  post-link
--------------------------------------------- */
.post-link {
    position: relative;
    display: inline-block;
    color: #643200;
    letter-spacing: 0.1em;
    font-size: 1.21429rem;
    font-weight: 900;
    font-family: serif;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

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

.ios .post-link:hover,
.android .post-link:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .post-link {
        font-size: 3.33333vw;
    }
}

.post-link:before {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 16px;
    background: url(../img/common/icon_arrow.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .post-link:before {
        width: 2.13333vw;
        height: 3.33333vw;
    }
}

.post-link--prev {
    padding-left: 20px;
}

@media screen and (max-width: 750px) {
    .post-link--prev {
        padding-left: 4vw;
    }
}

.post-link--prev:before {
    left: 0;
}

.post-link--next {
    padding-right: 20px;
}

@media screen and (max-width: 750px) {
    .post-link--next {
        padding-right: 4vw;
    }
}

.post-link--next:before {
    right: 0;
    -webkit-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
}

.post-link--none {
    opacity: 0;
}

/*  page-back
--------------------------------------------- */
.page-back {
    text-align: center;
}

.page-back__link {
    position: relative;
    display: inline-block;
    color: #643200;
    letter-spacing: 0.1em;
    font-size: 1.21429rem;
    font-weight: bold;
    font-family: serif;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

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

.ios .page-back__link:hover,
.android .page-back__link:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .page-back__link {
        font-size: 3.33333vw;
    }
}

.page-back__link:before {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 10px;
    height: 16px;
    background: url(../img/common/icon_arrow.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .page-back__link:before {
        left: -4vw;
        width: 2.13333vw;
        height: 3.33333vw;
    }
}

.page-back__link--no-arrow:before {
    content: none;
}

/*  shop-modal
--------------------------------------------- */
.shop-modal {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 3px;
    width: 618px;
    border-radius: 3px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .shop-modal {
        padding: 0.8vw;
        width: 90vw;
        border-radius: 0.8vw;
    }
}

.shop-modal__inner {
    padding: 50px 40px 45px;
    border: 3px solid #C59B6D;
}

@media screen and (max-width: 750px) {
    .shop-modal__inner {
        padding: 5.33333vw 3.33333vw 6.66667vw;
        border-width: 0.8vw;
    }
}

.shop-modal__head {
    padding: 0 25px 20px;
    border-bottom: 1px solid #C59B6D;
    font-size: 2.21429rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .shop-modal__head {
        padding: 0 0 4vw;
        font-size: 5.2vw;
    }
}

.shop-modal__txt {
    padding: 20px 25px 50px;
    font-size: 1rem;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .shop-modal__txt {
        padding: 4.66667vw 0 8vw;
        font-size: 2.8vw;
    }
}

.shop-modal__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;

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

@media screen and (max-width: 750px) {
    .shop-modal__link {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;

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

.shop-modal__close {
    display: block;
    padding: 8px 42px;
    outline: none;
    border: 2px solid #C59B6D;
    border-radius: 3px;
    background-color: transparent;
    color: #C59B6D;
    letter-spacing: 0.1em;
    font: inherit;
    font-size: 1.28571rem;
    font-family: inherit;
    font-weight: bold;
    font-family: serif;
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

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

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

.ios .shop-modal__close:hover,
.android .shop-modal__close:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .shop-modal__close {
        padding: 1.46667vw 8.66667vw;
        border-width: 0.26667vw;
        border-radius: 0.4vw;
        font-size: 3.73333vw;
    }
}

.shop-modal__btn {
    display: block;
    padding: 8px 20px;
    border-radius: 3px;
    background-color: #C59B6D;
    color: #fff;
    letter-spacing: 0.1em;
    font-size: 1.28571rem;
    font-weight: bold;
    font-family: serif;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

@media screen and (max-width: 750px) {
    .shop-modal__btn {
        margin-bottom: 3.73333vw;
        padding: 1.6vw 4vw;
        border-radius: 0.4vw;
        letter-spacing: 0.05em;
        font-size: 3.73333vw;
    }
}

@media screen and (min-width: 751px) {
    .shop-modal__btn:hover {
        background-color: #643200;
    }
}

/* ---------------------------------------------
*   news
--------------------------------------------- */
/*  news-list
--------------------------------------------- */
.news-list {
    position: relative;
    margin: 0 auto;
    padding-top: 40px;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .news-list {
        padding-top: 0;
        max-width: none;
    }
}

.news-list__list {
    margin-bottom: 35px;
}

@media screen and (max-width: 750px) {
    .news-list__list {
        margin-bottom: 6.66667vw;
    }
}

.news-list__item {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 175px;
}

@media screen and (max-width: 750px) {
    .news-list__item {
        padding: 5.33333vw 4.66667vw;
    }
}

.news-list__item:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 1200px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .news-list__item:before {
        width: 100%;
    }
}

.news-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-align: start;
    align-items: flex-start;
}

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

.ios .news-list__link:hover,
.android .news-list__link:hover {
    opacity: 1;
}

.news-list__thumb {
    margin-right: 15px;
    width: 140px;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .news-list__thumb {
        margin-right: 2.66667vw;
        width: 28vw;
    }
}

.news-list__main {
    padding-top: 10px;
}

@media screen and (max-width: 750px) {
    .news-list__main {
        padding-top: 0;
    }
}

.news-list__date {
    margin-bottom: 5px;
    color: #643200;
    font-size: 1.07143rem;
    font-weight: 900;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .news-list__date {
        margin-bottom: 1vw;
        font-size: 2.93333vw;
    }
}

.news-list__ttl {
    margin-bottom: 15px;
    color: #643200;
    text-decoration: underline;
    font-size: 1.14286rem;
    font-weight: 900;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .news-list__ttl {
        margin-bottom: 1.33333vw;
        text-decoration: none;
        font-size: 3.33333vw;
    }
}

.news-list__txt {
    font-size: 1.14286rem;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .news-list__txt {
        font-size: 2.93333vw;
    }
}

.news-list__upper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.news-list__label-wrap {
    max-width: 590px;
    margin-left: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .news-list__label-wrap {
        width: calc(300vw/750 * 100);
        margin-left: 2vw;
    }
}

.news-list__label {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    padding: 0.2em 0.5em;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #f7931e;
    border-radius: 100px;
}

.windows .news-list__label {
    padding-top: 0.3em;
}

.safari .news-list__label {
    padding-top: 0.3em;
}

.android .news-list__label {
    padding-top: 0.3em;
}

@media screen and (max-width: 750px) {
    .news-list__label {
        font-size: calc(22vw/750 * 100);
        margin-right: 1vw;
        margin-bottom: 1vw;
    }
}

.news-list__label--24 {
    background-color: #8fc947;
}

.news-list__label--25 {
    background-color: #ef9898;
}

.news-list__label--26 {
    background-color: #32540a;
}

.news-list__label--27 {
    background-color: #4f9909;
}

.news-list__label--28 {
    background-color: #c90926;
}

.news-list__label--29 {
    background-color: #ff0000;
}

.news-list__label--30 {
    background-color: #ca9ac6;
}

.news-list__label--31 {
    background-color: #874da1;
}

.news-list__label--32 {
    background-color: #692755;
}

.news-list__label--33 {
    background-color: #00b9ff;
}

.news-list__label--34 {
    background-color: #2896f7;
}

.news-list__label--35 {
    background-color: #75c6c3;
}

.news-list__label--36 {
    background-color: #2e6a87;
}

.news-list__label--37 {
    background-color: #0e1b3f;
}

.news-list__label--38 {
    background-color: #ce944d;
}

.news-list__label--39 {
    background-color: #cc6600;
}

.news-list__label--40 {
    background-color: #663300;
}

.news-list__label--41 {
    background-color: #ffc139;
}

.news-list__label--42 {
    background-color: #ff8100;
}

.news-list__label--43 {
    background-color: #808080;
}

/*  wp-pagenavi
--------------------------------------------- */
.wp-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-bottom: 40px;

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

@media screen and (max-width: 750px) {
    .wp-pagenavi {
        margin-bottom: 8vw;
    }
}

.wp-pagenavi * {
    margin-right: 18px;
    color: #C59B6D;
    font-size: 1.21429rem;
}

@media screen and (max-width: 750px) {
    .wp-pagenavi * {
        margin-right: 6.66667vw;
        font-size: 3.33333vw;
    }
}

.wp-pagenavi *:last-child {
    margin-right: 0;
}

.wp-pagenavi a {
    -webkit-transition: color .3s;
    transition: color .3s;
}

@media screen and (min-width: 751px) {
    .wp-pagenavi a:hover {
        color: #643200;
    }
}

.wp-pagenavi .previouspostslink {
    position: relative;
    width: 11px;
    height: 18px;
}

@media screen and (max-width: 750px) {
    .wp-pagenavi .previouspostslink {
        width: 2.26667vw;
        height: 3.33333vw;
    }
}

.wp-pagenavi .previouspostslink:before {
    position: absolute;
    top: 45%;
    left: 0;
    width: 0;
    height: 0;
    border-width: 9px 11px 9px 0;
    border-style: solid;
    border-color: transparent #643200 transparent transparent;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .wp-pagenavi .previouspostslink:before {
        border-width: 1.6vw 2.26667vw 1.6vw 0;
    }
}

.wp-pagenavi .nextpostslink {
    position: relative;
    width: 11px;
    height: 18px;
}

@media screen and (max-width: 750px) {
    .wp-pagenavi .nextpostslink {
        width: 2.26667vw;
        height: 3.33333vw;
    }
}

.wp-pagenavi .nextpostslink:before {
    position: absolute;
    top: 45%;
    left: 0;
    width: 0;
    height: 0;
    border-width: 9px 0 9px 11px;
    border-style: solid;
    border-color: transparent transparent transparent #643200;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .wp-pagenavi .nextpostslink:before {
        border-width: 1.6vw 0 1.6vw 2.26667vw;
    }
}

.wp-pagenavi .current {
    color: #643200;
}

/*  news-archive
--------------------------------------------- */
.news-archive {
    margin: 0 auto;
    width: 480px;
}

@media screen and (max-width: 750px) {
    .news-archive {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 2.66667vw;
        width: 100%;
    }
}

.news-archive__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;

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

.news-archive__item {
    margin-bottom: 15px;
    border-right: 1px solid #C59B6D;
}

@media screen and (max-width: 750px) {
    .news-archive__item {
        margin-bottom: 5.33333vw;
    }
}

.news-archive__item:nth-of-type(5n) {
    border: none;
}

.news-archive__item:last-child {
    border: none;
}

.news-archive__link {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 25px;
    color: #C59B6D;
    font-size: 1.21429rem;
    line-height: 1;
    -webkit-transition: color .3s;
    transition: color .3s;
}

@media screen and (max-width: 750px) {
    .news-archive__link {
        padding: 0 5.06667vw;
        font-size: 3.33333vw;
    }
}

.news-archive__link.current {
    color: #643200;
    pointer-events: none;
}

@media screen and (min-width: 751px) {
    .news-archive__link:hover {
        color: #643200;
    }
}

/*  news-detail
--------------------------------------------- */
.news-detail {
    padding-top: 50px;
}

@media screen and (max-width: 750px) {
    .news-detail {
        padding: 0 5.06667vw;
    }
}

.news-detail__inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto 30px;
    padding: 30px 58px 50px;
    width: 860px;
    border: 1px solid #C59B6D;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .news-detail__inner {
        margin: 0 auto 6.66667vw;
        padding: 4vw 3.33333vw 5.06667vw;
        width: 100%;
    }
}

.news-detail__date {
    margin-bottom: 5px;
    color: #643200;
    font-size: 0.85714rem;
    font-weight: 900;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .news-detail__date {
        margin-bottom: 1vw;
        font-size: 2.93333vw;
    }
}

.news-detail__upper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.news-detail__ttl {
    color: #643200;
    font-size: 1.35714rem;
    font-weight: 900;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .news-detail__ttl {
        font-size: 3.73333vw;
    }
}

/*  news-contact
--------------------------------------------- */
.news-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 15px;
    width: 100%;
    border: 1px solid #C59B6D;

    -webkit-box-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 750px) {
    .news-contact {
        position: relative;
        display: block;
        margin-top: 16vw;
        padding: 4vw 8vw 4.4vw;
    }
}

.news-contact__head {
    margin-top: -5px;
    margin-right: 15px;
    letter-spacing: 0.05em;
    font-size: 1.14286rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .news-contact__head {
        position: absolute;
        top: -6.66667vw;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;
        font-size: 3.46667vw;
    }
}

.news-contact__tel {
    margin-right: 37px;
    color: #C59B6D;
    text-align: center;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
    .news-contact__tel {
        margin-right: 0;
        margin-bottom: 3.33333vw;
    }
}

.news-contact__lead {
    display: block;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .news-contact__lead {
        margin-bottom: 1.33333vw;
        font-size: 2.66667vw;
    }
}

.news-contact__num {
    display: block;
    font-size: 1.64286rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (min-width: 751px) {
    .news-contact__num {
        pointer-events: none;
    }
}

@media screen and (max-width: 750px) {
    .news-contact__num {
        font-size: 5.06667vw;
        line-height: 1;
    }
}

.news-contact__time {
    display: block;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .news-contact__time {
        font-size: 2.66667vw;
    }
}

.news-contact__link {
    display: block;
    padding: 10px 25px;
    border-radius: 10px;
    background-color: #C59B6D;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-family: serif;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

@media screen and (max-width: 750px) {
    .news-contact__link {
        padding: 2vw 5.33333vw;
        border-radius: 1.33333vw;
    }
}

@media screen and (min-width: 751px) {
    .news-contact__link:hover {
        background-color: #643200;
    }
}

.news-contact__link-head {
    display: block;
    font-size: 0.78571rem;
}

@media screen and (max-width: 750px) {
    .news-contact__link-head {
        font-size: 2.4vw;
    }
}

.news-contact__link-txt {
    display: block;
    letter-spacing: 0.1em;
    font-size: 1.42857rem;
}

@media screen and (max-width: 750px) {
    .news-contact__link-txt {
        font-size: 4.4vw;
    }
}

/* ---------------------------------------------
*   faq
--------------------------------------------- */
/*  faq-contact
--------------------------------------------- */
.faq-contact {
    margin-bottom: 90px;
    padding-top: 40px;
}

@media screen and (max-width: 750px) {
    .faq-contact {
        margin-bottom: 8.66667vw;
        padding-top: 0;
    }
}

.faq-contact__body {
    margin: 38px auto 0;
    width: 880px;
}

@media screen and (max-width: 750px) {
    .faq-contact__body {
        margin: 6.66667vw auto 0;
        width: 100%;
    }
}

.faq-contact__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;

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

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

.faq-contact__tel {
    margin-right: 75px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .faq-contact__tel {
        margin-right: 0;
        margin-bottom: 4vw;
    }
}

.faq-contact__btn {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 15px;
    width: 400px;
    height: 93px;
    border-radius: 10px;
    background-color: #C59B6D;
    color: #fff;
    letter-spacing: 0.1em;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

@media screen and (min-width: 751px) {
    .faq-contact__btn {
        pointer-events: none;
    }
}

@media screen and (max-width: 750px) {
    .faq-contact__btn {
        margin: 0 auto;
        padding-top: 2.66667vw;
        width: 80.66667vw;
        height: 18.66667vw;
        border-radius: 1.33333vw;
    }
}

@media screen and (min-width: 751px) {
    .faq-contact__btn:hover {
        background-color: #643200;
    }
}

.faq-contact__lead {
    display: block;
    font-size: 0.92857rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .faq-contact__lead {
        font-size: 2.66667vw;
    }
}

.faq-contact__num {
    display: block;
    font-size: 2.42857rem;
    font-weight: bold;
    font-family: serif;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .faq-contact__num {
        font-size: 6.8vw;
    }
}

.faq-contact__time {
    display: block;
    letter-spacing: 0.05em;
    font-size: 0.78571rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .faq-contact__time {
        font-size: 2.13333vw;
    }
}

/*  faq-list
--------------------------------------------- */
.faq-list {
    margin: 0 auto 90px;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .faq-list {
        margin: 0 auto 8.66667vw;
        max-width: none;
    }
}

.faq-list__item {
    position: relative;
    padding: 20px 240px 20px 160px;
}

@media screen and (max-width: 750px) {
    .faq-list__item {
        padding: 5.33333vw 4.93333vw;
    }
}

.faq-list__item:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 1200px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .faq-list__item:before {
        width: 100%;
    }
}

.faq-list__question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: baseline;
    margin-bottom: 20px;

    -webkit-box-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 750px) {
    .faq-list__question {
        margin-bottom: 2.66667vw;
    }
}

.faq-list__answer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: baseline;

    -webkit-box-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.faq-list__icon {
    position: relative;
    top: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    font-size: 1.35714rem;
    font-weight: bold;
    font-family: serif;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .faq-list__icon {
        top: 0;
        margin-right: 2vw;
        width: 6.66667vw;
        height: 6.66667vw;
        border-radius: 0.66667vw;
        font-size: 4vw;
    }
}

.faq-list__question .faq-list__icon {
    background-color: #643200;
    color: #fff;
}

.faq-list__answer .faq-list__icon {
    border: 2px solid #C59B6D;
    background-color: #fff;
    color: #C59B6D;
}

@media screen and (max-width: 750px) {
    .faq-list__answer .faq-list__icon {
        border-width: 0.26667vw;
    }
}

.faq-list__txt {
    letter-spacing: 0.1em;
    font-size: 0.92857rem;
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .faq-list__txt {
        font-size: 3.46667vw;
    }
}

.faq-list__question .faq-list__txt {
    color: #643200;
    font-weight: bold;
    font-family: serif;
}

.faq-list__answer .faq-list__txt {
    color: #000;
}

/*  faq-other
--------------------------------------------- */
.faq-other {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 155px auto 50px;
    padding: 16px;
    width: 880px;
    border: 1px solid #C59B6D;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .faq-other {
        margin: 7.33333vw auto 0;
        padding: 2.66667vw;
        width: 90vw;
    }
}

.faq-other__inner {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 30px;
    width: 100%;
    height: 100%;
    background: url(../img/support/bg_root.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 750px) {
    .faq-other__inner {
        padding: 6vw 3.33333vw 95.33333vw;
        background-image: url(../img/support/sp/bg_root.png);
        background-position: center;
        background-size: contain;
    }
}

.faq-other__tips {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 137px;
}

@media screen and (max-width: 750px) {
    .faq-other__tips {
        top: -6vw;
        left: -5.33333vw;
        width: 22.66667vw;
    }
}

.faq-other__root {
    width: 460px;
    text-align: center;
}

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

.faq-other__head {
    position: relative;
    margin-bottom: 20px;
    color: #643200;
    font-size: 1.71429rem;
}

@media screen and (max-width: 750px) {
    .faq-other__head {
        margin-bottom: 4.66667vw;
        font-size: 4.8vw;
    }
}

.faq-other__head:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.faq-other__txt {
    position: relative;
    margin-bottom: 23px;
    font-size: 0.92857rem;
    line-height: 1.75;
}

@media screen and (max-width: 750px) {
    .faq-other__txt {
        margin-bottom: 4vw;
        font-size: 3.2vw;
    }
}

.faq-other__txt:after {
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 18px;
    height: 9px;
    background: url(../img/support/icon_arrow.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .faq-other__txt:after {
        bottom: -2.93333vw;
        width: 3.6vw;
        height: 1.73333vw;
    }
}

.faq-other__txt:last-of-type {
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .faq-other__txt:last-of-type {
        margin-bottom: 5.33333vw;
    }
}

.faq-other__txt:last-of-type:after {
    content: none;
}

.faq-other__name {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 11px 20px;
    border-radius: 5px;
    background-color: #E5D5C0;
}

@media screen and (max-width: 750px) {
    .faq-other__name {
        padding: 2vw 2.66667vw;
        border-radius: 0.66667vw;
    }
}

.faq-other__sub-head {
    position: relative;
    z-index: 1;
    margin-bottom: 7px;
    background: url(../img/support/bg_ttl.png) center no-repeat;
    background-size: 157px 19px;
    color: #643200;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .faq-other__sub-head {
        margin-bottom: 1.6vw;
        background-size: 50% auto;
        font-size: 3.86667vw;
    }
}

.faq-other__sub-head:after {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
    background-color: #fff;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-other__sub-txt {
    text-align: left;
    font-size: 0.92857rem;
    line-height: 1.75;
}

@media screen and (max-width: 750px) {
    .faq-other__sub-txt {
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   company
--------------------------------------------- */
.company {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 60px 100px 50px 45px;
    max-width: 1200px;
    width: 100%;
    -webkit-box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);
    box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);
}

@media screen and (max-width: 750px) {
    .company {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 0;
        max-width: none;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.company--policy {
    padding: 60px 100px 50px 100px;
}

@media screen and (max-width: 750px) {
    .company--policy {
        padding: 0;
    }
}

.company:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 1200px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .company:before {
        content: none;
    }
}

.company__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: start;

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

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

.company__img {
    width: 515px;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

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

/*  company-message
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .company-message {
        padding: 0 6vw;
    }
}

.company-message__body {
    padding-right: 30px;
}

@media screen and (max-width: 750px) {
    .company-message__body {
        padding-right: 0;
    }
}

.company-message__ttl {
    margin-bottom: 20px;
    font-size: 1.35714rem;
}

@media screen and (max-width: 750px) {
    .company-message__ttl {
        margin-bottom: 2.66667vw;
        font-size: 3.6vw;
    }
}

.company-message__txt {
    margin-bottom: 30px;
    font-size: 1.07143rem;
    line-height: 2.3;
}

@media screen and (max-width: 750px) {
    .company-message__txt {
        margin-bottom: 4vw;
        font-size: 3.2vw;
    }
}

.company-message__name {
    text-align: right;
    letter-spacing: 0.12em;
    font-size: 1.5rem;
    line-height: 1.2;
}

@media screen and (max-width: 750px) {
    .company-message__name {
        font-size: 3.6vw;
    }
}

.company-message__position {
    position: relative;
    left: -3px;
    letter-spacing: 0;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .company-message__position {
        left: 0;
        font-size: 2.93333vw;
    }
}

/*  company-overview
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .company-overview {
        padding: 0 6vw;
    }
}

.company-overview__inner {
    padding-top: 10px;
}

@media screen and (max-width: 750px) {
    .company-overview__inner {
        padding-top: 2.66667vw;
    }
}

.company-overview__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    margin-bottom: 20px;

    -webkit-box-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 750px) {
    .company-overview__item {
        position: relative;
        display: block;
        margin-bottom: 4vw;
    }
}

@media screen and (max-width: 750px) {
    .company-overview__item:before {
        position: absolute;
        top: 0;
        left: -2.66667vw;
        width: 2px;
        height: 100%;
        background-color: #C59B6D;
        content: "";
    }
}

.company-overview__head {
    margin-right: 10px;
    width: 60px;
    color: #643200;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
    font-size: 1rem;
    font-weight: bold;
    font-family: serif;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .company-overview__head {
        margin-right: 0;
        margin-bottom: 0.66667vw;
        width: auto;
        text-align-last: auto;
        font-size: 3.2vw;
    }
}

.company-overview__body {
    padding-left: 16px;
    border-left: 2px solid #C59B6D;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .company-overview__body {
        padding-left: 0;
        border: none;
        font-size: 3.2vw;
    }
}

.company-overview__place {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    margin-top: 20px;

    -webkit-box-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 750px) {
    .company-overview__place {
        display: block;
        margin-top: 4vw;
    }
}

.company-overview__place:first-of-type {
    margin-top: 0;
}

.company-overview__name {
    width: 100px;
}

@media screen and (max-width: 750px) {
    .company-overview__name {
        margin-bottom: 0.66667vw;
        width: auto;
    }
}

.company-overview__name--noaddress {
    width: 100%;
}

.company-overview__map {
    margin-top: 5px;
    width: 335px;
}

@media screen and (max-width: 750px) {
    .company-overview__map {
        margin-top: 1.33333vw;
        width: 100%;
    }
}

.company-overview__map-inner {
    position: relative;
    overflow: hidden;
    padding-bottom: 54.41%;
    height: 0;
}

.company-overview__map-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 751px) {
    .company-overview__txt-link {
        pointer-events: none;
    }
}

/*  company-recruit
--------------------------------------------- */
.company-recruit {
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .company-recruit {
        padding: 0 6vw;
    }
}

.company-recruit__inner {
    padding-top: 10px;
}

@media screen and (max-width: 750px) {
    .company-recruit__inner {
        padding-top: 1.33333vw;
    }
}

.company-recruit__ttl {
    color: #643200;
    text-align: center;
    font-size: 1.28571rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .company-recruit__ttl {
        margin-bottom: 2vw;
        font-size: 3.73333vw;
    }
}

.company-recruit__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    margin-bottom: 20px;

    -webkit-box-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 750px) {
    .company-recruit__item {
        position: relative;
        display: block;
        margin-bottom: 4vw;
    }
}

@media screen and (max-width: 750px) {
    .company-recruit__item:before {
        position: absolute;
        top: 0;
        left: -2.66667vw;
        width: 2px;
        height: 100%;
        background-color: #C59B6D;
        content: "";
    }
}

.company-recruit__item:first-of-type {
    padding-top: 35px;
    border-top: 1px solid #643200;
}

@media screen and (max-width: 750px) {
    .company-recruit__item:first-of-type {
        padding-top: 0;
        border: none;
    }
}

.company-recruit__item:nth-of-type(6) {
    padding-bottom: 35px;
    border-bottom: 1px solid #643200;
}

@media screen and (max-width: 750px) {
    .company-recruit__item:nth-of-type(6) {
        padding-bottom: 0;
        border: none;
    }
}

.company-recruit__head {
    margin-right: 10px;
    width: 90px;
    color: #643200;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
    font-size: 1rem;
    font-weight: bold;
    font-family: serif;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .company-recruit__head {
        margin-right: 0;
        width: auto;
        text-align-last: auto;
        font-size: 3.2vw;
    }
}

.company-recruit__body {
    padding-left: 16px;
    border-left: 2px solid #C59B6D;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .company-recruit__body {
        padding-left: 0;
        border: none;
        font-size: 3.2vw;
    }
}

.company-recruit__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    margin-top: 7px;

    -webkit-box-align: start;
    align-items: flex-start;
}

.company-recruit__detail:first-of-type {
    margin-top: 0;
}

.company-recruit__term {
    width: 95px;
}

@media screen and (max-width: 750px) {
    .company-recruit__term {
        width: 22.66667vw;

        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
}

/*  company-recruit-contact
--------------------------------------------- */
.company-recruit-contact {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    padding: 8px 0;
    width: 275px;
    border: 1px solid #643200;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .company-recruit-contact {
        margin: 12vw auto 0;
        padding: 2vw 0;
        width: 80%;
    }
}

.company-recruit-contact__head {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 18px;
    margin-bottom: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid #643200;
    color: #643200;
    font-size: 1.28571rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .company-recruit-contact__head {
        margin: 0 2.4vw;
        margin-bottom: 1.06667vw;
        padding-bottom: 0.4vw;
        font-size: 3.46667vw;
    }
}

.company-recruit-contact__txt {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 18px;
    font-size: 1.14286rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .company-recruit-contact__txt {
        margin: 0 2.4vw;
        font-size: 3.2vw;
    }
}

.company-recruit-contact__address {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 18px;
    margin-bottom: 5px;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .company-recruit-contact__address {
        margin: 0 2.4vw;
        margin-bottom: 0.66667vw;
        font-size: 2.66667vw;
    }
}

.company-recruit-contact__btn {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 10px;
}

@media screen and (max-width: 750px) {
    .company-recruit-contact__btn {
        margin: 0 1.33333vw;
    }
}

.company-recruit-contact__btn:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/btn_mail_mo.png);
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.company-recruit-contact__btn:hover:after {
    opacity: 1;
}

/*  company-policy
--------------------------------------------- */
.company-policy {
    margin: 0 auto;
    width: 784px;
}

@media screen and (max-width: 750px) {
    .company-policy {
        padding: 0 6vw;
        width: auto;
    }
}

.company-policy__inner {
    padding-top: 45px;
}

@media screen and (max-width: 750px) {
    .company-policy__inner {
        padding-top: 2.66667vw;
    }
}

.company-policy__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 65px;
    padding-left: 20px;

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

@media screen and (max-width: 750px) {
    .company-policy__box {
        display: block;
        margin-bottom: 6vw;
        padding-left: 0;
    }
}

.company-policy__box:last-of-type {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .company-policy__box:last-of-type {
        margin-bottom: 4.66667vw;
    }
}

.company-policy__head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-right: 40px;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #643200;
    -ms-writing-mode: tb-rl;
    letter-spacing: 0.05em;
    font-size: 1.42857rem;
    font-weight: bold;
    font-family: serif;

    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .company-policy__head {
        display: block;
        margin-right: 0;
        margin-bottom: 2vw;
        width: auto;
        -ms-writing-mode: lr-tb;
        font-size: 3.86667vw;

        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }
}

.company-policy__head:before, .company-policy__head:after {
    position: absolute;
    width: 27px;
    height: 27px;
    background: url(../img/common/icon_bracket.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .company-policy__head:before, .company-policy__head:after {
        content: none;
    }
}

.company-policy__head:before {
    top: -15px;
    left: -8px;
}

.company-policy__head:after {
    right: -8px;
    bottom: -15px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.company-policy__item {
    position: relative;
    margin-bottom: 12px;
    padding-left: 1.2em;
    font-size: 1.14286rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .company-policy__item {
        margin-bottom: 3.33333vw;
        font-size: 3.2vw;
    }
}

.company-policy__item:last-of-type {
    margin-bottom: 0;
}

.company-policy__item:before {
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: #000;
    content: "";
}

.company-policy__btn {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 250px;
}

@media screen and (max-width: 750px) {
    .company-policy__btn {
        width: 48vw;
    }
}

@media screen and (min-width: 751px) {
    .company-policy__btn:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/common/btn_safe_mo.png);
        background-position: 0 0;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        content: "";
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }
}

@media screen and (min-width: 751px) {
    .company-policy__btn:hover:after {
        opacity: 1;
    }
}

/* ---------------------------------------------
*   factory
--------------------------------------------- */
/*  factory
--------------------------------------------- */
.factory {
    padding-top: 70px;
}

@media screen and (max-width: 750px) {
    .factory {
        padding-top: 0;
    }
}

/*  factory-secret
--------------------------------------------- */
.factory-secret {
    margin-top: 45px;
    margin-bottom: 90px;
    padding: 25px 35px 35px;
    border: 1px solid rgba(197, 155, 109, 0.1);
    background: url(../img/common/bg_check.png) 0 0 repeat;
    background-size: 177px;
}

@media screen and (max-width: 750px) {
    .factory-secret {
        margin-top: 6.66667vw;
        margin-bottom: 14vw;
        padding: 4.66667vw 10vw 6.66667vw;
        border-width: 0.13333vw;
        background-size: 33.33333vw;
    }
}

.factory-secret__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin: 0 auto 55px;
    width: 300px;
    height: 34px;
    background: url(../img/factory/bg_ttl.png) 0 0 no-repeat;
    background-size: 100% 100%;
    color: #fff;
    font-size: 1.71429rem;

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

@media screen and (max-width: 750px) {
    .factory-secret__head {
        margin: 0 auto 7.33333vw;
        width: 60vw;
        height: 6.66667vw;
        font-size: 4.66667vw;
    }
}

/*  factory-secret-detail
--------------------------------------------- */
.factory-secret-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: start;
    margin: 0 auto;
    width: 775px;

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

@media screen and (max-width: 750px) {
    .factory-secret-detail {
        display: block;
        width: 100%;
    }
}

.factory-secret-detail--doughnut {
    width: 785px;

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

@media screen and (max-width: 750px) {
    .factory-secret-detail--doughnut {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__inner {
        margin-bottom: 8.66667vw;
    }
}

.factory-secret-detail__inner:first-of-type {
    margin-right: 45px;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__inner:first-of-type {
        margin-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__inner:last-of-type {
        margin-bottom: 0;
    }
}

.factory-secret-detail--doughnut .factory-secret-detail__inner {
    width: 370px;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail--doughnut .factory-secret-detail__inner {
        width: 100%;
    }
}

.factory-secret-detail--doughnut .factory-secret-detail__inner--w100 {
    margin-top: 35px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail--doughnut .factory-secret-detail__inner--w100 {
        margin-top: 0;
    }
}

.factory-secret-detail__inner--small {
    width: 330px;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__inner--small {
        width: 100%;
    }
}

.factory-secret-detail__inner--large {
    width: 400px;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__inner--large {
        width: 100%;
    }
}

.factory-secret-detail__box {
    margin-bottom: 45px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__box {
        margin-bottom: 8.66667vw;
    }
}

.factory-secret-detail__box:last-of-type {
    margin-bottom: 0;
}

.factory-secret-detail__head {
    margin-bottom: 5px;
    color: #643200;
    font-size: 1.35714rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__head {
        margin-bottom: 0.66667vw;
        font-size: 3.73333vw;
    }
}

.factory-secret-detail__lead {
    margin-bottom: 10px;
    background-color: #fff;
    color: #643200;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__lead {
        margin-bottom: 2vw;
        font-size: 3.2vw;
    }
}

.factory-secret-detail--doughnut .factory-secret-detail__lead {
    margin: 0 auto 10px;
    width: 370px;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail--doughnut .factory-secret-detail__lead {
        margin: 0 auto 2vw;
        width: 100%;
    }
}

.factory-secret-detail__txt {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .factory-secret-detail__txt {
        margin-bottom: 4vw;
        font-size: 3.2vw;
    }
}

.factory-secret-detail__txt:last-of-type {
    margin-bottom: 0;
}

/*  factory-process
--------------------------------------------- */
.factory-process {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 30px 40px 40px;
    width: 1000px;
    -webkit-box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);
    box-shadow: 0px 18px 10px -10px rgba(197, 155, 109, 0.1);
}

@media screen and (max-width: 750px) {
    .factory-process {
        padding: 5.33333vw 4.93333vw 0;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.factory-process:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: -100px;
    width: 1200px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .factory-process:before {
        content: none;
    }
}

.factory-process__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: start;

    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.factory-process__unit {
    margin-right: 60px;
    width: 266px;
}

@media screen and (max-width: 750px) {
    .factory-process__unit {
        margin-right: 3.2vw;
        width: 43.46667vw;
    }
}

@media screen and (min-width: 751px) {
    .factory-process__unit:nth-of-type(3n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .factory-process__unit:nth-of-type(2n) {
        margin-right: 0;
    }
}

.factory-process--karinto .factory-process__unit {
    margin-bottom: 41px;
}

@media screen and (max-width: 750px) {
    .factory-process--karinto .factory-process__unit {
        margin-bottom: 7.33333vw;
    }
}

.factory-process--doughnut .factory-process__unit {
    margin-bottom: 63px;
}

@media screen and (max-width: 750px) {
    .factory-process--doughnut .factory-process__unit {
        margin-bottom: 7.33333vw;
    }
}

.factory-process__img {
    margin-bottom: 9px;
}

@media screen and (max-width: 750px) {
    .factory-process__img {
        margin-bottom: 1.33333vw;
    }
}

.factory-process__head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    margin-bottom: 5px;

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

@media screen and (max-width: 750px) {
    .factory-process__head {
        margin-bottom: 0.93333vw;
    }
}

.factory-process__head:before {
    position: absolute;
    top: 50%;
    height: 13px;
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .factory-process__head:before {
        content: none;
    }
}

.factory-process__head--txt-2:before {
    left: 90px;
    width: 225px;
    background-image: url(../img/factory/img_arrow_doughnut_01.png);
}

.factory-process__head--txt-3:before {
    left: 109px;
    width: 207px;
    background-image: url(../img/factory/img_arrow_doughnut_04.png);
}

.factory-process__head--txt-4:before {
    left: 131px;
    width: 186px;
    background-image: url(../img/factory/img_arrow_karinto_01.png);
}

.factory-process__head--txt-5:before {
    left: 144px;
    width: 172px;
    background-image: url(../img/factory/img_arrow_karinto_01.png);
}

.factory-process__head--wrap:before {
    top: 16px;
    left: -690px;
    width: 980px;
    height: 356px;
    background-image: url(../img/factory/img_arrow_karinto_03.png);
    -webkit-transform: none;
    transform: none;
    pointer-events: none;
}

.factory-process__head--none:before {
    content: none;
}

.factory-process__head img {
    margin-right: 7px;
    width: 38px;
}

@media screen and (max-width: 750px) {
    .factory-process__head img {
        width: 7.6vw;
    }
}

.factory-process__head span {
    font-size: 1.28571rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .factory-process__head span {
        font-size: 3.6vw;
    }
}

.factory-process__txt {
    font-size: 1rem;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .factory-process__txt {
        font-size: 2.93333vw;
    }
}

/*  factory-movie
--------------------------------------------- */
.factory-movie {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 80px auto 30px;
    width: 880px;
}

@media screen and (max-width: 750px) {
    .factory-movie {
        margin: 8vw auto 6.66667vw;
        padding: 0 4.93333vw;
        width: 100%;
    }
}

.factory-movie__head {
    position: relative;
    margin-bottom: -15px;
    padding-bottom: 10px;
    color: #643200;
    text-align: center;
    font-size: 1.71429rem;
}

@media screen and (max-width: 750px) {
    .factory-movie__head {
        margin-bottom: 0;
        padding-bottom: 2.66667vw;
        font-size: 4.8vw;
    }
}

.factory-movie__head:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 172px;
    height: 6.5px;
    background: url(../img/common/img_border_ttl.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .factory-movie__head:after {
        width: 34.66667vw;
        height: 1.86667vw;
    }
}

.factory-movie__content {
    margin-top: 50px;
    padding: 14px;
    border: 1px solid #C69C6D;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .factory-movie__content {
        margin-top: 5.33333vw;
        padding: 2.66667vw;
    }
}

.factory-movie__box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 35px 38px 27px;
    width: 100%;
    height: 100%;
    background: url(../img/factory/bg_make.png) 0 0 no-repeat;
    background-size: 100% 100%;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .factory-movie__box {
        padding: 4vw 3.6vw;
        background-image: url(../img/factory/sp/bg_make.png);
    }
}

.factory-movie__ttl {
    position: relative;
    margin-bottom: 13px;
    color: #C59B6D;
    font-size: 1.71429rem;
}

@media screen and (max-width: 750px) {
    .factory-movie__ttl {
        margin-bottom: 2.66667vw;
        font-size: 4.8vw;
    }
}

.factory-movie__ttl:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 350px;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #C59B6D), color-stop(75%, #C59B6D), to(transparent));
    background-image: linear-gradient(to right, transparent, #C59B6D 25%, #C59B6D 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (max-width: 750px) {
    .factory-movie__ttl:before {
        width: 70.66667vw;
    }
}

.factory-movie__movie {
    position: relative;
    overflow: hidden;
    margin-bottom: 9px;
    padding-bottom: 56.25%;
    height: 0;
}

@media screen and (max-width: 750px) {
    .factory-movie__movie {
        margin-bottom: 3.33333vw;
    }
}

.factory-movie__movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.factory-movie__btn {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 542px;
}

@media screen and (max-width: 750px) {
    .factory-movie__btn {
        width: 72vw;
    }
}

.factory-movie__btn:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/factory/btn_buy_karinto_mo.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media screen and (max-width: 750px) {
    .factory-movie__btn:after {
        background-image: url(../img/factory/sp/btn_buy_karinto_mo.png);
    }
}

.factory-movie__btn:hover:after {
    opacity: 1;
}

/*  factory-btn
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .factory-btn {
        margin: 0 auto;
        width: 66vw;
    }
}

.factory-btn__link {
    display: block;
}

/* ---------------------------------------------
*   quality
--------------------------------------------- */
.quality {
    padding-top: 40px;
}

@media screen and (max-width: 750px) {
    .quality {
        padding-top: 0;
    }
}

.quality__lead {
    margin-top: 25px;
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.14286rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .quality__lead {
        margin-top: 4.66667vw;
        margin-bottom: 8vw;
        font-size: 3.73333vw;
    }
}

/*  quality-policy
--------------------------------------------- */
.quality-policy {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 0 45px;
    border: 2px solid rgba(197, 155, 109, 0.1);
    background: url(../img/common/bg_check.png) 0 0 repeat;
    background-size: 177px;
}

@media screen and (max-width: 750px) {
    .quality-policy {
        padding: 5.33333vw 4.66667vw 6.66667vw;
        border-width: 0.26667vw;
        background-size: 33.33333vw;
    }
}

.quality-policy__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin: 0 auto 25px;
    width: 300px;
    height: 34px;
    background: url(../img/factory/bg_ttl.png) 0 0 no-repeat;
    background-size: 100% 100%;
    color: #fff;
    font-size: 1.71429rem;

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

@media screen and (max-width: 750px) {
    .quality-policy__head {
        margin: 0 auto 7.33333vw;
        width: 60vw;
        height: 6.66667vw;
        font-size: 4.66667vw;
    }
}

.quality-policy__body {
    margin: 0 auto;
    max-width: 900px;
}

@media screen and (max-width: 750px) {
    .quality-policy__body {
        max-width: none;
    }
}

.quality-policy__lead {
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
    text-align: center;
    font-size: 1.28571rem;
    font-weight: bold;
    font-family: serif;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .quality-policy__lead {
        padding-bottom: 6vw;
        font-size: 3.73333vw;
    }
}

.quality-policy__main {
    padding: 30px 33px 0;
}

@media screen and (max-width: 750px) {
    .quality-policy__main {
        padding: 8vw 0 0;
    }
}

.quality-policy__ttl {
    margin-bottom: 5px;
    text-align: center;
    font-size: 1.71429rem;
}

@media screen and (max-width: 750px) {
    .quality-policy__ttl {
        margin-bottom: 1.33333vw;
        font-size: 4.8vw;
    }
}

.quality-policy__txt {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .quality-policy__txt {
        margin-bottom: 6.93333vw;
        font-size: 3.73333vw;
    }
}

.quality-policy__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

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

.quality-policy__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 400px;

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

@media screen and (max-width: 750px) {
    .quality-policy__box {
        margin-right: 0;
        margin-bottom: 6.93333vw;
        width: 100%;
    }
}

.quality-policy__box:nth-of-type(2n) {
    margin-right: 0;
}

.quality-policy__term {
    margin-bottom: 5px;
    text-align: center;
    font-size: 1.35714rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .quality-policy__term {
        margin-bottom: 1.33333vw;
        font-size: 4.26667vw;
    }
}

.quality-policy__desc {
    padding: 8px 12px;
    background-color: #fff;
    font-size: 1rem;
    line-height: 1.7;

    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

@media screen and (max-width: 750px) {
    .quality-policy__desc {
        padding: 2.13333vw 3.2vw;
        font-size: 3.73333vw;
    }
}

.quality-policy__other {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 0 auto;
    text-align: center;
    text-indent: -0.5em;
    font-size: 0.85714rem;

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

@media screen and (max-width: 750px) {
    .quality-policy__other {
        display: block;
        text-align: center;
        font-size: 3.2vw;
    }
}

/*  quality-system
--------------------------------------------- */
.quality-system {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 50px 0 45px;
}

@media screen and (max-width: 750px) {
    .quality-system {
        margin-bottom: 12.66667vw;
        padding: 12.66667vw 4.66667vw 6.66667vw;
        border-width: 0.26667vw;
        background-size: 33.33333vw;
    }
}

.quality-system__head {
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 1.71429rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .quality-system__head {
        margin-bottom: 8vw;
        font-size: 4.8vw;
    }
}

.quality-system__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 150px;
    max-width: 1200px;

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

@media screen and (max-width: 750px) {
    .quality-system__body {
        display: block;
        padding: 0;
        max-width: none;
    }
}

.quality-system__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    margin-right: 40px;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .quality-system__img {
        margin-right: 0;
        margin-bottom: 8vw;
    }
}

.quality-system__img figure {
    margin-right: 35px;
}

@media screen and (max-width: 750px) {
    .quality-system__img figure {
        margin-right: 2.93333vw;
    }
}

.quality-system__img figure:last-of-type {
    margin-right: 0;
}

.quality-system__img img {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 220px;
    border: 2px solid #C59B6D;
}

@media screen and (max-width: 750px) {
    .quality-system__img img {
        margin-right: 2.66667vw;
        width: 44vw;
        border-width: 0.26667vw;
    }
}

.quality-system__img figcaption {
    padding-top: 5px;
    color: #C59B6D;
    text-align: center;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .quality-system__img figcaption {
        padding-top: 1.06667vw;
        font-size: 3.2vw;
    }
}

.quality-system__unit {
    margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
    .quality-system__unit {
        margin-bottom: 8vw;
    }
}

.quality-system__unit:last-of-type {
    margin-bottom: 0;
}

.quality-system__desc {
    margin-top: -3px;
    padding-left: 1.2em;
}

@media screen and (max-width: 750px) {
    .quality-system__desc {
        margin-top: 0;
        padding-left: 2em;
    }
}

.quality-system__desc-head {
    position: relative;
    font-size: 1.14286rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .quality-system__desc-head {
        font-size: 4vw;
    }
}

.quality-system__desc-head:before {
    position: absolute;
    top: 15%;
    left: -1.2em;
    width: 0.9em;
    height: 0.9em;
    border-radius: 50%;
    background-color: #000;
    content: "";
}

.quality-system__txt {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .quality-system__txt {
        margin-bottom: 4vw;
        font-size: 3.2vw;
    }
}

.quality-system__txt:last-of-type {
    margin-bottom: 0;
}

/*  quality-message
--------------------------------------------- */
.quality-message {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto 55px;
    padding: 0 150px;
    max-width: 1200px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .quality-message {
        margin: 0 auto 11.33333vw;
        padding: 0 4.66667vw;
        max-width: none;
    }
}

.quality-message__txt {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 18px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .quality-message__txt {
        padding: 3.73333vw 0;
        font-size: 3.73333vw;
    }
}

/*  quality-check
--------------------------------------------- */
.quality-check {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 150px;
    max-width: 1200px;
}

@media screen and (max-width: 750px) {
    .quality-check {
        margin-bottom: 12vw;
        padding: 0 4.66667vw;
        max-width: none;
    }
}

.quality-check__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;

    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.quality-check__item {
    position: relative;
    margin-right: 39px;
    margin-bottom: 75px;
    width: 274px;
    background-color: #C59B6D;
    color: #fff;
}

@media screen and (max-width: 750px) {
    .quality-check__item {
        margin-right: 3.2vw;
        margin-bottom: 4vw;
        width: 43.46667vw;
    }
}

@media screen and (min-width: 751px) {
    .quality-check__item:nth-of-type(3n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .quality-check__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.quality-check__item:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    content: "";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .quality-check__item:before {
        width: calc(100% - 1.86vw);
        height: calc(100% - 1.86vw);
    }
}

.quality-check__item-inner {
    position: relative;
    height: 100%;
    text-align: center;
}

.quality-check__item-inner:before {
    position: absolute;
    top: 204px;
    left: 50%;
    width: calc(100% - 10px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .quality-check__item-inner:before {
        top: 32.8vw;
        width: calc(100% - 1.86vw);
    }
}

.quality-check__lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    -ms-flex-align: center;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.quality-check__head {
    position: relative;
    display: inline-block;
    padding: 8px 10px;
    background-color: #C59B6D;
    text-align: center;
    font-size: 1.28571rem;
}

@media screen and (max-width: 750px) {
    .quality-check__head {
        margin-bottom: 0.66667vw;
        padding: 1.6vw 1.6vw 0.66667vw;
        font-size: 3.6vw;
        line-height: 1.2;
    }
}

@media screen and (max-width: 750px) {
    .quality-check__head--line-2 {
        min-height: 8.53333vw;
    }
}

.quality-check__txt {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 18px 25px;
    width: 100%;
    text-align: left;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .quality-check__txt {
        padding: 0 2vw 4.66667vw;
        font-size: 2.93333vw;
    }
}

/*  quality-factory
--------------------------------------------- */
.quality-factory {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 30px 150px 0;
    max-width: 1200px;
}

@media screen and (max-width: 750px) {
    .quality-factory {
        padding: 6vw 4.66667vw 0;
        max-width: none;
    }
}

.quality-factory__box {
    position: relative;
    margin-bottom: 65px;
}

@media screen and (max-width: 750px) {
    .quality-factory__box {
        margin-bottom: 6vw;
    }
}

.quality-factory__box--lab {
    margin-top: -50px;
    padding: 15px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .quality-factory__box--lab {
        margin-top: 0;
        padding: 0;
        background-color: transparent;
    }
}

.quality-factory__head {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    margin-bottom: 10px;

    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (max-width: 750px) {
    .quality-factory__head {
        margin-bottom: 2.93333vw;
    }
}

.quality-factory__head--lab {
    position: static;
}

@media screen and (max-width: 750px) {
    .quality-factory__head--lab {
        display: block;
    }
}

.quality-factory__name {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 10px;
    padding-top: 7px;
    padding-left: 7px;
    width: 160px;
    height: 41px;
    background-color: #C59B6D;
    color: #fff;
    font-size: 1.71429rem;
    line-height: 1.4;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .quality-factory__name {
        margin-right: 1.73333vw;
        padding-top: 1.33333vw;
        padding-left: 1.33333vw;
        width: 32vw;
        height: 8vw;
        font-size: 4.8vw;
    }
}

.quality-factory__name--lab {
    font-size: 1.14286rem;
    line-height: 2.1;
}

@media screen and (max-width: 750px) {
    .quality-factory__name--lab {
        margin-bottom: 1.33333vw;
        font-size: 3.2vw;
    }
}

.quality-factory__name span {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.quality-factory__desc {
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .quality-factory__desc {
        font-size: 2.4vw;
    }
}

.quality-factory__img--lab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;

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

.quality-factory__img--lab img {
    display: block;
    width: 430px;
}

@media screen and (max-width: 750px) {
    .quality-factory__img--lab img {
        width: 43.46667vw;
    }
}

/* ---------------------------------------------
*   privacy
*   terms
--------------------------------------------- */
/*  txt-page
--------------------------------------------- */
.txt-page {
    padding-top: 65px;
}

@media screen and (max-width: 750px) {
    .txt-page {
        padding-top: 0;
    }
}

.txt-page__body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 30px 150px 0;
    max-width: 1200px;
}

@media screen and (max-width: 750px) {
    .txt-page__body {
        padding: 3.33333vw 4.66667vw 0;
        max-width: none;
    }
}

.txt-page__box {
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .txt-page__box {
        margin-bottom: 4.66667vw;
    }
}

.txt-page__box:last-of-type {
    margin-bottom: 0;
}

.txt-page__head {
    font-size: 1rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .txt-page__head {
        font-size: 3.73333vw;
    }
}

.txt-page__sub-box {
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .txt-page__sub-box {
        margin-bottom: 4.66667vw;
    }
}

.txt-page__sub-head {
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .txt-page__sub-head {
        font-size: 3.73333vw;
    }
}

.txt-page__txt {
    margin-bottom: 20px;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .txt-page__txt {
        margin-bottom: 4.66667vw;
        font-size: 3.73333vw;
    }
}

.txt-page__txt:last-of-type {
    margin-bottom: 0;
}

.txt-page__indent-txt {
    padding-left: 2em;
    text-indent: -0.7em;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .txt-page__indent-txt {
        font-size: 3.73333vw;
    }
}

.txt-page__date {
    margin-top: 20px;
    text-align: right;
    font-size: 0.85714rem;
}

@media screen and (max-width: 750px) {
    .txt-page__date {
        margin-top: 2.66667vw;
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   contact
--------------------------------------------- */
/*  contact
--------------------------------------------- */
.contact {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px 160px 0;
    max-width: 1200px;
}

@media screen and (max-width: 750px) {
    .contact {
        margin-top: 0;
        padding: 0 4.66667vw;
        max-width: none;
    }
}

.contact__lead {
    margin-bottom: 65px;
}

@media screen and (max-width: 750px) {
    .contact__lead {
        margin-bottom: 8vw;
    }
}

.contact__txt {
    margin-bottom: 26px;
    letter-spacing: 0.1em;
    font-size: 0.92857rem;
    font-weight: bold;
    font-family: serif;
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .contact__txt {
        font-size: 3.2vw;
        line-height: 1.5;
    }
}

.contact__txt:last-of-type {
    margin-bottom: 0;
}

/*  contact-form
--------------------------------------------- */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    padding: 0 0.5em;
    width: 100%;
    height: 36px;
    outline: none;
    border: 1px solid #643200;
    border-radius: 0;
    background: #fff;
    font-size: 1.35714rem;
}

@media screen and (max-width: 750px) {
    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="email"] {
        height: 7.73333vw;
        font-size: 3.2vw;

        -webkit-appearance: none;
    }
}

.contact-form input[type="submit"] {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    width: 200px;
    height: 36px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: #C59B6D;
    color: #fff;
    font-size: 1.35714rem;
    font-weight: bold;
    font-family: serif;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .contact-form input[type="submit"] {
        width: 40vw;
        height: 7.73333vw;
        font-size: 3.2vw;

        -webkit-appearance: none;
    }
}

@media screen and (min-width: 751px) {
    .contact-form input[type="submit"]:hover {
        background: #643200;
    }
}

.contact-form input[type="submit"]:active, .contact-form input[type="submit"]:focus {
    position: relative;
}

.contact-form input[type="submit"].contact-form__back {
    margin-right: 40px;
    margin-left: 0;
    border: 1px solid #C59B6D;
    background-color: #fff;
    color: #C59B6D;
}

@media screen and (max-width: 738px) {
    .contact-form input[type="submit"].contact-form__back {
        margin: 0 auto 4vw;
    }
}

.mw_wp_form_confirm .contact-form__submit {
    margin: 0 !important;
}

@media screen and (max-width: 750px) {
    .mw_wp_form_confirm .contact-form__submit {
        margin: 0 auto !important;
    }
}

.contact-form textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.5em;
    width: 100%;
    height: 265px;
    outline: none;
    border: 1px solid #643200;
    background: #fff;
    font-size: 1.35714rem;
    resize: none;

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

@media screen and (max-width: 750px) {
    .contact-form textarea {
        height: 40vw;
        font-size: 3.2vw;
    }
}

.contact-form__note {
    margin-bottom: 8px;
    font-size: 0.92857rem;
}

@media screen and (max-width: 750px) {
    .contact-form__note {
        margin-bottom: 1.33333vw;
        font-size: 2.66667vw;
    }
}

.contact-form__item {
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .contact-form__item {
        margin-bottom: 2.66667vw;
    }
}

.contact-form__item:last-of-type {
    margin-top: 35px;
}

@media screen and (max-width: 750px) {
    .contact-form__item:last-of-type {
        margin-top: 5.33333vw;
    }
}

.mw_wp_form_confirm .contact-form__item {
    font-size: 1.35714rem;
}

@media screen and (max-width: 750px) {
    .mw_wp_form_confirm .contact-form__item {
        font-size: 3.2vw;
    }
}

.contact-form__head {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 11px;
    padding: 3px 0;
    border-top: 2px solid #643200;
    background-color: #C59B6D;
    color: #fff;
    text-align: center;
    font-size: 1.35714rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .contact-form__head {
        margin-bottom: 1.33333vw;
        padding: 1.2vw 0;
        font-size: 3.2vw;
    }
}

.contact-form__input {
    margin-bottom: 8px;
}

@media screen and (max-width: 750px) {
    .contact-form__input {
        margin-bottom: 0.66667vw;
    }
}

.mw_wp_form_confirm .contact-form__input {
    font-size: 1.35714rem;
}

@media screen and (max-width: 750px) {
    .mw_wp_form_confirm .contact-form__input {
        font-size: 3.2vw;
    }
}

.mw_wp_form_confirm .contact-form__input--submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    font-size: 1.35714rem;

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

@media screen and (max-width: 750px) {
    .mw_wp_form_confirm .contact-form__input--submit {
        display: block;
        font-size: 3.2vw;
    }
}

.contact-form__ex {
    margin-bottom: 11px;
    color: #969696;
    font-size: 1.21429rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .contact-form__ex {
        margin-bottom: 1.33333vw;
        font-size: 2.66667vw;
    }
}

.contact-form__ex:last-of-type {
    margin-bottom: 0;
}

.mw_wp_form_confirm .contact-form__ex {
    display: none;
}

.contact-form__post-icon {
    margin-right: 5px;
    font-size: 1.35714rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .contact-form__post-icon {
        margin-right: 1.33333vw;
        font-size: 3.2vw;
    }
}

.mw_wp_form_confirm .contact-form__post-icon {
    margin-right: 0;
}

.contact-form__post {
    width: 194px !important;
}

@media screen and (max-width: 750px) {
    .contact-form__post {
        width: 26.66667vw !important;
    }
}

/*  contact-thanks
--------------------------------------------- */
.contact-thanks {
    margin: 90px auto 0;
    width: 402px;
}

@media screen and (max-width: 750px) {
    .contact-thanks {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 6.66667vw;
        padding: 0 4.66667vw;
        width: 100%;
    }
}

.contact-thanks__head {
    margin-bottom: 50px;
    color: #C59B6D;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 24px;
    font-weight: bold;
    font-family: serif;
    line-height: 1.4;
}

@media screen and (max-width: 750px) {
    .contact-thanks__head {
        margin-bottom: 8vw;
        font-size: 5.33333vw;
    }
}

.contact-thanks__txt {
    margin-bottom: 28px;
    letter-spacing: 0.1em;
    font-size: 13px;
    font-weight: bold;
    font-family: serif;
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .contact-thanks__txt {
        margin-bottom: 4vw;
        font-size: 3.73333vw;
    }
}

.contact-thanks__tel {
    padding: 15px 0;
    border: 1px solid #C59B6D;
    color: #C59B6D;
    text-align: center;
}

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

.contact-thanks__lead {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .contact-thanks__lead {
        margin-bottom: 1.33333vw;
        font-size: 3.2vw;
    }
}

.contact-thanks__num {
    display: block;
    margin-bottom: 4px;
    font-size: 23px;
    font-weight: bold;
    font-family: serif;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .contact-thanks__num {
        margin-bottom: 0.66667vw;
        font-size: 5.33333vw;
    }
}

.contact-thanks__time {
    font-size: 12px;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .contact-thanks__time {
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   magnific-popup
--------------------------------------------- */
/*  mfp-close
--------------------------------------------- */
.mfp-close {
    display: none !important;
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   Index Page
--------------------------------------------- */
/*  kv
--------------------------------------------- */
.kv {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .kv {
        padding: 0 2.66667vw;
        max-width: none;
    }
}

/*  index-news
--------------------------------------------- */
.index-news {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 55px;
    padding-top: 20px;
    width: 1010px;
}

@media screen and (max-width: 750px) {
    .index-news {
        margin-bottom: 14.66667vw;
        padding-top: 4vw;
        width: 90vw;
    }
}

.index-news__box {
    padding: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 750px) {
    .index-news__box {
        padding: 0.8vw;
        -webkit-box-shadow: 0 0.4vw 0.8vw 0.13333vw rgba(0, 0, 0, 0.4);
        box-shadow: 0 0.4vw 0.8vw 0.13333vw rgba(0, 0, 0, 0.4);
    }
}

.index-news__inner {
    position: relative;
    border: 1px solid #643200;
}

.index-news__inner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 20px;
    background: url(../img/index/icon_triangle.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
}

@media screen and (max-width: 750px) {
    .index-news__inner:before {
        width: 6.66667vw;
        height: 4vw;
    }
}

@media screen and (max-width: 750px) {
    .index-news__inner:after {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 6.66667vw;
        height: 4vw;
        background: url(../img/index/icon_triangle.png) 0 0 no-repeat;
        background-size: 100% 100%;
        content: "";
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.index-news__list {
    padding: 0 15px;
}

@media screen and (max-width: 750px) {
    .index-news__list {
        padding: 0 2.66667vw;
    }
}

.index-news__item {
    padding: 15px 45px;
    border-bottom: 1px solid #CFBDAB;
}

@media screen and (max-width: 750px) {
    .index-news__item {
        display: block;
        padding: 4vw 2vw;
    }
}

.index-news__item:last-of-type {
    border-bottom: none;
}

.index-news__item-inner {
    position: relative;
}

.index-news__label-wrap {
    margin-left: 110px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    max-width: 768px;
}

@media screen and (max-width: 750px) {
    .index-news__label-wrap {
        margin-left: 20vw;
        width: calc(440vw/750 * 100);
    }
}

.index-news__label {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    padding: 0.2em 0.5em;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #f7931e;
    border-radius: 100px;
}

@media screen and (max-width: 750px) {
    .index-news__label {
        font-size: calc(22vw/750 * 100);
        margin-right: 1vw;
        margin-bottom: 1vw;
    }
}

.windows .index-news__label {
    padding-top: 0.3em;
}

.safari .index-news__label {
    padding-top: 0.3em;
}

.android .index-news__label {
    padding-top: 0.3em;
}

.index-news__label--24 {
    background-color: #8fc947;
}

.index-news__label--25 {
    background-color: #ef9898;
}

.index-news__label--26 {
    background-color: #32540a;
}

.index-news__label--27 {
    background-color: #4f9909;
}

.index-news__label--28 {
    background-color: #c90926;
}

.index-news__label--29 {
    background-color: #ff0000;
}

.index-news__label--30 {
    background-color: #ca9ac6;
}

.index-news__label--31 {
    background-color: #874da1;
}

.index-news__label--32 {
    background-color: #692755;
}

.index-news__label--33 {
    background-color: #00b9ff;
}

.index-news__label--34 {
    background-color: #2896f7;
}

.index-news__label--35 {
    background-color: #75c6c3;
}

.index-news__label--36 {
    background-color: #2e6a87;
}

.index-news__label--37 {
    background-color: #0e1b3f;
}

.index-news__label--38 {
    background-color: #ce944d;
}

.index-news__label--39 {
    background-color: #cc6600;
}

.index-news__label--40 {
    background-color: #663300;
}

.index-news__label--41 {
    background-color: #ffc139;
}

.index-news__label--42 {
    background-color: #ff8100;
}

.index-news__label--43 {
    background-color: #808080;
}

.index-news__date {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    color: #643200;
    font-size: 1.07143rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .index-news__date {
        margin-right: 0;
        font-size: 2.93333vw;
        width: 20vw;
    }
}

.index-news__txt {
    color: #323232;
    font-size: 1.35714rem;
    margin-left: 110px;
}

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

.index-news__lead {
    position: absolute;
    right: -20px;
    bottom: -42px;
    padding: 5px;
    width: 192px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 750px) {
    .index-news__lead {
        position: static;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 3.33333vw;
        margin-right: auto;
        margin-left: auto;
        padding: 0.93333vw;
        width: 38.66667vw;
        -webkit-box-shadow: 0 0.4vw 0.8vw 0.13333vw rgba(0, 0, 0, 0.4);
        box-shadow: 0 0.4vw 0.8vw 0.13333vw rgba(0, 0, 0, 0.4);
    }
}

.index-news__lead-txt {
    position: relative;
    padding: 10px 0;
    border: 1px solid #643200;
    color: #323232;
    text-align: center;
    letter-spacing: 0.2em;
    font-size: 1.42857rem;
    font-weight: bold;
    font-family: serif;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

@media screen and (max-width: 750px) {
    .index-news__lead-txt {
        padding: 1.73333vw 0;
        font-size: 4vw;
    }
}

.index-news__lead-txt:before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 20px;
    background: url(../img/index/icon_triangle.png) 0 0 no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (max-width: 750px) {
    .index-news__lead-txt:before {
        content: none;
    }
}

@media screen and (min-width: 751px) {
    .index-news:hover .index-news__lead-txt {
        background-color: #643200;
        color: #fff;
    }
}

@media screen and (min-width: 751px) {
    .index-news:hover .index-news__lead-txt:before {
        background-image: url(../img/index/icon_triangle_mo.png);
        -webkit-transform: none;
        transform: none;
    }
}

/*  brands-link
--------------------------------------------- */
.brands-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    margin: 0 auto;
    max-width: 1200px;

    -webkit-box-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 750px) {
    .brands-link {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        max-width: none;

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

.brands-link__link {
    margin-right: 75px;
    margin-left: -50px;
    width: 805px;
}

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

.brands-link__txt-area {
    padding-top: 75px;
    -ms-writing-mode: tb-rl;

    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 750px) {
    .brands-link__txt-area {
        margin: 0 auto 5.33333vw;
        padding-top: 0;
    }
}

.brands-link__head {
    position: relative;
    display: inline-block;
    margin-left: 30px;
    padding-left: 10px;
    color: #C69C6D;
    letter-spacing: 0.2em;
    font-size: 1.92857rem;
}

@media screen and (max-width: 750px) {
    .brands-link__head {
        margin-left: 7.33333vw;
        padding-left: 2.66667vw;
        font-size: 5.33333vw;
    }
}

.brands-link__head:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 95%;
    background-color: #C69C6D;
    content: "";
}

.brands-link__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: baseline;
    letter-spacing: 0.1em;
    font-size: 1.71429rem;
    line-height: 2;

    -webkit-box-align: baseline;
    align-items: baseline;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 750px) {
    .brands-link__txt {
        font-size: 4.8vw;
        line-height: 2.1;
    }
}

.brands-link__phrase {
    margin-right: 25px;
    min-width: 55px;
    width: 55px;
}

@media screen and (max-width: 750px) {
    .brands-link__phrase {
        margin-right: 6vw;
        min-width: auto;
        width: 11.33333vw;
    }
}

.brands-link area {
    outline: none;
    border: none;
}

/*  index-sec
--------------------------------------------- */
.index-sec {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

@media screen and (max-width: 750px) {
    .index-sec {
        overflow-x: hidden;
        max-width: none;
    }
}

.index-sec--01 {
    margin-top: 35px;
    padding-bottom: 450px;
}

@media screen and (max-width: 750px) {
    .index-sec--01 {
        margin-top: 9.33333vw;
        padding-bottom: 92vw;
    }
}

.index-sec--02 {
    padding-bottom: 145px;
}

@media screen and (max-width: 750px) {
    .index-sec--02 {
        padding-bottom: 78.66667vw;
    }
}

.index-sec--03 {
    padding-bottom: 440px;
}

@media screen and (max-width: 750px) {
    .index-sec--03 {
        padding-bottom: 68vw;
    }
}

.index-sec--01 .index-sec__head {
    margin-right: 70px;
    margin-left: auto;
    width: 444px;
}

@media screen and (max-width: 750px) {
    .index-sec--01 .index-sec__head {
        margin-right: 10.66667vw;
        width: 78.66667vw;
    }
}

.index-sec--02 .index-sec__head {
    margin-right: auto;
    margin-left: 80px;
    width: 430px;
}

@media screen and (max-width: 750px) {
    .index-sec--02 .index-sec__head {
        margin-right: 10.66667vw;
        margin-left: auto;
        width: 78.66667vw;
    }
}

.index-sec--03 .index-sec__head {
    margin-right: 80px;
    margin-left: auto;
    width: 412px;
}

@media screen and (max-width: 750px) {
    .index-sec--03 .index-sec__head {
        margin-right: 10.66667vw;
        width: 76.8vw;
    }
}

.index-sec__txt {
    position: absolute;
    -ms-writing-mode: tb-rl;
    font-size: 1.14286rem;
    line-height: 1.75;

    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 750px) {
    .index-sec__txt {
        font-size: 3.2vw;
    }
}

.index-sec--01 .index-sec__txt {
    top: 40px;
    left: 145px;
    height: 238px;
}

@media screen and (max-width: 750px) {
    .index-sec--01 .index-sec__txt {
        top: 13.33333vw;
        right: 33.33333vw;
        left: auto;
        height: 91.06667vw;
    }
}

.index-sec--02 .index-sec__txt {
    bottom: -35px;
    left: 170px;
    height: 210px;
}

@media screen and (max-width: 750px) {
    .index-sec--02 .index-sec__txt {
        top: 13.33333vw;
        right: 33.33333vw;
        bottom: auto;
        left: auto;
        height: 91.06667vw;
    }
}

.index-sec--03 .index-sec__txt {
    top: 130px;
    right: 180px;
    height: 390px;
}

@media screen and (max-width: 750px) {
    .index-sec--03 .index-sec__txt {
        top: 14.66667vw;
        right: 27.33333vw;
        left: auto;
        height: 50vw;
    }
}

.index-sec__txt .text-combine {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
}

.index-sec__img {
    position: absolute;
}

.index-sec__img--01 {
    top: 100px;
    right: 145px;
    width: 531px;
}

@media screen and (max-width: 750px) {
    .index-sec__img--01 {
        top: auto;
        right: -3.33333vw;
        bottom: 24vw;
        width: 50.66667vw;
    }
}

.index-sec__img--02 {
    bottom: 35px;
    left: 90px;
    width: 507px;
}

@media screen and (max-width: 750px) {
    .index-sec__img--02 {
        bottom: 5.33333vw;
        left: 8vw;
        width: 51.33333vw;
    }
}

.index-sec__img--03 {
    top: 25px;
    right: 45px;
    width: 924px;
}

@media screen and (max-width: 750px) {
    .index-sec__img--03 {
        top: auto;
        right: -5.33333vw;
        bottom: 8vw;
        width: 100.13333vw;
    }
}

.index-sec__img--04 {
    top: 70px;
    left: 70px;
    width: 713px;
}

@media screen and (max-width: 750px) {
    .index-sec__img--04 {
        top: auto;
        bottom: 45.33333vw;
        left: -5.33333vw;
        width: 79.86667vw;
    }
}

.index-sec__img--05 {
    right: 170px;
    bottom: 100px;
    width: 548px;
}

@media screen and (max-width: 750px) {
    .index-sec__img--05 {
        right: 0;
        bottom: 14.66667vw;
        width: 61.33333vw;
    }
}

/*  product-link
--------------------------------------------- */
.product-link {
    margin: 0 auto 80px;
    max-width: 1200px;
}

@media screen and (max-width: 750px) {
    .product-link {
        margin: 0 auto 16vw;
        max-width: none;
    }
}

.product-link__head {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .product-link__head {
        margin-bottom: 2.66667vw;
    }
}

.product-link__head:before, .product-link__head:after {
    position: absolute;
    top: 50%;
    width: 530px;
    height: 1px;
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .product-link__head:before, .product-link__head:after {
        width: 36vw;
    }
}

.product-link__head:before {
    left: 0;
    background-image: -webkit-gradient(linear, right top, left top, color-stop(40%, #C69C6D), to(transparent));
    background-image: linear-gradient(to left, #C69C6D 40%, transparent);
}

.product-link__head:after {
    right: 0;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #C69C6D), to(transparent));
    background-image: linear-gradient(to right, #C69C6D 40%, transparent);
}

.product-link__head img {
    width: 115px;
}

@media screen and (max-width: 750px) {
    .product-link__head img {
        width: 23.33333vw;
    }
}

.product-link__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;

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

@media screen and (max-width: 750px) {
    .product-link__body {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.product-link__link {
    position: relative;
    display: block;
    margin-right: 25px;
    width: 234px;
}

@media screen and (max-width: 750px) {
    .product-link__link {
        margin-right: 0.66667vw;
        width: 46vw;
    }
}

@media screen and (max-width: 750px) {
    .product-link__link:nth-of-type(2n) {
        margin-right: 0;
    }
}

.product-link__link:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
}

@media screen and (max-width: 750px) {
    .product-link__link:before {
        content: none;
    }
}

.product-link__link:hover:before {
    opacity: 1;
}

.product-link__link:last-of-type {
    margin-right: 0;
}

.product-link__link--01:before {
    background-image: url(../img/index/img_cat_link_mo_01.png);
}

.product-link__link--02:before {
    background-image: url(../img/index/img_cat_link_mo_02.png);
}

.product-link__link--03:before {
    background-image: url(../img/index/img_cat_link_mo_03.png);
}

.product-link__link--04:before {
    background-image: url(../img/index/img_cat_link_mo_04.png);
}

/*  news-sec
--------------------------------------------- */
.news-sec__head {
    margin-bottom: 5px;
    color: #B78D6D;
    text-align: center;
    font-size: 1.71429rem;
}

@media screen and (max-width: 750px) {
    .news-sec__head {
        margin-bottom: 2vw;
        font-size: 4.8vw;
    }
}

.news-sec__body {
    padding: 60px 0;
    background-color: #E5DFDA;
}

@media screen and (max-width: 750px) {
    .news-sec__body {
        padding: 12vw 5.33333vw;
    }
}

.news-sec__box {
    margin: 0 auto 35px;
    padding: 0 32px 20px;
    width: 915px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .news-sec__box {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 auto 6.66667vw;
        padding: 0 2.66667vw;
        width: 100%;
    }
}

.news-sec__item {
    border-bottom: 1px dashed #B78D6D;
}

@media screen and (max-width: 750px) {
    .news-sec__item:last-of-type {
        border: none;
    }
}

.news-sec__detail-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    padding: 25px 18px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-align: start;
    align-items: flex-start;
}

.news-sec__detail-link:hover {
    opacity: 0.8;
}

.ios .news-sec__detail-link:hover,
.android .news-sec__detail-link:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .news-sec__detail-link {
        padding: 5.33333vw 0;
    }
}

.news-sec__thumb {
    margin-right: 15px;
    width: 140px;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .news-sec__thumb {
        margin-right: 2vw;
        width: 28.13333vw;
    }
}

.news-sec__main {
    padding-top: 10px;
}

@media screen and (max-width: 750px) {
    .news-sec__main {
        margin-top: -0.53333vw;
        padding-top: 0;
    }
}

.news-sec__upper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.news-sec__label-wrap {
    margin-left: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    max-width: 620px;
}

@media screen and (max-width: 750px) {
    .news-sec__label-wrap {
        margin-left: 2vw;
        width: calc(252vw/750 * 100);
    }
}

.news-sec__label {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    line-height: 1;
    padding: 0.2em 0.5em;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #f7931e;
    border-radius: 100px;
}

@media screen and (max-width: 750px) {
    .news-sec__label {
        font-size: calc(22vw/750 * 100);
        margin-right: 1vw;
        margin-bottom: 1vw;
    }
}

.windows .news-sec__label {
    padding-top: 0.3em;
}

.safari .news-sec__label {
    padding-top: 0.3em;
}

.android .news-sec__label {
    padding-top: 0.3em;
}

.news-sec__label--24 {
    background-color: #8fc947;
}

.news-sec__label--25 {
    background-color: #ef9898;
}

.news-sec__label--26 {
    background-color: #32540a;
}

.news-sec__label--27 {
    background-color: #4f9909;
}

.news-sec__label--28 {
    background-color: #c90926;
}

.news-sec__label--29 {
    background-color: #ff0000;
}

.news-sec__label--30 {
    background-color: #ca9ac6;
}

.news-sec__label--31 {
    background-color: #874da1;
}

.news-sec__label--32 {
    background-color: #692755;
}

.news-sec__label--33 {
    background-color: #00b9ff;
}

.news-sec__label--34 {
    background-color: #2896f7;
}

.news-sec__label--35 {
    background-color: #75c6c3;
}

.news-sec__label--36 {
    background-color: #2e6a87;
}

.news-sec__label--37 {
    background-color: #0e1b3f;
}

.news-sec__label--38 {
    background-color: #ce944d;
}

.news-sec__label--39 {
    background-color: #cc6600;
}

.news-sec__label--40 {
    background-color: #663300;
}

.news-sec__label--41 {
    background-color: #ffc139;
}

.news-sec__label--42 {
    background-color: #ff8100;
}

.news-sec__label--43 {
    background-color: #808080;
}

.news-sec__date {
    margin-bottom: 5px;
    color: #B78D6D;
    font-size: 1.07143rem;
    font-weight: bold;
    font-family: serif;
}

@media screen and (max-width: 750px) {
    .news-sec__date {
        margin-bottom: 1vw;
        font-size: 2.93333vw;
    }
}

.news-sec__ttl {
    margin-bottom: 15px;
    text-decoration: underline;
    font-size: 1.14286rem;
}

@media screen and (max-width: 750px) {
    .news-sec__ttl {
        margin-bottom: 1.33333vw;
        text-decoration: none;
        font-size: 3.33333vw;
        line-height: 1.3;
    }
}

@media screen and (min-width: 751px) {
    .news-sec__detail-link:hover .news-sec__ttl {
        text-decoration: none;
    }
}

.news-sec__txt {
    font-size: 1.14286rem;
    line-height: 1.3;
    text-decoration: underline;
}

@media screen and (min-width: 751px) {
    .news-sec__detail-link:hover .news-sec__txt {
        text-decoration: none;
    }
}

@media screen and (max-width: 750px) {
    .news-sec__txt {
        font-size: 3.2vw;
    }
}

.news-sec__link {
    margin: 0 auto;
    width: 138px;
    height: 49px;
}

@media screen and (max-width: 750px) {
    .news-sec__link {
        width: 27.6vw;
        height: 9.86667vw;
    }
}

.news-sec__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    background-color: #B78D6D;
    color: #fff;
    font-size: 1.21429rem;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;

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

@media screen and (max-width: 750px) {
    .news-sec__btn {
        letter-spacing: 0.1em;
        font-size: 3.33333vw;
    }
}

@media screen and (min-width: 751px) {
    .news-sec__btn:hover {
        background-color: #643200;
    }
}

/* ---------------------------------------------
*   top-banner
--------------------------------------------- */
.top-banner {
    width: 1000px;
    margin: 20px auto 65px;
}

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

.bnr-list-l {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .bnr-list-l {
        width: calc(710vw/750 * 100);
        margin: 0 auto;
    }
}

.bnr-list-l__item {
    display: inline-block;
    width: 485px;
    height: calc(340px * 485/710);
    position: relative;
    margin-right: 30px;
    margin-bottom: 25px;
}

@media screen and (max-width: 750px) {
    .bnr-list-l__item {
        width: calc(710vw/750 * 100);
        height: calc(340vw/750 * 100);
        margin-right: 0;
        margin-bottom: calc(35vw/750 * 100);
    }
}

.bnr-list-l__item:nth-of-type(2n) {
    margin-right: 0;
}

.bnr-list-l__link {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.bnr-list-l__link:hover {
    opacity: 0.8;
}

.bnr-list-l__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

.bnr-list-m {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .bnr-list-m {
        width: calc(710vw/750 * 100);
        margin: 0 auto;
        justify-content: space-between;
    }
}

.bnr-list-m__item {
    display: inline-block;
    width: 230px;
    height: 230px;
    position: relative;
    margin-bottom: 25px;
    margin-right: 26px;
}

@media screen and (max-width: 750px) {
    .bnr-list-m__item {
        width: calc(340vw/750 * 100);
        height: calc(340vw/750 * 100);
        margin-bottom: calc(35vw/750 * 100);
        margin-right: calc(30vw/750 * 100);
    }
}

.bnr-list-m__item:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .bnr-list-m__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.bnr-list-m__link {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.bnr-list-m__link:hover {
    opacity: 0.8;
}

.bnr-list-m__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

.bnr-list-s {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .bnr-list-s {
        width: calc(710vw/750 * 100);
        margin: 0 auto;
    }
}
.bnr-list-s__item {
    display: inline-block;
    width: 230px;
    height: calc(170px * 230/340);
    position: relative;
    margin-bottom: 25px;
    margin-right: 26px;
}

@media screen and (max-width: 750px) {
    .bnr-list-s__item {
        width: calc(340vw/750 * 100);
        height: calc(170vw/750 * 100);
        margin-bottom: calc(35vw/750 * 100);
        margin-right: calc(30vw/750 * 100);
    }
}

.bnr-list-s__item:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .bnr-list-s__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.bnr-list-s__link {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.bnr-list-s__link:hover {
    opacity: 0.8;
}

.bnr-list-s__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

.top-banner__txt {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .top-banner__txt {
        font-size: calc(32/750 * 100vw);
        margin-top: calc(30/750 * 100vw);
        margin-bottom: calc(15/750 * 100vw);
        text-align: center;
    }
}


/* ==========================================================
*
*   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;
    }
}
