#blog .container{
    color: #585757;
    padding: 0 20px;
}
.visualarea {
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    max-width: 1140px;
}

.visualarea .visualarea_text__h1 {
    width: 100%;
    height: auto;
    line-height: 100%;
    text-align: center;
    line-height: 1.2;
    font-size: 24px;
    font-weight: bold;
    color: #a67b5d;
    margin: 20px 0 15px;
}

.visualarea_text__catch {
    max-width: inherit;
    color: #000;
    font-size: 16px;
    text-align: justify;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    #blog{
        width: 100%;
    }
    .visualarea_text__catch{
        padding: 0 20px;
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    #topicpath {
        margin-top: 0;
        margin-bottom: 0;
    }
    .visualarea{
        margin-bottom: 50px;
    }
    .visualarea .visualarea_text__h1{
       margin-top: 30px;
    }
    .visualarea_text__catch{
        padding: 0 10px;
    }
}

.point_accordion {
    margin: 0 0 30px;
}

.point_accordion * {
    max-width: 100%;
}

.point_accordion ul {
    list-style-type: none;
    padding: 0;
    counter-reset: number 0;
}

.point_accordion>ul>li {
    margin: 0 0 10px;
    border: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #fff;
}

.point_accordion ul li .pull_btn {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(252, 252, 252, 0) 1%, rgba(0, 0, 0, .16) 100%);
    display: flex;
    position: relative;
    cursor: pointer;
}

.point_accordion ul li .pull_btn .title {
    background: #a67b5d;
    color: #fff;
    margin: 0;
    text-align: center;
    padding: 15px 15px 62px;
    font-size: 20px;
    position: relative;
    line-height: 100%;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    font-weight: bold;
    zoom: .5;
}

.point_accordion ul li .pull_btn .title:before {
    counter-increment: number 1;
    content: counter(number) " ";
    position: absolute;
    display: block;
    bottom: 24px;
    font-size: 30px;
    left: 28px;
}

