@charset "UTF-8";
/*====================================================*/
/* 共通 */
/*====================================================*/
body {
    background-image: url(../img/common/bg_fix_sp.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
@media print,screen and (min-width: 1000px){
    body {
        background-image: url(../img/common/bg_fix_pc.jpg);
    }
}

.wrap_product {
    padding-left : calc( 24 * 100% / 750 );
    padding-right : calc( 24 * 100% / 750 );
}


/*====================================================*/
/* EC TOP */
/*====================================================*/
/* mv */
.mv {
    position: relative;
}
.mv-container {
    position: relative;
}
.mv-container img {
    display: block;
}
.ec-mvimg01 {
    width: 92%;
    margin-top: -5%;
    margin-left: 8%;
}
.ec-mvimg02 {
    width: 44%;
    margin-top: 5rem;
}
.ec-mvimg03 {
    width: 46%;
    margin-top: -30%;
    margin-right: 8%;
    margin-left: auto;
}
.ec-mvicon {
    width: 10%;
    position: absolute;
    top: 40%;
    left: 45%;
    z-index: 100;
}
.mv_title {
    margin: 4rem 0 5rem 6%;
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
@media print,screen and (min-width: 1025px){
	.mv {
    max-width: 1440px;
    margin: auto;
}
    .mv-container_img {
        width: 88%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-left: 6%;
        margin-right: 6%;
    }
    .ec-mvimg01 {
        width: 46%;
        margin-top: 0;
        margin-left: 0;
    }
    .ec-mvimg02 {
        width: 16%;
        margin-top: -5rem;
    }
    .ec-mvimg03 {
        width: 18%;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
}

/* LINEバナー */
.line-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    padding-left : calc( 30 * 100% / 750 );
    padding-right : calc( 30 * 100% / 750 );
    background-color: var(--point-color);
    border: 0.5px solid transparent;
    color: #fff;
    transition: var(--hover-transition);
}
.line-banner img {
    height: 3.8rem;
    margin-right: 1em;
    filter: brightness(0) invert(1);
}
.line-banner:hover {
    background-color: #fff;
    border: 0.5px solid var(--point-color);
    color: var(--point-color);
}
.line-banner:hover img {
    filter: invert(46%) sepia(4%) saturate(3182%) hue-rotate(337deg) brightness(92%) contrast(80%);
}

.line-banner_text-container span {
    display: block;
    font-size: 1.5rem;
}
.little-text {
    font-family: var(--font-cormorant);
    font-size: 1.3rem;
    letter-spacing: 0.025em;
}
.round-design {
    grid-area: 1 / 2 / 3 / 3;
    padding: 3px 1em;
    background-color: #fff;
    border-radius: 60vh;
    color: var(--point-color);
    font-size: 1.3rem;
    text-align: center;
    white-space: nowrap;
}

@media print,screen and (max-width: 1024px){
    .line-container {
        display: none;
    }
    .line-banner_text-container {
        display: grid;
        grid-template-columns: 2fr 1.25fr;
        align-items: center;
    }
}
@media print,screen and (min-width: 1025px){
    aside.line-container {
        position: absolute;
        top: 90%;
        right: 0;
		z-index: 50;
    }
    .sp_line {
        display: none;
    }
    .line-banner {
        width: 302px;
    }
    #js-sidemenu.classActive {
        position: fixed;
        top: 0;
    }
}

/* 検索 */
.search-container {
    margin-top: 6.5rem;
    margin-bottom: 6.5rem;
    padding: 1.4rem 0;
    background-color: var(--thin-color);
}
.search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    margin: auto;
    background-color: #fff;
    border: 1px solid #000;
}
.search_submit_text {
    display: block;
    /* width: 90%;
    padding: 0.8em 0; */
    width: 100%;
    padding: 0.8em 1em;
    font-size: 1.3rem;
}
.search_submit_text::placeholder {
    color: #aaa;
}
.search_submit_text:focus {
    outline: none;
}
.search-form input[type="submit"].search_submit_btn {
    width: 1.5em !important;
    height: 1.5em !important;
    margin-right: 1.5em;
    background-image: url(../img/ec/search.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.search_suggest {
    width: 95%;
    margin: 1.2rem auto 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.search_suggest li:not(:last-of-type) {
    margin-right: 8px;
}
.search_suggest a {
    display: block;
    padding: 0.5em;
    background-color: #9B8A81;
    border-radius: 7px;
    color: #fff;
    font-size: 1.3rem;
    transition: var(--hover-transition);
}
.search_suggest a:hover {
    background-color: #fff;
    color: #9B8A81;
}

@media print,screen and (min-width: 1025px){
    .search-container {
        margin-top: 13rem;
        margin-bottom: 13.5rem;
        padding: 2rem 0;
        display: flex;
        align-items: center;
    }
    form#searchform {
        width: 50%;
    }
    .search-form {
        width: 100%;
        margin: 0 0 0 5rem;
    }
    .search_suggest {
        width: 30%;
        margin: 0;
        margin-left: 10%;
    }
.search_suggest a {
    border-radius: 7px;
    font-size: 1.6rem;
}
}
@media print,screen and (min-width: 1440px){
.search_suggest {
    margin-left: 5%;
	}}

/* スライダー */
.banner_slider .swiper-button-next {
    justify-content: flex-end;
    right: 0;
}
.banner_slider .swiper-button-prev {
    justify-content: flex-start;
    left: 0;
}
.banner_slider .swiper-button-next:after,
.banner_slider .swiper-button-prev:after {
    font-size: 1em;
    color: var(--point-color)
}
.banner_slider .swiper-slide {
    text-align: center;
    transition: var(--hover-transition);
    cursor: pointer;
}
.banner_slider .swiper-slide img {
    width: 85%;
}
.banner_slider .swiper-slide:hover {
    opacity: 0.6;
}

@media print,screen and (min-width: 1025px){
    .slider-container {
        margin-bottom: 15rem;
    }
    .swiper.banner_slider {
        max-width: 850px;
    }
    .banner_slider .swiper-slide img {
        width: 90%;
    }
}

.contents-title {
    color: var(--point-color);
    font-family: var(--font-cormorant);
    font-size: 4rem;
    letter-spacing: 0.025em;
    text-align: center;
}

section.wrap:nth-of-type(2n) {
    margin: 6rem 0 6.5rem;
}

@media print,screen and (min-width: 1025px){
    .contents-title {
        font-size: 4.8rem;
    }
    section.wrap:nth-of-type(2n) {
        margin: 13rem 0;
    }
}

/* ピックアップ  */
.pick-up.wrap {
    margin-top: 6.5rem;
}
.blog_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 1rem;
	grid-row-gap: 2.5rem;
	margin-top: 2.5rem;
}
/* .blog-card a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.6rem;
    transition: var(--hover-transition);
}
.blog-card a:hover {
    opacity: 0.6;
}
.blog-card a figure img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
    object-position: 50% 50%;
} */
.pick-up.wrap .blog-card {
    transition: var(--hover-transition);
}
.pick-up.wrap .blog-card:hover {
    opacity: 0.6;
}
.card-title {
    color: var(--point-color);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
}
.card-time {
    margin-top: 4px;
    font-family: var(--font-cormorant);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}
@media print,screen and (min-width: 1025px){
    .pick-up .blog_list {
        margin-top: 6.5rem;
    }
    .blog_list {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 2.3rem;
		grid-row-gap: 0px;
    }
    .blog-card a {
        display: block;
    }
    .blog-card a h3 {
        margin-top: 1.6rem;
    }
    .card-time {
        margin-top: 8px;
    }
    .front-blog .link-btn {
        display: none;
    }

    .catalog-link {
        margin-left : calc( 130 * 100% / 1025 );
		margin-right : calc( 130 * 100% / 1025 );
    }
}


.category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.2rem;
    grid-row-gap: 3rem;
    margin-top: 3rem;
}
.category-list a {
    display: block;
    padding-bottom: 1rem;
    position: relative;
    border-bottom: 0.5px solid #444;
    transition: var(--hover-transition);
}
.category-list a:hover {
    opacity: 0.5;
}
.category-list a::after {
    content: ">";
    width: 1em;
    position: absolute;
    right: 0;
}
.category-list a img {
    width: 1.2em;
    margin-right: 1.2rem;
    vertical-align: middle;
}

@media print,screen and (min-width: 1025px){
    .category-list {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 4.5rem;
        grid-row-gap: 4.5rem;
        margin-top: 7.5rem;
    }
    .category-list a {
        font-size: 1.6rem;
    }
}

.series-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.2rem;
    grid-row-gap: 2.5rem;
}
.series-list li {
    transition: var(--hover-transition);
}
.series-list li:hover {
    opacity: 0.6;
}
.series-list a {
    font-size: 1.5rem;
    font-weight: bold;
}
.series-list a img {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
	aspect-ratio: 157 / 90;
    object-fit: cover;
    object-position: center;
}

