@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*共通----------*/
p,
ul,
li,
dl,
dt,
dd,
div,
h1,
h2,
h3,
h4,
h5,
a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    position: relative;
    z-index: 0;
    font-size: 15px;
    color: #5a5a5a;
}

html {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

.txt-right {
    text-align: right;
}

/*unit----------*/

.menu_inner {
    display: none;
}

.unit_menu {
    position: sticky;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid #a8a8a8;
}

.unit_menu.sp {
    display: none;
}

.unit_menu .menu_icon {}

.unit_menu .menu_icon span {}

.unit_menu .menu_icon span:nth-of-type(1) {}

.unit_menu .menu_icon span:nth-of-type(2) {}

.unit_menu .menu_icon span:nth-of-type(3) {}

.unit_menu .logo {
    width: 22%;
    padding-right: 2%;
}

.unit_menu .search_box {
    width: 53%;
}

.unit_menu .search_box form.search_form {
    width: 500px;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.unit_menu .search_box .search_form.product {
    width: calc(100% - 30px);
}

.unit_menu .search_box .search_form.product_submit {
    width: 30px;
    background-color: #d19ab4;
    height: 38px;
    border-radius: 0 3px 3px 0;
    position: relative;
    z-index: 0;
}

.unit_menu .search_box .search_form.product_submit::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url(".././img/search.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80%;
    height: 100%;
}

.unit_menu .search_box #product {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    background-color: #f2f2f2;
    border: 1px solid #a8a8a8;
    border-right-width: 0;
    border-radius: 3px 0px 0px 3px;
    height: 38px;
}

.unit_menu .search_box #product_submit {
    width: 100%;
    background: none;
    border: 0;
    padding: 0;
    height: 100%;
    cursor: pointer;
}

.unit_menu .right_box {
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    align-items: center;
}

.unit_menu .right_box .login_box,
.unit_menu .right_box .cart_box {
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    position: relative;
}

.unit_menu .right_box .login_box:hover,
.unit_menu .right_box .cart_box:hover {
    opacity: 0.6;
}

.unit_menu .right_box .cart_box #cart_in {
    display: inline-block;
    background: #f30;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
}

.unit_menu .right_box .cart_box #cart_in.hide {
    display: none;
}

.unit_menu .right_box .login_box {
    padding-right: 20px;
}

.unit_menu .right_box .login_box p {
    color: #5a5a5a;
    font-weight: 500;
    border: 1px solid #5a5a5a;
    border-radius: 50px;
    padding: 6px 12px;
}

.unit_menu .right_box .cart_box {}

.unit_menu .right_box .login_box img,
.unit_menu .right_box .cart_box img {
    width: 30px;
}

.unit_menu .product_catlist {
    width: 100%;
}

.unit_menu .product_catlist p {}

.unit_menu .product_catlist ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
}

.unit_menu .product_catlist ul li {
    position: relative;
    z-index: 0;
    padding-bottom: 30px;
    margin-bottom: -30px;
    font-size: 16px;
    font-weight: 600;
    color: #565656;
}

.unit_menu .product_catlist ul li:last-of-type {
    color: #d19ab4;
}

.unit_menu .product_catlist ul li ul {
    position: absolute;
    top: 40px;
    box-shadow: 0px 0px 5px #a3a3a330;
    border-radius: 15px;
    left: 50%;
    width: 250px;
    background-color: #fff;
    transform: translate(-50%, 0px);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

.unit_menu .product_catlist ul li:hover ul {
    opacity: 1;
    pointer-events: auto;
}

.unit_menu .product_catlist ul li ul li {
    width: 100%;
    padding-bottom: 0px;
    margin-bottom: 5px;
}

.unit_menu .product_catlist ul li a {
    color: #000;
}

.unit_menu .product_catlist ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

.unit_menu .product_catlist ul li dl:hover {
    opacity: 0.6;
}

.unit_menu .product_catlist ul li dl dt {
    width: 80px;
    max-width: 20%;
    display: none;
}

.unit_menu .product_catlist ul li dl dd {
    width: calc(100% - 0px);
    max-width: 80%;
    padding-left: 0px;
    padding: 5px 0;
}

.bland a {
    color: #d19ab4 !important;
}

/*TOP共通----------*/
.top_section {
    padding: 4rem 0;
}

.top_section .top_box {
    width: 1400px;
    max-width: 85%;
    margin: 0 auto;
}

.toph2 {
    color: #5a5a5a;
    font-size: 26px;
    margin-bottom: 2rem;

}

.toph2 a {
    color: #5a5a5a;
    font-size: 16px;
    padding: 0 10px;
    margin-left: 15px;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

.toph2 a:hover {
    opacity: 0.6;
}

/*TOPPAGE----------*/
.top_newsbox {
    background-color: #d19ab4;
    width: 100%;
    padding: 1.25% 0;
}

.top_newsbox dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.top_newsbox dl dt a,
.top_newsbox dl dd a {
    color: #fff;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

.top_newsbox dl dt a:hover,
.top_newsbox dl dd a:hover {
    opacity: 0.7;
}

.top_newsbox dl dt {
    padding-left: 15px;
    position: relative;
    z-index: 0;
    width: 50%;

}

.top_newsbox dl dt::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8.7px;
    border-color: transparent transparent transparent #ffffff;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.top_newsbox dl dd {
    width: 50%;
}

.top_newsbox dl dd ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}

.top_newsbox dl dd ul li {
    margin-right: 3%;
}

.bottom_menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    left: 0;
}

.bottom_menu ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #cfcfcf;
}

.bottom_menu ul li {
    width: 25%;
    text-align: center;
    background-color: #ebdbe3;
    padding: 15px 0;
}

.bottom_menu ul li.active {
    background-color: #d19ab4;
}

.bottom_menu ul li img {
    max-width: 45px;
}

.bottom_menu ul li a {}

#top_fv {
    position: relative;
    z-index: 0;
    margin-top: 5px;
}

.swiper-pagination {
    position: relative !important;
}

#top_fv span.swiper-pagination-bullet {
    background-color: #bcbcbc;
}

#top_fv .swiper-button-prev,
#top_fv .swiper-button-next {
    background-color: #ffffffe8;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px #8d8d8d70;
}

#top_fv .swiper-button-next:after,
#top_fv .swiper-rtl .swiper-button-prev:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10.4px;
    border-color: transparent transparent transparent #b7b7b7;
}

#top_fv .swiper-button-prev:after,
#top_fv .swiper-rtl .swiper-button-next:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 10.4px 6px 0;
    border-color: transparent #b7b7b7 transparent transparent;
}

#top_fv .top_fvbg {
    margin-bottom: 15px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#top_fv .top_fvbg .img_box {}

#top_fv .top_fvbg .img_box img {
    border-radius: 8px;
}

#top_fv .top_fvbg .img_box.img_bg01 {}

#top_fv .top_fvbg .img_box.img_bg02 {}

#top_fv .top_fvbg .img_box.img_bg03 {}

#top_fv .top_fvbg .img_box.img_bg03 a {}

#top_01 {}

#top_01.sec01 {
    padding-bottom: 0;
}

#top_01 .top_box {}

#top_01 .top_box .box01 {
    width: 500px;
    max-width: 80%;
    margin: 0 auto;
}

#top_01 .top_box .box01 img {
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#top_01 .top_box .box01 img:hover {
    opacity: 0.6;
}

#top_01 .top_box .box02 {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 3rem;
}

#top_01 .top_box .box02 a {}

#top_01 .top_box .box02 a img {
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    box-shadow: 0px 0px 10px #adadad52;
}

#top_01 .top_box .box02 a:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

#top_02 {}

.ranking_page #top_02 {
    padding: 4rem 0;
}

#top_02 .top_box {}

#top_02 .top_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}

#top_02 .top_box ul li {
    /* width: 19%; */
    width: 30%;
    background-color: #fff;
    box-shadow: 0px 0px 10px #adadad52;
    border-radius: 10px;
    padding: 7px;
    position: relative;
    z-index: 0;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    margin-bottom: 25px;
    margin-right: calc(10% / 2);
}

#top_02 .top_box ul li:nth-of-type(3n+3) {
    margin-right: 0;
}

#top_02 .top_box ul li:hover {
    opacity: 0.6;
    transform: scale(1.05);
}

#top_02 .top_box ul li a {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#top_02 .top_box ul li .img_box {
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#top_02 .top_box ul li .img_box span {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: #d19ab4;
    font-size: 16px;
    padding: 5px 9px;
    border-radius: 4px;
}

#top_02 .top_box ul li .img_box img {
    max-height: 252px;
    height: 14vw;
}

#top_02 .top_box ul li .txt_box {
    margin-top: 10px;
}

#top_02 .top_box ul li .txt_box h3 {}

#top_02 .top_box ul li .txt_box h3 span {
    display: block;
    font-size: 15px;
    color: #f1b500;
}

#top_02 .top_box ul li .txt_box h3 span em {
    color: #5a5a5a;
    letter-spacing: 1px;
}

#top_02 .top_box ul li .txt_box dl {
    color: #d19ab4;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    margin-bottom: 10px;
}

#top_02 .top_box ul li .txt_box dl dt {}

#top_02 .top_box ul li .txt_box dl dd {}

#top_02 .top_box ul li .txt_box p {
    margin: 10px 0 5px;
    font-size: 14px;
}

#top_02 .top_box ul li .txt_box p span {
    font-weight: 800;
    padding-right: 7px;
}

#top_03 {
    background-color: #f5f5f5;
}

#top_03 .top_box {}

#top_03 .top_box dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#top_03 .top_box dl dt {
    width: 48%;
}

#top_03 .top_box dl dt a {}

#top_03 .top_box dl img {
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#top_03 .top_box dl img:hover {
    opacity: 0.6;
    transform: scale(1.05);
}

#top_03 .top_box dl dd {
    width: 48%;
}

#top_03 .top_box dl.coupon dd {
    width: 100%;
}

#top_03 .top_box dl dd ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#top_03 .top_box dl dd ul li {
    width: 48%;
}

#top_03 .top_box dl.coupon dd ul li {
    width: 24%;
}

#top_03 .top_box dl dd ul li:nth-of-type(1),
#top_03 .top_box dl dd ul li:nth-of-type(2) {
    margin-bottom: 2%;
}

#top_03 .top_box dl.coupon dd ul li:nth-of-type(1),
#top_03 .top_box dl.coupon dd ul li:nth-of-type(2),
#top_03 .top_box dl.coupon dd ul li:nth-of-type(3),
#top_03 .top_box dl.coupon dd ul li:nth-of-type(4) {
    margin-bottom: 2%;
}

#top_03 .top_box dl dd ul li a {}

#top_04 {}

#top_04 .top_box {}

#top_04 .top_box .toph2 {
    margin-bottom: 0rem;
}

#top_04 .top_box p {
    margin-bottom: 2rem;
}

#top_04 .top_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#top_04 .top_box ul {
    justify-content: center;
}

#top_04.keywords_page .top_box ul {
    justify-content: flex-start;
}

#top_04 .top_box ul li {
    width: 18%;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#top_04 .top_box ul li {
    margin-bottom: 2rem;
    margin-right: calc(10% / 4);
}

#top_04 .top_box ul li:nth-of-type(5n+5) {
    margin-right: 0;
}

#top_04 .top_box ul li:hover {
    opacity: 0.6;
    transform: scale(1.05);
}

#top_04 .top_box ul li a {}

#top_04 .top_box ul li .img_box {
    text-align: center;
}

#top_04 .top_box ul li .img_box img {
    filter: drop-shadow(0px 0px 10px #adadad52);
    width: 14.2vw;
    height: 14.2vw;
    max-width: 224px;
    max-height: 224px;
    border-radius: 50%;
    object-fit: cover;
}

#top_04 .top_box ul li .txt_box {
    margin-top: 15px;
    text-align: center;
    color: #5a5a5a;
    font-weight: bold;
}

#top_05 {}

#top_05 .top_box {}

#top_05 .top_box .news_cat {
    width: 600px;
    max-width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#top_05 .top_box .news_cat li.cat_00 {
    width: 32%;
    text-align: center;
    border-bottom: 3px solid #c0c0c0;
    padding: 5px 0;
    font-weight: 800;
    color: #a5a5a5;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    cursor: pointer;
}

#top_05 .top_box .news_cat li.cat_00.active {
    border-bottom: 3px solid #d19ab4;
    color: #5a5a5a;
}

#top_05 .top_box .news_box00 {
    display: none;
}

#top_05 .top_box .news_box00.active {
    display: block;
}

#top_05 .top_box .news_box00 ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

#top_05 .top_box .news_box00 ul li {
    width: 31%;
    margin-bottom: 3%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#top_05 .top_box .news_box00 ul li:hover {
    opacity: 0.6;
}

#top_05 .top_box .news_box00 ul li a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#top_05 .top_box .news_box00 ul li:not(:nth-of-type(3n+3)) {
    margin-right: calc(7%/2);
}

#top_05 .top_box .news_box00 ul li .img_box {
    width: 100%;
    max-height: 297px;
    height: 18vw;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

#top_05 .top_box .news_box00 ul li .img_box img {}

#top_05 .top_box .news_box00 ul li .txt_box {
    max-width: 100%;
    padding: 15px 0;
}

#top_05 .top_box .news_box00 ul li .txt_box dl {}

#top_05 .top_box .news_box00 ul li .txt_box dl dt {
    font-weight: 600;
    color: #5c5c5c;
    margin-bottom: 5px;
}

#top_05 .top_box .news_box00 ul li .txt_box dl dd {
    color: #d19ab4;
    font-weight: 600;
    margin: 10px 0px 0;
}

#top_05 .top_box .news_box00 ul li .txt_box p {
    font-weight: 900;
    font-size: 16px;
}

#top_06 {}

#top_06 .top_box {}

#top_06.news_page .top_box {
    width: 800px;
}

#top_06 .top_box .inner {
    background-color: #f6f6f6;
    border-radius: 10px;
}

