@charset "utf-8";

h1 {
    display: none;
}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1180px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 460px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 374px) {}



/*

z-index

heaedr 1000
gnav   1001



*/

a {
    cursor: pointer;
}


/*header*/
header {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header {
    position: relative;
    height: 60px;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: .5s background ease;
}

body.active .header {
    background-color: rgba(255, 255, 255, 1);
}

header h2 {
    position: absolute;
    top: 7px;
    left: 20px;
}

.header .link_wrap {
    display: none;
    position: absolute;
    top: 9px;
    bottom: 9px;
    right: 64px;
    background-color: #d54922;
    font-size: 10px;
    color: #fff;
    font-weight: bold;
}

.header .link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px 0 30px;
    position: relative;
}

.header .link::before {
    content: '';
    background-image: url("../images/common/icon_cart@2x.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 19px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 4px;
    bottom: 0;
    margin: auto;
}

.nav_btn {
    position: absolute;
    background-color: #fff;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    display: none;
}

.nav_btn:after {
    content: "MENU";
    display: block;
    font-size: 10px;
    width: 100%;
    position: absolute;
    bottom: 8px;
    line-height: 1;
    right: 0;
    color: #000;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    transform: scale(0.8);
}

.nav_btn hr {
    width: 32px;
    background: #000;
    height: 3px;
    position: absolute;
    border: none;
    transform-origin: center center;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: top 0.2s ease-in-out 0.3s, transform 0.2s ease-in-out 0s;
}

.nav_btn.opened hr {
    transition: top 0.2s ease-in-out 0s, transform 0.2s ease-in-out 0.3s;
}

.nav_btn hr:nth-child(1) {
    top: 14px;
}

.nav_btn hr:nth-child(2) {
    top: 20px;
}

.nav_btn hr:nth-child(3) {
    top: 26px;
}

.nav_btn.opened hr:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
}

.nav_btn.opened hr:nth-child(2) {
    transform: scaleX(0);
    top: 19px;
}

.nav_btn.opened hr:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1180px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 767px) {

    .header {
        height: 55px;
    }

    header h2 {
        top: 14px;
        left: 10px;
        width: 160px;
    }

    .header .link_wrap {
        display: block;
    }

    .nav_btn {
        display: block;
    }
}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 460px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 374px) {
    .header {
        height: 45px;
    }

    header h2 {
        top: 10px;
        width: 140px;
    }

    .header .link_wrap {
        right: 52px;
    }

    .nav_btn {
        width: 45px;
        height: 45px;
    }

    .nav_btn hr {
        width: 27px;
    }

    .nav_btn hr:nth-child(1) {
        top: 9px;
    }

    .nav_btn hr:nth-child(2) {
        top: 15px;
    }

    .nav_btn hr:nth-child(3) {
        top: 21px;
    }

    .nav_btn.opened hr:nth-child(1) {
        transform: rotate(45deg);
        top: 15px;
    }

    .nav_btn.opened hr:nth-child(2) {
        transform: scaleX(0);
        top: 15px;
    }

    .nav_btn.opened hr:nth-child(3) {
        transform: rotate(-45deg);
        top: 15px;
    }
}

/*header*/


/*gnavi_wrap*/
.gnavi_wrap {
    position: fixed;
    top: 0;
    left: 300px;
    right: 0;
    z-index: 1001;
}

.gnavi {
    height: 60px;
    margin: 15px 20px;
    text-align: right;
    letter-spacing: -.4em;
}

.gnavi .link_wrap {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: middle;
}

.gnavi .link_wrap:not(.contact):not(:nth-child(7))::after {
    content: "｜";
    display: inline-block;
    padding: 0 .2em;
}

.gnavi .link_wrap.contact {
    width: 160px;
    margin-left: 20px;
    height: 100%;
}

.gnavi .link {
    display: inline-block;
    font-size: 16px;
    transition: .5s all ease;
}

.gnavi .link_wrap:not(.contact) .link {

    color: #333333;
}

body:not(.mobile) .gnavi .link_wrap:not(.contact) .link:hover {
    opacity: .5;
}

.gnavi .link_wrap.contact .link {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /*background-color: #d54922;
  border: solid #d54922 1px;*/
    background-color: #d54922;
    border: solid #d54922 1px;

}




body:not(.mobile) .gnavi .link_wrap.contact .link:hover {
    color: #d54922;
    background-color: #fff;
}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1280px) {
    .gnavi .link_wrap.contact {
        width: 120px;
    }

    .gnavi .link {
        font-size: 14px;
    }
}

@media screen and (max-width: 1180px) {
    .gnavi .link {
        font-size: 14px;
        letter-spacing: -.03em;
    }

    .gnavi .link_wrap.contact {
        width: 100px;
        margin-left: 10px;
    }

    .gnavi .link_wrap:not(.contact):not(:nth-child(7))::after {
        padding: 0 .1em;
    }

}

@media screen and (max-width: 1024px) {

    .gnavi_wrap {
        top: 60px;
        left: 0;
        background-color: rgba(255, 255, 255, 0.4);
        transition: .5s background ease;
    }


    .gnavi {
        text-align: center;
        padding: 15px 20px;
    }

    .gnavi .link_wrap.contact {
        position: absolute;
        top: -60px;
        right: 0;
        margin: 0;
    }

    .gnavi .link_wrap.contact {
        position: absolute;
        top: -60px;
        right: 0;
        margin: 0;
    }

    .gnavi .link_wrap:not(.contact) .link {
        line-height: 30px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    body.active .gnavi_wrap {
        background-color: rgba(255, 255, 255, 1);
    }
}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 767px) {
    .gnavi_wrap {
        background-color: #222222;
        transform: scaleX(1.2);
        transition: .5s all ease;
        pointer-events: none;
        opacity: 0;
        z-index: 999;
    }



    body.nav_open .gnavi_wrap {
        transform: scaleX(1);
        pointer-events: all;
        opacity: 1;
    }


    .gnavi_wrap {
        top: 55px;
        bottom: 0;
    }

    .gnavi {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 10px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .gnavi li {
        width: 49%;
        display: block;
        height: 30px;
    }

    .gnavi li:not(.contact) {
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: solid #fff 1px;
    }

    .gnavi .link_wrap.contact {
        display: none;
    }

    .gnavi .link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .gnavi .link_wrap.top {
        width: 100%;
    }

    .gnavi .link_wrap:not(.contact) .link {
        color: #fff;
        font-weight: bold;
    }

    .gnavi .link_wrap:not(.contact):not(:nth-child(7))::after {
        content: none;
    }
}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 460px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 374px) {
    .gnavi_wrap {
        top: 45px;
    }
}

/*gnavi_wrap*/




/*footer*/
footer {
    background-color: #111111;
    padding: 25px 0 20px;
}

.footer {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 20px;
}

.sitemap {
    float: right;
    display: flex;
}

.sitemap .nav_wrap {
    display: flex;
}

.sitemap .ttl {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    padding-right: 40px;
}

.sitemap p.link_wrap {
    padding-right: 40px;
}

.sitemap ul {
    display: flex;
    width: 420px;
    flex-wrap: wrap;
}

.sitemap .link_wrap {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.sitemap ul .link_wrap {
    width: 33.33%;
}

.sitemap ul .link_wrap:nth-child(1) {
    order: 1;
}

.sitemap ul .link_wrap:nth-child(2) {
    order: 4;
}

.sitemap ul .link_wrap:nth-child(3) {
    order: 7;
}

.sitemap ul .link_wrap:nth-child(4) {
    order: 2;
}

.sitemap ul .link_wrap:nth-child(5) {
    order: 5;
}

.sitemap ul .link_wrap:nth-child(6) {
    order: 8;
}

.sitemap ul .link_wrap:nth-child(7) {
    order: 3;
}

.sitemap ul .link_wrap:nth-child(8) {
    order: 6;
}

.brands {
    float: left;
    letter-spacing: -.4em;
    color: #fff;
}

.brands .logos {
    letter-spacing: normal;
    vertical-align: top;
    display: inline-block;
}

.brands .txt_logo {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 15px;
}

.brands ul {
    vertical-align: top;
    display: inline-block;
    letter-spacing: -.4em;
    padding-top: 12px;
    padding-left: 25px;
}

.brands li {
    vertical-align: top;
    display: inline-block;
    letter-spacing: normal;
    font-size: 14px;
    padding: 0 5px;
    line-height: 1;
}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1180px) {
    .sitemap .ttl {
        padding-right: 20px;
    }

    .sitemap p.link_wrap {
        padding-right: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .sitemap {
        text-align: center;
        float: none;
        display: block;
    }

    .sitemap .ttl {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .sitemap .nav_wrap {
        display: block;
    }

    .sitemap p.link_wrap {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .sitemap ul {
        margin: 0 auto;
        text-align: left;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: solid #fff 1px;
    }

    .brands {
        float: none;
        text-align: center;
    }

    .brands .logos {
        display: block;
    }

    .brands ul {
        padding-left: 0;
    }
}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 460px) {
    .sitemap ul {
        width: 100%;
    }

    .sitemap .ttl {
        font-size: 16px;
    }

    .sitemap .link_wrap {
        font-size: 11px;
    }

    .brands .txt_logo {
        font-size: 14px;
    }
}

@media screen and (max-width: 375px) {
    .sitemap .link_wrap {
        font-size: 12px;
    }
}

@media screen and (max-width: 374px) {
    .sitemap .link_wrap {
        font-size: 10px;
    }
}

/*footer*/



/*copyright*/
.copyright {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1180px) {}

@media screen and (max-width: 1024px) {
    .copyright {
        height: 40px;
        font-size: 12px;
    }
}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 460px) {
    .copyright {
        height: 30px;
        font-size: 10px;
    }
}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 374px) {}