/* Moreボタン */
.readmore {
    position: relative;
    padding-bottom: 5rem;
    /* margin: 50px auto 0;
    padding: 0px 0px 75px; */
}
.readmore-content {
    position: relative;
    height: 200px;
    transition: all .4s;
    overflow: hidden;
}
.readmore-content::before {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75px;
    transition: all .4s;
    background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100% );
}
.readmore-content.is_open:before{
    display: none;
}
.readmore button {
    position: absolute;
    display: table;
    left: 50%;
    bottom: 0px;
    margin: 0 auto;
    width: 200px;
    padding: 10px 0;
    color: var(--point-color);
    text-align: center;
    background-color: #fff;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;
    transition: all .4s;
}
.readmore button::before {
    content: "+";
    display: inline-block;
    margin-right: 1em;
}
.readmore button:hover {
    background-color: var(--point-color);
    color: #fff;
}

@media print,screen and (min-width: 1025px){
    .series-list {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 2.2rem;
        grid-row-gap: 3rem;
        margin-top: 6.5rem;
    }
    .readmore button {
        font-size: 1.6rem;
    }
	.series-list a img {
	aspect-ratio: 278 / 159;
}
}

.price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.8rem;
    grid-row-gap: 2.5rem;
}
.price-list a {
    display: block;
    padding: 1rem 0;
    background-color: #fff;
    border: 0.5px solid var(--point-color);
    color: var(--point-color);
    font-size: 1.5rem;
    text-align: center;
    transition: var(--hover-transition);
}
.price-list a:hover {
    background-color: var(--point-color);
    border: 0.5px solid transparent;
    color: #fff;
}
@media print,screen and (min-width: 1025px){
    .price-list {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 3rem;
        grid-row-gap: 0;
        margin-top: 5rem;
    }
}