#top_06 .top_box .inner ul {
    padding: 3%;
}

#top_06 .top_box .inner ul li {
    position: relative;
    z-index: 0;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#top_06 .top_box .inner ul li:hover {
    opacity: 0.6;
}

#top_06 .top_box .inner ul li a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#top_06 .top_box .inner ul li:not(:last-of-type) {
    margin-bottom: 25px;
}

#top_06 .top_box .inner ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

#top_06 .top_box .inner ul li dl dt {
    width: 200px;
    max-width: 20%;
    font-weight: 600;
    color: #5c5c5c;
}

#top_06.news_page .top_box .inner ul li dl dt {
    width: 100px;
}

#top_06 .top_box .inner ul li dl dt span {
    color: #d19ab4;
    margin-left: 10%;
}

#top_06 .top_box .inner ul li dl dd {
    max-width: 80%;
    padding-left: 3%;
    font-weight: 900;
    font-size: 16px;
}

#top_06.news_page .top_box .inner ul li dl dd {
    font-size: 15px;
}

#top_07 {}

#top_07 .top_box {}

#top_07 .top_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#top_07 .top_box ul li {
    width: 48%;
    border-bottom: 1px solid #c0c0c0;
}

#top_07 .top_box ul li dl {}

#top_07 .top_box ul li dl dt {
    padding: 15px 30px;
    position: relative;
    z-index: 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#top_07 .top_box ul li dl dt:hover {
    opacity: 0.6;
}

#top_07 .top_box ul li dl dt::before {
    content: "Q";
    position: absolute;
    z-index: -1;
    left: 5px;
}

#top_07 .top_box ul li dl dt::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14.7px 8.5px 0 8.5px;
    border-color: #5a5a5a transparent transparent transparent;
}

#top_07 .top_box ul li dl dd {
    padding: 15px;
    padding-top: 0;
    line-height: 1.8;
    letter-spacing: 1px;
    display: none;
}

#top_08 {
    margin-top: 2rem;
    background: linear-gradient(90deg, #eddae4, #fff);
    overflow: hidden;
}

#top_08 .top_box {
    width: 1300px;
    max-width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

#top_08 .top_box .inner {
    width: 60%;
}

#top_08 .top_box h2 {
    color: #5a5a5a;
    font-size: 30px;
}

#top_08 .top_box p {
    margin: 1.5rem 0;
}

#top_08 .top_box .link_box,
footer .inner .box01 .link_box,
#security_01 .sub_box ul li .link_box {
    background: linear-gradient(90deg, #dc88c7, #f747a6);
    border-radius: 50px;
    padding: 2.5% 0;
    width: 300px;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#security_01 .sub_box ul li .link_box {
    background: none;
    background-color: #d19ab4;
}

#top_08 .top_box .link_box:hover,
#security_01 .sub_box ul li .link_box:hover {
    opacity: 0.6;
}

#top_08 .top_box .link_box a {}

#top_08 .top_box .img_bg {
    width: 38%;
}

#top_08 .top_box .img_bg img {}

.link_box {
    position: relative;
    z-index: 0;
    width: 350px;
    max-width: 100%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 2% 0;
}

.link_box a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

footer {
    padding: 4rem 0;
    background-color: #eeede9;
}

footer .inner {
    width: 1400px;
    max-width: 90%;
    margin: 0 auto;
}

footer .inner .box01 {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

footer .inner .box01 .inbox {}

footer .inner .box01 .inbox:nth-of-type(2) {
    margin-left: 5%;
}

footer .inner .box01 .inbox:nth-of-type(2) .link_box {
    background-color: #06c755;
}

footer .inner .box01 .inbox:nth-of-type(2) .link_box span {
    position: relative;
    z-index: 0;
    padding-left: 25px;
}

footer .inner .box01 .inbox:nth-of-type(2) .link_box span::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 20px;
    height: 100%;
    left: 0;
    top: 0;
    margin: auto;
    background-image: url(".././img/line_icon.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

footer .inner .box01 h3 {
    font-size: 1.3em;
    font-weight: 600;
}

footer .inner .box01 p {
    margin: 1rem 0;
}

footer .inner .box01 .link_box {
    background: none;
    background-color: #d19ab4;
    padding: 15px 0;
}

footer .inner .box02 {
    margin: 3rem 0 5rem;
}

footer .inner .box02 ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    width: 750px;
    max-width: 100%;
}

footer .inner .box02 ul li {
    border-right: 1px solid #9b9b9b;
    padding-right: 7px;
    margin-right: 7px;
    margin-bottom: 5px;
}

/*
footer .inner .box02 ul li:nth-of-type(7) {
    border-right: 0px;
}
*/

footer .inner .box02 ul li:last-of-type,
footer .inner .box03 ul li:last-of-type {
    border-right: 0px;
}

footer .inner .box02 ul li:last-of-type {
    border-right: 0px;
}

footer .inner .box02 ul li a {
    color: #5a5a5a;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    font-weight: bold;
}

footer .inner .box02 ul li:hover a,
footer .inner .box03 ul li:hover a {
    opacity: 0.6;
}

footer .inner .box03 {}

footer .inner .box03 ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

footer .inner .box03 ul li {
    border-right: 1px solid #9b9b9b;
    padding-right: 7px;
    margin-right: 7px;
}

footer .inner .box03 ul li a {
    color: #5a5a5a;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    font-size: 0.9em;
}

footer .inner .text_box,
footer .text_box {
    margin-top: 0;
}

footer .inner .text_box p,
footer .text_box p {
    font-size: 0.7em;
}

footer .inner .text_box p a,
footer .text_box p a {
    color: #a07a8d;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

footer .inner .text_box p a:hover,
footer .text_box p a:hover {
    opacity: 0.6;
}

footer .inner .box04 {
    width: 300px;
    margin: 2rem auto 0;
    text-align: center;
}

footer .inner .box04 a {}

footer .inner .box04 a img {}

footer .cop {
    margin-top: 0.5rem;
    font-size: 0.75em;
}

/*sub共通----------*/
.sub_fv {
    padding: 4rem 0 0;
}

.sub_fv .subtop_box {
    width: 1400px;
    max-width: 95%;
    margin: 0 auto;
}

.sub_fv .subtop_box p {
    width: 800px;
    max-width: 90%;
    margin: 1.5rem auto 0;
}

.sub_section {
    padding: 4rem 0;
}

.sub_section:last-of-type {
    padding: 4rem 0 6rem;
}

.sub_section .sub_box {
    width: 1400px;
    max-width: 85%;
    margin: 0 auto;
}

.subh2 {
    color: #5a5a5a;
    font-size: 26px;
    text-align: center;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 5px;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.breadcrumbs ul li {
    padding: 0 3px;
}

.breadcrumbs ul li a {
    color: #5a5a5a;
}

/*QA----------*/
#qa_fv {}

#qa_01 {}

#qa_01 .top_box {}

#qa_01 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#qa_01 .sub_box ul li {
    width: 48%;
    border-bottom: 1px solid #c0c0c0;
}

#qa_01 .sub_box ul li dl {}

#qa_01 .sub_box ul li dl dt {
    padding: 15px 30px;
    position: relative;
    z-index: 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#qa_01 .sub_box ul li dl dt:hover {
    opacity: 0.6;
}

#qa_01 .sub_box ul li dl dt::before {
    content: "Q";
    position: absolute;
    z-index: -1;
    left: 5px;
}

#qa_01 .sub_box ul li dl dt::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14.7px 8.5px 0 8.5px;
    border-color: #5a5a5a transparent transparent transparent;
}

#qa_01 .sub_box ul li dl dd {
    padding: 15px;
    padding-top: 0;
    line-height: 1.8;
    letter-spacing: 1px;
    display: none;
}

/*blog----------*/
#blog_01 .sub_box .news_cat {
    width: 800px;
    max-width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#blog_01 .sub_box .news_cat li.cat_00 {
    width: 24%;
    text-align: center;
    border-bottom: 3px solid #c0c0c0;
    padding: 5px 0;
    font-weight: 800;
    color: #a5a5a5;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    cursor: pointer;
}

#blog_01 .sub_box .news_cat li.cat_00.active {
    border-bottom: 3px solid #d19ab4;
    color: #5a5a5a;
}

#blog_01 .sub_box .news_box00 {
    display: none;
}

#blog_01 .sub_box .news_box00.active {
    display: block;
}

#blog_01 .sub_box .news_box00 ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

#blog_01 .sub_box .news_box00 ul li {
    width: 50%;
    margin-bottom: 3%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#blog_01 .sub_box .news_box00 ul li:hover {
    opacity: 0.6;
}

#blog_01 .sub_box .news_box00 ul li a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#blog_01 .sub_box .news_box00 ul li:nth-of-type(even) {}

#blog_01 .sub_box .news_box00 ul li .img_box {
    width: 200px;
    max-width: 30%;
    max-height: 200px;
    height: 12.75vw;
    background-color: #000;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

#blog_01 .sub_box .news_box00 ul li .img_box img {}

#blog_01 .sub_box .news_box00 ul li .txt_box {
    max-width: 70%;
    padding: 0 3%;
}

#blog_01 .sub_box .news_box00 ul li .txt_box dl {}

#blog_01 .sub_box .news_box00 ul li .txt_box dl dt {
    font-weight: 600;
    color: #5c5c5c;
}

#blog_01 .sub_box .news_box00 ul li .txt_box dl dd {
    color: #d19ab4;
    font-weight: 600;
    margin: 8px 0px;
}

#blog_01 .sub_box .news_box00 ul li .txt_box p {
    font-weight: 900;
    font-size: 16px;
}

#blog_01 .sub_box .blog_navi {
    margin-top: 1.5rem;
}

#blog_01 .sub_box .blog_navi ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#blog_01 .sub_box .blog_navi ul li {
    font-size: 14px;
    border: 1px solid #5a5a5a;
    margin: 0 2.5px;
}

#blog_01 .sub_box .blog_navi ul li a {
    color: #5a5a5a;
    padding: 6px 10px;
    display: block;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#blog_01 .sub_box .blog_navi ul li.active a {
    color: #fff;
    background-color: #5a5a5a;
    pointer-events: none;
}


#blog_01 .sub_box .blog_navi ul li a:hover {
    color: #fff;
    background-color: #5a5a5a;
}

/*law----------*/
#law_02 {}

#law_02 ul {
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    width: 100%;
    text-align: left;
    line-height: 180%;
}

#law_02 ul li {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
}

#law_02 ul li h4 {
    padding: 15px;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    color: #333;
    background-color: #f7f7f7;
    font-weight: normal;
    vertical-align: middle;
    display: flex;
    align-items: center;
    width: 250px;
    max-width: 36%;
}

#law_02 ul li div {
    padding: 35px;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    vertical-align: middle;
    width: calc(100% - 250px);
    min-width: 64%;
}

#law_02 ul li div a {
    color: #007aff;
}

#law_02 ul li div ol {
    padding: 0;
}

#law_02 ul li div ol li {
    list-style: auto;
    margin-bottom: 15px;
}

#law_02 ul li div ol li li {
    margin-bottom: 0px;
    margin-top: 5px;
    margin-left: 15px;
}

/*terms----------*/
#terms_id {}

#terms_id .sub_box {
    width: 1000px;
}

#terms_id .sub_box h3 {
    background-color: #ffe8f3;
    padding: 15px;
    font-size: 1.3em;
    border-left: 3px solid #d19ab4;
    margin: 50px 0 30px;
}

#terms_id .sub_box h4 {
    font-size: 1.2em;
    padding: 10px 5px;
    border-bottom: 1px solid #b7b7b7;
    border-top: 1px solid #b7b7b7;
    margin: 30px 0 15px;
}

#terms_id .sub_box p {
    margin-bottom: 15px;
}

#terms_id .sub_box p.notice {
    color: #e70808;
    text-align: right;
    font-size: 0.9em;
}

#terms_id .sub_box ol {
    padding: 0;
    margin: 0;
}

#terms_id .sub_box ol li {
    list-style: none;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    z-index: 0;
}

#terms_id .sub_box ol li::before {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    top: 0;
    text-align: center;
}

#terms_id .sub_box ol.num02 li:nth-of-type(1)::before {
    content: "1.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(2)::before {
    content: "2.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(3)::before {
    content: "3.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(4)::before {
    content: "4.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(5)::before {
    content: "5.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(6)::before {
    content: "6.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(7)::before {
    content: "7.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(8)::before {
    content: "8.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(9)::before {
    content: "9.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(10)::before {
    content: "10.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(11)::before {
    content: "11.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(12)::before {
    content: "12.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(13)::before {
    content: "13.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(14)::before {
    content: "14.";
}

#terms_id .sub_box ol.num02 li:nth-of-type(15)::before {
    content: "15.";
}

#terms_id .sub_box ol.num01 li:nth-of-type(1)::before {
    content: "(1)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(2)::before {
    content: "(2)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(3)::before {
    content: "(3)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(4)::before {
    content: "(4)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(5)::before {
    content: "(5)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(6)::before {
    content: "(6)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(7)::before {
    content: "(7)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(8)::before {
    content: "(8)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(9)::before {
    content: "(9)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(10)::before {
    content: "(10)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(11)::before {
    content: "(11)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(12)::before {
    content: "(12)";
}

#terms_id .sub_box ol.num01 li:nth-of-type(13)::before {
    content: "(13)";
}

#terms_id .sub_box ol li:last-of-type {
    margin-bottom: 0;
}

#terms_id .sub_box ol li ol {
    margin-top: 15px;
}

#terms_id .sub_box ol li ol li {
    margin-bottom: 10px;
}

#terms_id .sub_box ol li dl {}

#terms_id .sub_box ol li dt {
    font-weight: bold;
    margin-bottom: 5px;
}

#terms_id .sub_box a {
    color: #007aff;
}

#terms_id .sub_box #term_13 {
    padding-top: 150px;
    margin-top: -150px;
    display: block;
}