/*copyright*/



/*pages*/
.sp {
    display: none;
}

.pan {
    padding: 0 100px;
    background: #7d7d7d;
}

.pan li {
    display: inline-block;
    color: #fff;
}

.page-main-content {
    max-width: 1240px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.page-main-content-2 {
    max-width: 1240px;
    margin: 0 auto 0px;
    padding: 0 20px;
}

.content-flex {
    display: flex;
}

.page-sitebar {
    max-width: 300px;
    min-width: 300px;
    margin-left: 60px;
}

.page-mv {
    position: relative;
}

.page-main-content.content-flex>div:first-child {
    width: 100%;
}

/*----pager*/
.list-pager {
    margin: 50px 0;
    font-size: 0;
    text-align: right;
}

.list-pager li {
    display: inline-block;
    margin: 0 5px 10px;
    font-size: 16px;
    color: #a1a1a1;
}

.list-pager li:first-child {
    margin-left: 0;
}

.list-pager li:last-child {
    margin-right: 0;
}

.pager-center {
    text-align: center;
}

.list-pager a,
.list-pager span {
    display: block;
    width: 50px;
    line-height: 48px;
    text-align: center;
    border: 1px solid #3e3e3e;
}

.list-pager a.active,
.list-pager span.active {
    background: #3e3e3e;
}

/*----pager*/
/*----news*/
.news-page-ttl {
    display: block;
    padding: 10px 0;
    margin: 70px 0 60px;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: #222;
}

.news-tag {
    font-size: 0;
    display: flex;
    justify-content: space-between;
}

.news-tag li {
    display: inline-block;
    width: 15.83%;
    margin-right: 1%;
}

.news-tag li:last-child {
    margin-right: 0;
}

.news-tag a {
    display: block;
    padding: 9px 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #fff;
    border-radius: 8px 8px 0 0;
    background: #494e6b;
}

.news-tag.news-pro,
a.news-pro {
    background: #98878f !important;
}

.news-tag.news-eve,
a.news-eve {
    background: #985e6d !important;
}

.news-tag.news-can,
a.news-can {
    background: #7b9677 !important;
}

.news-tag.news-meg,
a.news-meg {
    background: #7d825f !important;
}

.news-tag.news-usr,
a.news-usr {
    background: #9482a1 !important;
}

.news-tag a.active,
.news-tag a:hover {
    padding: 19px 0;
    margin-top: -20px;
}

.news-list-wrp {
    padding: 30px 40px 10px;
    background: #f5f5f5;
}

.list-news {
    position: relative;
    display: block;
    padding: 19px 140px 19px 170px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    background: #fff;
    border: 1px solid #434343;
    border-radius: 5px;
}

.list-news:hover {
    opacity: .8;
}

.list-news time {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.list-news-ttl .news-tag {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 30px;
    padding: 4px 0;
    width: 120px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: #484d6a;
    border-radius: 16px;
    vertical-align: middle;
    transform: translateY(-50%);
}

@media screen and (max-width: 1180px) {
    .pan {
        padding: 0 20px;
    }

    .news-tag {
        display: flex;
        font-size: 0;
        justify-content: space-between;
    }
}

@media screen and (max-width: 880px) {
    .news-tag a {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .pan {
        font-size: 12px;
    }

    .news-page-ttl {
        margin: 45px 0 30px;
        font-size: 18px;
    }

    .news-tag {
        flex-wrap: wrap;
    }

    .news-tag li {
        width: 50%;
        margin-right: 0;
        margin-bottom: 2px;
    }

    .news-tag li a {
        border-radius: 0;
    }

    .news-tag a,
    .news-tag a.active {
        padding: 10px 0;
        margin-top: 0;
    }

    .news-list-wrp {
        padding: 20px 15px 5px;
    }

    .list-news {
        padding: 10px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .list-news-ttl .news-tag {
        position: relative;
        transform: none;
        left: auto;
        margin-bottom: 8px;
    }

    .list-news time {
        display: block;
        position: relative;
        transform: none;
        right: auto;
        text-align: right;
    }

    .list-pager a,
    .list-pager span {
        width: 40px;
        line-height: 38px;
        font-size: 12px;
    }

    .list-pager li {
        margin: 0 2px 4px;
    }
}

/*----news*/
/*----shops*/
.page-mv form {
    font-size: 0;
    padding: 40px 20px;
    text-align: center;
    text-align-last: center;
    background: url(../images/common/bg-blackdot.png) 0 0 / auto auto repeat;
}

.page-mv form select,
.page-mv form input,
.page-mv form button {
    height: 52px;
    padding: 4px 12px;
    font-size: 16px;
    line-height: 1;
    border: none;
    border-radius: 6px;
}

.select {
    position: relative;
    display: inline-block;
    width: 24%;
    max-width: 350px;
    margin-right: 2%;
    background: #fff;
    border-radius: 6px;
}

.select:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 21px;
    height: 13px;
    background: url(../images/common/select-arrow.png) 0 0 / 100% 100% no-repeat;
    transform: translateY(-50%);
}

.page-mv form select {
    display: block;
    width: 100%;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.page-mv form input {
    width: 48%;
    max-width: 600px;
    margin-right: 2%;
}

.page-mv form button {
    width: 24%;
    max-width: 300px;
    border-radius: 50px;
    background: none;
    color: #fff;
    border: 1px solid #fff;
}

.shop-pager {
    display: flex;
    justify-content: space-between;
}

.list-minutes p {
    width: 240px;
    margin: 50px 0;
    font-size: 16px;
    color: #a1a0a0;
    line-height: 48px;
    text-align: center;
    border: 1px solid #3e3e3e;
}

.shop-list-content {
    margin-top: 28px;
    width: 100%;
}

.shop-box-wrp {
    font-size: 0;
}

.shop-box {
    display: inline-block;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 20px 20px 10px;
    background: #f5f5f5;
    vertical-align: top;
}

.shop-box:nth-child(4n) {
    margin-right: 0;
}

.shop-name {
    min-height: 64px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
}

.shop-btn a {
    display: inline-block;
    width: 47%;
    margin-right: 6%;
    font-size: 14px;
    line-height: 2;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: #10446f;
}

.shop-btn a.bg-yellow {
    margin-right: 0;
    background: #7c6423;
}

.shop-box-wrp+.shop-pager {
    margin-top: -2%;
}

.shop-faq-btn a {
    display: block;
    width: 200px;
    padding: 8px 0;
    margin: 0 auto 46px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
    background: #000;
}

.shop-faq-btn.pc {
    margin-top: -50px;
}

@media screen and (max-width: 1180px) {
    .shop-box {
        width: 49%;
    }

    .shop-box:nth-child(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 990px) {
    .page-sitebar {
        max-width: 240px;
        min-width: 240px;
        margin-left: 32px;
    }

    .shop-pager {
        display: block;
    }

    .list-minutes p {
        margin: 50px 0 0;
        width: 100%;
    }

    .list-pager {
        text-align: center;
    }

    .shop-pager .list-pager {
        margin-top: 24px;
    }
}

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

    .page-mv form {
        padding: 10px;
    }

    .page-mv form select,
    .page-mv form input,
    .page-mv form button {
        height: 32px;
        font-size: 12px;
    }

    .select:after {
        width: 14px;
        height: 8px;
    }

    .list-minutes p {
        margin-top: 25px;
    }

    .list-minutes p {
        margin-top: 25px;
        font-size: 14px;
        line-height: 32px;
    }

    .list-pager a,
    .list-pager span {
        width: 40px;
        line-height: 38px;
    }

    .shop-pager .list-pager {
        margin: 20px 0;
    }

    .shop-box {
        padding: 10px;
    }

    .page-sitebar {
        max-width: none;
        min-width: auto;
        margin-left: 0;
    }

    .shop-name {
        min-height: 40px;
        margin-bottom: 14px;
        font-size: 16px;
    }

    .shop-btn a {
        width: 48%;
        margin-right: 4%;
        font-size: 12px;
        line-height: 2.2;
    }
}

@media screen and (max-width: 360px) {
    .shop-box {
        width: 100%;
        margin-right: 0;
    }
}

/*----shops*/

/*--hierarchy3~*/
.hierarchy-content {
    margin-top: 60px;
}

@media screen and (max-width: 1024px) {
    .hierarchy-content {
        margin-top: 120px;
    }
}

@media screen and (max-width: 767px) {
    .hierarchy-content {
        margin-top: 55px;
    }
}

/*--hierarchy3~*/

/*--sitebar*/
.sitebar-video {
    margin-bottom: 40px;
    text-align: center;
}

.sitebar-video p {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: bold;
}

.sitebar-video p:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: #d54922;
    transform: translateY(100%);
}

.sitebar-video iframe {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    height: 180px;
    vertical-align: bottom;
}

.sitebar-btn {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.sitebar-btn img {
    display: inline-block;
    width: 13px;
    margin-top: -3px;
    margin-left: 14px;
    vertical-align: middle;
    transition: .1s;
}

.sitebar-links a {
    display: block;
    margin-bottom: 20px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #3e3e3e;
}

.sitebar-links a:hover {
    color: #fff;
    background: #3e3e3e;
}

.shop-sitebar {
    margin-top: 172px;
}

@media screen and (max-width: 990px) {
    .sitebar-video iframe {
        height: 132px;
    }

    .shop-sitebar {
        margin-top: 250px;
    }
}

@media screen and (max-width: 767px) {
    .sitebar-video {
        margin: 20px 0;
    }

    .sitebar-video p {
        margin-bottom: 20px;
    }

    .sitebar-video p:after {
        height: 3px;
    }

    .sitebar-video iframe {
        max-width: none;
        height: 50vw;
    }

    .sitebar-btn {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .sitebar-btn img {
        width: 8px;
        margin-left: 6px;
    }

    .sitebar-links a {
        padding: 7px 10px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .shop-sitebar {
        margin-top: 0;
    }
}

/*--sitebar*/

/*--news detail*/
.news-detail-main-content {
    margin-top: 70px;
}

.news-detail-ttl {
    display: block;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
}

.news-detail-ttl span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #8c8c8c;
}

.news-detail-txt-wrp {
    margin-bottom: 18px;
}

.news-detail-txt-wrp img {
    display: block;
    width: auto;
    max-width: 100%;
    margin-bottom: 60px;
    text-align: center;
}

.news-detail-txt-wrp h3 {
    font-size: 24px;
    font-weight: bold;
}

.news-detail-txt-wrp p {
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 44px;
}

.news-detail-txt-wrp a {
    font-size: 18px;
    color: #1f4fd9;
}

.news-related {
    position: relative;
    display: inline-block;
    padding: 29px 50px 33px;
    font-size: 0;
    background: #f5f5f5;
}

.news-related h2 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.related-news-box {
    display: inline-block;
    width: 32%;
    margin-right: 2%;
    vertical-align: top;
}

.related-news-box:last-child {
    margin-right: 0;
}

.related-news-box a {
    display: block;
}

.related-news-box a:hover {
    opacity: .8;
}

.news-img {
    display: block;
    margin-bottom: 10px;
}

.news-img img {
    width: 100%;
}

.related-news-box p {
    font-size: 14px;
    line-height: 1.6;
}

@media screen and (max-width: 990px) {
    .news-related {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .news-detail-main-content {
        margin-top: 40px;
    }

    .news-detail-ttl {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .news-detail-ttl span {
        font-size: 14px;
    }

    .news-detail-txt-wrp img {
        margin-bottom: 30px;
    }

    .news-detail-txt-wrp h3 {
        font-size: 20px;
    }

    .news-detail-txt-wrp p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 32px;
    }

    .news-detail-txt-wrp a {
        font-size: 14px;
    }

    .news-related {
        padding: 20px 10px 0;
    }

    .news-related h2 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .related-news-box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .news-img img {
        width: 100%;
        height: 40vw;
        object-fit: cover;
    }

    .related-news-box p {
        font-size: 12px;
    }
}

/*--news detail*/

/*--product_ez*/
.kamikaze-p-white {
    color: #fff;
}

.slider-img img {
    display: block;
    width: 100%;
    height: auto;
}

.product-slider .slick-dots {
    bottom: 12px;
}

.product-slider .slick-dots li {
    width: 10px;
    height: 10px;
}

.product-slider .slick-dots li button {
    height: 10px;
    width: 10px;
    padding: 0;
}

.product-slider .slick-dots li button:before {
    content: "";
    line-height: 10px;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #000;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    background: #ae2123;
}

.product-slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.product-derail-main {
    display: block;
    background: url(../images/common/bg-blackdot.png) 0 0 / auto auto repeat;
}

.product-infor {
    position: relative;
    padding-top: 135px;
    margin-bottom: 104px;
    font-size: 0;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% auto no-repeat;
}

.product-infor-starter {
    position: relative;
    padding-top: 80px;
    margin-bottom: 104px;
    font-size: 0;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 72% no-repeat;
}

.product-infor-singleuse {
    position: relative;
    padding-top: 80px;
    margin-bottom: 104px;
    font-size: 0;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 76% no-repeat;
}

.product-infor-x2 {
    position: relative;
    padding-top: 80px;
    margin-bottom: 104px;
    font-size: 0;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 76% no-repeat;
}

.product-infor-ez {
    position: relative;
    padding-top: 80px;
    margin-bottom: 104px;
    font-size: 0;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 73% no-repeat;
}

.product-infor-ezpt {
    position: relative;
    padding-top: 80px;
    margin-bottom: 104px;
    font-size: 0;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 69.5% no-repeat;
}

.product-infor-kamikaze{
    position: relative;
    padding-top: 80px;
    margin-bottom: 104px;
    font-size: 0;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 64% no-repeat;
}

.product-infor>div {
    position: relative;
}

.product-infor-starter>div {
    position: relative;
}

.product-infor-singleuse>div {
    position: relative;
}

.product-infor-x2>div {
    position: relative;
}

.product-infor-ez>div {
    position: relative;
}

.product-infor-ezpt>div {
    position: relative;
}

.product-infor-kamikaze>div {
    position: relative;
}

.infor-right {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

@media screen and (min-width: 767px) {
    .infor-right-a {
        display: inline-block;
        width: 50%;
        vertical-align: top;
        float: right;
    }

    .kamikaze-p-white-sp{
        display: none;
    }
}

@media screen and (max-width: 766px) {
    .infor-right-a {
        width: 100%;
        margin: 20px 0;
    }

    .kamikaze-p-white{
        display: none;
    }

    .kamikaze-p-white-sp{
        color: #fff;
        font-size: 15px;
        margin-top: -60px;
        margin-bottom: 80px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.infor-right .slick-dots {
    text-align: right;
    padding-right: 20px;
}

.infor-right-a .slick-dots {
    text-align: right;
    padding-right: 20px;
}

.infor-left {
    display: inline-block;
    width: 43%;
    margin-top: -12px;
    margin-right: 7%;
    font-size: 16px;
    vertical-align: top;
}

h1.product-name {
    display: block;
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.6;
    font-weight: bold;
    border-bottom: 1px solid #a0a0a0;
}

.product-evaluation {
    position: absolute;
    bottom: 0;
    border: 1px solid #fff;
}

.product-evaluation {
    position: absolute;
    bottom: 0;
    padding: 22px 20px 20px;
    width: 43%;
    max-width: 420px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: url(../images/common/bg-blackdot.png) 0 0 / auto auto repeat;
    border: 1px solid #fff;
}

.product-evaluation dl {
    display: inline-flex;
}

.product-evaluation dt {
    display: inline-block;
    width: 200px;
    margin-right: 8px;
    text-align: left;
}

.product-evaluation dd {
    text-align: left;
}

.product-sale {
    font-size: 0;
    text-align: center;
}

.shopinfo-bold {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
}

.shopinfo-text {
    font-size: 16px;
    line-height: 1;
    color: #000000;
}

.product-sale h2 {
    margin-bottom: 70px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}

.shopinfo-centertext {
    text-align: center;
    color: #000000;
    line-height: 1;
    display: block;
}

.product-sale h3 {
    display: block;
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.main-product {
    margin: 0 auto 70px;
}

@media screen and (min-width: 768px) {
    .main-product {
        width: 26.6666%;
    }
}

.sub-product-name {
    display: block;
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.purchase {
    display: block;
    width: 120px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
    color: #fff;
    background: #d54922;
    border: 1px solid #d54922;
    transition: .2s;
}

.purchase.no-name {
    margin-top: 20px;
}

.purchase img {
    display: inline-block;
    width: 19px;
    margin-top: -5px;
    margin-right: 8px;
    vertical-align: middle;
}

.purchase:hover {
    color: #d54922;
    background: #fff;
}

.purchase img.img-hover {
    display: none;
}

.purchase:hover img {
    display: none;
}

.purchase:hover img.img-hover {
    display: inline-block;
}

.related-product {
    display: inline-block;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
    vertical-align: top;
}

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

.related-product:last-child {
    margin-bottom: 40px;
}

.product-trymep-sale .related-product .product-img img {
    width: 100%;
    border: 1px solid #aaa;
}

.product-specifications {
    padding: 50px 0 0;
    text-align: center;
    background: #f3f5f8;
    overflow: hidden;
}

.product-specifications h2 {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.table-ttl {
    display: block;
    max-width: 500px;
    margin: 0 auto 8px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

.product-specifications table {
    max-width: 500px;
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
}

.product-specifications th,
.product-specifications td {
    padding: 0;
    width: 78px;
    min-width: 78px;
    height: 40px;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    border: 1px solid #000;
    border-width: 1px 0;
}

.product-specifications td {
    width: 100%;
    padding-left: 40px;
    text-align: left;
}

.product-links-btn {
    font-size: 0;
    text-align: center;
    background: #fff;
}

.product-links-btn a {
    display: inline-block;
    margin: 46px 0;
}

.product-links-btn a.btn-shops {
    margin-right: 34px;
}

@media screen and (min-width: 1400px) {
    .product-infor {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 420px no-repeat;
    }

    .product-infor-starter {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 530px no-repeat;
        padding-top: 80px;
    }

    .product-infor-singleuse {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 540px no-repeat;
        padding-top: 80px;
    }

    .product-infor-x2 {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 540px no-repeat;
        padding-top: 80px;
    }

    .product-infor-ez {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 540px no-repeat;
        padding-top: 80px;
    }

    .product-infor-ezpt {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 530px no-repeat;
        padding-top: 80px;
    }

    .product-infor-kamikaze {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 540px no-repeat;
        padding-top: 80px;
    }
}

@media screen and (max-width: 1148px) {
    .product-infor {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 75% no-repeat;
    }

    .product-infor-singleuse{
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 74% no-repeat;
        padding-top: 80px;
    }

    .product-infor-x2{
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 76% no-repeat;
        padding-top: 80px;
    }

    .product-infor-ez{
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 72% no-repeat;
        padding-top: 80px;
    }

    .product-infor-starter{
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 75% no-repeat;
        padding-top: 80px;
    }

    .product-infor-ezpt{
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 72.5% no-repeat;
        padding-top: 80px;
    }

    .product-infor-kamikaze {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 62% no-repeat;
        padding-top: 80px;
    }
}

@media screen and (max-width: 1088px) {
    .product-evaluation {
        position: relative;
        margin: 70px 0 0;
        width: 100%;
        max-width: none;
    }
}

@media screen and (max-width: 767px) {
    .product-infor {
        padding-top: 60px;
        margin-bottom: 52px;
        /*background: #fff;*/
        overflow: hidden;
    }

    .product-infor-starter {
        padding-top: 60px;
        margin-bottom: 52px;
        /*background: #fff;*/
        overflow: hidden;
    }

    .product-infor-singleuse {
        padding-top: 60px;
        margin-bottom: 52px;
        /*background: #fff;*/
        overflow: hidden;
    }

    .product-infor-x2 {
        padding-top: 60px;
        margin-bottom: 52px;
        /*background: #fff;*/
        overflow: hidden;
    }

    .product-infor-ez {
        padding-top: 60px;
        margin-bottom: 52px;
        /*background: #fff;*/
        overflow: hidden;
    }

    .product-infor-ezpt {
        padding-top: 60px;
        margin-bottom: 52px;
        /*background: #fff;*/
        overflow: hidden;
    }

    .product-infor-kamikaze {
        padding-top: 60px;
        margin-bottom: 52px;
        /*background: #fff;*/
        overflow: hidden;
    }

    .product-infor>div {
        padding-bottom: 106px;
        margin-bottom: 30px;
    }

    .product-infor-starter>div {
        padding-bottom: 106px;
        margin-bottom: 30px;
    }

    .product-infor-singleuse>div {
        padding-bottom: 106px;
        margin-bottom: 30px;
    }

    .product-infor-x2>div {
        padding-bottom: 106px;
        margin-bottom: 30px;
    }

    .product-infor-ez>div {
        padding-bottom: 106px;
        margin-bottom: 30px;
    }

    .product-infor-ezpt>div {
        padding-bottom: 106px;
        margin-bottom: 30px;
    }

    .product-infor-kamikaze>div {
        padding-bottom: 106px;
        margin-bottom: 30px;
    }

    .infor-left {
        width: 100%;
        margin: 0;
        font-size: 14px;
    }

    h1.product-name {
        margin-bottom: 10px;
        font-size: 26px;
    }

    .infor-right {
        width: 100%;
        margin: 20px 0;
    }

    .infor-right-a {
        width: 100%;
        margin: 20px 0;
    }

    .product-evaluation {
        position: absolute;
        padding: 10px;
        margin: 0;
        font-size: 16px;
        width: calc(100% - 40px);
        box-sizing: border-box;
    }

    .product-evaluation dl {
        display: inherit;
    }

    .product-evaluation dt {
        width: 180px;
    }

    .product-evaluation dd {
        display: inline-block;
    }

    .product-sale h2 {
        margin-bottom: 32px;
        font-size: 20px;
    }

    .product-sale h3 {
        margin-bottom: 24px;
        font-size: 18px;
    }

    .sub-product-name {
        margin: 4px 0;
        font-size: 14px;
    }

    .purchase {
        position: relative;
        width: 100%;
        max-width: 200px;
        padding-left: 30px;
        font-size: 12px;
        line-height: 32px;
    }

    .purchase img {
        position: absolute;
        top: 50%;
        left: 10px;
        margin: 0;
        transform: translateY(-50%);
    }

    .related-product {
        width: 49%;
        margin-bottom: 20px;
    }

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

    .related-product .purchase {
        width: 100%;
    }

    .related-product:last-child {
        margin-bottom: 20px;
    }

    .product-sale .page-main-content {
        margin-bottom: 30px;
    }

    .main-product {
        margin-bottom: 36px;
    }

    .product-specifications {
        padding-top: 30px;
    }

    .product-specifications h2 {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .table-ttl {
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 1.6;
    }

    .product-specifications th,
    .product-specifications td {
        min-width: 64px;
        height: 32px;
        font-size: 12px;
    }

    .product-specifications td {
        padding-left: 20px;
    }

    .product-specifications .page-main-content {
        margin-bottom: 30px;
    }

    .product-links-btn a {
        width: 40%;
        max-width: 200px;
        margin: 30px 0;
        font-size: 12px;
    }

    .product-links-btn a.btn-shops {
        margin-right: 16px;
    }
}

@media screen and (max-width: 480px) {
    .product-links-btn {
        padding: 20px 0;
    }

    .product-links-btn a {
        width: 100%;
        max-width: 242px;
        margin: 0 auto;
    }

    .product-links-btn a.btn-shops {
        margin: 0 0 10px;
    }

    .related-product {
        width: 100%;
        margin-right: 0;
    }
}

/*--product_ez*/

/*--product_trymep*/
.product-infor.product-trymep-infor {
    padding-top: 80px;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 76% no-repeat;
}

h1.product-name .en {
    letter-spacing: -2px;
    margin-right: 4px;
}

.product-trymep-sale {
    padding-top: 164px;
    background: url(../images/common/bg-wave-bottom.png) 0 0 / 100% auto no-repeat;
}

.product-trymep-white {
    background: #fff;
    overflow: hidden;
}

.trymep-video h2 {
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.product-subttl {
    margin-bottom: 48px;
    font-size: 16px;
    color: #fff;
}

.video-wrp {
    height: 300px;
    margin-bottom: 12px;
    font-size: 0;
    background: #333;
}

.video-wrp .iframe {
    position: relative;
    display: inline-block;
    width: 50%;
    max-width: 800px;
    height: 100%;
}

.video-wrp .iframe iframe {
    width: 100%;
    height: 100%;
}

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

.iframe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iframe-img img:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.video-name p {
    display: inline-block;
    width: 50%;
    max-width: 800px;
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
}

.video-name {
    margin-bottom: 140px;
}

.product-trymep-sale h2,
.product-trymep-sale h3,
.product-trymep-sale .sub-product-name,
.product-trymep-white h3 {
    color: #000;
}

.product-trymep-white>div {
    margin-bottom: 30px;
}


@media screen and (max-width: 1226px) and (min-width: 768px) {
    .product-trymep-infor .product-evaluation {
        position: relative;
        margin: 70px 0 0;
        width: 100%;
        max-width: none;
    }

    .product-infor.product-trymep-infor {
        padding-top: 80px;
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 81.5% no-repeat;
    }
}

@media screen and (max-width: 767px) {
    .product-infor.product-trymep-infor {
        padding-top: 40px;
    }

    .trymep-video h2 {
        margin-bottom: 12px;
    }

    .product-subttl {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .video-wrp {
        height: auto;
        margin-bottom: 48px;
        background: none;
        overflow: hidden;
    }

    .video-wrp .iframe {
        width: 100%;
        height: 300px;
    }

    .video-wrp p {
        margin: 8px 0 12px;
        font-size: 12px;
        color: #fff;
    }

    .product-trymep-sale {
        padding-top: 82px;
    }

    .product-sale .product-trymep-white>div {
        margin-bottom: 0;
    }

    .product-trymep-sale .related-product:nth-child(2n+1) {
        margin-right: 2%;
    }

    .product-trymep-sale .related-product:nth-child(2n) {
        margin-right: 0;
    }

    .product-trymep-sale .related-product:last-child {
        margin-right: 0;
    }
}

/*--product_trymep*/

/*--product_x2*/
.infor-left p b {
    display: block;
    font-size: 20px;
}

.infor-btn {
    margin-top: 24px;
}

.infor-btn-ezpt {
    margin-top: 0;
}

.product-evaluation-wrp {
    margin-top: 100px;
}

@media screen and (min-width: 1400px) {
.product-evaluation-wrp-a {
    margin-top: 265px;
}

.product-evaluation-wrp-b {
    margin-top: 180px;
}

.product-evaluation-wrp-c {
    margin-top: 100px;
}

.product-evaluation-wrp-d {
    margin-top: 165px;
}

.product-evaluation-wrp-e {
    margin-top: 180px;
}

.product-evaluation-wrp-f {
    margin-top: 240px;
}
}

@media screen and (min-width: 1149px) and (max-width:1399px) {
    .product-evaluation-wrp-a {
        margin-top: 270px;
    }
}

@media screen and (min-width: 896px) and (max-width: 1148px) {
    .product-evaluation-wrp-a {
        margin-top: 225px;
    }
}

@media screen and (min-width: 767px) and (max-width: 895px) {
    .product-evaluation-wrp-a {
        margin-top: 290px;
    }
}

@media screen and (min-width: 1091px) and (max-width: 1399px) {
    .product-evaluation-wrp-b {
        margin-top: 100px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1090px) {

    .product-evaluation-wrp-b {
        margin-top: 50px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1399px) {
    .product-evaluation-wrp-c {
        margin-top: 80px;
    }
}

@media screen and (min-width: 1231px) and (max-width: 1399px) {
    .product-evaluation-wrp-d {
        margin-top: 165px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1230px) {
    .product-evaluation-wrp-d {
        margin-top: 120px;
    }
}

@media screen and (min-width:1227px) and (max-width:1399px) {
    .product-evaluation-wrp-e {
        margin-top: 180px;
    }
}

@media screen and (min-width:767px) and (max-width:1226px) {
    .product-evaluation-wrp-e {
        margin-top: 160px;
    }
}

@media screen and (min-width:1098px) and (max-width:1399px) {
    .product-evaluation-wrp-f {
        margin-top: 240px;
    }
}

@media screen and (min-width:767px) and (max-width:1097px) {
    .product-evaluation-wrp-f {
        margin-top: 180px;
    }
}

.x2-product-evaluation {
    position: relative;
    width: 100%;
    margin: 0 auto 75px;
    background: #626262;
    border: none;
}

.x2-product-evaluation-ez {
    position: relative;
    width: 100%;
    margin: 0 auto 75px;
    background: #626262;
    border: none;
}

.x2-product-evaluation-ezpt {
    position: relative;
    width: 100%;
    margin: 0 auto 75px;
    background: #626262;
    border: none;
}

.x2-product-evaluation-x2 {
    position: relative;
    width: 100%;
    margin: 0 auto 75px;
    background: #626262;
    border: none;
}

.x2-product-evaluation-kamikaze {
    position: relative;
    width: 100%;
    margin: 0 auto 60px;
    background: #626262;
    border: none;
}

.product-color {
    padding: 10px 0;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    background: #fff;
}

.product-color span {
    color: #ccc;
}

.product-infor.product-x2-infor {
    margin-bottom: 74px;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 72% no-repeat;
}

.product-infor-x2.product-x2-infor {
    margin-bottom: 74px;
    background: url(../images/common/bg-wave-top.png) 0 0 / 100% 71% no-repeat;
}



.internal-links>div {
    display: flex;
    margin-bottom: 195px;
    font-size: 0;
    justify-content: center;
}

.internal-links a {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 340px;
    margin-right: 50px;
    font-size: 20px;
    line-height: 56px;
    color: #fff;
    text-align: center;
    background: #5c8b1e;
}

.internal-links a:hover {
    opacity: .8;
}

.internal-links a img {
    position: absolute;
    width: 15px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 70%);
    transition: .3s;
}

.internal-links a:hover img {
    transform: translate(-50%, 85%);
}

.internal-links a:nth-child(2) {
    background: #267694;
}

.internal-links a:last-child {
    margin-right: 0;
    background: #44195f;
}

.pr-content {
    height: 616px;
    margin-bottom: -90px;
    font-size: 0;
    background: url(../images/common/bg-wave-middle.png) 0 0 / 100% 100% no-repeat;
}

.pr-content:nth-child(2n) {
    background: url(../images/common/bg-wave-middle-gray.png) 0 0 / 100% 100% no-repeat;
}

.pr-content>div {
    margin-bottom: 0;
}

.pr-content p {
    display: inline-block;
    width: 56%;
    font-size: 16px;
    vertical-align: top;
    margin-top: 224px;
}

.pr-content p b {
    display: block;
    margin-bottom: 18px;
    font-size: 22px;
}

.pr-img {
    display: inline-block;
    width: 40%;
    margin-right: 4%;
    vertical-align: middle;
    transform: translateY(-17%);
}

.pr-content:nth-child(2n) .pr-img {
    margin-right: 0;
    margin-left: 4%;
}

.product-pr {
    margin-bottom: 114px;
}

.x2-video .video-name.pc {
    margin-bottom: 92px;
}

.product-x2-namisale {
    padding-top: 179px;
    background: url(../images/common/bg-wave-bottom.png) 0 0 / 100% auto no-repeat;
}

.product-trymep-white h2 {
    color: #000;
}

.product-trymep-white .sub-product-name {
    color: #000;
}

.product-x2-namisale h3 {
    color: #68aa11;
}

.product-x2-sale .main-product {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 37px;
}

.product-x2-sale .main-product:last-child {
    margin-right: 0;
}

.product-img .img-tag {
    position: absolute;
    top: 0;
    right: 0;
}

.product-x2-sale .sub-product-name {
    margin-bottom: 14px;
    line-height: 1.6;
}

.product-x2-sale .related-product {
    width: 18.25%;
    margin-right: 2%;
    margin-bottom: 40px;
}

.product-x2-sale .related-product:nth-child(5n) {
    margin-right: 0;
}

.product-x2-sale .related-product .product-img img {
    border: 1px solid #aaa;
}

.sub-product-name small {
    display: block;
    margin-top: 4px;
    font-size: 14px;
}

h3.color-purple {
    color: #44195f;
}

h3.color-blue {
    color: #0c8cbb;
}

.shop-course {
    background: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
}

.shop-course a {
    display: block;
    max-width: 677px;
    padding: 17px 0;
    margin: 0 auto;
    background: #ae2123;
}

.shop-course a:hover {
    opacity: .8;
}

.shop-course .page-main-content {
    margin-bottom: 0;
}

.scroll-target {
    padding-top: 80px;
    margin-top: -80px;
}

@media screen and (max-width: 1148px) {
    .product-infor.product-x2-infor {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 78% no-repeat;
    }

    .product-infor-x2.product-x2-infor {
        background: url(../images/common/bg-wave-top.png) 0 0 / 100% 78% no-repeat;
    }

    .product-color {
        position: absolute;
        bottom: 60px;
        left: 50%;
        width: 47%;
    }
}

@media screen and (max-width: 900px) {
    .pr-content {
        height: 560px;
    }

    .pr-img {
        transform: translateY(-10%);
    }
}

@media screen and (max-width: 767px) {
    .product-x2-infor>div {
        padding-bottom: 180px;
    }

    .product-evaluation-wrp {
        position: absolute;
        bottom: 0;
        width: calc(100% - 40px);
    }

    .product-evaluation-wrp-a {
        position: absolute;
        bottom: 0;
        width: calc(100% - 40px);
    }

    .product-evaluation-wrp-b {
        position: absolute;
        bottom: 0;
        width: calc(100% - 40px);
    }

    .product-evaluation-wrp-c {
        position: absolute;
        bottom: 0;
        width: calc(100% - 40px);
    }

    .product-evaluation-wrp-d {
        position: absolute;
        bottom: 0;
        width: calc(100% - 40px);
    }

    .product-evaluation-wrp-e {
        position: absolute;
        bottom: 0;
        width: calc(100% - 40px);
    }

    .product-evaluation-wrp-f {
        position: absolute;
        bottom: 0;
        width: calc(100% - 40px);
    }

    .product-color {
        position: relative;
        left: 0;
        bottom: auto;
        width: 100%;
        padding: 8px 0;
        font-size: 16px;
        line-height: 1.6;
    }

    .x2-product-evaluation {
        margin-bottom: 30px;
    }

    .x2-product-evaluation-ez {
        margin-bottom: 30px;
        top: -64px;
    }

    .x2-product-evaluation-ezpt {
        margin-bottom: 30px;
        top: -65px;
    }

    .x2-product-evaluation-x2{
        margin-bottom: 30px;
        top: -23px;
    }

    .x2-product-evaluation-kamikaze {
        margin-bottom: 30px;
    }

    .product-infor.product-x2-infor {
        margin-bottom: 40px;
    }

    .product-infor-x2.product-x2-infor {
        margin-bottom: 40px;
    }

    .product-infor-ez.product-x2-infor {
        margin-bottom: 40px;
    }

    .internal-links>div {
        display: block;
        margin-bottom: 80px;
    }

    .internal-links a img {
        position: absolute;
        display: inline-block;
        top: 50%;
        right: 20px;
        left: auto;
        bottom: auto;
        width: 11px;
        transform: translateY(-50%);
    }

    .internal-links a,
    .internal-links a:last-child {
        display: block;
        margin: 0 auto 8px;
        font-size: 16px;
        line-height: 60px;
    }

    .pr-content p {
        margin-top: 100px;
        font-size: 12px;
    }

    .pr-content p b {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 1.6;
    }

    .pr-content {
        height: auto;
        min-height: 360px;
        margin-bottom: -64px;
        padding-bottom: 110px;
    }

    .pr-content {
        height: auto;
        min-height: 360px;
        margin-bottom: -64px;
    }

    .product-pr {
        margin-bottom: 92px;
    }

    .x2-video .video-wrp .iframe {
        margin-bottom: 40px;
    }

    .product-x2-namisale {
        padding-top: 80px;
    }

    .product-x2-sale .main-product {
        width: 48%;
        margin-right: 2%;
    }

    .sub-product-name small {
        margin-top: 2px;
        font-size: 12px;
        line-height: 1.4;
    }

    .shop-course a {
        padding: 16px 0;
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .product-x2-sale .related-product {
        width: 49%;
    }

    .product-x2-sale .related-product:nth-child(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 440px) {
    .internal-links>div {
        margin-bottom: 200px;
    }

    .pr-content {
        padding-bottom: 110px;
        margin-bottom: -90px;
    }

    .pr-content>div {
        display: flex;
        flex-wrap: wrap;
        transform: translateY(-30%);
    }

    .pr-img {
        width: 100%;
        margin-bottom: 20px;
        transform: none;
    }

    .pr-content p {
        width: 100%;
        order: 1;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .pr-content:last-child {
        padding-bottom: 0;
        max-height: 420px;
    }

    .product-pr {
        margin-bottom: 130px;
    }

    .pr-content:nth-child(2n) .pr-img {
        margin: 0 0 20px 0;
    }

    .pr-content:last-child p {
        margin-bottom: 0;
    }

    .product-x2-sale .main-product {
        width: 100%;
        margin-right: 0;
    }

    .product-x2-sale .related-product {
        width: 100%;
        margin-right: 0;
    }
}

/*--product_x2*/

/*--product*/
.product-internal-links {
    padding: 27px 0;
    text-align: center;
    font-size: 16px;
    color: #ae2123;
}

.product-internal-links li {
    display: inline-block;
}

.product-internal-links li:nth-child(2n) {
    margin: 0 12px;
}

.product-list-ttl {
    margin: 52px 0 40px;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.products-wrp {
    padding-bottom: 26px;
    background: url(../images/common/bg-blackdot.png) 0 0 / auto auto repeat;
    overflow: hidden;
}

.product-list {
    font-size: 0;
}

.product-list .product-list-ttl {
    padding: 13px 0;
    margin: 96px 0 50px;
    background: #000;
}

.product-list .sub-product-name {
    color: #000;
    text-align: center;
}

.product-list .page-main-content {
    margin-bottom: 20px;
}

.product-list-others .product-list-ttl {
    margin-top: 20px;
}

.product-list-others .related-product {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 5%;
    text-align: center;
}

.product-list-others .related-product:nth-child(3n+2) {
    margin-right: 0;
}

.product-page-links {
    padding: 20px 20px 80px;
    text-align: center;
}

.btn-wrp {
    display: flex;
    justify-content: center;
}

.btn-wrp a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 250px;
    padding: 23px 0;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.link-onlineshop {
    background: #d54922;
}

.link-shops {
    background: #007aa3;
}

.link-faq {
    background: #49770c;
}

.link-onlineshop:before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 18px;
    background-image: url(../images/common/icon_cart@2x.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    vertical-align: middle;
    transform: translateY(-1px);
}

.link-shops:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 21px;
    background-image: url(../images/common/icon_store@2x.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    vertical-align: middle;
}

.mv-test h1 {
    display: block;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 5px;
}

.mv-test h1 span {
    display: block;
    font-size: 18px;
    letter-spacing: 3px;
}

.mv-test {
    position: absolute;
    top: 44%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

@media screen and (max-width: 767px) {
    .mv-test h1 {
        font-size: 24px;
        line-height: 1.6;
    }

    .mv-test h1 span {
        font-size: 14px;
    }

    .products-wrp .products .list .btns_werap {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
    }

    .products-wrp .products .list .btns_werap .link_wrap {
        width: 48%;
    }

    .product-internal-links {
        padding: 20px;
        font-size: 14px;
        line-height: 1;
    }

    .product-list-ttl {
        margin: 24px 0 20px;
        font-size: 20px;
    }

    .products-wrp .page-main-content {
        margin-bottom: 30px;
    }

    .product-list .product-list-ttl {
        padding: 8px 0;
        margin: 40px 0 24px;
    }

    .btn-wrp {
        justify-content: space-between;
    }

    .btn-wrp a {
        width: 30%;
        height: 60px;
        margin: 0;
    }

    .product-list .page-main-content {
        margin-bottom: 0;
    }

    .product-page-links {
        padding: 10px 20px 60px;
    }
}

@media screen and (max-width: 640px) {
    .product-list .related-product {
        margin-bottom: 40px;
    }

    .product-list-others .related-product,
    .product-list-others .related-product:nth-child(3n+2) {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 40px;
    }

    .product-list-others .related-product:nth-child(2n) {
        margin-right: 0;
    }

    .btn-wrp {
        display: block;
    }

    .btn-wrp a {
        width: 100%;
        max-width: none;
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 440px) {

    .product-list .related-product,
    .product-list-others .related-product,
    .product-list-others .related-product:nth-child(3n+2) {
        width: 100%;
        margin-right: 0;
    }
}

/*--product*/

/*--faq*/
.faq-main-content {
    padding-top: 80px;
}

.faq-content img {
    width: 100%;
    margin-bottom: 60px;
}

.faq-q {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #49770c;
}

.faq-q span {
    display: inline-block;
    margin-right: 12px;
}

.faq-a {
    font-size: 16px;
    text-indent: -1rem;
    padding-left: 2.2rem;
}

.faq-a span {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    font-weight: bold;
}

.faq-area {
    margin-bottom: 40px;
}

.faq-link {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .faq-main-content {
        padding-top: 64px;
    }

    .faq-content img {
        margin-bottom: 30px;
    }

    .faq-q {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .faq-q span {
        margin-right: 8px;
    }

    .faq-a {
        font-size: 14px;
        text-indent: -13px;
        padding-left: 28px;
    }

    .faq-a span {
        font-size: 18px;
        margin-right: 8px;
    }

    .faq-area {
        margin-bottom: 20px;
    }

    .faq-content {
        margin-bottom: 40px;
    }
}

/*--faq*/

/*--contact*/
.contact-main-content {
    padding-top: 80px;
}

.contact-content {
    width: 100%;
}

.contact-precautions {
    margin-bottom: 40px;
    font-size: 14px;
    color: #000;
}

.attention {
    display: inline-block;
    color: red;
    font-weight: bold;
}

.contact-form {
    width: 100%;
    font-size: 16px;
    border-collapse: collapse;
    border-spacing: 0;
}

.contact-form th {
    width: 150px;
    padding: 27px 0 0 0;
    text-align: left;
    line-height: 40px;
    vertical-align: top;
}

.contact-form td {
    padding: 24px;
}

.contact-form select,
.contact-form input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 24px;
    background: none;
    border: 1px solid #aaa;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form textarea {
    width: 100%;
    height: 160px;
    padding: 12px 24px;
    resize: vertical;
    border: 1px solid #aaa;
    border-radius: 5px;
}

textarea::-webkit-input-placeholder {
    font-weight: normal;
}

textarea:-ms-input-placeholder {
    font-weight: normal;
}

textarea::-moz-placeholder {
    font-weight: normal;
}

.selectBox {
    display: block;
    position: relative;
}

.selectBox:after {
    content: "▼";
    position: absolute;
    top: 16px;
    right: 10px;
    font-size: 10px;
    color: #333;
}

.post {
    display: flex;
    flex-wrap: wrap;
}

.post-mark {
    margin-right: 20px;
    line-height: 48px;
}

.contact-form .post input {
    max-width: 250px;
}

.add-form:first-child {
    display: block;
    max-width: 250px;
    margin-bottom: 20px;
}

.form-subBtn {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}

.form-subBtn input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    width: 48%;
    max-width: 240px;
    height: 60px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #000;
    border: 1px solid #000;
    cursor: pointer;
    transition: .3s all ease;
}

.form-subBtn input:hover {
    color: #000;
    background: #fff;
}

.mw_wp_form .error {
    margin-top: 4px;
    padding-left: 24px;
    font-size: 14px;
}

.mw_wp_form .post .error {
    display: block;
    width: 100%;
    padding-left: 60px;
}

@media screen and (max-width: 800px) {
    .post-mark {
        width: 10%;
        margin-right: 2%;
    }

    .post input {
        width: 88%;
    }
}

@media screen and (max-width: 767px) {
    .contact-main-content {
        padding-top: 64px;
    }

    .contact-precautions {
        margin-bottom: 24px;
        font-size: 12px;
    }

    .contact-form {
        font-size: 14px;
    }

    .contact-form th {
        display: block;
        width: 100%;
        padding: 0;
    }

    .contact-form td {
        display: block;
        padding: 0;
        margin-bottom: 20px;
    }

    .mw_wp_form .error {
        padding-left: 20px;
    }

    .post-mark {
        display: inline-block;
        max-width: 14px;
        vertical-align: middle;
    }

    .contact-form .post input {
        display: inline-block;
    }

    .mw_wp_form .post .error {
        padding-left: 54px;
    }

    .form-postscript {
        font-size: 12px;
    }

    .form-subBtn {
        margin: 24px 0 40px;
    }

    .form-subBtn input {
        font-size: 14px;
        height: 48px;
    }
}

.mw_wp_form_confirm .selectBox:after {
    content: "";
}

.mw_wp_form_confirm th {
    padding-top: 18px;
}

.mw_wp_form_confirm .post-mark {
    line-height: 28px;
}

.mw_wp_form_confirm .add-form:first-child {
    margin-bottom: 0;
}

.mw_wp_form_confirm .contact-form {
    margin-bottom: 48px;
}

.mw_wp_form_confirm .contact-precautions {
    visibility: hidden;
}

.form-subBtn input.back {
    margin-right: 4%;
    background: #fff;
    color: #aaa;
    border-color: #aaa;
}

.form-subBtn input.back:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

@media screen and (max-width: 767px) {
    .mw_wp_form_confirm .contact-precautions {
        display: none;
    }

    .mw_wp_form_confirm th {
        padding: 0;
    }

    .mw_wp_form_confirm .contact-form {
        margin-bottom: 20px;
    }
}

.comp-ttl {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
}

.comp-txt p {
    margin-bottom: 8px;
}

br.sp420 {
    display: none;
}

@media screen and (max-width: 767px) {
    .comp-txt {
        margin-bottom: 40px;
    }

    .comp-ttl {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media screen and (max-width: 420px) {
    br.sp420 {
        display: block;
    }
}

/*--contact*/


/*--about*/
.about-content {
    width: 100%;
    margin-bottom: 40px;
}

.about-content a {
    color: #0000ff;
}

/*--about*/

/*pages*/


/*--instagram*/
#sb_instagram.sbi_col_5 #sbi_images .sbi_item {
    width: 18% !important;
    max-width: 248px;
    max-height: 248px;
    height: 17.43vw;
    box-sizing: border-box;
    margin-right: 2.5% !important;
    margin-bottom: 2% !important;
}

#sb_instagram.sbi_col_5 #sbi_images .sbi_item:nth-child(5n) {
    margin-right: 0 !important;
}

#sb_instagram #sbi_images {
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important;
    font-size: 0;
    text-align: justify;
    justify-content: space-between;
}

#sb_instagram .sbi_follow_btn a {
    background: -webkit-linear-gradient(84deg, #5378f2 0%, #ed407e 50%, #f4a03f 70%) no-repeat !important;
    background: linear-gradient(84deg, #5378f2 0%, #ed407e 50%, #f4a03f 70%) no-repeat !important;
    transition: .5s all ease;
}

div#sb_instagram .sbi_follow_btn a:hover {
    background: -webkit-linear-gradient(84deg, #ed407e 0%, #f4a03f 50%, #5378f2 90%) no-repeat !important;
    background: linear-gradient(84deg, #ed407e 0%, #f4a03f 50%, #5378f2 90%) no-repeat !important;
    box-shadow: none;
}

@media screen and (max-width: 640px) {
    #sb_instagram #sbi_images {
        justify-content: flex-start;
    }

    #sb_instagram.sbi_col_5 #sbi_images .sbi_item {
        width: 30% !important;
        margin-right: 5% !important;
        margin-bottom: 5% !important;
        height: 28vw;
        max-width: none;
    }

    #sb_instagram.sbi_col_5 #sbi_images .sbi_item:nth-child(5n) {
        margin-right: 5% !important;
    }

    #sb_instagram.sbi_col_5 #sbi_images .sbi_item:nth-child(3n) {
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 440px) {

    #sb_instagram.sbi_col_5 #sbi_images .sbi_item,
    #sb_instagram.sbi_col_5 #sbi_images .sbi_item:nth-child(3n),
    #sb_instagram.sbi_col_5 #sbi_images .sbi_item:nth-child(5n) {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
        height: auto !important;
    }
}

/*--instagram*/

/*--not found*/
.notfound-content {
    width: 100%;
}

.notfound-content h1 {
    display: block;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
}

.notfound-content h1 span {
    display: block;
    font-size: 18px;
    letter-spacing: 3px;
}

.notfound-content a {
    display: block;
    margin: 40px 0;
    text-align: center;
    color: #0000ff;
}

@media screen and (max-width: 767px) {
    .notfound-content h1 {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 1.6;
    }

    .notfound-content h1 span {
        font-size: 14px;
        margin-top: 4px;
    }

    .notfound-content a {
        margin: 32px 0 40px;
    }
}

/*--not found*/


/*--main mv img*/
.main_slider_wrap li img,
.page-mv img {
    width: 100%;
}

/*--main mv img*/

/* ?????????? */
.products .pokety {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.products .pokety .pokety-item:last-of-type {
    margin-right: 0;
}

.products .pokety-item {
    float: left;
    width: 28.33333333333333%;
}

.products .pokety-item:not(:nth-child(3n)) {
    margin-right: 7.5%;
}

.products .pokety-item:nth-child(3n+1) {
    clear: both;
}

.products .pokety-item:nth-child(n+4) {
    margin-top: 50px;
}

.products .pokety-item figure {
    background-color: #fff;
    margin-bottom: 20px;
}

.products .pokety-item .w_box {
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
}

.products .pokety-item .cat_box {
    display: block;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 1;
    border: 2px solid #fff;
    padding: 5px;
    margin-bottom: 20px;
}

.products .pokety-item .ttl {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}

.products .pokety-item .sub_ttl_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 0;
}

.products .pokety-item:nth-child(3n+1) .sub_ttl_box {
    border-top: solid #4bb5ec 2px;
    border-bottom: solid #4bb5ec 2px;
}

.products .pokety-item:nth-child(3n+2) .sub_ttl_box {
    border-top: solid #6ced78 2px;
    border-bottom: solid #6ced78 2px;
}

.products .pokety-item:nth-child(3n+3) .sub_ttl_box {
    border-top: solid #f48cda 2px;
    border-bottom: solid #f48cda 2px;
}

.products .pokety-item .sub_ttl {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #fff;
    line-height: 1.5;
}

.products .pokety-item:nth-child(3n+1) .sub_ttl {
    color: #4bb5ec;
}

.products .pokety-item:nth-child(3n+2) .sub_ttl {
    color: #6ced78;
}

.products .pokety-item:nth-child(3n+3) .sub_ttl {
    color: #f48cda;
}

.products .pokety-item .read {
    font-size: 14px;
    color: #fff;

    line-height: 1.714285714285714;
    margin-bottom: 20px;
}

.products .pokety-item .table {
    padding: 10px;
    background-color: #626262;
    margin-bottom: 25px;
}

.products .pokety-item .table table {
    width: 100%;
    border-collapse: collapse;
}

.products .pokety-item .table tbody {
    width: 100%;
}

.products .pokety-item .table th,
.products .pokety-item .table td {
    text-align: left;
    color: #fff;
    font-size: 14px;
    line-height: 2.142857142857143;
}

.products .pokety-item .btns_werap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.products .pokety-item .btns_werap .link_wrap {
    width: 60%;
    margin: auto;
}

.products .pokety-item .btns_werap .link_wrap .link {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    transition: .5s all ease;
}

.products .pokety-item .btns_werap .link_wrap.more .link {
    background-color: #fff;
}

.products .pokety-item .btns_werap .link_wrap.cart .link {
    background-color: #d54922;
    color: #fff;
    position: relative;
    padding-left: 30px;
}

.products .pokety-item .btns_werap .link_wrap.cart .link::before {
    content: '';
    width: 19px;
    height: 18px;
    background-image: url("../images/common/icon_cart@2x.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .products .pokety {
        display: block;
    }

    .products .pokety-item {
        float: none;
        width: 100%;
    }

    .products .pokety-item:nth-child(n+4) {
        margin-top: 0px;
    }

    .products .pokety-item:not(:nth-child(3n)) {
        margin-right: 0;
    }

    .products .pokety-item:not(:last-child) {
        margin-bottom: 60px;
    }

    .products .pokety-item figure {
        margin: 0 auto 30px;
        max-width: 300px;
        width: 100%;
    }

    .products .pokety-item .w_box {
        max-width: none;
    }

    .products .pokety-item .float_area {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .products .pokety-item .table {
        margin-bottom: 0;
        width: 48%;
    }

    .products .pokety-item .btns_werap {
        display: block;
        width: 48%;
    }

    .products .pokety-item .btns_werap .link_wrap {
        width: 100%;
    }

    .products .pokety-item .btns_werap .link_wrap.more {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 640px) {
    .products .pokety-item figure {
        float: left;
        margin-bottom: 20px;
        width: 50%;
    }

    .products .pokety-item .txt_box {
        float: right;
        width: 46.66666666666667%;
        margin-bottom: 20px;
    }

    .products .pokety-item .read {
        margin-bottom: 0;
    }

    .products .pokety-item .table {
        width: 100%;
    }

    .products .pokety-item .btns_werap {
        display: flex;
        width: 100%;
    }

    .products .pokety-item .btns_werap .link_wrap {
        width: 48%;
    }

    .products .pokety-item .btns_werap .link_wrap.more {
        margin-bottom: 0;
    }

    .products .pokety-item .btns_werap {
        clear: both;
        width: 100%;
    }

    .products .pokety-item .table th,
    .products .pokety-item .table td {
        font-size: 10px
    }
}

@media screen and (max-width: 460px) {
    .products .pokety-item:not(:last-child) {
        margin-bottom: 30px;
    }

    .products .pokety-item .ttl {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .products .pokety-item .read {
        font-size: 11px;
    }

    .products .pokety-item .table {
        padding: 5px;
    }

    .products .pokety-item .table th,
    .products .pokety-item .table td {
        letter-spacing: -0.15em;
    }
}

@media screen and (max-width: 374px) {
    .products .pokety-item figure {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .products .pokety-item .txt_box {
        float: none;
        width: 100%;
    }

    .products .pokety-item .table {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .products .pokety-item .btns_werap {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .products .pokety-item .btns_werap .link_wrap {
        width: 46.66666666666667%;
    }

    .products .pokety-item .table th,
    .products .pokety-item .table td {
        letter-spacing: normal;
    }
}

.pokety-liquid {
    padding: 0 20px;
    padding-top: 60px;
    margin-top: -60px;
}

.pokety-liquid .page-main-content {
    max-width: 830px;
    padding: 0;
    margin: 0 auto 20px;
}

.pokety-liquid .related-product {
    width: 30%;
    margin-right: 3%;
}

.pokety-liquid .related-product:nth-of-type(3n) {
    margin-right: 0;
}

.pokety-liquid .related-product:nth-of-type(4n) {
    margin-right: 3%;
}

@media screen and (max-width: 767px) {
    .pokety-liquid .related-product {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 40px;
    }

    .pokety-liquid .related-product:nth-of-type(3n) {
        margin-right: 2%;
    }

    .pokety-liquid .related-product:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 440px) {
    .pokety-liquid .related-product {
        width: 100%;
        margin-right: 0;
    }

    .pokety-liquid .related-product:nth-of-type(3n) {
        margin-right: 0;
    }
}

.about-cbd {}

.about-cbd .bg-gray {
    background: #333;
}

.about-cbd .bg-gray .page-main-content {
    display: flex;
}

.about-cbd .keywords {
    display: flex;
    margin-bottom: 20px;
}

.about-cbd .keywords .keyword {
    font-weight: bold;
    line-height: 1;
    padding: 6px 8px;
    color: #000;
    background: #fff;
    margin-right: 20px;
}

.about-cbd .text-area {
    font-size: 16px;
    width: 58%;
    text-align: left;
    padding: 20px 0;
    margin-right: 2%;
}

.about-cbd .text-area p {
    color: #fff;
}

.about-cbd .img-area {
    width: 40%;
    align-self: center;
}

.img-area-kamikaze {
    width: 25%;
    align-self: center;
}

@media screen and (max-width: 767px) {
    .img-area-kamikaze {
        width: 429px;
        margin: 0 auto;
    }

    .img-area-kamikaze img {
        width: 100%;
    }
}

.product-trymep-sale .related-product .product-img.no-border img {
    border: none;
}

.h2-singleuse {
    margin-bottom: 15px !important;
}



.pokety-youtube {}

.pokety-youtube .bg-gray {
    background: #333;
}

.pokety-youtube .youtube-area {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pokety-youtube h2 {
    margin-bottom: 70px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    letter-spacing: 4px;
    text-align: center;
}

.youtube-area {
    position: relative;
    padding-bottom: 315px;
}

.youtube-area iframe {
    position: absolute;
    width: 100%;
    max-width: 100%;
}





@media screen and (max-width: 767px) {
    .about-cbd .bg-gray .page-main-content {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .about-cbd .text-area {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-cbd .img-area {
        width: 100%;
    }
}