.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
.service-list li {
    display: block;
    width: calc(100% / 2);
    text-align: center;
}
.service-list a {
    color: var(--point-color);
    font-size: 1.5rem;
    transition: var(--hover-transition);
}
.service-list a:hover {
    opacity: 0.6;
}
.service-list a::before {
    content: "＞";
    display: inline-block;
    transform: rotate(90deg);
    margin-right: 1em;
}
.service-list li:last-of-type {
    margin-top: 2rem;
}
@media print,screen and (min-width: 1025px){
    .service-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 3rem;
        justify-content: center;
        align-items: center;
        margin-top: 6.5rem;
    }
    .service-list li:last-of-type {
        margin-top: 0;
    }
    .service-list li {
        width: auto;
    }
    .service-list a {
        font-size: 1.6rem;
    }
}

/* カレンダー */
.calendar {
    margin-top: 6.5rem;
    margin-bottom: 6.5rem;
}
.calendar-wrap {
    padding: 2.5rem 1.5rem;
    background-color: var(--thin-color);
}
.calendar-wrap > p {
    color: #8C695A;
    font-size: 1.3rem;
}
.xo-event-calendar {
    font-family: var(--font-zen);
}
.xo-event-calendar table.xo-month .month-header {
    margin: 0;
    padding: 0.5em 0;
    background-color: #fff;
}
.xo-event-calendar table.xo-month>thead th,
.xo-event-calendar table.xo-month>thead th.saturday,
.xo-event-calendar table.xo-month>thead th.sunday {
    border-width: 0;
    color: #7A7A7A;
}
.xo-event-calendar table.xo-month .month-dayname td div {
    border-width: 0px 0px 0 0;
    line-height: 2.5em;
    text-align: center;
}
.xo-event-calendar table.xo-month .month-dayname td {
    border-width: 0;
}
.xo-event-calendar table.xo-month .month-dayname-space {
    height: 2em;
}
.xo-event-calendar table.xo-month .month-event-space {
    height: 2em;
}

@media print,screen and (min-width: 1025px){
    .calendar-wrap {
        margin-top: 8rem;
        margin-bottom: 13rem;
        padding: 5rem 12rem;
    }
    .calendars.xo-months {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 6.5rem;
    }
    .calendar {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* ニュース */
.ec-news {
    margin-bottom: 6.5rem;
}
.news-list {
    margin: 2.4rem 0 4.8rem;
}
.news-list_card a {
    margin-bottom: 2.4rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: flex-start;
    transition: var(--hover-transition);
}
.news-list_card a:hover {
    opacity: 0.6;
}
.news-list_time {
    color: #444;
    font-family: var(--font-cormorant);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}
.news-list_card .news-list_title {
    color: var(--point-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.75;
}

@media print,screen and (min-width: 1025px){
    .ec-news {
        margin-bottom: 13rem;
    }
    .news-list-wrap {
        display: flex;
        margin: 0 0 5.8rem;
    }
    .news-type {
        padding-right: 8rem;
        border-right: 1px solid #D2C6C3;
    }
    .news-list {
        margin: 0;
        margin-left: 6.4rem;
    }
    .news-list_card a {
        margin-bottom: 3.2rem;
        align-items: center;
        grid-column-gap: 4.8rem;
    }
    .news-list_card:last-of-type a {
        margin-bottom: 0;
    }
    .news-list_time {
        font-size: 1.8rem;
    }
    .news-list_card .news-list_title {
        font-size: 1.6rem;
        line-height: 1;
    }
}


/* ランキング */
.ec-fornt_ranking-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.2rem;
    grid-row-gap: 2rem;
    margin-top: 4.5rem;
}
.ranking_card {
    display: block;
    position: relative;
    transition: var(--hover-transition);
}
.ranking_card:hover {
    opacity: 0.6;
}
.ranking_card .mask {
    aspect-ratio: 1 / 1;
    border-top-left-radius: 8.5rem;
    overflow: hidden;
}
.ranking_card .product-card_Category {
    margin: 1.2rem 0;
    color: #8C695A;
    font-size: 1.6rem;
}
.ranking_card h3 {
    font-size: 1.3rem;
}

.ranking_card::before {
    content: "";
    display: block;
    width: 4.6rem;
    height: 4.6rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -12px;
    left: 0;
}
.ranking_card:first-of-type:before {
    background-image: url(../img/ec/icon-ranking01.png);
}
.ranking_card:nth-of-type(2):before {
    background-image: url(../img/ec/icon-ranking02.png);
}
.ranking_card:nth-of-type(3):before {
    background-image: url(../img/ec/icon-ranking03.png);
}
.ranking_card:nth-of-type(4):before {
	width: 3.3rem;
	height: 3.3rem;
    background-image: url(../img/ec/icon-ranking04.png);
	top: 0;
}
.ranking_card:nth-of-type(5):before {
	width: 3.3rem;
	height: 3.3rem;
    background-image: url(../img/ec/icon-ranking05.png);
	top: 0;
}

.ranking_link {
    margin-top: 1.5rem;
    text-align: center;
    transition: var(--hover-transition);
}
.ranking_link:hover {
    opacity: 0.6;
}
.ranking_link span {
    display: inline-block;
    padding-right: 4em;
    color: #8B6B59;
    font-size: 1.3rem;
	position: relative;
    outline: none;
    text-align: right;
}
.ranking_link span::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left: 0;
    width: 100%;
    height: 1px;
	background:#8B6B59;
    /*アニメーションの指定*/
    transition: all .3s;
}
.ranking_link span::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#8B6B59;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

@media print,screen and (max-width: 1024px){
	.ranking_link.pc {
		display: none;
	}
}
@media print,screen and (min-width: 1025px){
    .ec-fornt_ranking-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-column-gap: 1.5rem;
        grid-row-gap: 0;
        margin-top: 5.5rem;
    }
    .ranking_card .mask {
        border-top-left-radius: 13rem;
    }
    .ranking_card .product-card_Category {
        margin: 1.8rem 0;
        color: #8C695A;
        font-size: 1.6rem;
    }
    .ranking_card h3 {
        font-size: 1.4rem;
    }
    .ranking_card::before {
        width: 6.5rem;
        height: 6.5rem;
        top: -12px;
        left: 0;
    }
	.ranking_card:nth-of-type(4):before,
	.ranking_card:nth-of-type(5):before {
        width: 4.6rem;
        height: 4.6rem;
	}
	
	
	.ranking_link.sp {
		display: none;
	}
    .ranking_link {
        width: 165px;
/*         margin-left: auto; */
		margin: 5rem auto 0;
    }
    .ranking_link span {
        display: inline-block;
        padding: 0;
        width: 165px;
        font-size: 1.6rem;
        text-align: left;
    }

}