#terms_id .sub_box table {
    width: 100%;
    border-left: 1px solid #b7b7b7;
    border-top: 1px solid #b7b7b7;
    margin: 30px 0 10px;
}

#terms_id .sub_box table tr {}

#terms_id .sub_box table td {
    border-right: 1px solid #b7b7b7;
    border-bottom: 1px solid #b7b7b7;
    text-align: center;
    padding: 10px 5px;
}

#terms_id .sub_box table tr td:nth-of-type(1) {
    background-color: #d19ab4;
    color: #fff;
}

/*mypage----------*/
#mypage_fv .breadcrumbs {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

#mypage_fv h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2f2f2f;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 20px;
}

#mypage_fv p {
    font-size: 16px;
    font-weight: 500;
    color: #2f2f2f;
    text-align: center;
    margin-bottom: 20px;
}

#mypage_01 {
    color: #2f2f2f;
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: 4rem 0 8rem;
}

#mypage_01::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 200vw;
    height: 200vw;
    background: radial-gradient(#910747, #fce1ee 70%);
    bottom: 15px;
    left: 50%;
    margin: auto;
    border-radius: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0px 0px 15px #0000003d;
}

#mypage_01 .sub_box {}

#mypage_01 .sub_box h3 {
    text-align: center;
    font-size: 20px;
}

#mypage_01 .sub_box .icon_box {
    width: 100px;
    margin: 2rem auto;
}

#mypage_01 .sub_box .name_box {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

#mypage_01 .sub_box .name_box span {
    display: block;
    font-size: 0.85em;
}

#mypage_01 .sub_box .my_detail {
    width: 600px;
    max-width: 100%;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#mypage_01 .sub_box .my_detail li {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    width: 33.33333%;
}

#mypage_01 .sub_box .my_detail li:nth-of-type(2) {
    position: relative;
    z-index: 0;
}

#mypage_01 .sub_box .my_detail li:nth-of-type(2)::before,
#mypage_01 .sub_box .my_detail li:nth-of-type(2)::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 60%;
    background-color: #2f2f2f;
    top: 0;
    bottom: 0;
    margin: auto;
}

#mypage_01 .sub_box .my_detail li:nth-of-type(2)::before {
    left: 0;
}

#mypage_01 .sub_box .my_detail li:nth-of-type(2)::after {
    right: 0;
}

#mypage_01 .sub_box .my_detail li span {
    display: block;
    font-size: 1.4em;
    font-weight: 600;
}

#mypage_02 {}

#mypage_02 .sub_box {}

#mypage_02 .sub_box.banner {
    width: 600px;
    max-width: 95%;
    margin: 0 auto;
    margin-top: 0rem;
    margin-bottom: 3rem;
}

#mypage_02 .sub_box.banner a {}

#mypage_02 .sub_box.banner a img {
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    box-shadow: 0px 0px 10px #adadad52;
}

#mypage_02 .sub_box.banner a img:hover {
    transform: scale(1.05);
    opacity: 0.6;
}

#mypage_02 .sub_box h4 {
    text-align: center;
    font-size: 20px;
}

#mypage_02 .sub_box h4 em {
    display: block;
    font-style: normal;
}

#mypage_02 .sub_box h4 span {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 0;
}

#mypage_02 .sub_box h4 span a {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    left: -23px;
    font-size: 16px;
    margin: auto;
    line-height: 16px;
    border: 1px solid #5a5a5a;
    border-radius: 50%;
}

#mypage_02 .sub_box .glaph_box {
    padding: 3rem 0;
    width: 600px;
    margin: 0 auto;
}

#mypage_02 .sub_box .glaph_box span {
    color: #d19ab4;
    position: absolute;
    z-index: -1;
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
}

#mypage_02 .sub_box .glaph_box span:nth-of-type(1) {
    top: -28px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

#mypage_02 .sub_box .glaph_box span:nth-of-type(2) {
    top: 105px;
    right: -95px;
}

#mypage_02 .sub_box .glaph_box span:nth-of-type(3) {
    right: 0;
    bottom: -28px;
}

#mypage_02 .sub_box .glaph_box span:nth-of-type(4) {
    left: 0;
    bottom: -28px;
}

#mypage_02 .sub_box .glaph_box span:nth-of-type(5) {
    top: 105px;
    left: -61px;
}

#mypage_02 .sub_box .graph-bg {
    position: relative;
    z-index: 0;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: url(../img/glah_temp.png) no-repeat center / contain;
}

#mypage_02 .sub_box .graph-bg .pentagon {
    margin: 0 auto;
    width: 300px;
    height: 300px;
    background: #f0d0df;
    clip-path: polygon(50% 12%, 69% 47%, 73% 81%, 34% 61%, 20% 43%);
    animation: graphAnim04 3s forwards;
}

@keyframes graphAnim04 {
    0% {
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }

    100% {
        clip-path: polygon(0, 0, 0, 0, 0);
    }
}

#mypage_02 .sub_box .rental_box {
    width: 350px;
    max-width: 100%;
    margin: 1.5rem auto 0;
    text-align: center;
    font-weight: 700;
    box-shadow: 0px 0px 7px #00000036;
    border-radius: 50px;
    padding: 20px 0;
}

#mypage_03 {}

#mypage_03 .notice {
    text-align: center;
    margin: 30px 0 0;
    line-height: 100%;
}

#mypage_03 .notice a {
    color: #9f750f;
    text-decoration: underline;
    font-size: 0.9em;
}

#mypage_03 .sub_box {}

#mypage_03 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#mypage_03 .sub_box ul li {
    width: 48%;
    background-color: #f0f0ed;
    margin-bottom: 0.75rem;
    padding: 0 0 0 7%;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 0;
    border-radius: 7px;
    height: 77px;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#mypage_03 .sub_box ul li:hover {
    opacity: 0.6;
}

#mypage_03 .sub_box ul li::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 8%;
    max-width: 50px;
    min-width: 35px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 3%;
    margin: auto;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 100% auto;
}

#mypage_03 .sub_box ul li:nth-of-type(1)::before {
    background-image: url("../img/mypage_icon01.png");
}

#mypage_03 .sub_box ul li:nth-of-type(2)::before {
    background-image: url("../img/mypage_icon02.png");
}

#mypage_03 .sub_box ul li:nth-of-type(3)::before {
    background-image: url("../img/mypage_icon03.png");
}

#mypage_03 .sub_box ul li:nth-of-type(4)::before {
    background-image: url("../img/mypage_icon04.png");
}

#mypage_03 .sub_box ul li:nth-of-type(5)::before {
    background-image: url("../img/mypage_icon05.png");
}

#mypage_03 .sub_box ul li:nth-of-type(6)::before {
    background-image: url("../img/mypage_icon06.png");
}

#mypage_03 .sub_box ul li:nth-of-type(7)::before {
    background-image: url("../img/mypage_icon07.png");
}

#mypage_03 .sub_box ul li:nth-of-type(8)::before {
    background-image: url("../img/mypage_icon08.png");
}

#mypage_03 .sub_box ul li::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 4%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 15.6px;
    border-color: transparent transparent transparent #5a5a5a;
}

#mypage_03 .sub_box ul li a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#mypage_03 .sub_box ul li span {
    display: block;
    font-size: 0.75em;
    font-weight: 500;
}

#mypage_03 .sub_box .logout {}

#mypage_03 .sub_box .logout a {
    width: 180px;
    max-width: 100%;
    margin: 1.5rem auto 0;
    text-align: center;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 0;
    display: block;
    color: #5a5a5a;
    border: 1px solid #5a5a5a;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#mypage_03 .sub_box .logout a:hover {
    background-color: #5a5a5a;
    color: #fff;
}

/*product----------*/
#top_02 {}

#product_01 {}

#product_01 .select_box {
    width: 100%;
    background-color: #f0f0ed;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

#product_01 .select_box .product_cat {
    margin-right: 2.5%;
    width: 200px;
    max-width: 40%;
}

#product_01 .select_box .if_cat {
    width: 200px;
    max-width: 40%;
}

#product_01 select {
    border-radius: 3px;
    padding: 10px 15px 10px 5px;
    font-weight: 600;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 15px;
    color: #5a5a5a;
    width: 100%;
}

#product_01 select option {
    width: 100%;
}

#product_01 .sub_box .list_top {
    margin: 10px 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

#product_01 .sub_box .list_top div:nth-of-type(1) {}

#product_01 .sub_box .list_top div:nth-of-type(1) p {}

#product_01 .sub_box .list_top div:nth-of-type(1) p span {}

#product_01 .sub_box .list_top div:nth-of-type(2) {
    width: 300px;
    max-width: 50%;
}

#product_01 .sub_box .list_top div:nth-of-type(2) dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#product_01 .sub_box .list_top div:nth-of-type(2) dl dt {
    width: 47.5%;
    border-right: 1px solid #a8a8a8;
    margin-right: 5%;
    padding-right: 5%;
}

#product_01 .sub_box .list_top div:nth-of-type(2) dl dd {
    width: 47.5%;
}

#product_01 .sub_box .list_top div:nth-of-type(2) dl select {
    border: 0px;
    padding: 0px 15px 0px 0px;
    font-weight: 400;
    background-color: #fff;
}

#product_01 .sub_box .list_top div:nth-of-type(2) dl dt,
#product_01 .sub_box .list_top div:nth-of-type(2) dl dd {
    position: relative;
    z-index: 0;
}

#product_01 .sub_box .list_top div:nth-of-type(2) dl dt::before,
#product_01 .sub_box .list_top div:nth-of-type(2) dl dd::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6.9px 4px 0 4px;
    border-color: #000000 transparent transparent transparent;
    top: 0;
    bottom: 0;
    margin: auto;
}

#product_01 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}

#product_01 .sub_box ul li {
    width: 19%;
    background-color: #fff;
    box-shadow: 0px 0px 10px #adadad52;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    z-index: 0;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
    margin-bottom: 25px;
    margin-right: calc(5% / 4);
}

#product_01 .sub_box ul li:nth-of-type(5n+5) {
    margin-right: 0;
}

#product_01 .sub_box ul li:hover {
    opacity: 0.6;
    transform: scale(1.05);
}

#product_01 .sub_box ul li a {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#product_01 .sub_box ul li .img_box {
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /*
    width: 135px;
    height: 135px;
    */
}

#product_01 .sub_box ul li .img_box span {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: #d19ab4;
    font-size: 16px;
    padding: 5px 9px;
    border-radius: 4px;
}

#product_01 .sub_box ul li .img_box img {
    max-height: 252px;
    height: 14vw;
}

#product_01 .sub_box ul li .txt_box {
    margin-top: 10px;
}

#product_01 .sub_box ul li .txt_box h3 {
    min-height: 50px;
    font-size: 16px;
    font-weight: 600;
}

#product_01 .sub_box ul li .txt_box h3 span {
    display: block;
    font-size: 15px;
    color: #f1b500;
}

#product_01 .sub_box ul li .txt_box h3 span em {
    color: #5a5a5a;
    letter-spacing: 1px;
}

#product_01 .sub_box ul li .txt_box dl {
    color: #d19ab4;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
}

#product_01 .sub_box ul li .txt_box dl dt {}

#product_01 .sub_box ul li .txt_box dl dd {}

#product_01 .sub_box ul li .txt_box p {
    margin: 10px 0 5px;
    font-size: 14px;
}

#product_01 .sub_box ul li .txt_box p.price {
    font-size: 17px;
    background-color: #f2f2f2;
    border: 1px solid #c4c4c4;
    padding: 5px 10px;
}

#product_01 .sub_box ul li .txt_box p span.bp,
#top_02 .top_box ul li .txt_box p span.bp {
    font-weight: normal;
    color: #fff;
    background: #D19AB4;
    border-radius: 5px;
    padding: 3px 7px;
    display: inline;
}

#product_01 .sub_box ul li .txt_box p span.sr,
#top_02 .top_box ul li .txt_box p span.sr {
    font-weight: normal;
    color: #fff;
    background: #95A0BB;
    border-radius: 5px;
    padding: 3px 7px;
    display: inline;
}

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

    #product_01 .sub_box ul li .txt_box p span.bp,
    #top_02 .top_box ul li .txt_box p span.bp,
    #product_01 .sub_box ul li .txt_box p span.sr,
    #top_02 .top_box ul li .txt_box p span.sr {
        font-size: 10px;
        padding: 3px;
    }
}

#product_01 .sub_box ul li .txt_box p span {
    font-weight: 800;
    padding-right: 7px;
}

.navi_sec {
    margin-bottom: 60px;
}



.navi_sec ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.navi_sec ul li {
    font-size: 14px;
    border: 1px solid #5a5a5a;
    margin: 0 2.5px;
    cursor: default;
}

.navi_sec ul li span {
    color: #5a5a5a;
    padding: 6px 10px;
    display: block;
}

.navi_sec ul li.active span {
    color: #fff;
    background-color: #5a5a5a;
    pointer-events: none;
}

.navi_sec ul li a {
    color: #5a5a5a;
    padding: 6px 10px;
    display: block;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

.navi_sec ul li a:hover {
    color: #fff;
    background-color: #5a5a5a;
}

/*cause----------*/
#cause_01 {}

#cause_01 .sub_box {
    width: 1000px;
    max-width: 100%;
}

#cause_01 .sub_box .img_box {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../img/cause_01bg.jpg);
    padding: 40% 0 5%;
    text-align: center;
}

#cause_01 .sub_box .img_box h3 {
    font-size: 30px;
    color: #fff;
    text-shadow: 0px 0px 10px #000000a6;
}

#cause_01 .sub_box .img_box img {
    width: 280px;
    max-width: 50%;
}

#cause_01 .sub_box p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    margin-top: 1.5rem;
}

#cause_02 {}

#cause_02 .sub_box {
    width: 1000px;
}

#cause_02 .sub_box ul {}

#cause_02 .sub_box ul li {}