.point_accordion ul li .pull_btn .title:after {
    box-sizing: border-box;
    content: "";
    border: solid 50px rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    right: -14px;
    width: 0;
    border-left: solid 15px #a67b5d;
    height: 100px;
    border-right: solid 0;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.point_accordion ul li .pull_btn .title span.number {
    display: block;
    font-size: 50px;
    line-height: 100%;
}


.point_accordion ul li .pull_btn .text {
    margin: 0;
    padding: 0 50px 0 20px;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 120%;
}

.point_accordion ul li .pull_btn .text br {
    display: none;
}

.point_accordion ul li .pull_btn .text .head {
    color: #f20000;
    font-size: 12px;
    font-weight: bold;
}

.point_accordion ul li .pull_btn .text .catch {
    font-size: 18px;
    font-weight: bold;
    line-height: 120%;
}

.point_accordion ul li .pull_btn .arrow {
    background: #a67b5d;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 2px solid #fff;
    position: relative;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    margin: 0;
}

.point_accordion ul li .pull_btn .arrow:before,
.point_accordion ul li .pull_btn .arrow:after {
    content: "";
    width: 5px;
    height: 16px;
    background: #fff;
    display: block;
    position: absolute;
    border-radius: 10px;
    transition: .5s;
}

.point_accordion ul li .pull_btn .arrow:before {
    transform: rotate(-40deg);
    left: 8px;
    top: 7px;
}

.point_accordion ul li .pull_btn.active .arrow:before {
    transform: rotate(40deg);
    top: 5px;
}

.point_accordion ul li .pull_btn .arrow:after {
    transform: rotate(40deg);
    left: 16px;
    top: 7px;
}

.point_accordion ul li .pull_btn.active .arrow:after {
    transform: rotate(-40deg);
    top: 5px;
}

.point_accordion ul li .pull_btn .shadow_box {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    margin: 0;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(252, 252, 252, 0) 1%, rgba(0, 0, 0, .42) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(252, 252, 252, 0) 1%, rgba(0, 0, 0, .42) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(252, 252, 252, 0) 1%, rgba(0, 0, 0, .22) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#6b000000", GradientType=0);
}

.point_accordion ul li .contents_box {
    display: none;
    padding: 20px;
    background: #fff;
}

.weaker_table_box {
    display: flex;
    flex-wrap: wrap;
    background: #f0f0e8;
    padding: 20px;
    margin: 0 0 20px;
    color: #000;
}

.weaker_table_box * {
    font-family: serif;
}

.weaker_table_box .text_area {
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    width: calc(100% - 160px);
    letter-spacing: -1px;
    padding: 5px 0 0 10px;
    width: auto;
    width: calc(100% - 160px);
    display: inline-table;
    margin: auto;
}

.weaker_table_box .text_area .maker {
    background: linear-gradient(transparent 50%, #fef268 50%);
    font-weight: bold;
}

.weaker_table_box .right_box {
    width: 100%;
}

.weaker_table_box .left_box {
    margin: 0 0 0 auto;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.weaker_table_box .right_box .table_area {
    position: relative;
    margin: 0 5px 0 0;
    font-size: 22px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.weaker_table_box .right_box .table_area table {
    width: 100%;
}

.weaker_table_box .right_box .table_area table tr td,
.weaker_table_box .right_box .table_area table tr th {
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    border-collapse: collapse;
    padding: 0 3px;
    width: 30px;
    height: 25px;
    vertical-align: middle;
    font-size: 15px;
}

.weaker_table_box .right_box .table_area table tr th {
    text-align: center;
    padding: 10px 5px;
}

.weaker_table_box .right_box .table_area table tr:first-child th {
    border-bottom: 3px solid #ccc;
}

.weaker_table_box .right_box .table_area table tr th:nth-child(1) {
    width: 40%;
    white-space: normal;
    font-size: 15px;
    line-height: 1;
}

.weaker_table_box .right_box .table_area table tr td:nth-child(2) {
    width: 30%;
    font-size: 16px;
    padding-right: 15px;
    text-align: right;
    font-weight: bold;
    line-height: 1;
}

.weaker_table_box .right_box .table_area table tr td:nth-child(3) {
    width: 30%;
    font-size: 16px;
    color: #d23a71;
    border-right: none;
    text-align: right;
    padding-right: 15px;
    font-weight: bold;
    line-height: 1;
}

.weaker_table_box .table_area table tr th span {
    display: inline-block;
    font-size: 74%;
    margin: 0 .1em;
}

.weaker_table_box .right_box .table_area .last_text {
    font-size: 12px;
    text-align: right;
    font-weight: bold;
    margin: 5px 0 0 0;
}

.contents_box_text {
    line-height: 1.7;
    font-size: 16px;
    margin: 40px 20px 0;
}
.point_accordion .brand-record-box h2.main-heading{
    color: #fff;
    background: #a67b5d;
    padding: 15px 5px;
    margin: 0 auto 25px;
    text-align: center;
    font-size: 17px;
    line-height: 1.2;
    clear: both;
    margin-bottom: 20px;
    background-color: #484848;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
@media screen and (max-width: 639px){
    .point_accordion .brand-record-box h2.main-heading{
		font-size: 16px;
	}

}
.typicalprice_box{
    position: relative;
}
.typicalprice_box .grad-item.is-hide{
    height: 900px !important;
    overflow: hidden;
}
.grad-item::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 200%;
    height: 90px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    z-index: 5;
}
.grad-trigger.is-show+.grad-item::before {
    display: none;
}
.typicalprice_box .record_list {
    list-style: none;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
    max-width: fit-content;
}

.typicalprice_box .record_list li {
    width: calc((100% - 40px) / 2);
    margin: 0 10px 40px;
    display: none;
}

.typicalprice_box ul {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-flow: wrap;
    width: 90vw;
    min-height: 300px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.typicalprice_box .grad-item:not(.is-hide) {
    height: auto !important;
}
.typicalprice_box li {
    width: calc(25% - (30px / 4));
    background: #fff;
    border: 1px solid #d8d8d8;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}

.typicalprice_box li:nth-child(4n) {
    margin-right: 0;
}

.typicalprice_box li figure {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 10px;
}

.typicalprice_box li img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.typicalprice_box li .conts_col_inner {
    padding: 7px;
}

.typicalprice_box .price {
    font-size: 22px;
    color: #ff0000;
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-flow: column;
    width: 100%;
    line-height: 1.2;
    margin-bottom: 5px;
}

.typicalprice_box .price .label {
    font-size: 13px;
    color: #333;
    line-height: 1.3;
}
.typicalprice_box .price .item_price {
    line-height: 1;
}

.typicalprice_box .catemaker_item {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
    word-break: break-all;
}

.typicalprice_box .catemaker_item p,
.typicalprice_box .catemaker_item h3 {
    font-size: 14px;
    color: #000;
    margin: 0;
}

.typicalprice_box .catemaker_item .maker_name {
    display: block;
}

.typicalprice_box .catemaker_item .item_name {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 5px;
}
.typicalprice_box li .no-link,
.typicalprice_box li .sankou-link{
	font-size: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
}
.typicalprice_box li .no-link{
	pointer-events: none;
}
.typicalprice_box li .sankou-link:hover{
	background-color: rgba(255, 255, 255, 0.4);
}
.btn_see_more{
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 360px;
    height: 70px;
    background: #f0f0e8;
    color: transparent;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: auto;
    z-index: 6;
    border-radius: 8px;
}
.btn_see_more.is-show{
    bottom: 0;
}
.grad-trigger::before {
    content: "もっと見る";
    font-size: 16px;
    color: #333;
}
.grad-trigger.is-show::before {
    content: "閉じる";
}
.record_annotation{
    font-size: 14px;
    margin: 10px auto 50px;
}

.purchase-archive__button {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    min-width: 410px;
    height: auto;
    padding: 15px 30px;
    margin-bottom: 50px;
    line-height: 1.2em;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    color: #fff !important;
    background-color: #a67b5d;
    filter: drop-shadow(0 5px 0 #7d4721);
}
.purchase-archive__button:before,
.purchase-archive__button::after{
    content: "";
    width: 4px;
    height: 12px;
    background: #fff;
    display: block;
    position: absolute;
    left: 93%;
}
.purchase-archive__button:before{
    -webkit-transform: translate(-50%, 0) skew(40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(40deg, 0deg);
    transform: translate(-50%, 0) skew(40deg, 0deg);
    bottom: 50%;
}
.purchase-archive__button::after{
    -webkit-transform: translate(-50%, 0) skew(-40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(-40deg, 0deg);
    transform: translate(-50%, 0) skew(-40deg, 0deg);
    top: 50%;
}


.purchase-archive__button:before,
.purchase-archive__button::after,
.purchase-archive__icon-link:before, 
.purchase-archive__icon-link:after {
    content: "";
    width: 3px;
    height: 10px;
    background: #fff;
    display: block;
    position: absolute;
    right: 15px;
}
.purchase-archive__icon-link:before {
    -webkit-transform: translate(-50%, 0) skew(35deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(35deg, 0deg);
    transform: translate(-50%, 0) skew(35deg, 0deg);
    top: calc(50% - 10px);
}

.purchase-archive__icon-link::after {
    -webkit-transform: translate(-50%, 0) skew(-35deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(-35deg, 0deg);
    transform: translate(-50%, 0) skew(-35deg, 0deg);
    top: calc(50% - 0px);
}

@media screen and (max-width: 767px) {
    .weaker_table_box{
        margin-bottom: 0;
    }
    .weaker_table_box .text_area{
        margin: 0;
        padding: 0;
        width: calc(100% - 110px);
    }
    .weaker_table_box .left_box {
        margin-bottom: 10px;
        margin-left: 10px;
    }
    .purchase-archive__button {
        min-width: 222px;
        font-size: 14px;
        padding: 10px 30px 10px 20px;
    }
    .purchase-archive__button::before,
	.purchase-archive__button::after{
		height: 6px;
	}
    .typicalprice_box ul{
        padding-bottom: 40px;
    }
    .typicalprice_box li {
		width: calc(50% - (10px / 2));
        margin-bottom: 15px;
	}
	.typicalprice_box li:nth-child(2n){
		margin-right: 0;
	}
    .typicalprice_box .catemaker_item{
        line-height: 1.3;
    }
    .typicalprice_box .catemaker_item .maker_name,
    .typicalprice_box .catemaker_item .item_name {
        font-size: 12px;
    }
	.typicalprice_box li figure{
		height: 70px;
		margin-top: 15px;
	}
	.typicalprice_box .price{
		font-size: 18px;
	}
	.typicalprice_box .price span{
		font-size: 12px;
	}
    .typicalprice_box .price .label {
        font-size: 12px;
    }
    .typicalprice_box .price .item_price {
        font-size: 16px;
    }
	.typicalprice_box .more_link a{
		max-width: 90%;
		font-size: 16px;
		padding-left: 15px;
	}
	.typicalprice_box .more_link a svg{
		margin-right: 5px;
		margin-left: 5px;
	}
	.typicalprice_box .more_link:after{
		max-width: 90%;
		margin-left: auto;
        margin-right: auto;
		margin-bottom: 30px;
	}
    
    .btn_see_more{
        height: 40px;
        width: 180px;
        font-size: 0;
    }
    .grad-trigger::before{
        font-weight: bold;
        font-size: 14px;
    }
    .contents_box_text {
        margin: 20px 0 0;
        font-size: 14px;
        text-align: justify;
    }
}
.comparison_area{
    margin: 0 auto;
}
.comparison_area h2{
    color: #fff;
    line-height: 120%;
    font-weight: normal;
    background: #a67b5d;
    text-align: center;
    padding: 10px 0;
    font-size: 17px;
}

.purchase-point_title h2 span {
    display: inline-block;
    margin: 0 15px;
}

@media screen and (min-width: 768px){
    .comparison_area h2{
        font-size: 30px;
        padding: 20px;
    }
    .purchase-point_title h2 span {
        display: block;
        margin: 0;
    }
    .point_accordion ul li .pull_btn .text .head{
        font-size: 16px;
    }
    .point_accordion ul li .pull_btn .title:before{
        font-size: 50px;
    }
    .point_accordion ul li .pull_btn .title:after{
        border-left: solid 18px #a67b5d;
        right: -17px;
    }
    .weaker_table_box .text_area {
        font-size: 26px;
    }
    .weaker_table_box .left_box{
        width: 160px;
        height: 160px
    }
    .weaker_table_box .right_box .table_area table tr th,
    .weaker_table_box .right_box .table_area table tr td{
        font-size: 22px;
    }
    .weaker_table_box .right_box .table_area table tr th:nth-child(1){
        font-size: 20px;
    }
    .weaker_table_box .right_box .table_area table tr td:nth-child(2),
    .weaker_table_box .right_box .table_area table tr td:nth-child(3){
        font-size: 26px;
    }
    .weaker_table_box .right_box .table_area .last_text{
        font-size: 12px;
    }
   
}
.purchase-point_content_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.purchase-point_content_header_title {
    width: calc(100% -(38px + 80px));
    padding: 5px 20px 0;
}



@media screen and (min-width:768px){
    #blog .container{
        width: calc(100% - 230px);
        max-width: calc(100% - 240px);
        margin: 0 auto;
        padding: 0 40px;
        flex: 0 0 100%;
    }
    @media screen and (max-width: 960px) {
        #blog .container {
            margin-left: 20px;
            margin-right: 0;
            padding-right: 0;
            padding-left: 0;
        }
    }
    
    .point_accordion ul li .pull_btn .title {
        zoom: .7;
    }

    .point_accordion ul li .pull_btn .text {
        font-size: 15px;
        min-height: 70px;
        padding: 0 90px 0 30px;
    }

    .point_accordion ul li .pull_btn .text .catch {
        font-size: 24px;
    }

    .point_accordion ul li .pull_btn .arrow {
        width: 62px;
        height: 62px;
        right: 20px;
        zoom: .7;
    }
    .point_accordion ul li .pull_btn .arrow:before,
    .point_accordion ul li .pull_btn .arrow:after{
        width: 5px;
        height: 30px;
    }
    .point_accordion ul li .pull_btn .arrow:before {
        transform: rotate(-40deg);
        left: 18px;
        top: 15px;
    }
    .point_accordion ul li .pull_btn .arrow:after {
        transform: rotate(40deg);
        left: 35px;
        top: 15px;
    }
    .point_accordion ul li .pull_btn.active .arrow:before {
        transform: rotate(40deg);
        top: 12px;
    }
    .point_accordion ul li .pull_btn.active .arrow:after {
        transform: rotate(-40deg);
        top: 12px;
    }

    small,
    .small {
        font-size: 85%;
    }

    .point_accordion .brand-record-box h2.main-heading {
        padding: 8px 15px;
        margin-left: 0;
        margin-right: 0;
        min-height: 60px;
        font-size: 24px;
    }

    .point_accordion .brand-record_more_item ul.record_list {
        margin: 0 -5px;
    }

    .brand-record_more_item .record_list li {
        width: calc((100% - 40px) / 4);
        margin: 0 5px 40px;
    }
    .typicalprice_box .grad-item {
        position: relative;
        overflow: visible;
        height: auto !important;
    }

    .typicalprice_box .grad-item.is-hide{
        height: 900px !important;
        overflow: hidden;
    }
    .typicalprice_box ul {
        max-width: 100%;
    }

    .record_more_btn{
        width: 100%;
    }
    .btn_see_more{
        width: 300px;
        height: 40px;
        font-size: 0;
    }
    .btn_see_more.is-show{
        bottom: 30px;
    }
    .grad-trigger::before{
        font-size: 16px;
    }
}


section.purchase-point {
    padding: 40px 0;
}
@media screen and (min-width: 960px){
    #blog .container{
        margin-left: auto;
    }
}
@media screen and (max-width: 767px) {
    section.purchase-point {
        padding: 20px 0;
    }
}

.hermes section.purchase-point {
    margin-bottom: 40px;
}

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

    .louis-vuitton section.purchase-point,
    .hermes section.purchase-point {
        margin-bottom: 0;
        padding-top: 0;
    }
}

.purchase-point_title {
    padding: 20px 0 17px;
    border-top: 1px solid #a67b5d;
    border-bottom: 1px solid #a67b5d;
}

@media screen and (max-width: 767px) {
    .purchase-point_title {
        padding: 10px 0;
        
    }
}

.purchase-point_title h2 {
    max-width: calc(100% + 30px);
    color: #a67b5d;
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
    margin: 0 -15px;
}

@media screen and (max-width: 767px) {
    .purchase-point_title h2 {
        max-width: 100%;
        color: #a67b5d;
        line-height: 1.3;
        margin: 0;
        font-size: 20px;
        font-weight: bold;
    }
}

.purchase-point_title h2 span {
    display: inline-block;
    margin: 0 15px;
}

@media screen and (max-width: 767px) {
    .purchase-point_title h2 span {
        display: block;
        margin: 0;
    }
}

.purchase-point_summary {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

@media screen and (max-width: 767px) {
    .purchase-point_summary {
        margin-top: 25px;
    }
}
@media screen and (min-width: 768px) {
    .purchase-point_summary {
        font-size: 16px;
    }
    
}

.purchase-point_summary p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .purchase-point_summary p {
        font-size: 22px;
    }
}

.purchase-point_content {
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .purchase-point_content {
        margin-top: 40px;
    }
}

.purchase-point_content ul {
    list-style-type: none;
    padding: 0;
}

.purchase-point_content ul li {
    margin-top: 22px;
    padding-bottom: 17px;
    border-bottom: 1px solid #a67b5d;
}

@media screen and (max-width: 767px) {
    .purchase-point_content ul li {
        margin-top: 30px;
        padding-bottom: 0;
        border-bottom: none;
    }
}

.purchase-point_content ul li:first-child {
    margin-top: 0;
}

.purchase-point_content_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .purchase-point_content_header{
        padding-right: 0;
        flex-flow: wrap;
    }
}

.purchase_point_num {
    font-size: 30px;
    color: #fff;
    background-color: #a67b5d;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-flow: row;
    font-family: Arial;
	padding: 5px 15px;
	border-radius: 3px;
}
.purchase_point_num span{
	font-size: 40px;
    line-height: 35px;
	margin-left: 15px;
    border-left: 1px solid #fff;
    padding-left: 15px;
}

.purchase-point_content_header_title {
    padding: 5px 20px 0;
}

@media screen and (max-width: 767px) {
    .purchase_point_num{
        font-size: 20px;
        height: 40px;
    }
    .purchase_point_num span{
        font-size: 20px;
    }
    .purchase-point_content_header{
        justify-content: flex-start;
        position: relative;
    }
    .purchase-point_content_header_title {
        width: calc(100% - (38px + 60px));
        padding: 0 0 0 10px;
    }
}

.purchase-point_content_header_title h3 {
    color: #a67b5d;
    font-size: 32px;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .purchase-point_content_header_title h3 {
        line-height: 1.3;
        font-size: 18px;
    }
}

.purchase-point_content_header_title h3 span {
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .purchase-point_content_header_title h3 span {
        display: block;
    }
}

.purchase-point_content_header_item {
    width: 80px;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .purchase-point_content_header_item {
        width: 50px;
        position: relative;
        right: 5px;
    }
}

.purchase-point_content_header_item img {
    display: block;
}

.purchase-point_content_body {
    margin-top: 20px;
    font-size: 14px;
    text-align: justify;
}

.purchase-point_content_body p {
    color: #3c3c3c;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .purchase-point_content_body p {
        font-size: 22px;
    }
}


section.brand-models_btn {
    margin: 0 0 30px;
    padding: 0;
}

section.brand-models_btn .main-content {
    margin: 0 0 40px
}

.brand-models_btn .main-content .item_btn {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.brand-models_btn .main-content .item_btn li{
    width: calc(33.3333333333% - (30px/3));
    text-align: center;
    padding: 0;
    position: relative;
    color: #333;
    font-weight: bold;
    background: #fcfcfc;
    background: -moz-linear-gradient(top, #fcfcfc 0%, #fff 48%, #fff 100%);
    background: -webkit-linear-gradient(top, #fcfcfc 0%, #fff 48%, #fff 100%);
    background: linear-gradient(to bottom, #fcfcfc 0%, #fff 48%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fcfcfc", endColorstr="#ffffff",GradientType=0 );
    font-size: 18px;
    display: block;
    border: 2px solid #f6f6f6;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 2px 3px 4px rgba(95, 95, 95, .75);
    box-shadow: 2px 3px 4px rgba(95, 95, 95, .75);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 15px;
}

.brand-models_btn .main-content .item_btn li.full {
    width: 100%;
    -webkit-flex-direction: row;
    flex-direction: row;
    margin-right: 0;
    margin-bottom: 10px;
}

.brand-models_btn .main-content .item_btn li:nth-child(3n){
    margin-right: 0;
}
.brand-models_btn .main-content .item_btn li p.item_name{
    margin: 10px 5px;
    height: 100%;
    line-height: 1.2;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    font-size: 13px;
}
.brand-models_btn .main-content .item_btn li.full .item_name{
    padding: 0 0 0 30px;
    font-size: 17px;
    margin: 0;
    width: 70%;
    flex-flow: column;
}
.brand-models_btn .main-content .item_btn li .item_img .no-link,
.brand-models_btn .main-content .item_btn li .item_name .no-link{
    pointer-events: none;
}
.brand-models_btn .main-content .item_btn li.full .item_name .inner {
    margin: 0 auto;
    color: #000;
    line-height: 1;
}
.item_btn .item_name .inner,
.item_btn .item_name .inner_alpha{
    font-weight: bold;
}
.brand-models_btn .main-content .item_btn li p.item_name .inner:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 7px 2px 0;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
    vertical-align: middle;
}
.brand-models_btn .main-content .item_btn li.full .item_name .inner:before{
    width: 6px;
    height: 6px;
    margin: 0 15px 4px 0;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}
.brand-models_btn .main-content .item_btn li.full .item_name .inner_alpha{
    display: block;
    font-size: 70%;
    color: #d17636;
}
.brand-models_btn .main-content .item_btn li p.item_img {
    margin: 0;
}
.brand-models_btn .main-content .item_btn li.full .item_img {
    margin: 0 auto;
    width: 30%;
}
.brand-models_btn .main-content .item_btn li p.item_img img {
    max-height: 60px;
    width: auto;
}
@media screen and (min-width: 768px){
    .brand-models_btn .main-content .item_btn li p.item_img img {
        max-height: 75px;
    }
}
.brand-models_btn .arrow_link {
    margin: 0 auto 20px;
    width: 440px;
    color: #333;
    font-weight: bold;
    background: #fcfcfc;
    background: -moz-linear-gradient(top, #fcfcfc 0%, #fff 48%, #fff 100%);
    background: -webkit-linear-gradient(top, #fcfcfc 0%, #fff 48%, #fff 100%);
    background: linear-gradient(to bottom, #fcfcfc 0%, #fff 48%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fcfcfc", endColorstr="#ffffff",GradientType=0 );
    font-size: 17px;
    display: block;
    border: 2px solid #f6f6f6;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 2px 3px 4px rgba(13, 5, 9, .75);
    box-shadow: 2px 3px 4px rgba(13, 5, 9, .75);
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}
.brand-models_btn .arrow_link a {
    font-weight: bold;
    text-decoration: none;
    color: #444;
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 15px 18px;
    line-height: 1;
    position: relative;
}
.brand-models_btn .arrow_link a::before,
.brand-models_btn .arrow_link a::after{
	content: "";
    width: 4px;
    height: 6px;
    background: #444;
    display: block;
    position: absolute;
    left: 93%;
}
.brand-models_btn .arrow_link a::before{
    -webkit-transform: translate(-50%, 0) skew(40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(40deg, 0deg);
    transform: translate(-50%, 0) skew(40deg, 0deg);
    bottom: 50%;
}
.brand-models_btn .arrow_link a::after{
    -webkit-transform: translate(-50%, 0) skew(-40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(-40deg, 0deg);
    transform: translate(-50%, 0) skew(-40deg, 0deg);
    top: 50%;
}
.arrow_link.right {
    text-align: right;
}
@media screen and (max-width: 767px) {
    section.brand-models_btn{
        zoom: .8;
    }
    .brand-models_btn .main-content .item_btn li .item_name a{
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    section.brand-models_btn .main-content{
        margin-bottom: 20px;
    }
    .brand-models_btn .main-content .item_btn li p.item_img{
        max-height: 60px; 
    }
    .brand-models_btn .main-content .item_btn li p.item_img img {
        max-height: 60px;
        width: auto;
    }
    .item_btn .item_name .inner{
        line-height: 1.2;
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .purchase-point_content{
        padding: 0 20px;
    }
    .purchase-point_summary p{
        padding: 0 20px;
    }
    .brand-models_btn .main-content .item_btn li{
        width: 100%;
        width: calc(25% - (45px/4));
        text-align: center;
        zoom: .8;
        margin-right: 15px;
        margin-bottom: 15px;
        padding: 10px;
    }
    .brand-models_btn .main-content .item_btn li:nth-child(3n){
        margin-right: 15px;
    }
    .brand-models_btn .main-content .item_btn li.full,
    .brand-models_btn.div_maker .main-content .item_btn li:nth-child(7),
    .brand-models_btn.div_maker .main-content .item_btn li:nth-child(11),
    .brand-models_btn.maker_item_list .main-content .item_btn li:nth-child(4n){
        margin-right: 0;
    }
    .brand-models_btn .main-content .item_btn li p.item_name{
        font-size: 18px;
    }
    .brand-models_btn .main-content .item_btn li.full .item_name{
        font-size: 30px;
        width: 60%;
        padding: 10px 10px 10px 30px;
    }
    .brand-models_btn .main-content .item_btn li.full .item_img{
        width: 40%;
    }
    .brand-models_btn .main-content .item_btn li.full .item_name .inner:before{
        width: 12px;
        height: 12px;
        margin: 0 10px 0 0;
    }
    .brand-models_btn .main-content .item_btn li p.item_name a{
        line-height: 1.1;
    }
    .brand-models_btn .arrow_link{
        font-size: 20px;
        margin-bottom: 50px;
    }
    .brand-models_btn .arrow_link a::before,
	.brand-models_btn .arrow_link a::after{
		height: 12px;
	}
    
}
.contentsBox02_201901 .titConfidence{
    font-size: 15px;
    color: #fff ;
    line-height: 140%;
    text-align: center;
    background-color: #484848;
    margin: 0 0 20px;
    padding: 15px 25px;
    position: relative;
}
.h4-three{
    font-size: 13px;
    line-height: 1.6;
    color: #222;
    text-align: center;
    margin: 20px auto;
}

.h4-three .span a {
    color: #f20000;
}
.contentsBox02_201901 h3 {
    background: #eaeaea;
    box-shadow: -1px 1px 0 #e2e1e2;
    padding: 14px 0 12px 20px;
    position: relative;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 5px;
    margin-bottom: 1px;
    border-bottom: 1px solid #a9a6a7;
}
.maker_price_list_accordion{
    position: relative;
}
.contentsBox02_201901 .icon_plus_base {
    color: #444;
    background: none;
    width: 39px;
    height: 39px;
    text-align: center;
    line-height: 39px;
    position: absolute;
    top:5px;
    right: 18px;
    font-weight: bold;
    font-size: 39px;
}
.contentsBox02_201901 .icon_plus_base:before {
    content: "";
    background-color: #444;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 2px;
    height: 20px;
}
.contentsBox02_201901 .icon_plus_base:after {
    content: "";
    background-color: #444;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 2px;
}
.contentsBox02_201901 .active .icon_plus_base:before {
    display: none;
}

.purchase-price{
    display: none;
}
.purchase-price table{
    border: none;
    border-top: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    width: 100%;
}
.purchase-price table thead th{
    text-align: center;
    background: none;
    border: none;
    border-bottom: 1px solid #c9c9c9;
    box-shadow: 0 -1px 0 #fff inset;
    padding: 3px 0;
    font-size: 14px;
    font-weight: bold;
}
.purchase-price table td.item_image{
    font-size: 22px;
    line-height: 30px;
    width: 80px;
    padding: 8px 5px 8px 0;
}
.purchase-price table td.item_image img{
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 137px;
    margin-left: 0;
}
.purchase-price table td.name-three{
    font-size: 14px;
    line-height: 1;
}
.purchase-price table td.name-three b{
    display: block;
    font-weight: bold;
    line-height: 1;
}
.purchase-price table td {
    padding: 10px 5px;
    font-size: 22px;
    line-height: 30px;
    border: none;
    border-bottom: 1px solid #c9c9c9;
    vertical-align: middle;
}
.purchase-price table td:last-child {
    text-align: right;
    width: 30%;
}
.table-three .name-three a {
    color: #333;
    text-decoration: underline;
    text-align: left;
    line-height: 1;
}
.purchase-price table .price {
    font-weight: bold;
    font-size: 22px;
    padding: 20px 0 20px 10px;
}
.td-three-price {
    text-align: center;
    font-size: 12px ;
    font-weight: bold;
    padding: 10px 0 8px 10px;
}
.purchase-price table .price p {
    color: #c00;
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}
.td-three-price .rank-price{
    color: #c00;
    font-weight: bold;
    font-size: 18px;

}
@media (min-width: 640px) {
    .h4-three {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .contentsBox02_201901 h3 {
        font-size: 18px;
    }
    .contentsBox02_201901 .icon_plus_base {
        top: 9px;
    }
    .purchase-price table{
        border: none;
    }
    .purchase-price table thead th{
        padding: 5px 0;
        font-size: 16px;
    }
    .purchase-price table td{
        border-bottom: 1px solid #c9c9c9;
    }
    .purchase-price table td.item_image{
        width: 120px;
        font-size: 22px;
    }
    .purchase-price table td.name-three{
        line-height: 1.3;
        font-size: 17px;
    }
    .purchase-price table td:last-child{
        width: 30%;
    }
    .purchase-price table .price p{
        font-size: 14px;
    }
    .td-three-price .rank-price{
        font-size: 18px;
    }
    .contentsBox02_201901 .titConfidence{
        font-size: 26px;
        margin-bottom: 20px;
    }
    .purchase-price table td.item_image img{
        max-width: 80px;
    }
}


.assessment-purchase.collect-price h2{
    padding: 15px 0;
    line-height: 1.2;
    background:#a67b5d;
    color:#fff;
    margin:0 auto 30px;
    text-align: center;
    font-size: 18px;
}
.assessment-purchase.collect-price h2 span{
    font-size:125%!important;color:#fff;
}
.assessment-purchase.collect-price{
    margin:0;
    text-align: center;
}
.assessment-purchase.collect-price p{
    text-align: center;
}
.assessment-purchase.collect-price img{
    margin: 0 auto;
}
.why-choose-newest h2 {
    padding: 20px 0 10px;
    margin: 0 -10px 10px;
    display: block;
    background: #484848;
    color: #fff;
    line-height: 1.2;
    font-weight: bold;
    font-size: 18px;
    min-height: initial;
    max-width: initial;
    text-align: center;
}
.why-choose-newest h2 span {
    font-size: 23px;
}
@media screen and (max-width: 767px) {
    .point_accordion ul li.assessment-purchase-box .contents_box{
        padding-top: 10px;
    }
    .assessment-purchase.collect-price h2{
        margin-bottom: 10px;
        padding: 10px;
        font-size: 15px;
    }
    .record_annotation{
        font-size: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 768px) {
    .assessment-purchase.collect-price h2{
		font-size: 30px;
	}
	.why-choose-newest h2{
		font-size: 26px;
	}
    .why-choose-newest h2 span {
        font-size: 40px;
    }
}
.clearfix:after {
    clear: both;
}
.reasonContainer_sp {
    background-color: #5c5954;
    padding: 15px;
}
.reasonContainer_sp .reason01sp,
.reasonContainer_sp .reason01sp,
.reasonContainer_sp .reason02sp,
.reasonContainer_sp .reason07sp{
    background-color: #fff;
    margin-bottom: 10px;
    padding: 0;
    position: relative;
    border: 1px solid #030000;
}
.reasonContainer_sp .reason01sp dl,
.reasonContainer_sp .reason02sp dl{
    margin: 0 0 30px;
}
.reasonContainer_sp .reason01sp dt,
.reasonContainer_sp .reason02sp dt,
.reasonContainer_sp .reason07sp dt{
    width: 60px;
    float: left;
}

.reasonContainer_sp .reason01sp dd, 
.reasonContainer_sp .reason02sp dd, 
.reasonContainer_sp .reason07sp dd{
    font-weight: bold;
    line-height: 145%;
    margin: 0 0 0 50px;
    padding: 15px 0 0 ;
    color: #444;
    font-size: 17px;
}

.reasonContainer_sp .reason01sp .reason01_1sp {
    padding: 0 20px 40px;
    position: relative;
}
.reasonContainer_sp .reason01sp .reason01_2sp {
    width: 150px;
    font-size: 12px;
    color: #7e7e7e;
    line-height: 120% !important;
    text-align: center;
    margin: 0 0 10px 25px;
    float: right;
}
.reasonContainer_sp .reason02sp .reason01_1sp {
    padding: 0 20px 40px;
    position: relative;
}
.reasonContainer_sp .reason02sp .reason02_2sp {
    width: 150px;
    margin: 0 25px 10px 0;
    float: left;
}
.reason01sp .reason01_1sp .reason03_2sp {
    width: 150px;
    margin: 0 0 10px 25px;
    float: right;
}
.reasonContainer_sp .reason01sp .reason01_1sp .reason02_2sp {
    width: 150px;
    margin: 0 25px 10px 0;
    float: left;
}
.reasonContainer_sp p {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
    padding: 0;
}
.reasonContainer_sp .reason01sp .reason01_1sp p.reasonMini {
    font-size: 14px ;
    line-height: 140% ;
}
.reasonContainer_sp > .reason02sp .reason01sp{
    background-color: #5c5954;
    border: none;
    margin-bottom: 0;
}
.reasonContainer_sp > .reason02sp + .reason01sp{
    background-color: #fff;
}
.reasonContainer_sp .reason01sp{
    min-height: 300px;
}
.reasonContainer_sp .reason01sp > .reason01sp:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .reasonContainer_sp .reason01sp .reason01_1sp,
    .reasonContainer_sp .reason02sp .reason02_1sp{
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0 20px 20px;
    }
    .reasonContainer_sp .reason01sp .reason01_2sp,
    .reasonContainer_sp .reason02sp .reason02_2sp,
    .reasonContainer_sp .reason01sp .reason01_1sp .reason02_2sp,
    .reasonContainer_sp .reason01sp .reason01_1sp .reason01_2sp,
    .reasonContainer_sp .reason01sp .reason01_1sp .reason01_2sp{
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    .reasonContainer_sp .reason01sp dl,
    .reasonContainer_sp .reason02sp dl{
        
        display: flex;
        align-items: center;
        flex-flow: row;
        padding: 10px 0 0;
        margin-bottom: 10px;
    }
    .reasonContainer_sp .reason01sp dt,
    .reasonContainer_sp .reason02sp dt{
        margin-left: 10px;
        width: 50px;
    }
    .reasonContainer_sp .reason01sp dd,
    .reasonContainer_sp .reason02sp dd{
        font-size: 15px;
        padding-top: 0;
        margin-left: 10px;
        margin-right: 10px;
        text-align: justify;
        width: calc(100% - 60px);
    }
    .reasonContainer_sp .reason01sp .reason01_1sp p.reasonMini{
        font-size: 11px;
    }
}


@media screen and (min-width: 768px) {
    .p-section-title.u-only-sp{
        display: none;
    }
    .reasonContainer_sp .reason01sp{
		min-height: 300px;
	}
    .reasonContainer_sp .reason01sp dl,
    .reasonContainer_sp .reason02sp dl{
        margin: 0;
        padding: 5px 10px 0;
        display: flex;
        flex-flow: row;
        justify-content: flex-start;
        align-items: center;
    }
	.reasonContainer_sp .reason01sp dt,
	.reasonContainer_sp .reason02sp dt,
	.reasonContainer_sp .reason07sp dt{
		width: 100px;
	}
	.reasonContainer_sp .reason01sp dd,
	.reasonContainer_sp .reason02sp dd,
	.reasonContainer_sp .reason03sp dd{
		font-size: 24px;
		padding-top: 0;
		margin-left: 0;
	}
	.reasonContainer_sp .reason01sp .reason01_2sp,
	.reasonContainer_sp .reason02sp .reason02_2sp,
	.reasonContainer_sp .reason01sp .reason01_1sp .reason01_2sp,
	.reasonContainer_sp .reason01sp .reason01_1sp .reason01_2sp{
		width: 235px;
		font-size: 20px;
	}
	.reasonContainer_sp .reason01sp .reason01_2sp{
		margin-left: 25px;
	}
	.reasonContainer_sp p{
		font-size: 16px;
	}
	.reasonContainer_sp .reason02sp .reason02_1sp,
	.reasonContainer_sp .reason01sp .reason02_1sp{
		padding-bottom: 40px;
        display: flex;
		flex-flow: row-reverse;
	}
    .reasonContainer_sp .reason02sp .reason02_1sp{
        flex-flow: row;
        padding: 0 30px 10px;
    }
    .reasonContainer_sp .reason01sp .reason01_1sp{
	    width: 100%;
		display: flex;
		flex-flow: row-reverse;
        padding: 0 30px 10px;
	}
    .reasonContainer_sp .reason02sp .reason02_1sp > .text,
    .reasonContainer_sp .reason01sp .reason01_1sp > .text{
		width: calc(100% - 260px);
	}
    .reasonContainer_sp .reason01sp .reason01_1sp .reason02_2sp{
        margin: 0 0 10px 25px;
    }
}


.shop-info-slide {
    margin: 0 0 50px;
}
.p-shop-list__inner__text .p-shop-list__inner__catch{
    margin: 15px auto;
    font-weight: 400;
    text-align: center;
    display: block;
    display: block;
    font-size: 22px;
    font-size: 5.64103vw;
    color: #a67b5d;
    line-height: 1.2;
}
.p-shop-modalbase{
    margin: 0 auto;
}
.p-shop-modalbase__outer{
    display: block;
    margin: 0;
}
.p-shop-modalbase__pc-title{
    display: none;
}
.p-section-title{
    font-size: 18px;
    text-align: center;
}
.p-section-title .span{
    font-size: 12px;
}
.p-shop-modalbase__pc-title p{
    font-size: 15px;
    margin: 0 0 0 20px;
}
.p-shop-modalbase__pc-title .span {
    font-size: 14px;
}
.p-shop-modalbase__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0 0;
}
.p-shop-modalbase .p-shop-modalbase__areabox{
    width: auto;
}
.p-shop-modalbase__btn{
    margin-bottom: 10px;
    position: relative;
}
.p-shop-modalbase__btn a {
    font-size: 14px;
    font-size: 3.58974vw;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #a67b5d;
    border-radius: 4px;
    padding: 10px 0;
    outline: 0;
    transition: ease .6s;
    width: 38.4615384615vw;
    height: 11.7948717949vw;
    display: inline-flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.p-shop-modalbase__btn .bgleft{
    border-radius: 4px;
}
.p-shop-modalbase__btn .bgleft:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #a67b5d;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(.8,0,.2,1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}
.p-shop-modalbase__btn .span {
    position: relative;
    z-index: 3;
    color: #3c3c3c;
    font-size: 14px;
    font-weight: normal;
    border: 1px solid #cacdcd;
}
.p-shop-modalbase__btn a:hover {
    border: 1px solid #a67b5d;
    cursor: pointer;
}
.p-shop-modalbase__btn .bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.p-shop-modalbase__btn .bgleft:hover a{
    color: #fff;
    z-index: 3;
}
.modal_box {
    background-color: #fff;
    position: fixed;
    z-index: 999999;
    display: none;
    width: 100%;
    height: 120vh;
    height: 120dvh;
    top: 0;
    left: 0;
    padding: 60px 0;
}
.method_three .title {
    text-align: center;
    margin-bottom: 20px;
}
.method_three_btn {
    padding: 0;
    margin: 0 20px 20px;
    padding: 10px;
    width: auto;
    position: relative;
    border-radius: 10px;
    display: block;
    min-height: 135px;
    border-radius: 10px;
    display: block;
}
.method_three_shop {
    background-image: -webkit-linear-gradient(top, #dba37c 0%, #836048 100%);
    background-image: linear-gradient(to bottom, #dba37c 0%, #836048 100%);
    border-bottom: 5px solid #836048;
}
.method_three_deliver {
    background-image: -webkit-linear-gradient(90deg, #41ccae 0%, #128469 100%);
    background-image: linear-gradient(to bottom, #41ccae 0%, #128469 100%);
    border-bottom: 5px solid #128469;
}
.method_three_onsite {
    background-image: -webkit-linear-gradient(90deg, #e9b5b5 0%, #cb674a 100%);
    background-image: linear-gradient(to bottom, #e9b5b5 0%, #cb674a 100%);
    border-bottom: 5px solid #734d43;
}
.btn_chath {
    font-size: 21px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 0;
}
.btn_title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: .1em;
    text-align: center;
    line-height: 1;
    margin: 0;
}
.btn_icon {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translate(-50%, -50%);
}
.link_method {
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height:100%;
    font-size: 0;
}
.method_three_btn:hover{
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .method_three_btn{
        margin: 0 0 10px;
        padding-left: 60px;
        min-height: 80px;
    }
    .btn_chath{
        font-size: 15px;
        padding-top: 5px;
        padding-bottom: 10px;
    }
    .btn_title{
        font-size: 20px;
        margin-left: -30px;
    }
    .btn_icon{
        left: 35px;
        max-width: 50px;
        margin-bottom: 0;
    }
    .btn_icon img{
        max-width: 40px;
    }
}
@media screen and (min-width: 641px) {
	.method_three{
		display: flex;
		flex-flow: wrap;
        margin-bottom: 50px;
	}
	.method_three .title{
		width: 100%;
	}
	.method_three_btn{
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		padding-bottom: 30px;
		box-shadow: 0px 5px 5px #aaaaaa;
	}
	.btn_chath {
        font-size: 23px;
        margin: 20px 0 0;
        padding-bottom: 20px;
    }
	.btn_title {
        font-size: 30px;
        padding-left: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
	
	
    .shop-info-slide{
        margin-bottom: 0;
    }
}

.shoptmp__commonbtn-link-arrow::before{
    content: "";
    width: 3px;
    display: block;
    transform: translate(-50%, 0) skew(30deg, 0deg);
    position: absolute;
    bottom: 50%;
    left: 53%;
    background: #fff;
    height: 9px;
}
.shoptmp__commonbtn-link-arrow:after{
    content: "";
    width: 3px;
    display: block;
    transform: translate(-50%, 0) skew(-30deg, 0deg);
    position: absolute;
    top: 50%;
    left: 53%;
    background: #fff;
    height: 9px;
}
.select_h4_wrap {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select_h4_wrap span {
    height: 2px;
    width: 100%;
    background-color: #010101;
}
.lastspace .select h4 {
    text-align: center;
    font-size: 24px;
    margin: 40px auto 32px;
    font-weight: bold;
    padding: 0;
    background: #fff;
    border: none;
    flex-shrink: 0;
}
.select_h4_wrap span {
    height: 2px;
    width: 100%;
    background-color: #010101;
}
.lastspace .flex {
    display: flex;
    justify-content: center;
    width: 100%;
}
.lastspace .flex figure:first-child {
    margin-right: 1%;
}
.lastspace .flex figure:last-child {
    margin-left: 1%;
}
.lastspace .flex figure img {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .lastspace .select h4{
        font-size: 20px;
        line-height: 1.3;
        margin: 20px auto;
    }
}
.reinforce_box{
    max-width: 898px;
    margin: 4.6vw auto 4.6vw;
    background-image: url(/img/top/bg_reinforce.svg);
    padding: 30px 0;
    display: flex;
    flex-flow: column;
}
.reinforce_box h2 {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #70503a;
    position: relative;
    padding-right: 80px;
    padding-left: 80px;
    display: flex;
    margin: 20px auto;
}
.reinforce_box h2::before,
.reinforce_box h2::after {
    content: '';
    display: block;
    background-image: url(/img/top/fukidashi.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-size: contain;
    width: 30px;
    height: 30px;
}
.reinforce_box h2::after {
    left: auto;
    right: 0;
    transform: rotateY(-180deg);
}
.lead_text{
    font-size: 15px;
    text-align: center;
    color: #a67b5d;
    margin-bottom: 30px;
    padding: 0 15px;
}
.item_list_box ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.item_list_box ul li {
    width: calc(33.333% - (28px / 3));
    background: #fff;
    border: 3px solid #e7e1c9;
    border-radius: 8px;
    margin-right: 5px;
    margin-bottom: 10px;
    position: relative;
    box-sizing: content-box;
}
.item_list_box ul li:nth-child(3n){
    margin-right: 0;
}
.item_list_box figure {
    padding: 20px;
}
.item_list_box .cate_name {
    font-size: 13px;
    text-align: center;
    color: #000000;
    padding: 10px 0;
}
.Purchase__BlogContainer{
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.purchase_history .main-heading{
    line-height:140%;
    background:#a67b5d;
    color:#fff;
    margin:0 0 30px;
    padding: 20px 0;
    text-align: center;
    font-size: 17px;
}
.purchase_historyList{
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    padding: 15px;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 0 ;
    zoom: .8;
}
.purchase_historyItem {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px #b7b7b7;
    padding: 22px 20px 33px 20px;
    margin-bottom: 10px;
    box-sizing: border-box;
    opacity: 1;
    transition: all .4s ease 0s;
}
.purchase_historyContent{
    display: flex;
}
.Purchase__BlogDetail {
    margin-left: 12px;
}
.Purchase__BlogUpper {
    margin-bottom: 6px;
}
.Purchase__BlogName {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.46;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.Purchase__BlogShop {
    background-color: #a67b5d;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    border-radius: 12px;
    width: 210px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: text-top;
    padding-left: 5px;
    letter-spacing: -1px;
}
.Purchase__BlogReferenceCont {
    display: flex;
    justify-content: space-between;
    width: 92%;
}
.Purchase__BlogReference {
    font-size: 18px;
    color: #3b3b3b;
}
.Purchase__BlogPrice {
    color: #a67b5d;
    font-size: 26px;
    line-height: 1.375;
    text-align: right;
    font-weight: bold;
}
.Purchase__BlogSentence {
    font-size: 18px;
    line-height: 1.44;
    border-top: 1px solid #aaa;
    padding-top: 12px;
    margin-bottom: 19px;
    margin-top: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.Purchase__BlogButton {
    background-color: #95a6aa;
    color: #fff;
    width: 322px;
    height: 46px;
    border-radius: 8px;
    background: #95a6aa;
    border-bottom: 4px solid #5e6b6e;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    line-height: 1;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
    font-size: 22px;
}
.history_more_link{
    margin-top: 30px;
    margin-bottom: 95px;
}
.btn_history_more_link{
    display: flex;
    text-align: center;
    flex-direction: column;
    padding: 0 25px;
    text-align: center;
}
.btn_history_more_link > a{
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    display: block;
    width: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: 35px center;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    margin: 0 auto;
    line-height: 1.4;
    padding: 12px 0 12px 30px;
    position: relative;
    font-weight: bold;
    margin-bottom: 30px;
    transition: none;
    background-color: #039ba6;
    box-shadow: 0 6px 0 0 #005062;
    background-image: url("/img/icons/icon_btn_jisseki.svg");
}
.btn_history_more_link > a:before,
.btn_history_more_link > a:after {
    content: "";
    width: 4px;
    height: 12px;
    background: #fff;
    display: block;
    position: absolute;
    left: 93%;
}
.btn_history_more_link > a:before{
    -webkit-transform: translate(-50%, 0) skew(40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(40deg, 0deg);
    transform: translate(-50%, 0) skew(40deg, 0deg);
    bottom: 50%;
}
.btn_history_more_link > a:after{
    -webkit-transform: translate(-50%, 0) skew(-40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(-40deg, 0deg);
    transform: translate(-50%, 0) skew(-40deg, 0deg);
    position: absolute;
    top: 50%;
}
.faq_box,
.area_box{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: wrap;
    width: 100%;
    max-width: 898px;
    margin: 4.6vw auto 6vw;
}
.faq_box{
    padding: 0 15px;
}
.faq_box h2{
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    width: 100%;
    border-bottom: 1px solid;
    margin-bottom: 10px;
}
.area_box h2{
    line-height: 140%;
    background: #a67b5d;
    color: #fff;
    margin: 0 0 10px;
    padding: 15px 0;
    text-align: center;
    font-size: 17px;
    width: 100%;
}
.faq_box .faq_list{
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
    width: 100%;
    border-top: 1px solid #f2f2f2;
    padding-top: 30px;
}
    @media screen and (max-width: 767px) {
        .reinforce_box{
            padding: 30px 0 10px;
        }
        .lead_text{
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: justify;
        }
        .reinforce_box h2{
            margin-top: 0;
            margin-bottom: 15px;
            padding-left: 40px;
            padding-right: 40px;
        }
        .item_list_box ul{
            padding: 0 10px;
        }
        .faq_box .faq_list + .faq_list{
            border-top: none;
            padding-top: 0;
        }
        .purchase_historyItem{
            padding-bottom: 20px;
        }
        .purchase_historyContent figure {
            width: 80px;
            height: 80px;
        }
        .Purchase__BlogDetail{
            width: calc(100% - 80px);
        }
        .Purchase__BlogShop{
            font-size: 12px;
            width: 70px;
            height: 18px;
            line-height: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            letter-spacing: normal;
        }
        .Purchase__BlogName{
            font-size: 15px;
        }
        .Purchase__BlogReference{
            font-size: 12px;
        }
        .Purchase__BlogPrice{
            font-size: 20px;
        }
        .Purchase__BlogSentence{
            margin: 10px auto;
        }
        .Purchase__BlogButton{
            font-size: 17px;
            height: 35px;
            width: 180px;
        }
        .history_more_link{
            margin-bottom: 40px;
        }
        .btn_history_more_link > a{
            font-size: 16px;
            background-size: 30px;
            background-position: 10px center;
            padding-left: 20px;
            margin-bottom: 0;
        }
        .btn_history_more_link > a:before,
        .btn_history_more_link > a:after {
            width: 3px;
            height: 8px;
        }
        .purchase_history .main-heading{
            font-size: 17px;
            padding: 10px 0;
            margin-bottom: 10px;
        }
        .item_list_box figure{
            padding: 15px 15px 0;
        }
        .item_list_box .cate_name{
            padding: 10px 5px;
		    font-size: 12px;
            line-height: 1.3;
        }
        
    }
@media screen and (min-width: 768px) {
    .purchase_historyList{
        padding: 28px 50px 12px;
        margin-bottom: 30px;
    }
    .purchase_historyItem{
        margin-bottom: 20px;
    }
    .btn_history_more_link {
        max-width: 440px;
        margin: 0 auto;
    }

    .btn_history_more_link > a {
        padding: 20px 0 20px 10px;
        font-size: 18px;
        background-size: 30px;
        background-position: 10px center;
    }
}

.faq_box .faq_list li{
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.faq_box .faq_list h3 {
    font-size: 15px;
    line-height: 1.2;
    align-self: flex-start;
    width: 100%;
    margin: 0;
    padding-right: 30px;
    position: relative;
}
.faq_box .faq_list h3:before {
    content: "";
    margin: auto;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 11px;
    width: 2vw;
    height: 2vw;
    border-top: 1px solid #3c3c3c;
    border-right: 1px solid #3c3c3c;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: ease .2s;
    transition: ease .2s;
}
.faq_box .faq_list .answer_box {
    font-size: 14px;
    color: #a67b5d;
    padding-top: 50px;
}
.faq_box .faq_list .answer_box p {
    margin-bottom: 0;
}
.faq_box .more_link a{
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #a67b5d;
    width: 350px;
    height: 50px;
    border-radius: 10px;
    background: #fff;
    border: 3px solid #a67b5d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto 0;
    position: relative;
}
.faq_box .more_link a::before,
.faq_box .more_link a::after{
    content: "";
    width: 4px;
    height: 12px;
    background: #a67b5d;
    display: block;
    position: absolute;
    left: 93%;
}
.faq_box .more_link a::before{
    -webkit-transform: translate(-50%, 0) skew(40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(40deg, 0deg);
    transform: translate(-50%, 0) skew(40deg, 0deg);
    bottom: 50%;
}
.faq_box .more_link a::after{
	-webkit-transform: translate(-50%, 0) skew(-40deg, 0deg);
    -moz-transform: translate(-50%, 0) skew(-40deg, 0deg);
    transform: translate(-50%, 0) skew(-40deg, 0deg);
    top: 50%;
}
    @media screen and (max-width: 767px) {
        .faq_box{
            padding: 0;
        }
        .faq_box h2{
            margin-bottom: 30px;
            padding: 10px;
            font-size: 20px;
        }
        .faq_box .faq_list{
            padding-top: 20px;
        }
        .faq_box .faq_list h3{
            font-size: 14px;
        }
        .faq_box .more_link{
            margin-bottom:20px;
        }
        .faq_box .more_link a{
            margin-top: 0;
        }
        .faq_box .more_link a::before,
        .faq_box .more_link a::after{
            width: 3px;
            height: 8px;
        }
        .faq_box .faq_list .answer_box {
            padding-top: 30px;
            font-size: 13px;
        }
        .howto_box{
		    padding: 0 20px;
	    }
    }
.more_link a svg {
    width: 24px;
    height: 24px;
    fill: #a67b5d;
    margin-right: 20px;
}
.area_box .memo_text {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #d09800;
    margin: 20px auto;
}
.map-pc {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
}

.area_box h3 {
    font-weight: bold;
    font-size: 1.8rem;
    margin: .35em 0 .7em 0;
}
.area_box ul {
	display: flex;
	flex-flow: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 580px;
	width: 100%;
	margin-bottom: 20px;
}
.area_box li{
	font-size: 16px;
    color: #333;
}
.area_box li a{
	color: #a67b5d;
}

.area_box li:not(last-child) {
	margin-right: 20px;
}

.area_box li a:hover {
	cursor: pointer;
	text-decoration: underline;
}

.tooltip-inner {
	font-size: 14px;
	position: relative;
	padding: 16px;
	box-shadow: 0px 1px 4px rgb(0 0 0 / 30%);
	z-index: 1;
	background: white;
	line-height: 1.5;
}

[x-placement="left"]>.tooltip-inner {
	right: 10px;
}

.tooltip-arrow {
	width: 10px;
	height: 10px;
	position: absolute;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	z-index: 2;
	background: white;
	border-right-color: transparent;
	border-bottom-color: transparent;
	margin-left: -5px;
	transform: rotate(45deg);
	top: -1px;
	right: 5px;

}

[x-placement="left"]>.tooltip-arrow {
	transform: rotate(135deg);
	right: 5px;
}

.tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.42857143;
	line-break: auto;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	white-space: normal;
	font-size: 12px;
	filter: alpha(opacity=0);
	opacity: 0;
	color: #000;
}

.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear;
}

.fade.in {
	opacity: 1;
}

.tooltip.bottom {
	padding: 5px 0;
	margin-top: 3px;
}

.tooltip.in {
	filter: alpha(opacity=90);
	opacity: .9
}

.area_box .btn_link {
    margin: 4rem auto 0;
    text-align: center;
}

.area_box .btn_link a {
	border: none;
	padding: 15px;
	height: auto;
	border-radius: 10px;
	background-color: #a67b5d;
	color: #ffffff;
	font-size: 18px;
	border-bottom: 5px solid #654a37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.area_box .btn_link .icon {
	margin-right: 10px;
    width: 30px;
}
.voice_box{
    margin-bottom: 5%;
}
.voice_box .main-heading,
.related_post_box .main-heading,
.company_about_text .main-heading{
    font-size: 17px;
    color: #fff;
    line-height: 140%;
    text-align: center;
    background-color: #484848;
    margin: 0 0 10px;
    padding: 15px 25px;
    position: relative;
}
.voice_list{
    max-width: 90%;
    margin: 30px auto;
}
.voice_list li{
    margin: 0 0 30px;
}
.voice_list li .box {
    min-height: 200px;
}
.voice_list li .title-bar {
    position: relative;
}
.voice_list li .author {
    position: absolute;
    bottom: 3px;
    right: 0;
    z-index: 1;
}
.voice_list li h3 {
    border-top: 1px solid #a67b5d;
    border-bottom: 3px solid #a67b5d;
    position: relative;
    padding: 14px 90px 14px 10px;
    line-height: 1.4;
    margin: 0 auto 25px;
    font-size: 17px;
}

.voice_list li h3:after {
    content: "▼";
    color: #a67b5d;
    height: 8px;
    width: 9px;
    position: absolute;
    left: 10px;
    bottom: -2px;
}
.voice_list li .text-holder {
    position: relative;
    overflow: hidden;
    height: auto;
    font-size: 14px;
    text-align: justify;
}

.related_post_box{
    margin-bottom: 50px;
}
.related_post_box_list ul{
    padding: 0;
    margin: 0;
}
.related_post_box_list ul li{
    list-style: none;
    border-bottom: 1px solid #ccc;
    position: relative;
}
.related_post_box_list ul li .li-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    margin: 0;
    padding: 20px 0;
}
.related_post_box_list ul li .img-holder {
    margin-right: 15px;
    min-width: 110px;
}
.related_post_box_list ul li .img-holder img {
    width: 110px;
    height: auto;
}
.related_post_box_list ul li .text-holder {
    margin: 0;
    width: auto;
    font-size: 14px;
}
.related_post_box_list ul li .text-holder h3 {
    margin: 0;
    font-size: 16px;
    color: #a67b5d;
    line-height: 1.4;
}
.related_post_box_list ul li .text-holder h3 a {
    font-size: 22px;
}
.related_post_box_list ul li .text-holder p {
    color: #000;
    line-height: 1.6;
    font-size: 14px;
}
.related_post_box_list ul li a,
.related_post_box_list ul li .before_arrow {
    text-decoration: underline;
    color: #a67b5d;
    max-height: 94px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.before_arrow:before {
    content: "";
    display: inline-block;
    width: .5em;
    height: .5em;
    margin: 0 10px 2px 0;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
    vertical-align: middle;
}
.link_more{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
}
.related_post_box_list ul li .link_more a{
    color: transparent;
    display: block;
    width: 100%;
    height: 100%;
}
.category_box{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    width: 92%;
    margin: 0 auto;
    border-bottom: none !important;
}
.category_title{
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin: 20px 0;
}
.category_box ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.category_box ul li{
    margin: 10px 20px 20px 0;
    padding: 0 20px 0 0;
    line-height: 1;
    list-style: none;
}
.category_box ul li a{
    text-decoration: underline;
    color: #a67b5d;
    font-size: 18px;
}
.company_about_text{
    margin-bottom: 50px;
    font-size: 16px;
}
.company_about_text p{
    font-size: 16px;
    text-align: justify;
}


@media screen and (max-width: 767px) {
	.area_box .btn_link a {
        width: 90vw;
		max-width: 90vw;
		margin-top: 0;
        font-size: 16px;
        padding: 10px 0;
	}
    .company_about_text p{
        font-size: 14px;
    }
    .related_post_box_list ul {
		max-width: 90vw;
		margin: 0 auto;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-flow: wrap;
	}
    .related_post_box_list ul li{
        width: calc(50% - 5px);
        margin-right: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid #f2f2f2;
    }
    .related_post_box_list ul li:nth-child(2n){
		margin-right: 0;
	}
    .related_post_box_list ul li .img-holder{
        margin-right: 0;
    }
    .related_post_box_list ul li .img-holder img{
        width: 100%;
    }
    .related_post_box_list ul li .li-inner{
		width: auto;
        flex-flow: column;
        padding-top: 0;
		padding-left: 0;
	}
    .related_post_box_list ul li .text-holder h3{
		margin: 5px 0 10px;
		font-size: 15px;
		font-weight: bold;
		text-align: justify;
		line-height: 1.4;
	}
	.related_post_box_list li .li_inner .desc_text_box{
		color: #000;
		line-height: 1.6;
		font-size: 12px;
		text-align: justify;
	}
    .related_post_box_list ul li .before_arrow{
        font-size: 11px;
    }
    .category_box{
        padding: 0 10px;
        width: 100vw;
    }
    .category_title{
        margin: 0;
        font-size: 16px;
    }
    .category_box ul li{
        margin-bottom: 0;
    }
    .category_box ul li a{
        font-size: 15px;
    }
    .voice_list li h3{
        font-size: 16px;
    }
    .voice_box .voice_list {
        padding: 0;
        margin-top: 10px;
        margin-bottom: 0;
        max-width: 100%;
    }
    .voice_list li .author{
        max-width: 70px;
        bottom: -1px;
    }
}



.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
}
.modal_close {
    position: absolute;
    display: block;
    color: #000;
    text-align: center;
    transform: translate(50%, -50%);
    right: 13vw;
    top: 18.5vw;
    cursor: pointer;
}
.modal_back{
    cursor: pointer;
}
.modal_box img {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
    display: block;
}
.modal_box .p-section-title p{
    font-size: 24px;
}
.modal_box .p-section-title .span{
    font-size: 16px;
}
.modal_back {
    position: absolute;
    display: block;
    color: #000;
    text-align: center;
    transform: translate(50%, -50%);
    left: 1.5vw;
    top: 18.5vw;
    width: 62px;
    font-size: 46px;
    line-height: 62px;
    position: absolute;
    display: block;
    color: #000;
    text-align: center;
    transform: translate(50%, -50%);
    left: 1.5vw;
    top: 18.5vw;
    width: 62px;
    font-size: 46px;
    line-height: 62px;
}
.p-shop-modalarea__inner-modal {
    width: 82.0512820513vw;
    margin: 0 auto;
    position: relative;
}
.p-shop-modalarea__inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 0;
}
.p-shop-modalarea__btn{
    margin: 0 0 20px;
    width: 100%;
    position: relative;
}
.p-shop-modalarea__btn a {
    font-size: 14px;
    font-size: 3.58974vw;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #a67b5d;
    border: 1px solid #cacdcd;
    border-radius: 4px;
    padding: 10px 0;
    outline: 0;
    transition: ease .6s;
    width: 38.4615384615vw;
    height: 11.7948717949vw;
    display: inline-flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.p-shop-modalarea__btn a span {
    position: relative;
    z-index: 3;
    color: #3c3c3c;
}
.p-shop-modalarea__btn .bgleft{
    border-radius: 4px;
}
.p-shop-modalarea__btn .bgleft:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #a67b5d;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(.8,0,.2,1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
    border-radius: 4px;
}
.p-shop-modalarea__btn .bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.p-shop-modalarea__btn .bgleft:hover a{
    border: 1px solid #a67b5d;
    color: #fff;
    z-index: 4;
}
.p-shop-modalarea__btn a:hover span {
    color: #fff;
}
.modal_back--toparent {
    position: absolute;
    display: block;
    color: #000;
    text-align: center;
    transform: translate(50%, -50%);
    left: 1.5vw;
    top: 18.5vw;
    width: 62px;
    font-size: 46px;
    line-height: 62px;
    position: absolute;
    display: block;
    color: #000;
    text-align: center;
    transform: translate(50%, -50%);
    left: 1.5vw;
    top: 18.5vw;
    width: 62px;
    font-size: 46px;
    line-height: 62px;
}
.p-shop-modalarea__about p span {
    position: relative;
    padding-left: 14px;
    margin-right: 1px;
    line-height: 20px;
}
.p-shop-modalarea__about p span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    width: 7.1794871795vw;
    height: 100%;
}
.p-shop-modalarea__inner--scroll {
    overflow-y: scroll;
    max-height: 36vh;
    height: auto;
    min-height: 100px;
}
.howto_box h2{
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #444;
}
.howto_box .more_link a{
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	color: #a67b5d;
	width: 350px;
	height: 50px;
	border-radius: 10px;
	background: #fff;
	border: 3px solid #a67b5d;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 3rem auto 0;
}
.howto_box .copy {
	color: #a67b5d;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	padding-bottom: 20px;
	max-width: 100%;
}

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

.howto_box ul li {
	width: calc(33.3% - 5.56vw/3);
	margin-right: 2.28vw;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
}

.howto_box ul li:last-child {
	margin-right: 0;
}

.howto_box h3 {
	background-color: #a67b5d;
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
    margin: .35em 0 .7em 0;
	width: 100%;
}

.howto_box p {
	font-size: 12px;
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (min-width: 640px){
    .howto_box p {
        font-size: 14px;
        max-width: 270px;
        text-align: justify;
    }
    .howto_box figure {
        margin: 1vw auto;
    }
}

.howto_box figure {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.howto_box img {
	object-fit: contain;
	height: 95px;
}
.howto_box .btn_link {
	margin-bottom: 5rem;
}

.howto_box .btn_link img {
    max-width: 23px;
	height: auto;
	margin-right: 10px;
}
.howto_box .more_link a {
	border: none;
	padding: 15px;
	height: auto;
	border-radius: 50px;
	background-color: #a67b5d;
	color: #ffffff;
	font-size: 18px;
	border-bottom: 5px solid #6a4f3c;
}

@media screen and (max-width: 639px) {
    #blog .container{
        zoom: .9;
    }
    .howto_box h2{
		font-size: 2rem;
		font-weight: 600;
		padding: 10px;
		margin: 30px auto 20px;
	}
	.howto_box{
		padding: 0 20px;
	}
    .howto_box ul li,
	.howto_box ul li:last-child {
		width: 100%;
		margin: 0 10px 15px;
	}
    .howto_box h3{
        padding: 8px 0;
        margin-top: 0;
    }
    .howto_box img {
		margin: 10px 0;
	}
    .howto_box .more_link a {
		padding: 5px;
		font-size: 15px;
	}
    .howto_box p {
		font-size: 14px;
		max-width: 90%;
	}
    .point_accordion ul li .pull_btn .arrow{
        zoom: .9;
    }
}


@media screen and (min-width: 641px) {
    .u-only-sp,
    br.none {
        display: none;
    }
    .point_accordion .m-sp-mt40 {
        margin-top: 60px;
    }
    .p-shop-list__inner__text .p-shop-list__inner__catch{
        font-size: 22px;
    }
    .p-shop-modalbase{
        width: initial;
    }
    .p-shop-modalbase__outer{
        margin: 0;
    }
    .p-shop-modalbase__pc-title{
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }
    .p-shop-modalbase__pc-title p{
        font-size: 30px;
        margin: 0;
        line-height: 1.5;
    }
    .p-shop-modalbase__inner{
        width: 560px;
        margin: 0 0 14px;
    }
    .p-shop-modalbase .p-shop-modalbase__areabox {
        margin: 0 13px;
    }
    .p-shop-modalbase__btn {
        width: 46%;
        max-width: 160px;
    }
    .p-shop-modalbase__btn a {
        font-size: 12px;
        width: 20.8333333333vw;
        max-width: 100%;
        height: 5.2083333333vw;
        max-height: 40px;
        letter-spacing: 0;
        border: none;
    }
    .p-shop-modalbase__btn a:hover{
        cursor: pointer;
        color: #fff;
    }
    .p-shop-modalbase__btn a .span {
        font-size: inherit;
    }
    .modal_box {
        width: 80vw;
        height: 80vh;
        padding: 20px;
        z-index: 1000002;
        top: 5vw;
        max-width: none;
        max-height: 340px;
    }
    .btn_chath{
        margin: 20px 0 10px;
    }
    .btn_title{
        font-size: 30px;
    }
    .btn_history_more_link > a{
        padding: 20px 0 20px 10px;
    }
    .faq_box h2{
        margin: 0 auto 50px;
        font-size: 32px;
        font-weight: 600;
        height: 60px;
    }
    .area_box h2{
        padding: 20px 0;
        margin: 0 auto 10px;
        font-size: 28px;
    }
    .faq_box .faq_list h3:before {
        width: 8px;
        height: 8px;
    }
    .faq_box .faq_list li{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .faq_box .more_link a{
        font-size: 18px;
        width: 400px;
        height: 65px;
        margin-top: 1rem;
    }
    .area_box .memo_text {
        font-size: 18px;
        margin: 30px auto;
    }
    .voice_list{
        margin: 50px auto;
    }
    .voice_list li h3 {
        line-height: 1.6;
        font-size: 20px;
    }
    .voice_list li h3:after {
        bottom: 0;
    }
    .related_post_box_list ul li .img-holder{
        max-width: 200px;
        margin-right: 30px;
    }

    .related_post_box_list ul li a{
        max-height: none;
    }
    .related_post_box_list ul li .img-holder img{
        width: 100%;
    }
    .related_post_box_list ul li .text-holder h3,
    .related_post_box_list ul li .text-holder h3 a{
        font-size: 20px;
        padding-bottom: 10px;
    }
    .area_box .btn_link a{
        min-width: 400px;
    }
    .voice_box .main-heading,
    .related_post_box .main-heading,
    .company_about_text .main-heading{
        font-size: 26px;
        margin-bottom: 20px;
    }
    .related_post_box .main-heading{
        margin-bottom: 10px;
    }
    .reinforce_box h2{
        font-size: 32px;
    }
    .reinforce_box h2::before,
    .reinforce_box h2::after{
        width: 57px;
        height: 54px;
    }
    .item_list_box ul li{
        width: calc(16.666% - (66px / 6));
    }
    
    .item_list_box ul li:nth-child(3n){
        margin-right: 5px;
    }
    .brand-models_btn:not(.div_maker) .main-content .item_btn li:nth-child(4n),
    .item_list_box ul li:last-child {
        margin-right: 0;
    }
    .lead_text{
        padding: 0 20px;
    }
    .purchase_history .main-heading{
        font-size: 26px;
        font-weight: bold;
        padding: 15px 0;
    }
    .Purchase__BlogName{
        font-size: 22px;
    }
    .faq_box{
        padding: 0;
    }
    .faq_box .faq_list{
        width: calc(50% - 25px);
        margin-right: 25px;
    }
    .method_three .btn_icon{
        width: 65px;
        height: 60px;
    }
    .howto_box h2{
        font-size: 28px;
        font-weight: 600;
        height: 50px;
        margin: 0 auto .7em;
    }
    .howto_box h3 {
        font-size: 16px;
        padding: 8px 0;
    }
}

@media screen and (min-width: 768px) {
    .p-shop-modalbase__outer{
        display: flex;
        justify-content:center;
        margin: 0;
    }
    .p-shop-modalbase__pc-title{
        margin-bottom: 0;
        padding-top: 15px;
        text-align: left;
    }
    .p-shop-modalbase__btn {
        width: 30%;
    }
    .modal_bg {
        z-index: 1000001;
    }
    .modal_close {
        top: 0;
        right: 0;
    }
    .modal_box img {
        height: auto;
        max-width: 40px;
    }
    .modal_box .p-section-title {
        margin: 40px 0 20px;
        text-align: center;
        letter-spacing: 4px;
        position: relative;
    }
    .modal_back {
        left: -2.5vw;
        top: 2vw;
    }
    .modal_back--toparent {
        left: -2.5vw;
        top: 2vw;
    }
    .p-shop-modalarea__inner-modal{
        width: 100%;
        max-width: 748px;
        margin: 40px auto;
        
    }
    .p-shop-modalarea__inner{
        width: 574px;
        max-width: 100%;
        margin: 0 auto;
        justify-content: flex-start;
    }
    .p-shop-modalbase__areabox{
        margin: 0 15px;
    }
    .p-shop-modalarea__btn {
        margin: 0 1.8% 20px;
        /*width: 46%;*/
    }
    .modal_switch{
        cursor: pointer;
    }
    .p-shop-modalarea__btn a {
        font-size: 14px;
        font-size: 1.09375vw;
        width: 20.8333333333vw;
        max-width: 160px;
        height: 5.2083333333vw;
        max-height: 40px;
    }
    .p-shop-modalarea__btn.p-shop-modalarea__btn--shop{
        width: 46%;
    }
    .p-shop-modalarea__btn a.modal_link{
        width: 100%;
        max-width: 264px;
    }
    .p-shop-modalarea__about {
        margin: 60px auto 100px;
    }
    .p-shop-modalarea__about p {
        font-size: 14px;
        margin: 0;
    }
    .p-shop-modalarea__about span {
        padding-left: 20px;
        line-height: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
        font-size: 12px;
    }
    .p-shop-modalarea__about span::before {
        width: 14px;
    }
    .p-shop-modalarea__inner--scroll {
        max-height: 20vh;
        min-height: unset;
        margin: 0 auto;
    }
    .howto_box h2{
        font-size: 32px;
        height: 60px;
    }
}