/*====================================================*/
/* 商品一覧 */
/*====================================================*/
.produc-list-page {
    margin-bottom: 6rem;
}
.ec-mv {
    width: 100%;
    height: 153px;
    background-image: url(../img/ec/mv-list-bkg.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 6.5rem;
    position: relative;
}
.ec-mv_title {
    color: var(--point-color);
    line-height: 1.3;
    text-align: center;
    position: absolute;
    top: -0.7em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.ec-mv_title:not(span) {
    font-family: var(--font-cormorant);
    font-size: clamp(38px, 11.9vw, 50px);
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: capitalize;
    white-space: nowrap;
}
.ec-mv_minititle {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
}

/* 並べ替え */
.sort {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: calc(24* 100% / 750);
    margin-right: calc(24* 100% / 750);
    position: relative;
}
.sort .category-btn {
    display: block;
    width: 115px;
    padding: 0.2em 1em;
    background-color: rgba(255,255,255,0.5);
    border: 0.5px solid #444;
    font-size: 1.3rem;
    font-weight: normal;
    position: relative;
    cursor: pointer;
}
.sort .category-btn::after {
    content: "";
    display: block;
    width: 0.6em;
    height: 1em;
    background-image: url(../img/ec/arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.5em;
    right: 0.4em;
}
.sort #category-navi > a {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.sort button {
    display: block;
    font-size: 1.3rem;
}
.sort button:not(:first-of-type) {
    margin-top: 1rem;
}
.sort #category-navi.panelactive {
    opacity: 1;
    top: 2.5rem;
    z-index: 10;
}
#category-navi {
    width: 200px;
    padding: 1.5rem 2rem;
    background-color: #fff;
    border: 0.5px solid #cbcbcb;
    box-shadow: 3px 5px 5px 0px rgba(105, 105, 105, 0.2);
    position: absolute;
    z-index: -5;
    opacity: 0;
}

@media print,screen and (min-width: 1025px){
    .sort {
        margin: 5rem 0 3rem;
    }
    .sort .category-btn {
        font-size: 1.6rem;
    }
    .sort #category-navi {
        width: 250px;
        padding: 1.5rem 2rem;
        font-size: 1.6rem;
    }
    .sort #category-navi > a,
    .sort button {
        font-size: 1.6rem;
    }
}