#cause_02 .sub_box ul li:not(:last-of-type) {
    margin-bottom: 4rem;
}

#cause_02 .sub_box ul li h4 {
    font-size: 29px;
    color: #d19ab4;
}

#cause_02 .sub_box ul li .img_box {
    margin: 10px 0 25px;
}

#cause_02 .sub_box ul li dl {}

#cause_02 .sub_box ul li dl dt {
    font-weight: 600;
    font-size: 24px;
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

#cause_02 .sub_box ul li dl dt small {
    font-size: 0.7em;
    line-height: 125%;
    display: block;
    margin-top: 10px;
}

#cause_02 .sub_box ul li dl dt::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100px;
    height: 1px;
    background-color: #5a5a5a;
    bottom: 0;
    left: 0;
}

#cause_02 .sub_box ul li dl dd {
    line-height: 1.6;
    font-size: 18px;
}

/*unauthorized----------*/
#unauthorized_01 {}

#unauthorized_01 .sub_box {
    width: 1000px;
    max-width: 100%;
}

#unauthorized_01 .sub_box ul {}

#unauthorized_01 .sub_box ul li {}

#unauthorized_01 .sub_box ul li:not(:last-of-type) {
    margin-bottom: 4rem;
}

#unauthorized_01 .sub_box ul li h4 {
    font-size: 26px;
    color: #d19ab4;
    margin-bottom: 1rem;
}

#unauthorized_01 .sub_box ul li div {
    line-height: 1.6;
    font-size: 18px;
}

#unauthorized_01 .sub_box ul li dl {
    margin-top: 1rem;
}

#unauthorized_01 .sub_box ul li dl dt {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

#unauthorized_01 .sub_box ul li dl dd {
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

#unauthorized_02 {}

#unauthorized_02 .sub_box {
    width: 1000px;
    max-width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

/*product_detial----------*/
#product_detial_01 {}

#product_detial_01 .sub_box {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#product_detial_01 .sub_box .img_box {
    width: 39%;
    position: sticky;
    top: 25%;
}

#product_detial_01 .sub_box .img_box .product_img {
    position: relative;
    overflow: hidden;
    width: 100%;
}

#product_detial_01 .sub_box .img_box .swiper-container04 {
    position: relative;
}

#product_detial_01 .sub_box .img_box .swiper-container04 .swiper-slide {
    text-align: center;
}

#product_detial_01 .sub_box .img_box .swiper-container04 .swiper-button-prev,
#product_detial_01 .sub_box .img_box .swiper-container04 .swiper-button-next {
    background-color: #ffffffe8;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px #8d8d8d70;
}

#product_detial_01 .sub_box .img_box .swiper-container04 .swiper-button-next:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10.4px;
    border-color: transparent transparent transparent #b7b7b7;
}

#product_detial_01 .sub_box .img_box .swiper-container04 .swiper-button-prev:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 10.4px 6px 0;
    border-color: transparent #b7b7b7 transparent transparent;
}

#product_detial_01 .sub_box .img_box .slider-thumbnail01 {
    margin-top: 15px;
}

#product_detial_01 .sub_box .img_box .slider-thumbnail01 .swiper-slide {
    cursor: pointer;
    border: 1px solid #c5c5c5;
}

#product_detial_01 .sub_box .txt_box {
    width: 57%;
}

#product_detial_01 .sub_box .txt_box .top {}

#product_detial_01 .sub_box .txt_box .top dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    color: #d19ab4;
    font-size: 17px;
}

#product_detial_01 .sub_box .txt_box .top dl dt {
    font-weight: 600;
}

#product_detial_01 .sub_box .txt_box .top dl dd {}

#product_detial_01 .sub_box .txt_box .top dl dd span {
    color: #f1b500;
}

#product_detial_01 .sub_box .txt_box .top dl dd span em {
    color: #5a5a5a;
    letter-spacing: 1px;
    font-weight: bold;
}

#product_detial_01 .sub_box .txt_box .top h2 {
    font-size: 24px;
    margin-top: 10px;
}

#product_detial_01 .sub_box .txt_box .top ul.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin: 0.5rem 0;
}

#product_detial_01 .sub_box .txt_box .top ul.breadcrumb li {
    position: relative;
    z-index: 0;
}

#product_detial_01 .sub_box .txt_box .top ul.breadcrumb li:not(:last-of-type)::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 6px;
    height: 6px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    bottom: 0;
    top: 0;
    margin: auto;
    right: 4px;
    transform: rotate(-45deg);
}

#product_detial_01 .sub_box .txt_box .top ul.breadcrumb li:not(:last-of-type) {
    padding-right: 13px;
}

#product_detial_01 .sub_box .txt_box .top ul.breadcrumb li a {
    color: #30b7e0;
}

#product_detial_01 .sub_box .txt_box .top ul.cat_list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

#product_detial_01 .sub_box .txt_box .top ul.cat_list li {}

#product_detial_01 .sub_box .txt_box .top ul.cat_list li:not(:last-of-type) {
    padding-right: 5px;
}

#product_detial_01 .sub_box .txt_box .top ul.cat_list li a {
    border: 1px solid #939393;
    color: #5a5a5a;
    padding: 0px 9px;
    border-radius: 50px;
}

#product_detial_01 .sub_box .txt_box .cart {
    width: 100%;
    margin: 2rem 0;
    background-color: #f0f0ed;
    padding: 2rem 2.5%;
}

#product_detial_01 .sub_box .txt_box .cart ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}

#product_detial_01 .sub_box .txt_box .cart ul li:not(:last-of-type) {
    margin-bottom: 2.5%;
}

#product_detial_01 .sub_box .txt_box .cart ul li {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border: 3px solid #fff;
    transition: all ease 0.3s 0s;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li {
    width: 100%;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dt {
    width: 100% !important;
    margin-bottom: 5px;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd {
    width: 100% !important;
}

#product_detial_01 .sub_box .txt_box .cart ul li.active {
    border: 3px solid #d19ab4;
    background-color: #fff0f7;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left .img {
    width: 100px;
    height: 50px;
    background-color: #000;
    border-radius: 5px;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left .img img {
    width: 100px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left .txt {
    margin-left: 5px;
    width: calc(100% - 85px);
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left .txt .price {
    display: none;
}

#product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .right {}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt {
    width: 100%;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 {
    font-size: 14px;
    font-weight: normal;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 {}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong {
    font-size: 1.2em;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong.s1 {
    width: 100%;
    display: block;
    padding: 8.5px 8.5px;
    border-bottom: 1px solid #b6b6b6;
    font-weight: 500;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong.s2 {
    padding: 8.5px 8.5px;
    width: 100%;
    display: block;
    font-weight: 500;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong.s2 s {}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong.s2 span {
    font-weight: bold;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong.s2 span em {
    font-style: normal;
    font-size: 2em;
    line-height: 100%;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong.s2 span.red {
    font-size: 13px;
    border: 1px solid;
    display: inline-block;
    padding: 3px 5px;
    font-weight: bold;
    margin-top: 5px;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong span {
    font-size: 1.1em;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dt p {
    font-size: 14px;
    padding: 0px 8.5px 8.5px;
    font-weight: 500;
}

#product_detial_01 .sub_box .txt_box .cart ul li dl dd {}

#product_detial_01 .sub_box .txt_box .cart ul li dl dd span {
    font-size: 13px;
    border: 1px solid #c5c5c5;
    padding: 2.5px 7px;
    border-radius: 3px;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .cart_link {
    max-width: 80%;

}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .caet_link {
    background-color: #D19AB4;
    color: #fff;
    text-align: center;
    width: calc(100% - 70px);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-radius: 5px;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .caet_link span {
    position: relative;
    z-index: 0;
    padding-left: 23px;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .caet_link span::before {
    content: "";
    position: absolute;
    background-image: url(../img/cart_w.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .fav_box {
    background-color: #d2d2d2;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    position: relative;
    z-index: 0;
    transition: all ease 0.3s 0s;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .fav_box.active {
    background-color: #d19ab4;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .fav_box::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    margin: auto;
    background-image: url(../img/heat_w.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    transition: all ease 0.3s 0s;
    -webkit-transition: all ease 0.3s 0s;
    -moz-transition: all ease 0.3s 0s;
}

#product_detial_01 .sub_box .txt_box .cart .bottom_box .fav_box.active::before {
    background-image: url(../img/heat_w2.png);
}

#product_detial_01 .sub_box .txt_box .bottom {}

#product_detial_01 .sub_box .txt_box .bottom .note {
    background-color: #f0f0ed;
    margin: 2rem 0;
    padding: 2rem 2.5%;
}

#product_detial_01 .sub_box .txt_box .bottom .note h4 {
    font-size: 17px;
    position: relative;
    z-index: 0;
    padding-left: 30px;
    line-height: 25px;
}

#product_detial_01 .sub_box .txt_box .bottom .note h4::before {
    content: "";
    position: absolute;
    background-image: url(../img/check.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 25px;
    height: 25px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

#product_detial_01 .sub_box .txt_box .bottom .note ul {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#product_detial_01 .sub_box .txt_box .bottom .note ul li {
    width: 31%;
    text-align: center;
    background-color: #d2c5a6;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 0;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box {
    position: relative;
    z-index: 0;
    min-height: 100px;
    max-height: 450px;
    overflow: hidden;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box.active {
    max-height: unset;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box iframe {
    max-width: 100%;
    height: 27.5vw;
    max-height: 445px;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box:not(:last-of-type) {
    margin-bottom: 3rem;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box h5 {
    font-size: 17px;
    margin-bottom: 1rem;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box p {
    margin: 1.5rem 0;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box img {}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    cursor: pointer;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next.active {
    position: relative;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next::before {
    content: "";
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 300%;
    left: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(#fff0 10%, #fff 60%);
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next.active::before {
    content: none;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: #fff;
    border: 1px solid #a5a5a5;
    border-radius: 5px;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next span {
    position: relative;
    z-index: 0;
    padding-left: 17px;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next span.open {
    display: inline-block;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next span.close {
    display: none;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next.active span.open {
    display: none;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next.active span.close {
    display: inline-block;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next span::before {
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 17px;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next span.open::before {
    content: "+";
    line-height: 15px;

}

#product_detial_01 .sub_box .txt_box .bottom .content_box .next span.close::before {
    content: "-";
    line-height: 14px;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box dl {
    margin: 1.5rem 0;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box dl dt {
    font-weight: 600;
}

#product_detial_01 .sub_box .txt_box .bottom .content_box dl dd {}

#product_detial_02 {
    padding: 4rem 0 2rem;
}

#product_detial_02 .sub_box {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#product_detial_02 .sub_box .review_top {
    width: 300px;
    max-width: 100%;
    position: sticky;
    top: 20%;
}

#product_detial_02 .sub_box .review_top h4 {
    font-size: 17px;
}

#product_detial_02 .sub_box .review_top p {
    color: #f1b500;
    margin: 10px 0;
}

#product_detial_02 .sub_box .review_top p em {
    color: #5a5a5a;
    letter-spacing: 1px;
    font-weight: bold;
}

#product_detial_02 .sub_box .review_top p span {
    display: block;
    color: #ababab;
}

#product_detial_02 .sub_box .review_top ul {}

#product_detial_02 .sub_box .review_top ul li {}

#product_detial_02 .sub_box .review_top ul li:not(:last-of-type) {
    margin-bottom: 5px;
    cursor: pointer;
}

#product_detial_02 .sub_box .review_top ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    color: #4fa5d7;
    font-weight: 500;
}

#product_detial_02 .sub_box .review_top ul li dl dt {
    width: 45px;
}

#product_detial_02 .sub_box .review_top ul li dl dd:nth-of-type(1) {
    width: calc(100% - 90px);
    display: block;
    height: 18px;
    background-color: #dfdfdf;
    border-radius: 3px;
    position: relative;
    z-index: 0;
}

#product_detial_02 .sub_box .review_top ul li dl dd:nth-of-type(1) span {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background-color: #f1b500;
    height: 100%;
    border-radius: 3px;
}

#product_detial_02 .sub_box .review_top ul li dl dd:nth-of-type(2) {
    width: 45px;
    text-align: right;
}

#product_detial_02 .sub_box .review_contbox {
    width: calc(100% - 330px);
}

#product_detial_02 .sub_box .review_cont00 {
    display: none;
    margin-bottom: 2rem;
}

#product_detial_02 .sub_box .review_cont00.active {
    display: block;
}

#product_detial_02 .sub_box .review_cont00 ul {}

#product_detial_02 .sub_box .review_cont00 ul li {}

#product_detial_02 .sub_box .review_cont00 ul li:not(:last-of-type) {
    margin-bottom: 2rem;
}

#product_detial_02 .sub_box .review_cont00 ul li h5 {
    font-size: 16px;
    margin-right: 10px;
    font-weight: 500;
}

#product_detial_02 .sub_box .review_cont00 ul li h5 i {
    width: 40px;
    display: inline-block;
    margin-right: 10px;
}

#product_detial_02 .sub_box .review_cont00 ul li p {
    color: #f1b500;
}

#product_detial_02 .sub_box .review_cont00 ul li p em {
    color: #5a5a5a;
    letter-spacing: 1px;
    font-weight: bold;
}

#product_detial_02 .sub_box .review_cont00 ul li p span {
    display: block;
    color: #ababab;
}

#product_detial_02 .sub_box .review_cont00 ul li dl {
    margin: 10px 0;
}

#product_detial_02 .sub_box .review_cont00 ul li dl dt {
    font-size: 1.15em;
    margin-bottom: 5px;
    font-weight: 600;
}

#product_detial_02 .sub_box .review_cont00 ul li dl dd {}

#product_detial_02 .sub_box .review_cont00 ul li .helpful_box {}

#product_detial_02 .sub_box .review_cont00 ul li .helpful_box span {}

#product_detial_02 .sub_box .review_cont00 ul li .helpful_box a {
    border: 1px solid #c5c5c5;
    padding: 3px 6px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 5px;
}

#product_detial_02 .sub_box .review_bottom {
    width: 100%;
}

#product_detial_02 .sub_box .review_bottom a {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #5a5a5a;
    display: block;
    border: 1px solid #5a5a5a;
    border-radius: 5px;
    padding: 9px 0;
    margin-top: 15px;
}

#product_detial_02 .sub_box .review_bottom .bottom_link01 {}

#product_detial_02 .sub_box .review_bottom .bottom_link02 {
    font-weight: 600;
}

/*voice----------*/
#voice_01 {
    background-color: #f5f5f5;
    margin-top: 4rem;
}

#voice_01 .sub_box {}

#voice_01 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#voice_01 .sub_box ul li {
    width: 48%;
    margin-bottom: 4%;
}

#voice_01 .sub_box ul li dl {}

#voice_01 .sub_box ul li dl dt {
    height: 22vw;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#voice_01 .sub_box ul li dl dd {
    margin-top: 1rem;
}

#voice_01 .sub_box ul li dl dd h5 {
    font-size: 17px;
    margin-bottom: 10px;
}

#voice_01 .sub_box ul li dl dd p {
    background-color: #fff;
    border-radius: 5px;
    padding: 3%;
    line-height: 1.8;
}