/**/
.flex-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 3rem;
}
.produc-list-page .flex-product-list {
    margin-bottom: 6.5rem;
}
.mask img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
    object-position: 50% 50%;
}
.product-card {
    font-size: clamp(13px, 4.06vw, 15px);
}
.product-card:hover,
.product-card:active {
    opacity: 0.6;
}
.product-card .product-card_Category {
    margin-top: 1.5rem;
    color: var(--point-color);
    font-size: clamp(10px, 3.12vw, 13px);
}
.product-card_title {
    margin: 1em 0;
    height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.product-card_price span {
    font-size: 0.7em;
    vertical-align: middle;
}
.product-card .product-tag {
	margin-top: 0.8em;
}
.product-card .product-tag span {
    font-size: clamp(10px, 3.12vw, 13px);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.page-numbers {
    margin-right: 2rem;
}

/* サイドメニュー */
.side-menu-container:not(:last-of-type) {
    margin-bottom: 6.5rem;
}
.menu-type {
    margin-bottom: 1rem;
    font-family: var(--font-cormorant);
    font-size: 3rem;
    font-weight: 500;
}
.side-menu-container li {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.side-menu-container a {
    position: relative;
}
.side-menu-container a:hover {
    text-decoration: underline;
}
.side-menu-container a::after {
    content: ">";
    display: inline-block;
    width: 1em;
    position: absolute;
    right: 0;
}

@media print,screen and (max-width: 1024px){
    .side-menu,
    .contact-parts {
        display: none;
    }
}

@media print,screen and (min-width: 1025px){
    .two-columns {
        margin-top: 10rem;
        margin-left : calc( 130 * 100% / 1025 );
		margin-right : calc( 130 * 100% / 1025 );
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: space-between;
    }
    .side-menu {
        width: 210px;
        margin-right:8rem;
    }
    .two-columns > article,
    .main-contents {
        width: calc(100% - 210px - 8rem);
    }

    .ec-mv {
        margin-top: 0;
    }
    .ec-mv_title:not(span) {
        font-size: clamp(40px, 3.9vw, 50px);
    }

    .flex-product-list {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 3rem;
        grid-row-gap: 6rem;
    }
    .wrap_product {
        padding-left: 0;
        padding-right: 0;
    }
    .product-card {
        font-size: clamp(14px, 1.36vw, 16px);
    }
    .product-card_Category,
    .product-card .product-tag span {
        font-size: clamp(12px, 1.17vw, 14px);
    }
    .product-card_title {
        margin: 0.5em 0;
        height: 3em;
        -webkit-line-clamp: 2;
    }
}
@media print,screen and (min-width: 1440px){
    .two-columns {
        max-width: 1172px;
        margin-right: auto;
        margin-left: auto;
    }
    .two-columns > article, .main-contents {
        width: calc(100% - 195px - 11rem);
    }
    .side-menu {
        width: 195px;
        margin-right: 11rem;
    }
    .side-menu-container li {
        font-size: 1.4rem;
    }
}


/*====================================================*/
/* 商品詳細 */
/*====================================================*/
.single_product_page {
    font-size: 1.5rem;
}
@media print,screen and (min-width: 1025px){
    .single_page.single_product_page {
        margin-bottom: 13.5rem;
    }
    .single_product_page > article {
        margin-top: 12rem;
        margin-left : calc( 130 * 100% / 1025 );
		margin-right : calc( 130 * 100% / 1025 );
    }
}

/* スライダー部分 */
.product-slider {
    margin-top: 4rem;
}
.slider-thumbnail .swiper-slide {
    opacity: .5;
    transition: opacity .5s;
    width: calc(100% / 3);
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}
/* レイアウトのためのスタイル */
.swiper {
    max-width: 500px;
    width: 100%;
}
.product-slider .swiper-slide {
    height: auto !important;
}
.swiper.slider .swiper-slide {
    aspect-ratio: 1/1;
}
.swiper.slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider .swiper-button-next,
.slider .swiper-button-prev {
    width: 3em;
    height: 3em;
    font-size: 1rem;
    background-color: rgba(139, 107, 89, 50%);
    border-radius: 50%;
}
.slider .swiper-button-next:after,
.slider .swiper-button-prev:after {
    color: #fff;
    font-size: 1em;
}

/* サムネイルスライダー */
.slider-thumbnail_wrap {
	overflow: hidden; 
		margin-top: 1.5rem;
	padding-left: 1rem;
}
  .slider-thumbnail {
    overflow: visible;
  }
.slider-thumbnail .swiper-slide {
    width: 6rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}


/* 商品情報 */
.product-info {
    margin-top: 3.5rem;
}
.product-category-container {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}
.product-category {
    margin-right: 2rem;
    white-space: nowrap;
}
.product-category span {
    color: var(--point-color);
}
.product-info .product-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em 5px;
}
.product-tag span {
    display: inline-block;
    padding: 0 1em;
    background-color: #fff;
    border: 0.5px solid var(--point-color);
    border-radius: 100vh;
}
.product-name {
    margin: 2.5rem 0 2rem;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.75;
}
.product-info .product-price {
	font-size: 2rem;
	margin-bottom: 4rem; 
}
.product-price span {
	font-size: 0.8em;
    vertical-align: baseline;
}

/* シェアボタン */
.share-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 7rem;
}
.share-btn ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.share-btn li {
    display: block;
}
.share-btn a,
.share-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5em;
    width: 2em;
    height: 2em;
    background-color: #E5D8E0;
    border-radius: 30vh;
    transition: var(--hover-transition);
}
.share-btn img {
    width: 1em;
    filter: invert(25%) sepia(0%) saturate(1%) hue-rotate(306deg) brightness(93%) contrast(88%);
    /* object-fit: contain; */
}
.share-btn li:hover a,
.share-btn li:hover span {
    background-color: #444;
}
.share-btn li:hover a img,
.share-btn li:hover span img {
    filter: invert(97%) sepia(15%) saturate(522%) hue-rotate(278deg) brightness(92%) contrast(94%);
}
.copyBtn.copiedBtn {
    background: #ccc;
    color: #fff;
    pointer-events: none;
}

/* カート：カラーミー */
.colorme_cart .cartjs_product_num {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
}
.colorme_cart input.cartjs_product_input_txt {
    width: 50% !important;
    padding: 0.3em 0.5em !important;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.colorme_cart .cartjs_option {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
}
.colorme_cart .cartjs_option select {
    border: 1px solid #ccc !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border-radius: 3px !important;
}

/* オプション在庫表示 */
.colorme_cart .colorme-option-tbl caption {
    padding-bottom: 0.5em;
}
.colorme_cart .colorme-option-tbl tr {
    display: flex;
    border-right: none !important;
    border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.colorme_cart .colorme-option-tbl th,
.colorme_cart .colorme-option-tbl td {
    width: calc(100% / 3);
}


/* 追加カートボタン下 */
.cart-btn_bottom {
    margin: 1.5rem 0;
}
.cart-btn_bottom dl {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 1.5rem;
}
.cart-btn_bottom dl.about-option {
    grid-template-columns: 150px 1fr;
}
.cart-btn_bottom dt {
    font-weight: normal;
}
.cart-btn_bottom dd {
    line-height: 1.75;
}
.about-option dd a {
    margin-bottom: 0.5em;
    transition: var(--hover-transition);
}
.about-option dd a:hover {
    text-decoration: underline;
}

@media print,screen and (min-width: 1025px){
    .product-top {
        display: flex;
        justify-content: space-between;
    }
    .product-slider {
        margin-top: 0;
        width: 46%;
    }
    .slider-thumbnail_wrap {
        margin-top: 2rem;
        padding-left: 0;
    }
    .slider-thumbnail_wrap .swiper-grid-column > .swiper-wrapper {
        flex-wrap: wrap;
        flex-direction: inherit;
    }
	.slider-thumbnail_wrap .swiper-slide:nth-child(2n) {
		margin-top: 0 !important;
	}
	.slider-thumbnail_wrap .swiper-slide:nth-child(n+5) {
		margin-top: 5px !important;
	}

    .product-info {
        margin-top: 0;
        width: 50%;
    }
    .product-info .product-category span {
        font-size: 1.6rem;
    }
    .product-info .product-tag span {
        font-size: 1.4rem;
    }
    .product-name {
        margin: 3rem 0 2.5rem;
        font-size: clamp(30px, 2.92vw, 35px);
    }
	.product-info .product-price {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }

    .colorme_cart .cartjs_product_num,
    .colorme_cart .colorme-option-tbl {
        font-size: 1.6rem;
    }

    .cart-btn_bottom {
        margin-top: 3rem;
        font-size: 1.6rem;
    }
    .cart-btn_bottom dl {
        grid-template-columns: 100px 1fr;
        margin-bottom: 2rem;
    }
    .cart-btn_bottom dl.about-option {
        grid-template-columns: 180px 1fr;
    }
    .about-option dd {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .about-option dd a {
        margin-bottom: 0.5em;
        margin-right: 1em;
    }
}


/* 商品詳細 */
.product-points {
    margin-top: 5rem;
    padding-top: 3.5rem;
    position: relative;
}
.product-points dl {
    line-height: 1.75;
}
.product-points dl:nth-of-type(2),
.product-points dl:nth-of-type(4) {
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.product-points dl:not(:last-of-type) {
    margin-bottom: 2rem;
}
.product-points dl:last-of-type {
    margin-bottom: 3rem;
}
.product-points dt {
    margin-bottom: 0.5em;
    font-weight: normal;
}
.product-points dl:nth-of-type(2) dt,
.product-points dl:nth-of-type(4) dt {
    margin-bottom: 0;
}
.product-points {
    margin-top: 3rem;
    padding-bottom: 3rem;
}
.product-points {
    position: relative;
}
.product-points::before,
.product-points::after {
    content: "";
    display: block;
    background-color: #444;
    width: 100%;
    height: 0.5px;
}
.product-points::before {
    width: 94%;
    position: absolute;
    top: 0;
    left: 3%;
}

/* オプション表示部分 */
.product-info .option_product > a {
    margin-bottom: 0.5em;
}
.product-info .dl_option {
    display: block;
}
.product-info .dl_option dt {
    margin-bottom: 1.2em;
    font-weight: bold;
    text-align: center;
}
.product-info .dl_option dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-bottom: 2rem;
}
.product-info .name_option {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.product-info .name_option dd {
    display: block;
}
.product-info .dl_option .cartjs_product_explain {
    width: 100% !important;
    margin: 1em 0 !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 1.3rem;
}
.product-info .dl_option tr.cartjs_product_num th {
    white-space: nowrap;
    padding: 0 1em 0 0;
}
.product-info .dl_option tr.cartjs_product_num td {
    padding-bottom: 0 !important;
}
.product-info .dl_option input.cartjs_product_input_txt {
    width: 90% !important;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

/* SOLD OUTのボタン */
.sold_btn {
    display: block;
    padding: 0.5em;
    background-color: rgb(139 107 89 / 40%);
    color: #ffffff;
    text-align: center;
}

@media print,screen and (min-width: 750px){
    .product-points dl {
        display: grid;
        grid-template-columns: 1fr 2fr;
        line-height: 1.75;
    }
    .product-points dt {
        margin-bottom: 0;
        font-weight: normal;
    }
}
@media print,screen and (min-width: 1025px){
    .product-points {
        margin-top: 7rem;
        padding-top: 7rem;
        padding-bottom: 6rem;
        font-size: 1.6rem;
    }
    .product-points dl,
	.product-points dl:nth-of-type(2),
	.product-points dl:nth-of-type(4) {
        max-width: 950px;
        grid-template-columns: 120px 1fr;
    }
    .product-points dl:not(:last-of-type) {
        margin-bottom: 4rem;
    }
    .product-points dl:last-of-type {
        margin-bottom: 6rem;
    }
    .product-points::before {
        width: 100%;
        left: 0;
    }

    .product-points .name_option {
        margin-top: 5rem;
        margin-bottom: 2.5rem;
    }
    .product-points .dl_option dd {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 6rem;
        grid-row-gap: 6rem;
    }
    .product-points .dl_option .cartjs_product_explain {
        font-size: 1.5rem;
    }
}

/* セクションタイトル */
.product-single-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}
@media print,screen and (min-width: 1025px){
    .product-single-title {
        margin-bottom: 3rem;
        font-size: 2rem;
    }
}

/* レビュー */
.review-list li {
    padding: 2rem 1.5rem;
    background-color: #fff;
}
.review-list li:first-of-type {
    margin-bottom: 2rem;
}
.review a {
    display: block;
    width: 11rem;
    margin-top: 3rem;
    margin-left: auto;
    color: var(--point-color);
    font-size: 1.3rem;
}
.review a::after {
    content: "";
    display: block;
    margin-top: 5px;
    width: 100%;
    height: 0.5px;
    background-color: var(--point-color);
}
@media print,screen and (min-width: 1025px){
    .review a {
        display: block;
        width: 11rem;
        margin-top: 3rem;
        margin-left: auto;
        color: var(--point-color);
        font-size: 1.3rem;
    }
}

/* アコーディオン部分 */
#toggleItem_container {
	margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 0.5px solid #444;
}
.toggleItem_ec:not(:first-child) {
    margin-top: 5px;
}
.toggleItem_ec .tlt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
	cursor: pointer;
    font-size: 1.8rem;
    font-weight: 400;
}
.toggleItem_btn {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    position: relative;
}
.toggleItem_btn span {
    display: block;
    background-color: #444;
    transition: var(--hover-transition);
    transition: 0.3s all;
}
.toggleItem_btn span:first-of-type {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 6.5px;
}
.toggleItem_btn span:last-of-type {
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 6.5px;
}
.toggleItem_ec .tlt.active .toggleItem_btn span:last-of-type {
    width: 0.1px;
    transform: rotate(90deg);
}
.toggleItem_ec .txtBox {
	display: none;
}
.toggleItem_ec .txtBox .txt {
	padding: 0 0 2rem;
    border-bottom: 1px dotted #444;
    font-size: 1.5rem;
}
.toggleItem_ec .txtBox .txt p {
    line-height: 1.75;
}

@media print,screen and (min-width: 1025px){
    #toggleItem_container {
        margin-top: 6.5rem;
        padding-top: 4.5rem;
    }
    .toggleItem_ec:not(:first-child) {
        margin-top: 1rem;
    }
    .toggleItem_ec .tlt {
        padding: 2rem 0;
        font-size: 2.5rem;
    }
    .toggleItem_btn {
        width: 1.5rem;
        height: 1.5rem;
    }
    .toggleItem_btn span:first-of-type {
        position: absolute;
        top: 7.5px;
    }
    .toggleItem_btn span:last-of-type {
        left: 7.5px;
    }
    .toggleItem_ec .txtBox .txt {
        padding: 0 0 2em;
        font-size: 1.6rem;
    }
}

/* おすすめ商品、チェックした商品 */
.recommendation-list {
    margin-top: 6rem;
}
.check-list {
    margin-top: 6rem;
    margin-bottom: 6.5rem;
}
.recommendation-list a,
.check-list a {
    font-size: clamp(13px, 4.06vw, 15px);
}
.recommendation-list a:hover,
.check-list a:hover {
    opacity: 0.6;
}
.recommendation-list .product-category,
.check-list .product-category {
    margin-top: 1.5rem;
    font-size: clamp(10px, 3.12vw, 13px);
}
.recommendation-list a h2,
.check-list a h2 {
    margin: 0.5em 0;
    height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.recommendation-list .product-tag span,
.check-list .product-tag span {
    font-size: clamp(10px, 3.12vw, 13px);
}
@media print,screen and (min-width: 1025px){
    .recommendation-list {
        margin-top: 9.5rem;
    }
    .check-list {
        margin-top: 9.5rem;
        margin-bottom: 0;
    }
    .recommendation-list a,
    .check-list a {
        font-size: clamp(14px, 1.36vw, 16px);
    }
    .recommendation-list .product-category,
    .check-list .product-category,
    .recommendation-list .product-tag span,
    .check-list .product-tag span {
        font-size: clamp(12px, 1.17vw, 14px);
    }
    .recommendation-list a h2,
    .check-list a h2 {
        margin: 0.5em 0;
        height: 3em;
        -webkit-line-clamp: 2;
    }
}


/*  カラーミー  */
table {
    width: 100% !important;
}
select {
    height: auto !important;
}
th {
    padding-top: 5px !important;
}
input[type="submit"] {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    height: auto !important;
    width: 100% !important;
    padding: 1em 0;
}
.option_product .cartjs_box {
    padding: 0 !important;
}
.option_product .cartjs_product_img {
    width: 100% !important;
}
.option_product .cartjs_cart_in {
    width: 100% !important;
    margin: 0 0 0.5em !important;
	 text-align: left !important;
}
.option_product strong.cartjs_product_name {
    font-size: 1.5rem !important;
}
.option_product .cartjs_product_table table tr {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
}
.option_product .cartjs_product_table tr.cartjs_option.cartjs_option1,
.option_product tr.cartjs_option.cartjs_option2,
.option_product tr.cartjs_option.cartjs_option3 {
	width: 100%;
	font-size: 1.5rem;
}
.option_product .cartjs_cart_in input[type="submit"] {
    font-size: 1.5rem !important;
}
.product-info tr.cartjs_stock {
    display: none;
}
.name_option .option_product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3%;
}
.name_option .option_product > a {
    grid-area: 1 / 1 / 6 / 2;
    margin-bottom: 0 !important;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.name_option .option_product .cartjs_product_img img {
    height: 100%;
    object-fit: cover;
}
.option_product .cartjs_sales_price th {
    display: none;
}
.option_product .cartjs_sales_price td {
    white-space: nowrap;
}
.name_option .option_product tr.cartjs_option.cartjs_option1,
.name_option .option_product tr.cartjs_option.cartjs_option2,
.name_option .option_product tr.cartjs_option.cartjs_option3 {
    flex-direction: initial;
}
.name_option .option_product tr.cartjs_option.cartjs_option1 select,
.name_option .option_product tr.cartjs_option.cartjs_option2 select,
.name_option .option_product tr.cartjs_option.cartjs_option3 select {
    border: 1px solid #ccc !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    line-height: 25px !important;
}
.name_option .option_product .cartjs_product_table table .cartjs_product_num {
    margin-bottom: 1rem;
}


/*====================================================*/
/* ランキングページ */
/*====================================================*/
.ranking_page .flex-product-list {
    margin-top: 4.5rem;
}
.ranking_page .ranking_card::before {
    width: 4.6rem;
    height: 4.6rem;
}
.ranking_page .ranking_card:nth-of-type(n+4):before {
    width: 3.3rem;
    height: 3.3rem;
    top: 0;
}
.ranking_page .ranking_card:nth-of-type(6):before {
    background-image: url(../img/ec/icon-ranking06.png);
}
.ranking_page .ranking_card:nth-of-type(7):before {
    background-image: url(../img/ec/icon-ranking07.png);
}
.ranking_page .ranking_card:nth-of-type(8):before {
    background-image: url(../img/ec/icon-ranking08.png);
}
.ranking_page .ranking_card:nth-of-type(9):before {
    background-image: url(../img/ec/icon-ranking09.png);
}
.ranking_page .ranking_card:nth-of-type(10):before {
    background-image: url(../img/ec/icon-ranking10.png);
}
.ranking_page .ranking_card:nth-of-type(11):before {
    background-image: url(../img/ec/icon-ranking11.png);
}
.ranking_page .ranking_card:nth-of-type(12):before {
    background-image: url(../img/ec/icon-ranking12.png);
}

.ranking_page .ranking_card {
    font-size: clamp(13px, 4.06vw, 15px);
}
.ranking_page .ranking_card .product-card_Category {
    margin-top: 1.5rem;
    font-size: clamp(10px, 3.12vw, 13px);
}
.ranking_page .product-tag {
    margin-top: 0.8em;
    font-size: clamp(10px, 3.12vw, 13px);
}

@media print,screen and (min-width: 1025px){
    .ranking_page .flex-product-list {
        margin-top: 7.5rem;
    }
    .ranking_page .ranking_card {
        font-size: 1.6rem;
    }
    .ranking_page .product-card_Category {
        margin: 0.5em 0 0;
        font-size: 1.4rem;
    }
    .ranking_page .product-tag {
        font-size: 1.4rem;
    }
}
@media print,screen and (min-width: 1300px){
    .ranking_page .ranking_card::before {
        width: 6rem;
        height: 6rem;
        top: -12px;
        left: 0;
    }
    .ranking_page .ranking_card:nth-of-type(n+4):before {
        width: 4.2rem;
        height: 4.2rem;
    }
}


/*====================================================*/
/* ふわふわ天使のスタイ一覧 調整 */
/*====================================================*/
/* 特定商品の固定 */
#active.product-card {
    display: none;
}

/* 専用画像の表示 */
.lp-catch {
    margin: 2.75rem 0;
    padding-left : calc( 24 * 100% / 750 );
    padding-right : calc( 24 * 100% / 750 );
}
.lp-catch picture {
    display: block;
    width: 100%;
}
.lp-catch picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.lp-catch picture:not(:last-of-type) {
    margin-bottom: 2.75rem;
}

@media print,screen and (min-width: 1025px){
    .lp-catch {
        margin: 5.5rem 0;
        padding: 0;
    }
    .lp-catch picture:not(:last-of-type) {
        margin-bottom: 5.5rem;
    }
}