/*hygiene----------*/
#hygiene_fv {}

#hygiene_fv .subtop_box p {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}

#hygiene_01 {}

#hygiene_01 .sub_box {
    width: 800px;
}

#hygiene_01 .sub_box ul {}

#hygiene_01 .sub_box ul li {}

#hygiene_01 .sub_box ul li:not(:last-of-type) {
    margin-bottom: 2rem;
}

#hygiene_01 .sub_box ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#hygiene_01 .sub_box ul li dl dt {
    width: 175px;
}

#hygiene_01 .sub_box ul li dl dd {
    width: calc(100% - 200px);
}

#hygiene_01 .sub_box ul li dl dd h5 {
    font-weight: 600;
    font-size: 20px;
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

#hygiene_01 .sub_box ul li dl dd h5::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100px;
    height: 1px;
    background-color: #5a5a5a;
    bottom: 0;
    left: 0;
}

#hygiene_01 .sub_box ul li dl dd p {
    line-height: 1.6;
}

#hygiene_02 {}

#hygiene_02 .sub_box {}

#hygiene_02 .sub_box .inner:not(:last-of-type) {
    margin-bottom: 4rem;
}

#hygiene_02 .sub_box .inner h3 {
    font-size: 23px;
    color: #d19ab4;
    text-align: center;
    margin-bottom: 20px;
}

#hygiene_02 .sub_box ul {}

#hygiene_02 .sub_box ul li {
    padding: 30px 0;
    border-bottom: 1px solid #c0c0c0;
}

#hygiene_02 .sub_box ul li:first-of-type {
    border-top: 1px solid #c0c0c0;
}

#hygiene_02 .sub_box ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

#hygiene_02 .sub_box ul li dl dt {
    font-weight: 600;
    font-size: 20px;
    width: 175px;
    padding-left: 35px;
    position: relative;
}

#hygiene_02 .sub_box ul li dl dt::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    background-color: #d19ab4;
    font-size: 16px;
    line-height: 16px;
    padding: 5px 9px;
    border-radius: 4px;
}

#hygiene_02 .sub_box ul li:nth-of-type(1) dl dt::before {
    content: "1";
}

#hygiene_02 .sub_box ul li:nth-of-type(2) dl dt::before {
    content: "2";
}

#hygiene_02 .sub_box ul li:nth-of-type(3) dl dt::before {
    content: "3";
}

#hygiene_02 .sub_box ul li:nth-of-type(4) dl dt::before {
    content: "4";
}

#hygiene_02 .sub_box ul li:nth-of-type(5) dl dt::before {
    content: "5";
}

#hygiene_02 .sub_box ul li:nth-of-type(6) dl dt::before {
    content: "6";
}

#hygiene_02 .sub_box ul li dl dd {
    width: calc(100% - 200px);
}

/*news_article----------*/
.article_page .subtop_box {
    width: 1000px;
}

.article_page .subh2 {
    font-size: 23px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}

.article_page .subh2::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 60px;
    height: 1px;
    content: "";
    background-color: #7d8679;
    transform: translate(-50%);
}

.article_page.sub_section {
    width: 800px;
    max-width: 95%;
    margin: 0 auto;
    padding-top: 2rem;
}

.article_sec01 {}

.article_sec01 .sub_box {
    width: 1000px;
}

.article_sec01 .sub_box h2 {
    margin-bottom: 1rem;
    font-size: 1.4em;
}

.article_sec01 .sub_box h3 {
    margin-bottom: 1rem;
    font-size: 1.2em;
}

.article_sec01 .sub_box h4 {
    margin-bottom: 1rem;
    font-size: 1.15em;
}

.article_sec01 .sub_box p {
    line-height: 180%;
    margin-bottom: 10px;
}

.article_sec01 .sub_box figure {
    margin: 0;
    text-align: center;
}

.article_sec01 .sub_box img {
    margin: 2rem 0;
}

.article_sec01 .sub_box a {
    color: #d19ab4 !important;
    font-weight: bold;
    border: 1px solid #d19ab4;
    padding: 8px 20px;
    display: inline-block;
    margin: 1rem 0;
}

/*contact----------*/

#contact_fv .subtop_box p {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

#contact_01 .subtop_box p span {
    display: block;
    color: #e13f3f;
}

/*request----------*/
.request_description {
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
}

#contact_01 {}

#contact_01 .sub_box {
    width: 700px;
    text-align: center;
}

#contact_01 .sub_box .contactForm span {
    display: block;
    text-align: left;
}

#contact_01 .sub_box .contactForm__inquiry {
    margin-top: 1rem;
}

#contact_01 .sub_box .contactForm__inquiry p {
    font-size: 14px;
    line-height: 1.6;
}



button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    background: #000;
    border: none;
    color: #fff;
    outline: none;
    padding: 1rem;
    text-decoration: none;
    vertical-align: bottom;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    background-color: #d19ab4;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    opacity: 0.8;
}

.contactForm {}

.mw_wp_form_confirm .contactForm {}

.contactForm .item {
    padding: 1rem 0;
}

.contactForm .item span a {
    color: #f00;
    padding: 0 3px;
    text-decoration: underline;
}

.contactForm .item span {
    color: #f00;
}

.contactForm .item p {
    padding: 1rem 0;
}

.err_msg {
    color: #f00;
}

.lineButtonBox {
    text-align: center;
    margin: 20px 0;
}

.link {
    text-decoration: underline;
}

.mw_wp_form_confirm .contactForm .item {}

.contactForm .ttlBox {
    margin-bottom: 1rem;
}

.contactForm .ttl {
    font-size: 16px;
    text-align: left;
    font-weight: normal;
    margin: 0;
}

.contactForm .ttl.is-required::after {
    content: "必須";
    line-height: 1;
    color: #ffffff;
    font-weight: 500;
    background-color: #d19ab4;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 14px;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}

.mw_wp_form_confirm .contactForm .form {
    text-align: left;
}

.contactForm .form .error {
    display: none;
}

.contactForm .error {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #d46073;
    margin-top: 2rem;
}

.contactForm .error .error {
    color: #d46073 !important;
    display: inline-block !important;
    font-weight: bold;
}

.contactForm .btnBox {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
textarea,
select {
    font-size: 15px;
    background-color: #f7f7f7;
    border: 1px solid #c0c0c0;
    padding: 1rem;
    width: 100%;
    border-radius: 0px;
}

.contactForm .item.error-pink input[type="text"],
.contactForm .item.error-pink input[type="email"],
.contactForm .item.error-pink input[type="url"],
.contactForm .item.error-pink input[type="tel"],
.contactForm .item.error-pink textarea,
.contactForm .item.error-pink select {
    border: 2px solid #d46073;
}

textarea {
    height: 25vw;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    outline: none;
    color: #5a5a5a;
    cursor: pointer;
}

.form-btn,
.reviewForm .form-submit input[type="submit"] {
    width: 100%;
    max-width: 53rem;
    margin: 2.6rem 0;
    padding: 5rem !important;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1;
}

.form-btn.is-clearBtn,
.reviewForm .form-submit input.is-clearBtn[type="submit"] {
    background-color: #ffffff;
    color: #747474;
}

.contactForm .item.radio {}

.contactForm .ttl span {
    line-height: 1;
    color: #ffffff;
    font-weight: 500;
    background-color: #afafaf;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 14px;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}

.contactForm .item.radio p {
    padding: 0;
    padding-top: 0.5rem;
}

.contactForm .item.radio p:first-of-type {
    padding-top: 1rem;
}

.contactForm .item.radio p.other {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.contactForm .item.radio p.other span {}

.contactForm .item.radio p.other span:nth-of-type(1) {
    width: 85px;
}

.contactForm .item.radio p.other span:nth-of-type(2) {
    width: calc(100% - 85px);
}

::-webkit-input-placeholder {
    color: #bdbdbd;
}

::-moz-placeholder {
    color: #bdbdbd;
}

:-ms-input-placeholder {
    color: #bdbdbd;
}

::-ms-input-placeholder {
    color: #bdbdbd;
}

::placeholder {
    color: #bdbdbd;
}

select::-ms-expand {
    display: none;
}

textarea::placeholder {
    color: #bdbdbd;
}

input::placeholder {
    color: #bdbdbd;
}

/*security----------*/
#security_fv p {
    text-align: center;
}

#security_01 .sub_box {
    width: 800px;
}

#security_01 .sub_box ul {}

#security_01 .sub_box ul li {}

#security_01 .sub_box ul li:not(:last-of-type) {
    margin-bottom: 4rem;
}

#security_01 .sub_box ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

#security_01 .sub_box ul li dl dt {
    width: 175px;
    background-color: #d19ab4;
    border-radius: 50%;
}

#security_01 .sub_box ul li dl dd {
    width: calc(100% - 200px);
}

#security_01 .sub_box ul li dl dd h5 {
    font-weight: 600;
    font-size: 20px;
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}



#security_01 .sub_box ul li dl dd p {
    line-height: 1.6;
}


#security_01 .sub_box ul li dl dd p span.contact-time {
    display: block;
    text-align: left;
    line-height: 1.6;
}

#security_01 .sub_box ul li dl dd ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

#security_01 .sub_box ul li dl dd ul li {
    margin-bottom: 0 !important;
    width: 48%;
}

#security_01 .sub_box ul li .link_box {
    padding: 5% 0;
}

#security_01 .sub_box ul li.line-button-box {
    text-align: center;
    margin-top: -2rem;
}

/*beginner----------*/
#beginner_01 {}

#beginner_01 .sub_box {
    width: 1000px;
}

#beginner_01 .sub_box .img_box {}

#beginner_01 .sub_box .img_box p {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    margin-top: 1.5rem;
}

#beginner_01 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
}

#beginner_01 .sub_box ul li {
    width: 21vw;
    max-width: 250px;
    background-color: #d19ab4;
    height: 21vw;
    max-height: 250px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

#beginner_01 .sub_box ul li span {
    display: block;
    width: 100%;
    font-size: 1.2em;
    font-weight: 600;
}

#beginner_01 .sub_box ul p {
    width: 100%;
    margin-top: 1.5rem;
}

#beginner_02 {}

#beginner_02 .box01 {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

#beginner_02 .box01 .sub_box {}

#beginner_02 .box01 .sub_box h4 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 2rem;
}

#beginner_02 .box01 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    width: 70%;
    margin: 0 auto;
}

#beginner_02 .box01 .sub_box ul li {
    width: 33%;
}

#beginner_02 .box01 .sub_box ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#beginner_02 .box01 .sub_box ul li dl dt {
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #a8a8a8;
    padding: 13%;
    width: 175px;
    max-width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}

#beginner_02 .box01 .sub_box ul li dl dt::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 1px;
    background-color: #a8a8a8;
    right: -100%;
    top: 0;
    bottom: 0;
    margin: auto;
}

#beginner_02 .box01 .sub_box ul li:last-of-type dl dt::before {
    content: none;
}

#beginner_02 .box01 .sub_box ul li dl dt img {}

#beginner_02 .box01 .sub_box ul li dl dd {
    width: 100%;
}

#beginner_02 .box01 .sub_box ul li dl dd a {
    color: #5a5a5a;
    border-bottom: 1px solid #5a5a5a;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}

#beginner_02 .box01 .sub_box ul li dl dd a:hover {
    opacity: 0.6;
}

#beginner_02 .box01 .sub_box ul li dl dd span {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
    z-index: 0;
}

#beginner_02 .box01 .sub_box ul li:nth-of-type(4) dl dd span {
    padding-left: 0px;
}

#beginner_02 .box01 .sub_box ul li dl dd span::before {
    position: absolute;
    z-index: -1;
    width: 15px;
    height: 15px;
    background-color: #5a5a5a;
    color: #fff;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
}

#beginner_02 .box01 .sub_box ul li:nth-of-type(1) dl dd span::before {
    content: "1";
}

#beginner_02 .box01 .sub_box ul li:nth-of-type(2) dl dd span::before {
    content: "2";
}

#beginner_02 .box01 .sub_box ul li:nth-of-type(3) dl dd span::before {
    content: "3";
}

#beginner_02 .box01 .sub_box ul li:nth-of-type(4) dl dd span::before {
    content: none;
}

#beginner_02 .box02 {
    padding: 4rem 0 0;
}

#beginner_02 .box02 .sub_box {}

#beginner_02 .box02 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}

#beginner_02 .box02 .sub_box ul li {
    width: 48%;
    box-shadow: 0px 0px 10px #00000063;
    margin-bottom: 4%;
    padding: 5%;
}

#beginner_02 .box02 .sub_box ul li .ti_box {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

#beginner_02 .box02 .sub_box ul li .ti_box span {
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

#beginner_02 .box02 .sub_box ul li:nth-of-type(4) .ti_box span {
    padding-left: 0px;
}

#beginner_02 .box02 .sub_box ul li .ti_box span::before {
    position: absolute;
    z-index: -1;
    width: 15px;
    height: 15px;
    background-color: #5a5a5a;
    color: #fff;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
}

#beginner_02 .box02 .sub_box ul li:nth-of-type(1) .ti_box span::before {
    content: "1";
}

#beginner_02 .box02 .sub_box ul li:nth-of-type(2) .ti_box span::before {
    content: "2";
}

#beginner_02 .box02 .sub_box ul li:nth-of-type(3) .ti_box span::before {
    content: "3";
}

#beginner_02 .box02 .sub_box ul li:nth-of-type(4) .ti_box span::before {
    content: none;
}

#beginner_02 .box02 .sub_box ul li .img_box {
    width: 150px;
    margin: 1.5rem auto;
    max-width: 100%;
}

#beginner_02 .box02 .sub_box ul li .img_box img {}

#beginner_02 .box02 .sub_box ul li .txt_box {}

#beginner_02 .box02 .sub_box ul li .txt_box span {
    display: block;
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 10px;
}

@media screen and (max-width:1200px) {
    .top_newsbox dl {
        padding: 0 2.5%;
    }

    .unit_menu {
        padding: 15px 2.5%;
    }

    .unit_menu .logo {
        width: 20%;
        padding-right: 2%;
    }

    .unit_menu .search_box {
        width: 47%;
    }

    .unit_menu .right_box {
        width: 33%;
    }

    .unit_menu .right_box .login_box p {
        padding: 5px 10px;
        font-size: 14px;
    }

    .unit_menu .right_box .login_box img,
    .unit_menu .right_box .cart_box img {
        width: 25px;
    }

    .unit_menu .product_catlist ul li {
        font-size: 15px;
    }

    .unit_menu .product_catlist ul li ul {
        width: 200px;
    }

    .unit_menu .product_catlist ul li ul li {
        font-size: 14px;
    }

    #top_02 .top_box ul li .txt_box p span {
        display: block;
    }

    #top_08 .top_box h2 {
        font-size: 28px;
    }

    #top_08 .top_box p {
        font-size: 15px;
    }

    /*product----------*/
    #product_01 .sub_box ul li .txt_box p span {
        display: block;
    }

    #product_01 .sub_box ul li .txt_box p.price {
        font-size: 13px;
        padding: 5px 2px;
        display: block;
    }

    #product_01 .sub_box ul li .txt_box p {
        margin: 10px 0 5px;
        font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }

    #product_01 .sub_box ul li .txt_box p span.bp,
    #top_02 .top_box ul li .txt_box p span.bp {
        margin: 0 4px 4px 0;
    }

    #product_01 .sub_box ul li .txt_box p span.sr,
    #top_02 .top_box ul li .txt_box p span.sr {
        margin-bottom: 4px;
    }

    #product_01 .sub_box ul li .txt_box h3 {
        min-height: 43px;
        font-size: 14px;
    }
}

#product_01 .sub_box ul li .txt_box p.price br {
    display: none;
}

@media screen and (max-width:950px) {
    #product_01 .sub_box ul li .txt_box p.price br {
        display: inline-block;
    }
}

@media screen and (max-width:1024px) {
    /*unit----------*/
    /*TOP共通----------*/
    /*TOPPAGE----------*/
}

@media screen and (max-width:800px) {
    body {
        font-size: 14px;
    }

    #product_detial_01 .sub_box .txt_box .bottom .content_box iframe {
        max-width: 100%;
        height: 52vw;
    }

    #top_fv {
        margin-top: 55px;
    }

    #top_08 .top_box .img_bg {
        width: 55%;
        position: absolute;
        right: -20%;
    }

    #top_08 .top_box .inner {
        width: 80%;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .top_section .top_box {
        max-width: 90%;
    }

    .top_newsbox {
        position: fixed;
        z-index: 999;
        top: 0;
        padding-left: 45px;
        background: linear-gradient(90deg, #bc7b99, #cda0b5)
    }

    .top_newsbox a {
        color: #fff;
    }

    .top_newsbox a::before {
        content: "▶︎ ";
        z-index: -1;
        width: 0;
        height: 0;
    }

    .unit_menu {
        padding: 10px 2.5%;
        position: fixed;
        top: 30px;
    }

    .unit_menu .menu_icon {
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 0;
        cursor: pointer;
    }

    .unit_menu .menu_icon span {
        background-color: #7c7c7c;
        height: 3px;
        position: absolute;
        z-index: -1;
    }

    .unit_menu .menu_icon span:nth-of-type(1) {
        top: 0;
        width: 100%;
    }

    .unit_menu .menu_icon span:nth-of-type(2) {
        top: 0;
        bottom: 0;
        margin: auto;
        width: 85%;
    }

    .unit_menu .menu_icon span:nth-of-type(3) {
        bottom: 0;
        width: 70%;
    }

    .unit_menu .logo {
        width: 40%;
        padding-right: 0;
        max-width: 170px;
        position: absolute;
        top: 6%;
        left: 0;
        right: 0;
        margin: auto;
    }

    .unit_menu {
        justify-content: space-between;
        border-bottom: 0px solid #a8a8a8;
    }

    .unit_menu.sp {
        display: flex;
        position: relative;
        z-index: -1;
        padding-top: 98px;
    }

    .unit_menu .right_box .login_box {
        padding-right: 10px;
    }

    .unit_menu .right_box {
        width: auto;
    }

    .unit_menu .search_box.sp {
        width: 100%;
        margin: 10px 0 0;
    }

    .unit_menu .search_box form.search_form {
        max-width: 100%;
        width: 100%;
    }

    .unit_menu .search_box.sp div.left_box {
        display: inline-block;
        width: calc(100% - 90px);
    }

    .unit_menu .search_box.sp div.right_box {
        display: inline-block;
        font-size: 12px;
        text-align: center;
        width: 80px;
        line-height: 30px;
    }

    .unit_menu .search_box.sp div.right_box a {
        color: #565656;
        text-decoration: underline;
    }

    .unit_menu .search_box.sp div#last_box {
        margin-top: 5px;
        width: 100%;
        height: 30px;
        white-space: nowrap;
        overflow-x: scroll;
    }

    .unit_menu .search_box.sp div#last_box a {
        color: #d7a9bf;
    }

    .unit_menu .search_box #product {
        font-size: 13px;
        height: 34px;
    }

    .unit_menu .search_box .search_form.product_submit {
        height: 34px;
    }

    .unit_menu .product_catlist ul {
        display: none;
    }

    .unit_menu .product_catlist p {
        color: #d19ab4;
        border: 1px solid #d19ab4;
        text-align: center;
        border-radius: 5px;
        padding: 5px 0;
        position: relative;
        z-index: 0;
    }

    .unit_menu .product_catlist p::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8.7px 5px 0 5px;
        border-color: #d19ab4 transparent transparent transparent;
        top: 0;
        bottom: 0;
        right: 15px;
        margin: auto;
    }

    .unit_menu .product_catlist ul {
        padding-top: 10px;
    }

    .unit_menu .product_catlist ul li {
        padding-bottom: 0;
        margin-bottom: 0;
        text-align: left;
        padding: 5px 0;
        position: relative;
        z-index: 0;
    }

    .unit_menu .product_catlist ul li::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 12px;
        margin: auto;
        right: 15px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6.9px 4px 0 4px;
        border-color: #5a5a5a transparent transparent transparent;
    }

    .unit_menu .product_catlist ul li:last-of-type::after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 6.9px;
        border-color: transparent transparent transparent #d19ab4;
    }

    .unit_menu .product_catlist ul li:not(:last-of-type) {
        border-bottom: 1px solid #cfcfcf;
    }

    .unit_menu .product_catlist ul li ul li {
        border-bottom: 0px solid #cfcfcf !important;
    }

    .unit_menu .product_catlist ul li ul li::after {
        content: none;
    }

    .unit_menu .product_catlist ul li ul {
        position: relative;
        top: 0;
        transform: translate(0%, 0px);
    }

    .unit_menu .product_catlist ul li ul {
        position: relative;
        top: 0;
        transform: translate(0%, 0px);
        display: flex;
        left: 0;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    .unit_menu .product_catlist ul li ul li {
        width: 50%;
    }

    .unit_menu .product_catlist ul li dl dd {
        width: 80%;
        max-width: 80%;
        padding-left: 10px;
        text-align: left;
    }

    .unit_menu .product_catlist ul li ul li {
        font-size: 13px;
    }

    #top_fv .swiper-button-prev,
    #top_fv .swiper-button-next {
        height: 25px;
        width: 25px;
    }

    .top_section {
        padding: 2rem 0;
    }

    #top_01 .top_box {
        max-width: 95%;
    }

    #top_01 .top_box .box02 {
        margin-top: 1rem;
    }

    .toph2 a {
        font-size: 13px;
        padding: 0 10px;
        margin-left: 0;
        display: block;
        text-align: right;
    }

    .toph2 {
        font-size: 21px;
        margin-bottom: 1.5rem;

    }

    #top_02 {}

    .ranking_page #top_02 {
        padding: 2rem 0;
    }

    #top_02 .top_box ul li {
        width: 48%;
        border-radius: 7px;
        margin-right: calc(4% / 1);
        margin-bottom: 20px;
    }

    #top_02 .top_box ul li:nth-of-type(3n+3) {
        margin-right: calc(4% / 1);
    }

    #top_02 .top_box ul li:nth-of-type(2n+2) {
        margin-right: 0;
    }

    .ranking_page #top_02 .top_box ul li:nth-of-type(1n+7) {
        width: 32%;
        margin-right: calc(4% / 2);
    }

    .ranking_page #top_02 .top_box ul li:nth-of-type(3n+9) {
        margin-right: 0;
    }

    #top_02 .top_box ul li .img_box img {
        height: 39vw;
    }

    .ranking_page #top_02 .top_box ul li:nth-of-type(1n+7) .img_box img {
        height: 24vw;
    }

    /* #top_02 .top_box ul li:nth-of-type(1),
    #top_02 .top_box ul li:nth-of-type(2) {
        width: 49%;
        margin-bottom: 4%;
    } */

    #top_02 .top_box ul li .img_box span {
        font-size: 14px;
    }

    #top_02 .top_box ul li .txt_box h3 {
        font-size: 14px;
    }

    #top_02 .top_box ul li .txt_box dl {
        font-size: 12px;
    }

    #top_02 .top_box ul li .txt_box h3 span {
        font-size: 12px;
    }

    #top_02 .top_box ul li .txt_box p {
        margin: 20px 0 10px;
        font-size: 13px;
    }

    #top_03 .top_box dl dt {
        width: 100%;
    }

    #top_03 .top_box dl dd {
        width: 100%;
    }

    #top_03 .top_box dl dd ul li,
    #top_03 .top_box dl.coupon dd ul li {
        width: 48%;
    }


    #top_03 .top_box dl dd ul li:nth-of-type(1),
    #top_03 .top_box dl dd ul li:nth-of-type(2) {
        margin-bottom: 3%;
        margin-top: 3%;
    }

    #top_04 .top_box .toph2 {
        margin-bottom: 1rem;
    }

    #top_04 .top_box p {
        margin-bottom: 1.5rem;
    }

    #top_04 .top_box ul li {
        width: 31%;
        margin-bottom: 1rem;
    }

    #top_04 .top_box ul li .img_box img {
        width: 27.7vw;
        height: 27.7vw;
    }

    #top_04 .top_box ul li .txt_box {
        margin-top: 5px;
        font-weight: bold;
    }

    #top_04 .cat_box ul {
        display: block;
        padding-top: 10px;
    }

    #top_04 .cat_box ul li {
        padding-bottom: 0;
        margin-bottom: 0;
        text-align: left;
        position: relative;
        z-index: 0;
        font-weight: 600;
        color: #565656;
        width: 100%;
    }

    #top_04 .cat_box ul li a {
        color: #000;
        padding: 10px 0;
        display: block;
    }

    #top_04 .cat_box ul li:last-of-type {
        color: #d19ab4;
        color: #565656;
    }

    #top_04 .cat_box ul li::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 17px;
        margin: auto;
        right: 15px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 6.9px;
        border-color: transparent transparent transparent #5a5a5a;
    }

    #top_04 .cat_box ul li:last-of-type::after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 6.9px;
        border-color: transparent transparent transparent #d19ab4;
        border-color: transparent transparent transparent #565656;
    }

    #top_04 .cat_box ul li:not(:last-of-type) {
        border-bottom: 1px solid #cfcfcf;
    }

    #top_04 .cat_box ul li ul {
        position: relative;
        top: 0;
        transform: translate(0%, 0px);
        /* display: flex; */
        left: 0;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    #top_04 .cat_box ul li ul li {
        width: 50%;
        font-size: 13px;
        padding-bottom: 0px;
        margin-bottom: 5px;
        border-bottom: 0px solid #cfcfcf !important;
    }

    #top_04 .cat_box ul li ul li::after {
        content: none;
    }

    #top_04 .cat_box ul li dl {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        transition: all ease 0.5s 0s;
        -webkit-transition: all ease 0.5s 0s;
        -moz-transition: all ease 0.5s 0s;
    }

    #top_04 .cat_box ul li dl dt {
        width: 80px;
        max-width: 20%;
        display: none;
    }

    #top_04 .cat_box ul li dl dd {
        width: 80%;
        max-width: 80%;
        padding-left: 10px;
        text-align: left;
    }

    #top_04 .cat_box ul li:hover {
        opacity: 1;
        transform: scale(1.00);
    }

    #top_04 .top_box ul li {
        margin-right: calc(7% / 2);
    }

    #top_04.keywords_page .top_box ul li {
        margin-bottom: 1.5rem;
    }

    #top_04 .top_box ul li:nth-of-type(5n+5) {
        margin-right: calc(7% / 2);
    }

    #top_04 .top_box ul li:nth-of-type(3n+3) {
        margin-right: 0;
    }

    #top_05 .top_box .news_cat li.cat_00 {
        font-weight: 500;
    }

    #top_05 .top_box .news_box00 ul li {
        width: 48%;
    }

    /*#top_05 .top_box .news_box00 ul li:nth-of-type(4),
    #top_05 .top_box .news_box00 ul li:nth-of-type(5),
    #top_05 .top_box .news_box00 ul li:nth-of-type(6) {
        display: none;
    }*/

    #top_05 .top_box .news_box00 ul li:not(:nth-of-type(3n+3)) {
        margin-right: 0;
    }

    #top_05 .top_box .news_box00 ul li:not(:nth-of-type(2n+2)) {
        margin-right: calc(4%/1);
    }

    #top_05 .top_box .news_box00 ul li .img_box {
        max-height: 237px;
        height: 30vw;
    }

    #top_05 .top_box .news_box00 ul li .txt_box {
        padding: 10px 0 15px;
    }

    #top_05 .top_box .news_box00 ul li .txt_box p {
        font-size: 13px;
    }

    #top_05 .top_box .news_box00 ul li .txt_box dl dd {}

    #top_05 .top_box .news_box00 ul li .txt_box dl {
        font-size: 13px;
    }

    #top_06 .top_box .inner ul.top_page li:nth-of-type(4),
    #top_06 .top_box .inner ul.top_page li:nth-of-type(5) {
        display: none;
    }

    #top_06 .top_box .inner ul li dl dt span {
        margin-left: 0;
        display: block;
    }

    #top_06 .top_box .inner ul li dl dd {
        font-size: 14px;
    }

    #top_06.news_page .top_box .inner ul li dl dd {
        font-size: 13px;
    }

    #top_06 .top_box .inner ul li:not(:last-of-type) {
        margin-bottom: 20px;
    }

    #top_06 .top_box .inner ul li dl {
        font-size: 13px;
    }

    #top_06 .top_box .inner ul {
        padding: 4%;
    }

    .navi_sec {
        margin-bottom: 30px;
    }

    #top_07 .top_box ul li {
        width: 100%;
        border-bottom: 1px solid #c0c0c0;
    }

    #top_07 .top_box ul li dl dt {
        padding: 15px 30px;
        font-size: 14px;
    }

    #top_07 .top_box ul li dl dt::after {
        top: 22px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8.7px 5px 0 5px;
        border-color: #5a5a5a transparent transparent transparent;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li:not(:last-of-type) {
        margin-bottom: 10px;
    }

    footer {
        padding: 3rem 0 7rem;
    }

    footer .inner {
        max-width: 93%;
    }

    footer .inner .box01 h3 {
        font-size: 1.2em;
    }

    footer .inner .box01 .link_box {
        width: 220px;
    }

    footer .inner .box02 {
        margin: 3rem 0;
    }

    footer .inner .box02 ul li {
        border-right: 0px;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 9px;
        width: 100%;
    }

    footer .inner .box03 ul li a {
        font-size: 0.85em;
    }

    footer .inner .box03 ul li {
        padding-right: 4px;
        margin-right: 4px;
        margin-bottom: 3px;
    }

    footer .inner .box04 {
        width: 200px;
        margin: 1.5rem auto 0;
    }

    footer .cop {
        margin-top: 0.1rem;
        font-size: 0.75em;
    }

    .menu_inner {
        display: block;
        position: absolute;
        background-color: #fff;
        top: 0;
        left: -85%;
        z-index: 1000;
        width: 85%;
        transition: all ease 0.5s 0s;
        -webkit-transition: all ease 0.5s 0s;
        -moz-transition: all ease 0.5s 0s;
        padding: 5% 0;
        overflow: scroll;
        height: 100vh;
    }

    .menu_inner.active {
        left: 0;
    }

    .menu_inner .name {
        text-align: center;
    }

    .menu_inner .name span {
        font-weight: 800;
    }

    .menu_inner .new_box {
        width: 95%;
        background-color: #d19ab4;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 8px 0;
        position: relative;
        z-index: 0;
        margin: 10px auto 5px;
    }

    .menu_inner .new_box::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 14px;
        margin: auto;
        right: 15px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 6.9px;
        border-color: transparent transparent transparent #fff;
    }

    .menu_inner .new_box a {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        bottom: 0;
    }

    .menu_inner .mypage_box {
        width: 95%;
        background-color: #ffffff;
        color: #5a5a5a;
        border: 1px solid #5a5a5a;
        text-align: center;
        border-radius: 5px;
        padding: 8px 0;
        margin: 0px auto;
        position: relative;
    }

    .menu_inner .mypage_box a {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        bottom: 0;
    }

    .menu_inner dl {
        margin-top: 10px;
    }

    .menu_inner dl dt {
        background-color: #efefeb;
        font-weight: 700;
        padding: 3% 2%;
    }

    .menu_inner dl dd {}

    .menu_inner dl dd ul {}

    .menu_inner dl {
        display: block;
        padding-top: 10px;
    }

    .menu_inner dl dd {
        padding-bottom: 0;
        margin-bottom: 0;
        text-align: left;
        position: relative;
        z-index: 0;
        font-weight: 600;
        color: #565656;
        width: 100%;
    }

    .menu_inner dl dl {
        display: block;
        padding-top: 0px;
        margin: 0;
    }

    .menu_inner dl dl dd::after {
        content: none;
    }

    .menu_inner dl dl dd {
        color: #565656 !important;
    }

    .menu_inner dl dd a {
        color: #565656;
        display: block;
        padding: 10px 0;
        padding-left: 5px;
    }

    .menu_inner dl dd:last-of-type {
        color: #d19ab4;
    }

    .menu_inner dl dd::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 17px;
        margin: auto;
        right: 15px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 6.9px;
        border-color: transparent transparent transparent #5a5a5a;
    }

    .menu_inner dl:nth-of-type(2) dd::after {
        content: none;
    }

    .menu_inner dl dd:last-of-type::after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 6.9px;
        border-color: transparent transparent transparent #d19ab4;
        border-color: transparent transparent transparent #5a5a5a;
    }

    .menu_inner dl dd:not(:last-of-type) {
        border-bottom: 1px solid #cfcfcf;
    }

    .menu_inner dl:nth-of-type(2) dd:last-of-type {
        border-bottom: 1px solid #cfcfcf;
    }

    .menu_inner dl dd ul {
        position: relative;
        top: 0;
        transform: translate(0%, 0px);
        display: flex;
        left: 0;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }

    .menu_inner dl dd ul li {
        width: 50%;
        font-size: 13px;
        padding-bottom: 0px;
        margin-bottom: 0px;
        border-top: 1px solid #cfcfcf !important;
        background-color: #f8f8f8;
    }

    .menu_inner dl dd ul li:nth-of-type(2n+1) {
        border-right: 1px solid #cfcfcf !important;
    }

    .menu_inner dl dd:nth-of-type(1) ul li:nth-of-type(6),
    .menu_inner dl dd:nth-of-type(3) ul li:nth-of-type(4) {
        border-bottom: 1px solid #cfcfcf !important;
    }

    .menu_inner dl dd ul li::after {
        content: none;
    }

    .menu_inner dl dd ul li dl {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        transition: all ease 0.5s 0s;
        -webkit-transition: all ease 0.5s 0s;
        -moz-transition: all ease 0.5s 0s;
    }

    .menu_inner dl dd ul li dl dt {
        width: 80px;
        max-width: 20%;
        display: none;
    }

    .menu_inner dl dd ul li dl dd {
        width: 100%;
        max-width: 100%;
        padding-left: 0px;
        text-align: left;
    }

    .menu_inner dl dd ul li:hover {
        opacity: 1;
        transform: scale(1.00);
    }

    .menu_inner .bottom_box {
        padding: 0 5px 70px;
    }

    .menu_inner .bottom_box .mail {}

    .menu_inner .bottom_box .tel {}

    .menu_inner .bottom_box .tel span {
        display: block;
    }

    #hygiene_02 .sub_box .inner h3 {
        font-size: 17px;
    }

    .menu_inner .bottom_box .tel,
    .menu_inner .bottom_box .mail {
        padding-left: 20px;
        font-size: 13px;
        position: relative;
        z-index: 0;
        margin-top: 10px;
    }

    .menu_inner .bottom_box .tel::before,
    .menu_inner .bottom_box .mail::before {
        content: "";
        position: absolute;
        z-index: -1;
        width: 15px;
        height: 15px;
        top: 3px;
        left: 0;
        margin: auto;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .menu_inner .bottom_box .mail::before {
        background-image: url(".././img/mail.png");
    }

    .menu_inner .bottom_box .tel::before {
        background-image: url(".././img/tel.png");
    }

    .menu_inner .bottom_box .tel a,
    .menu_inner .bottom_box .mail a {
        color: #565656;
    }

    .menu_bg {
        background-color: #000;
        position: absolute;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all ease 0.5s 0s;
        -webkit-transition: all ease 0.5s 0s;
        -moz-transition: all ease 0.5s 0s;
        pointer-events: none;
    }

    .menu_bg.active {
        opacity: 0.6;
        pointer-events: auto;
    }

    .unit_menu .menu_icon.active {
        position: absolute;
        z-index: 1111;
        top: 15px;
        right: 10px;
        width: 30px;
        height: 30px;
        background-color: #fff;
        border-radius: 50%;
    }

    .unit_menu .menu_icon.active span:nth-of-type(2) {
        display: none;
    }

    .unit_menu .menu_icon.active span:nth-of-type(1),
    .unit_menu .menu_icon.active span:nth-of-type(3) {
        top: 0;
        width: 50%;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    .unit_menu .menu_icon.active span:nth-of-type(3) {
        transform: rotate(45deg);
    }

    .unit_menu .menu_icon.active span:nth-of-type(1) {
        transform: rotate(-45deg);
    }

    /*sub共通----------*/
    .subh2 {
        font-size: 18px;
    }

    .article_page .subh2 {
        font-size: 17px;
    }

    .sub_section .sub_box {
        max-width: 90%;
    }

    .sub_section:last-of-type {
        padding: 2rem 0 4rem;
    }

    .sub_section {
        padding: 1rem 0 2rem;
    }

    .sub_fv .subtop_box p {
        margin: 1rem auto 0;
    }

    .sub_fv {
        padding-top: 30px;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    /*QA----------*/
    #qa_01 .sub_box ul li {
        width: 100%;
        border-bottom: 1px solid #c0c0c0;
    }

    #qa_01 .sub_box ul li dl dt {
        padding: 15px 30px;
        font-size: 14px;
    }

    #qa_01 .sub_box ul li dl dt::after {
        top: 22px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8.7px 5px 0 5px;
        border-color: #5a5a5a transparent transparent transparent;
    }

    /*blog----------*/
    #blog_01 .sub_box .news_cat li.cat_00 {
        font-weight: 500;
    }

    #blog_01 .sub_box .news_box00 ul li {
        width: 100%;
    }

    #blog_01 .sub_box .news_box00 ul li .txt_box p {
        font-size: 14px;
    }

    #blog_01 .sub_box .news_box00 ul li .txt_box dl dd {
        margin: 0px 0px;
    }

    #blog_01 .sub_box .news_box00 ul li .txt_box dl {
        font-size: 13px;
    }

    /*mypage----------*/
    #mypage_01 {
        padding: 2rem 0 6rem;
    }

    #mypage_01::before {
        width: 150vh;
        height: 150vh;
        background: radial-gradient(#910747, #fce1ee 55%);
    }

    #mypage_01 .sub_box h3 {
        font-size: 16px;
    }

    #mypage_01 .sub_box .icon_box {
        width: 50px;
        margin: 1.5rem auto 1rem;
    }

    #mypage_01 .sub_box .name_box {
        font-size: 16px;
    }

    #mypage_01 .sub_box .my_detail {
        margin: 1rem auto 0;
    }

    #mypage_01 .sub_box .my_detail li {
        font-size: 13px;
    }

    #mypage_02 .sub_box h4 {
        font-size: 16px;
    }

    #mypage_02 .sub_box h4 span {
        font-size: 14px;
    }

    #mypage_02 .sub_box .glaph_box span {
        font-size: 14px;
    }

    #mypage_02 .sub_box .glaph_box span:nth-of-type(2) {
        top: 51px;
        right: -66px;
    }

    #mypage_02 .sub_box .glaph_box span:nth-of-type(5) {
        top: 51px;
        left: -37px;
    }

    #mypage_02 .sub_box .graph-bg {
        width: 210px;
        height: 210px;
    }

    #mypage_02 .sub_box .graph-bg .pentagon {
        width: 210px;
        height: 210px;
    }

    #mypage_02 .sub_box .glaph_box {
        padding: 2.5rem 0;
    }

    #mypage_02 .sub_box .rental_box {
        max-width: 85%;
        margin: 1rem auto 0;
        padding: 18px 0;
    }

    #mypage_03 .sub_box ul li {
        width: 100%;
        padding: 0 0 0 60px;
        font-size: 15px;
        border-radius: 5px;
        height: 70px;
    }

    #mypage_03 .sub_box ul li::before {
        width: 35px;
        left: 12px;
    }

    #mypage_03 .sub_box ul li::after {
        border-width: 7px 0 7px 12.1px;
        border-color: transparent transparent transparent #5a5a5a;

    }

    #mypage_03 .sub_box .logout a {
        margin: 1rem auto 0;
    }

    /*product----------*/
    #product_01 .sub_box ul li {
        border-radius: 7px;
        width: 100%;
        margin-bottom: 4%;
        margin-right: 0;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    #product_01 .sub_box ul li .img_box {
        width: 30vw;
        height: 30vw;
        border: 1px solid #b7b7b7;
    }

    #product_01 .sub_box ul li .txt_box {
        width: calc(100% - 30vw);
        padding-left: 3vw;
    }

    #product_01 .sub_box ul li .txt_box h3 {
        min-height: unset;
    }

    #product_01 .sub_box ul li .txt_box p.price br {
        display: none;
    }

    #product_01 .sub_box ul li .txt_box p {
        margin: 0px 0 0px;
    }

    #product_01 .sub_box ul li .txt_box p span.bp,
    #top_02 .top_box ul li .txt_box p span.bp,
    #product_01 .sub_box ul li .txt_box p span.sr,
    #top_02 .top_box ul li .txt_box p span.sr {
        font-size: 11px;
    }

    #product_01 .sub_box ul li .txt_box p.price {
        margin: 10px 0;
        padding: 5px 10px;
        font-size: 16px;
    }

    #product_01 .sub_box ul li:nth-of-type(odd) {
        margin-right: 0%;
    }

    #product_01 .sub_box ul li .img_box span {
        font-size: 14px;
    }

    #product_01 .sub_box ul li .img_box img {
        height: auto;
    }

    #product_01 .sub_box ul li .txt_box h3 {
        font-size: 14px;
    }

    #product_01 .sub_box ul li .txt_box dl {
        font-size: 12px;
    }

    #product_01 .sub_box ul li .txt_box h3 span {
        font-size: 12px;
    }

    #product_01 .sub_box ul li .txt_box p {
        margin: 0;
        font-size: 13px;
    }

    #product_01 .select_box .product_cat {
        margin-right: 2.5%;
        max-width: 45%;
    }

    #product_01 .select_box .if_cat {
        max-width: 45%;
    }

    #product_01 select {
        padding: 7px 15px 7px 5px;
        font-size: 14px;
    }

    #product_01 .sub_box .list_top div:nth-of-type(2) {
        max-width: 55%;
    }

    #product_01 .sub_box .list_top div:nth-of-type(2) dl select {
        padding: 0px 0px 0px 0px;
    }


    /*cause----------*/
    #cause_01 .sub_box .img_box h3 {
        font-size: 23px;
    }

    #cause_01 .sub_box p {
        font-size: 16px;
        margin-top: 1rem;
    }

    #cause_02 .sub_box ul li:not(:last-of-type) {
        margin-bottom: 2rem;
    }

    #cause_02 .sub_box ul li h4 {
        font-size: 23px;
    }

    #cause_02 .sub_box ul li .img_box {
        margin: 5px 0 15px;
    }

    #cause_02 .sub_box ul li dl dt {
        font-size: 19px;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    #cause_02 .sub_box ul li dl dd {
        font-size: 16px;
    }

    #unauthorized_01 .sub_box {
        padding: 0 5%;
    }

    #unauthorized_01 .sub_box ul li:not(:last-of-type) {
        margin-bottom: 2rem;
    }

    #unauthorized_01 .sub_box ul li h4 {
        font-size: 18px;
    }

    #unauthorized_01 .sub_box ul li div {
        font-size: 13px;
    }

    #unauthorized_01 .sub_box ul li dl dt {
        font-size: 18px;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    #unauthorized_01 .sub_box ul li dl dd {
        font-size: 16px;
        padding-left: 0.5rem;
    }

    #unauthorized_02 .sub_box {
        font-size: 13px;
        padding: 0 5%;
    }

    /*product_detial----------*/
    #product_detial_01 .sub_box {
        max-width: 100%;
    }

    #product_detial_01 .sub_box .img_box {
        width: 100%;
        position: relative;
        top: 0;
    }

    #product_detial_01 .sub_box .img_box .slider-thumbnail01 {
        width: 95%;
        margin: 0 auto;
        margin-top: 10px;
    }

    #product_detial_01 .sub_box .txt_box .top {
        max-width: 90%;
        margin: 10px auto 0;
    }

    #product_detial_01 .sub_box .txt_box {
        width: 100%;
    }

    #product_detial_01 .sub_box .txt_box .top dl {
        font-size: 14px;
    }

    #product_detial_01 .sub_box .txt_box .top h2 {
        font-size: 17px;
        margin-top: 5px;
    }

    #product_detial_01 .sub_box .txt_box .cart {
        margin: 2rem 0;
        padding: 2rem 5%;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 {
        font-size: 13px;
        font-weight: normal;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li {
        width: 100%;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong.s2 span.red {
        font-size: 12px;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left .img {
        width: 80px;
        height: 80px;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left .img img {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .right {
        display: none;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li.option_li dd .multiple div.options .flex .left .txt .price {
        display: block;
        text-align: right;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong {
        font-size: 1.1em;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li dl dt h4 strong span {
        font-size: 1.05em;
    }

    #product_detial_01 .sub_box .txt_box .cart ul li dl dt p {
        font-size: 13px;
    }

    #product_detial_01 .sub_box .txt_box .bottom .note {
        padding: 2rem 5%;
    }

    #product_detial_01 .sub_box .txt_box .bottom .note h4 {
        font-size: 16px;
    }

    #product_detial_01 .sub_box .txt_box .bottom .note ul li {
        width: 32%;
        padding: 7px 0;
    }

    #product_detial_01 .sub_box .txt_box .bottom .content_box h5 {
        font-size: 16px;
        margin-bottom: 0.5rem;
    }

    #product_detial_01 .sub_box .txt_box .bottom .content_box {
        max-height: 450px;
        width: 90%;
        margin: 0 auto;
    }

    #product_detial_01 .sub_box .txt_box .bottom .content_box:not(:last-of-type) {
        margin-bottom: 2rem;
    }

    #product_detial_01 .sub_box .txt_box .bottom .content_box p {
        margin: 1rem 0;
    }

    #product_detial_01 .sub_box .txt_box .bottom .content_box {
        max-height: 400px;
    }

    #product_detial_01 .sub_box .txt_box .bottom .content_box dl {
        margin: 1rem 0;
    }

    #product_detial_02 .sub_box .review_top {
        width: 100%;
        position: relative;
        top: 0;
    }

    #product_detial_02 .sub_box .review_contbox {
        width: 100%;
        border-top: 1px solid #5a5a5a;
        border-bottom: 1px solid #5a5a5a;
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }

    #product_detial_02 .sub_box .review_cont00 ul li h5 i {
        width: 30px;
        margin-right: 5px;
    }

    #product_detial_02 .sub_box .review_cont00 ul li h5 {
        font-size: 15px;
    }

    #product_detial_02 .sub_box .review_bottom .bottom_link01 {
        margin: 0 auto;
    }

    #product_detial_02 .sub_box .review_bottom a {
        margin-top: 10px;
        width: 100%;
    }

    /*law----------*/
    #law_02 ul li h4 {
        padding: 10px;
    }

    #law_02 ul li div {
        padding: 15px;
    }

    /*voice----------*/
    #voice_01 {
        margin-top: 2rem;
    }

    #voice_01 .sub_box ul li {
        width: 100%;
        margin-bottom: 2rem;
    }

    #voice_01 .sub_box ul li dl dd {
        margin-top: 0.5rem;
    }

    #voice_01 .sub_box ul li dl dd h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    #voice_01 .sub_box ul li dl dd p {
        padding: 5%;
    }

    /*hygiene----------*/
    #hygiene_fv .subtop_box p {
        font-size: 14px;
    }

    #hygiene_01 .sub_box ul li dl dt {
        width: 100%;
        text-align: center;
        margin: 0px 0 15px;
    }

    #hygiene_01 .sub_box ul li dl dd {
        width: 100%;
    }

    #hygiene_01 .sub_box ul li dl dd h5 {
        font-size: 16px;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    #hygiene_02 .sub_box .inner h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    #hygiene_02 .sub_box ul li {
        padding: 20px 0;
    }

    #hygiene_02 .sub_box ul li dl dt {
        font-size: 16px;
        width: 100%;
        padding-left: 35px;
    }

    #hygiene_02 .sub_box ul li dl dd {
        width: 100%;
        margin-top: 5px;
    }

    /*contact----------*/
    .contactForm .item {
        padding: 0.25rem 0;
    }

    .contactForm .ttl {
        font-size: 15px;
    }

    .contactForm .ttl.is-required::after {
        padding: 0.25rem 0.5rem;
        font-size: 13px;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select {
        font-size: 14px;
        padding: 0.75rem;
    }

    .contactForm .btnBox {
        margin-top: 1rem;
    }

    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        padding: 0.75rem;
        font-size: 15px;
    }

    textarea {
        height: 35vw;
    }

    #contact_fv .subtop_box p {
        max-width: 95%;
    }

    .request_description {
        text-align: left;
        font-size: 10px;
        line-height: 1.8;
    }

    .contactForm__ttl span {
        padding: 0.25rem 0.5rem;
        font-size: 13px;
    }

    /*security----------*/
    #security_fv .subtop_box p {
        font-size: 15px;
        text-align: left;
    }

    #security_01 .sub_box ul li dl {
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    #security_01 .sub_box ul li dl dt {
        margin: 0 12px 0 0;
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    #security_01 .sub_box ul li dl dt img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #security_01 .sub_box ul li dl dd {
        width: calc(100% - 47px);
        flex: 1;
    }

    #security_01 .sub_box ul li dl dd h5 {
        font-size: 15px;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        margin-top: 0;
    }

    #security_01 .sub_box ul li dl dd p {
        text-align: left;
        font-size: 15px;
        margin-top: 0.75rem;
        width: calc(100% + 47px);
        margin-left: -47px;
        box-sizing: border-box;
    }

    #security_01 .sub_box ul li dl dd p span.contact-time {
        display: block;
        text-align: center;
        font-size: 10px;
    }

    #security_01 .sub_box ul li:not(:last-of-type) {
        margin-bottom: 2rem;
    }

    #security_01 .sub_box ul li dl dd p span {
        font-size: 18px;
    }

    #security_01 .sub_box ul li dl dd ul {
        margin-top: 1rem;
    }

    #security_01 .sub_box ul li dl dd ul li {
        margin-bottom: 0 !important;
        width: 100%;
    }

    #security_01 .sub_box ul li dl dd ul li:not(:last-of-type) {
        margin-bottom: 0.5rem !important;
    }

    #security_01 .sub_box ul li .link_box {
        margin: 0 auto;
    }

    #security_01 .sub_box ul li.line-button-box {
        text-align: center;
        margin-top: -2rem;
    }

    /*beginner----------*/
    #beginner_01 .sub_box .img_box p {
        font-size: 14px;
        margin-top: 1rem;
    }

    #beginner_01 .sub_box ul li {
        width: 29vw;
        height: 29vw;
        font-size: 22px;
    }

    #beginner_01 .sub_box ul p {
        margin-top: 1rem;
        font-size: 13px;
    }

    #beginner_02 .box01 {
        padding: 2rem 0;
    }

    #beginner_02 .box01 .sub_box h4 {
        font-size: 19px;
        margin-bottom: 1.5rem;
    }

    #beginner_02 .box01 .sub_box ul li {
        width: 100%;
    }

    #beginner_02 .box01 .sub_box ul li dl {
        justify-content: space-between;
    }

    #beginner_02 .box01 .sub_box ul li dl dt {
        padding: 3%;
        width: 80px;
    }

    #beginner_02 .box01 .sub_box ul li dl dd {
        width: calc(100% - 90px);
    }

    #beginner_02 .box01 .sub_box ul li dl dt::before {
        width: 1px;
        height: 100%;
        left: 0;
        right: 0;
        top: unset;
        bottom: -100%;
    }

    #beginner_02 .box02 .sub_box ul li {
        width: 100%;
        margin-bottom: 10%;
        padding: 10%;
    }

    #beginner_02 .box02 .sub_box ul li .ti_box {
        font-size: 18px;
    }

    #beginner_02 .box02 .sub_box ul li .img_box {
        width: 80px;
        margin: 0.5rem auto;
    }

    /*blog----------*/
    #blog_01 .sub_box .news_box00 ul li .img_box {
        max-height: 200px;
        height: 27vw;
    }

    .article_sec01 .sub_box h2 {
        font-size: 1.3em;
    }

    .article_sec01 .sub_box h3 {
        font-size: 1.2em;
    }

    .article_sec01 .sub_box h4 {
        font-size: 1.15em;
    }

    .article_sec01 .sub_box img {
        margin: 1.5rem 0;
    }

    /*terms_id----------*/
    #terms_id .sub_box h3 {
        padding: 10px;
        font-size: 1.1em;
        margin: 30px 0 15px;
    }

    #terms_id .sub_box ol li {
        margin-left: 20px;
        margin-bottom: 10px;
    }

    #voice_01 .sub_box ul li dl dt {
        height: 55vw;
    }
}

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

    /*unit----------*/
    /*TOP共通----------*/
    /*TOPPAGE----------*/
    #top_08 .top_box h2 {
        font-size: 23px;
    }

    #top_08 .top_box .img_bg {
        width: 60%;
        position: absolute;
        right: -20%;
        z-index: -1;
    }

    #top_08 .top_box p {
        font-size: 14px;
    }

    #top_08 .top_box .link_box {
        width: 170px;
        line-height: 18px;
    }

    #beginner_01 .sub_box ul li {
        font-size: 15px;
    }

    /*sub共通----------*/
    /*QA----------*/
    footer .inner .box01 {
        display: block;
    }

    footer .inner .box01 .inbox:nth-of-type(2) {
        margin-left: 0;
        margin-top: 2rem;
    }

    /*contact----------*/

    #contact_01 .sub_box .contactForm__info p {
        font-size: 12px;
        line-height: 1.5;
    }

    #contact_01 .sub_box .contactForm span {
        font-size: 9px;
        line-height: 1.4;
    }

    #contact_01 .sub_box .contactForm__inquiry p {
        font-size: 9px;
        line-height: 1.4;
    }
}


ul.brands {
    display: flex;
}

ul.brands li {
    width: 50%;
    padding: 5px;
    text-align: center;
    font-size: 10px;
}

.brand_image {
    width: 100%;
    height: 100px;
    border-radius: 5px;
    background: #ccc;
    color: #fff;
}
