<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* ----【PC】 LEFT NAVI &amp; CART BOTTON---- */
@media screen and (min-width:1025px) {
	/* ----LEFT NAVI/LOGO---- */
	.header-logo{
		margin-bottom: 75px;
	}
	.header-logo img{
		width: 180px;
	}

	/* ----LEFT NAVI/LINK---- */
	.global-nav{
		display:block !important;
	}
	.global-nav ul+ul{
		margin-top: 17px;
	}
	.global-nav li{
		padding: 2px 0;
	}
	/* .global-nav li.global-nav--line{
		padding: 2px 0 8px 0;
	} */
	/* .global-nav li.global-nav--line + li.global-nav--line {
		padding: 4px 0 7px 0;
	} */
	/* .global-nav li.global-nav--line + li:not(.global-nav--line){
		margin-top: 10px;
	} */
	.global-nav a,
	.global-nav span{
		display: block;
		position:relative;
		text-decoration:none;
		font-size: 1.6rem;
		font-weight: 300;
		letter-spacing: 0.08em;
		padding: 11px 0;
		line-height: 1.1;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
		opacity:1;
	}
	.global-nav a:hover{
		opacity:0.5;
	}
	.global-nav span:before,
	.global-nav span:after{
		content:"";
		display:block;
		position:absolute;
		top: 50%;
		right: 16px;
		width:7px;
		height: 1px;
		background-color: #696A6C;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.global-nav span:after{
		transform: rotate(90deg);
	}
	.global-nav span.active:after{
		transform: rotate(180deg);
	}
	.global-nav--line{
		border-bottom: 1px #ECECEC solid;
	}
	.global-nav--menu2{
		display: none;
		margin-top: 5px;
	}
	.global-nav--menu2 li{
		margin-bottom: 14px;
	}
	.global-nav--menu2 li a{
		position: relative;
		font-size: 1.4rem;
		padding: 6px 0 5px 12px;
	}
	.global-nav--menu2 li a:after{
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 2px;
		width: 4px;
		height: 1px;
		transform: translate(0, 1px);
		background-color: #696A6C;
	}
	.global-nav--menu3{
		display:none;
	}
	.global-nav-logo{
		display: none;
	}

	/* ----CART---- */
	.header-cart{
		position: absolute;
		top: 15px;
		right: 30px;
		width: 44px;
		height: 44px;
	}
	.header-cart a{
		display: block;
		padding: 10px;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.header-cart img{
		display:block;
		width: 20px;
	}
}
@media screen and (min-width:1270px) {
	.header-cart{
		right: 0;
		left: 50%;
		transform: translate(570px, 0);
	}
}
@media screen and (min-width:1025px) {
	.global-nav span:hover{
		cursor:pointer;
	}
	.header-cart a:hover{
		opacity:0.7;
	}
}

/* ----【SP】 HEADER---- */
@media screen and (max-width:1024px) {
	/* ----HEADER---- */
	.sp-header-wrap{
		position:fixed;
		top: 0;
		left: 0;
		width:100%;
		height:87px;
		background: #ffffff;
		transition: top .2s ease;
		z-index:10000;
	}
	.sp-header-wrap.up{
		top: 0px;
	}
	.sp-header-wrap.down{
		top: -87px;
	}
	.sp-header-wrap:before,.sp-header-wrap:after{
		content:"";
		display:block;
		position:absolute;
	}
	.sp-header-wrap:before{
		top:0;
		left:0;
		width:100%;
		height:100%;
		background-color: #ffffff;
		z-index:9999;
	}
	.sp-header-wrap:after{
		top: 81px;
		left: -5%;
		width:110%;
		height:6px;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16);
		z-index:9998;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
		opacity: 1;
	}
	.body-fixed .sp-header-wrap:after{
		opacity: 0;
	}
	.header-logo{
		position:relative;
		padding: 15px 0 0 15px;
		z-index:10000;
	}
	.header-logo img{
		width: 122px;
	}
	.header-cart{
		position:absolute;
		top: 0;
		right: 60px;
		width: 60px;
		min-width: 27px;
		height: 100%;
		z-index:10000;
	}
	.header-cart a{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	.header-cart img{
		width: 30%;
		max-width: 20px;
		min-width: 15px;
	}
	.header-menu{
		position:absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 100%;
		z-index:10000;
	}
	.header-menu:after{
		content: "";
		display: block;
		position: absolute;
		width: 1px;
		height: 10px;
		top: 50%;
		left: -1px;
		transform: translate(0,-50%);
		background-color: #696A6C;
	}
	.header-menu span {
		display: block;
		position: absolute;
		left: 50%;
		width: 14px;
		height: 2px;
		background-color: #000000;
		border-radius: 4px;
		transition: all .5s;
		margin-left: -20%;
	}
	.header-menu span:nth-child(1) {
		top: 50%;
		margin-top: -8px;
	}
	.header-menu span:nth-child(2) {
		top: 50%;
		margin-top: -1px;
	}
	.header-menu span:nth-child(3) {
		top: 50%;
		margin-top: 6px;
	}
	.header-menu.active span {
	}
	.header-menu.active span:nth-child(1) {
		-webkit-transform: translateY(7px) rotate(-45deg);
		transform: translateY(7px) rotate(-45deg);
	}
	.header-menu.active span:nth-child(2) {
		opacity: 0;
	}
	.header-menu.active span:nth-child(3) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
	}
	/* ----MENU---- */
	.global-nav{
		position:fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 100px 37px 0 37px;
		background-color: #ffffff;
		z-index:9999;
		display: none;
	}
	.global-nav nav{
		padding-top: 9px;
	}

	.global-nav li{
		padding: 2px 0;
	}
	/* .global-nav li.global-nav--line{
		padding: 2px 0 8px 0;
	} */
	/* .global-nav li.global-nav--line + li.global-nav--line {
		padding: 4px 0 7px 0;
	} */
	/* .global-nav li.global-nav--line + li:not(.global-nav--line){
		margin-top: 10px;
	} */

	.global-nav a,
	.global-nav span{
		position:relative;
		display: block;
		font-size: 1.2rem;
		font-weight: 300;
		text-decoration: none;
		letter-spacing: 0.08em;
		padding: 5px 0;
		line-height: 1.1;
		opacity:1;
	}
	.global-nav span:before,
	.global-nav span:after{
		content:"";
		display:block;
		position:absolute;
		top: 50%;
		right: 16px;
		width:7px;
		height: 1px;
		background-color: #696A6C;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.global-nav span:after{
		transform: rotate(90deg);
	}
	.global-nav span.active:after{
		transform: rotate(180deg);
	}
	.global-nav--line{
		border-bottom: 1px #ECECEC solid;
	}
	.global-nav--menu2{
		display: none;
		margin-top: 2px;
	}
	.global-nav--menu2 li{
	}
	.global-nav--menu2 li a{
		position: relative;
		font-size: 1.3rem;
		padding: 4px 0 4px 9px;
	}
	.global-nav--menu2 li a:after{
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 2px;
		width: 3px;
		height: 1px;
		transform: translate(0, -1px);
		background-color: #696A6C;
	}
	.global-nav--menu3{
		border-top: 1px #ECECEC solid;
		padding-top: 13px;
		margin-top: 8px;
	}
	.global-nav-logo{
		position: absolute;
		right: 5vw;
		bottom: 10vw;
	}
	.global-nav-logo a{
		display: block;
		padding: 0;
	}
	.global-nav-logo img{
		width: 60px;
		display: block;
	}
}
@media screen and (max-width:375px) {
	.header-cart{
		right: 50px;
		width: 40px;
	}
	.header-menu{
		width: 48px;
	}
	.global-nav{
		padding-left: 6vw;
		padding-right: 6vw;
	}

}

/* ----HEADER/MENU BTN---- */
.header-menu-btn span {
	display: block;
	position: absolute;
	left: 50%;
	width: 26px;
	height: 2px;
	background-color: #ffffff;
	border-radius: 4px;
	transition: all .5s;
	margin-left: -13px;
}
.header-menu-btn span:nth-child(1) {
	top: 50%;
	margin-top: -11px;
}
.header-menu-btn span:nth-child(2) {
	top: 50%;
	margin-top: -1px;
}
.header-menu-btn span:nth-child(3) {
	top: 50%;
	margin-top: 10px;
}
.header-menu-btn.active span {
}
.header-menu-btn.active span:nth-child(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}
.header-menu-btn.active span:nth-child(2) {
	opacity: 0;
}
.header-menu-btn.active span:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
}
@media screen and (min-width:800px){
	.header-menu-btn{
		top: 20px;
		right: 20px;
		width: 70px;
		height: 70px;
	}
}
@media screen and (max-width:799px) {
	.header-menu-btn{
		top: 13px;
		right: 13px;
		width: 60px;
		height: 60px;
	}
}

/* ----CART(MODAL)---- */
.cart-modal-common {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 10010;
	background-color: rgba(236, 236, 236, 0.55);
}
.cart-modal-common.is-active {
	display: flex;
}
.cart-modal-common-inner {
	margin: auto;
	background: rgba(255,255,255,0.9);
	width: 90%;
	max-width: 650px;
	padding: 40px 50px;
	border: 1px solid #696A6C;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	font-family: "A1 Mincho", serif;
}
.cart-modal-common h2 {
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 1em;
	padding-bottom: 1em;
	position: relative;
}
.cart-modal-common p {
	text-align: center;
}
.cart-modal-common .block-add-cart--btn {
	display: inline-block;
	padding: 1em 2em;
	background-color: #696A6C;
	color: #fff;
	font-family: "A1 Mincho", serif;
	text-decoration: none;
}
.cart-modal-common .block-add-cart--btn a{
	font-size: 1.4rem;
}
.cart-modal-common .link-block {
	text-align: center;
	margin-top: 2em;
}
.cart-modal-common #js-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	z-index: 10;
	cursor: pointer;
}
.cart-modal-common #js-modal-close::before,
.cart-modal-common #js-modal-close::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 1px;
	background-color: #696A6C;
}
.cart-modal-common #js-modal-close::before {
	transform: rotate(45deg);
}
.cart-modal-common #js-modal-close::after {
	transform: rotate(-45deg);
}
/*
@media screen and (min-width: 750px) and (max-width: 1500px) {
    .cart-modal-common h2 {
        font-size: 0.02em;
        margin-bottom: 0.5em;
        padding-bottom: 0.5em;
    }
    .cart-modal-common p {
        font-size: 0.017em;
    }
    .cart-modal-common .link-block {
        margin-top: 20px;
        font-size: 0.017em;
    }
}
@media screen and (max-width: 750px) {
    .cart-modal-common {
        padding: 15vw 5.1vw;
        font-size: 0.025em;
    }
    .cart-modal-common #js-modal-close {
        top: 10px;
        right: 10px;
        border-radius: 100%;
        background-color: #D3637F;
        width: 1.2em;
        height: 1.2em;
    }
    .cart-modal-common #js-modal-close::before, .cart-modal-common #js-modal-close::after {
        background-color: #fff;
        width: 80%;
    }
    .cart-modal-common-inner {
          padding: 20px 30px;
    }
}
*/

/* ----FOOTER---- */
@media screen and (min-width:1025px) {
	footer{
		position:relative;
		margin-top: 98px;
		background-color: #6A696C;
	}
	.footer-logo{
		position:absolute;
		right: 3.5%;
		top: 57px;
	}
	.footer-logo a{
		display: block;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.footer-logo img{
		width: 90px;
	}
	.footer-menu ul{
		display:flex;
		align-items: center;
		justify-content: center;
		padding: 16px 0 45px 0;
	}
	.footer-menu ul li{
		padding: 0 1vw;
	}
	.footer-menu a{
		text-decoration:none;
		font-size: 1.3rem;
		color: #ffffff;
		padding: 0 10px;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.copyright{
		display: flex;
		align-items: center;
		justify-content: center;
		color: #ffffff;
		text-align:center;
		height: 50px;
	}
	.copyright p small{
		font-size: 1.2rem;
		text-transform: uppercase;
		letter-spacing: 0.185em;
	}
}
@media screen and (min-width:1200px) {
	.footer-menu ul li{
		padding: 0 12px;
	}
	.footer-logo{
		top: 19px;
	}
}
@media screen and (min-width:1025px) {
	.footer-logo a:hover{
		opacity: 0.5;
	}
	.footer-menu a:hover{
		opacity: 0.5;
	}
}
@media screen and (max-width:1024px) {
	footer{
		position:relative;
		margin-top: 50px;
		background-color: #696A6C;
	}
	.footer-logo{
		position:absolute;
		right: 2.5%;
		bottom: 43px;
	}
	.footer-logo img{
		width: 50px;
	}
	.footer-menu ul{
		padding: 10px 4vw 0px 4vw;
	}
	.footer-menu ul li{
		margin: 0 10px;
	}
	.footer-menu a{
		display:inline-block;
		padding: 5px 0 4px 0;
		text-decoration:none;
		font-size: 1.0rem;
		color: #ffffff;
	}
	.copyright{
		display: flex;
		align-items: center;
		justify-content: center;
		color: #ffffff;
		text-align:center;
		height: 30px;
		padding: 0 1em;
		font-size: 1.0rem;
		transform: scale(0.8);
	}
	.copyright p small{
		display: inline-block;
		font-size: 1.0rem;
		text-transform: uppercase;
		line-height: 1.2;
	}
}


/* ----HOME/MV---- */
* {
	min-height:0;
	min-width : 0;
}
.home-mv *:focus {
  outline: none;
}
.home-mv .slick-dots{
	display:flex;
	align-items:center;
	justify-content: center;
	margin-top: 4px;
	width: 100%;
}
.home-mv .slick-dots li{
	margin: 0 1px 0 0;
}
.home-mv .slick-dots button{
	position:relative;
	width: 30px;
	height: 30px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	color: #ffffff;
	text-indent: -9999px;
	font-size: 0;
}
.home-mv .slick-dots button:before{
	content:"";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-5px,-5px);
	border: 1px #696A6C solid;
	border-radius: 50%;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-mv .slick-dots .slick-active button:before{
	background-color: #696A6C;
}
@media screen and (max-width:1024px){
	.home-mv .slick-dots{
		margin-top: -15px;
		width: 100%;
	}
	.home-mv .slick-dots button{
		width: 15px;
		height: 27px;
	}
	.home-mv .slick-dots button:before{
		width: 5px;
		height: 5px;
	}
}


/* PC */
@media screen and (min-width:1025px){
	.home-mv{
		margin-top: -10px;
	}
	.home-mv .slide{
	}
	.home-mv .slick-slide{
	}
	.home-mv .slick-slide img{
		display: block;
		margin: 0 auto;
	}
	.home-mv .slick-slide a img{
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.home-mv .slick-slide a:hover img{
		opacity: 0.8;
	}
	.home-mv .slide .slick-arrow{
		position:absolute;
		top: 50%;
	}
}
@media screen and (max-width:1024px){
	.home-mv .slick-slide{
		width: 100vw;
		padding: 20px 16vw;
	}
	.home-mv .slick-slide img{
		display: block;
		margin: 0 auto;
	}

}

/* ----HOME/MESSAGE---- */
.home-message{
	margin-top: 23px;
}
.home-message p{
	text-align: center;
	line-height: 2.1;
	padding: 0 2.5em;
	letter-spacing: 0.05em;
}
@media screen and (max-width:1024px){
	.home-message{
		margin-top: 10px;
		padding: 0px 6vw;
	}
	.home-message p{
		padding: 0;
		line-height: 1.7;
		letter-spacing: 0.02em;
		font-size: 1.2rem;
	}
}


/* ----HOME/NEWS---- */
.home-news{
	display:flex;
	flex-wrap:wrap;
	margin-top: 55px;
	padding-top: 43px;
	border-top: 1px #696A6C solid;
	border-bottom: 1px #696A6C solid;
}
.home-news h2{
	font-size: 1.8rem;
	width: 162px;
	padding: 4px 0 0 11px;
}
.home-news ul{
	width: calc(100% - 162px);
}
.home-news ul li{
	transition: all 0.4s ease 0s;
	margin-bottom: 16px;
}
.home-news ul li.is-hidden {
	opacity: 0;
	height: 0;
	margin: 0;
}
.home-news li a,
.home-news li div{
	display:flex;
	letter-spacing: 0.09em;
	text-decoration: none;
	padding: 5px 0;
}
.home-news li a{
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-news li a span,
.home-news li div span{
	width: 9em;
	font-size:1.4rem;
}
.home-news li a p,
.home-news li div p{
	width: calc(100% - 9em);
}
.home-news-btn{
	position:relative;
	width:100%;
	height: 2em;
	margin: 5px 0 6px 0;
}
.home-news-btn--more,
.home-news-btn--close{
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-weight:300;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-news-btn--close{
	display:none;
}
@media screen and (min-width:1025px){
	.home-news-btn--more:hover,
	.home-news-btn--close:hover,
	.home-news li a:hover{
		cursor:pointer;
		opacity:0.5;
	}
}
@media screen and (max-width:1024px){
	.home-news{
		margin-top: 25px;
		margin-left: 4vw;
		margin-right: 4vw;
		padding-top: 18px;
	}
	.home-news h2{
		width: 100%;
		text-align: center;
		padding: 0;
		font-size: 1.5rem;
		margin-bottom: 12px;
	}
	.home-news ul{
		width: 100%;
		padding: 0 8vw;
	}
	.home-news li a span,
	.home-news li div span{
		width: 6em;
		font-size:1.1rem;
	}
	.home-news li a p,
	.home-news li div p{
		width: calc(100% - 6em);
		font-size:1.2rem;
	}
	.home-news-btn{
		margin: 0 0 5px 0;
	}
	.home-news-btn--more,
	.home-news-btn--close{
		font-size: 1.2rem;
	}

}
@media screen and (max-width:374px){
	.home-news ul{
		padding: 0 8vw;
	}
}


/* ----HOME/RECOMMEND---- */
.home-recommended{
	margin-top:95px;
}
.home-recommended h2{
	font-size:2.0rem;
	text-align: center;
	margin-bottom: 80px;
}
.home-recommended-link{
	margin-top: 27px;
	display:flex;
	justify-content:center;
	align-items: center;
}
.home-recommended-link a{
	text-decoration:none;
	font-weight:300;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width:1025px){
	.home-recommended-link a:hover{
		opacity:0.5;
	}
}
@media screen and (max-width:1024px){
	.home-recommended{
		margin-top:53px;
	}
	.home-recommended h2{
		font-size: 1.4rem;
		padding: 0;
		margin-bottom: 26px;
	}
	.home-recommended-link{
		margin-top: 9px;
	}
}

/* ----HOME/BANNER---- */
.home-banner{
	margin-top: 165px;
	margin-bottom: 30px;
}
.home-banner ul{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	align-items: center;
}
.home-banner li{
	width: 50%;
}
.home-banner li:nth-child(odd){
	padding-right:10px;
}
.home-banner li:nth-child(even){
	padding-left:10px;
}
.home-banner li a{
	display:block;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-banner li a img{
	display:block;
	width: 100%;
}
@media screen and (min-width:1025px){
	.home-banner li a:hover{
		opacity:0.7;
	}
}
@media screen and (max-width:1024px){
	.home-banner{
		margin-left: 4vw;
		margin-right: 4vw;
		margin-top: 130px;
	}
}

/* ----GOODS LIST---- */
.block-goods-list-t{
	display:flex;
	flex-wrap:wrap;
	width: 100%;
	justify-content: flex-start;
}
.block-goods-list-t&gt;li{
	width:290px;
	margin-right: 25px;
	margin-bottom: 50px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
}
.block-goods-list-t&gt;li:nth-child(3n){
	margin-right: 0;
}
.block-goods-list-t&gt;li a{
	display:block;
	text-decoration:none;
	padding-bottom: 32px;
}
.block-goods-list-t--img{
	padding: 20px 20px 0 20px;
}
.block-goods-list-t--img figure{
	position:relative;
	width: 100%;
	padding-top: 100%;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-goods-list-t--img figure img{
	position:absolute;
	display: block;
	top:50%;
	left:50%;
	max-width:100%;
	max-height:100%;
	transform: translate(-50%,-50%);
}
.block-goods-list-t--icon{
	display:flex;
	justify-content:center;
	align-content: center;
	flex-wrap:wrap;
	margin-top: 28px;
	min-height: 20px;
}
.block-goods-list-t--icon li{
	position:relative;
	line-height:20px;
	text-align: center;
	padding: 0 1em;
}
.block-goods-list-t--icon li:nth-child(n+2){
}
.block-goods-list-t--icon li:nth-child(n+2):before{
	content:"";
	display:block;
	position:absolute;
	left: -1px;
	top: 30%;
	width: 1px;
	height: 50%;
	background-color: #B1B1B1;
}
.block-goods-list-t--goods-name{
	margin-top: 6px;
	font-size: 1.6rem;
	text-align: center;
	padding: 0 1em;
}
.block-goods-list-t--item-details{
	margin-top:9px;
}
.block-goods-list-t--price{
	display:flex;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 1.6rem;
	line-height: 2.3rem;
}
.block-goods-list-t--price small{
	font-size: 1.2rem;
	display:block;
	width: 100%;
	text-align: center;
}
@media screen and (min-width:1260px) {
	.block-goods-list-t&gt;li{
		width:280px;
	}
}
@media screen and (min-width:1025px) and (max-width:1259px) {
	.block-goods-list-t&gt;li{
		width:calc((100% - 50px) / 3);
	}
}
@media screen and (min-width:1025px){
	.block-goods-list-t&gt;li a:hover figure{
		opacity:0.7;
	}
}
@media screen and (max-width:1024px){
	.block-goods-list-t{
		margin: 0 2vw;
	}
	.block-goods-list-t&gt;li{
		width:calc((100% - 90px) / 3);
		margin-left: 15px;
		margin-right: 15px;
	}
	.block-goods-list-t&gt;li:nth-child(3n){
		margin-right: 15px;
	}
	.block-goods-list-t&gt;li a{
		padding-bottom: 15px;
	}
	.block-goods-list-t--item-details{
		margin-top: 5px;
		margin-bottom: 10px;
	}
}
@media screen and (max-width:900px){
	.block-goods-list-t{
		margin: 0 2vw;
	}
	.block-goods-list-t&gt;li{
		width:calc((100% - 20px) / 2);
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 20px;
	}
	.block-goods-list-t--icon{
		margin-top: 10px;
	}
	.block-goods-list-t--icon li{
		font-size: 1.0rem;
		line-height: 13px;
	}
	.block-goods-list-t&gt;li:nth-child(3n){
		margin-right: 5px;
	}
	.block-goods-list-t--goods-name{
		margin-top: 4px;
		font-size: 1.4rem;
	}
	.block-goods-list-t--price{
		font-size: 1.4rem;
		line-height:2.0rem;
	}
}
@media screen and (max-width:374px) {
	.block-goods-list-t&gt;li{
		width: 100%;
	}
}

/* ----PANKUZU---- */
.block-breadcrumb{
	margin-top: -3px;
	margin-bottom: 2em;
}
.block-breadcrumb ul{
	display:flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap:wrap;
}
.block-breadcrumb li{
	position:relative;
}
.block-breadcrumb li:nth-child(n+2){
	padding-left: 20px;
}
.block-breadcrumb li:nth-child(n+2):before{
	content:"";
	display:block;
	position:absolute;
	width: 5px;
	height: 5px;
	top: 9px;
	left: 5px;
	transform: rotate(135deg);
	border-top: 1px #6A696C solid;
	border-left: 1px #6A696C solid;
}
.block-breadcrumb span,
.block-breadcrumb a{
	text-decoration:none;
	font-size: 1.2rem;
	font-weight: 300;
}
.block-breadcrumb a{
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width:1025px){
	.block-breadcrumb a:hover{
		opacity:0.5;
	}
}
@media screen and (max-width:1024px){
	.block-breadcrumb{
		margin-top: 0;
		padding: 7px 2vw;
		border-bottom: 1px #dedede solid;
	}
	.block-breadcrumb span,
	.block-breadcrumb a{
		font-size: 1.2rem;
	}
}

/* ----ITEM LIST---- */
.block-itemlist-items{
	margin-bottom: 50px;
}
.block-itemlist-items h1,
.block-itemlist-items h2{
	text-align: center;
	font-size: 2.0rem;
	margin-bottom: 77px;
}
.block-itemlist-items h1{
	margin-top: 70px;
}
.block-itemlist-items h2{
	margin-top: 107px;
}
.ajax-itemlist{
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
@media screen and (max-width:1024px){
	.block-itemlist-items{
		margin-bottom: 38px;
	}
	.block-itemlist-items h1,
	.block-itemlist-items h2{
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
	.block-itemlist-items h1{
		margin-top: 36px;
	}
	.block-itemlist-items h2{
		margin-top: 40px;
	}
}

/* ----ITEM DETAIL---- */
.block-itemdetail-main{
	display:flex;
	padding-top: 79px;
	margin-bottom: 75px;
	opacity: 0;
	transition: all .3s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-itemdetail-main.active{
	opacity: 1;
}
.block-itemdetail-img{
	flex: 1;
}
.block-itemdetail-img li{
	margin-bottom: 50px;
}
.block-itemdetail-img li:last-child{
	margin-bottom: 0;
}
.block-itemdetail-img figure{
	position:relative;
	border: 1px #ECECEC solid;
	width: 100%;
	padding-top: 100%;
}
.block-itemdetail-img figure img{
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.block-itemdetail-info{
	padding-left: 30px;
	width: 460px;
}
.block-itemdetail-info .block-icon{
	display:flex;
	justify-content:flex-start;
	align-content: center;
	flex-wrap:wrap;
	margin-top: 9px;
}
.block-itemdetail-info .block-icon span{
	position:relative;
	display:block;
	line-height: 25px;
	text-align: center;
	padding: 0px 1.1em 0 0;
	margin: 0 0 5px 0;
	font-size: 1.6rem;
}
.block-itemdetail-info .block-icon span:nth-child(n+2){
	padding-left: 1.1em;
}
.block-itemdetail-info .block-icon span:nth-child(n+2):before{
	content:"";
	display:block;
	position:absolute;
	left: -1px;
	top: 26%;
	width: 1px;
	height: 50%;
	background-color: #C9C9C9;
}
.block-itemdetail-info .block-goods-name{
	font-size: 1.8rem;
	margin-top: 13px;
	letter-spacing: 0.14em;
}
.block-itemdetail-info .block-goods-price{
	font-size: 1.6rem;
	margin-top: 21px;
}
.block-itemdetail-info .block-goods-price small{
	font-size: 1.2rem;
}
.block-itemdetail-info .block-goods-collection{
	margin-top: 26px;
}
.block-itemdetail-info .block-goods-collection--main{
	font-size: 1.2rem;
	margin-top: 10px;
	letter-spacing: 0.05em;
}
.block-itemdetail-info .block-goods-collection--sub{
	font-size: 1.2rem;
	margin-top: 5px;
}
.block-itemdetail-info .block-goods-info{
	margin-top: 27px;
}
.block-itemdetail-info .block-goods-info p{
	font-size: 1.2rem;
}
.block-itemdetail-info .block-goods-info p + p{
	margin-top: 11px;
}
.block-itemdetail-info .block-goods-info p.comment{
	font-size: 1.5rem;
	margin-top: 28px;
}
.block-itemdetail-info .block-goods-text1{
	margin-top: 20px;
}
.block-itemdetail-info .block-goods-text1 p{
	font-size: 1.2rem;
	line-height: 2;
	letter-spacing: 0.05em;
}
.block-itemdetail-info .block-goods-banner{
	margin-top: 51px;
}
.block-itemdetail-info .block-goods-text2{
	margin-top: 45px;
}
.block-itemdetail-info .block-goods-text2 ul{
}
.block-itemdetail-info .block-goods-text2 li{
	display:flex;
	align-items: flex-start;
	margin-top: 7px;
	font-size: 1.2rem;
}
.block-itemdetail-info .block-goods-text2 li span{
	width: 9em;
	padding-right: 1em;
}
.block-itemdetail-info .block-goods-text2 li p{
	flex: 1;
	position:relative;
	padding-left: 30px;
}
.block-itemdetail-info .block-goods-text2 li p:before{
	content:":";
	display:block;
	position:absolute;
	top: 0;
	left: 0;
}
.block-itemdetail-info .block-goods-text3{
	margin-top: 10px;
}
.block-itemdetail-info .block-goods-text4{
	margin-top: 10px;
}
.block-itemdetail-info .block-goods-notice{
	margin-top: 30px;
}
.block-itemdetail-info .block-goods-notice li{
	font-size: 1rem;
	padding-left:1em;
	text-indent:-1em;
	margin-bottom: 5px;
}
.block-itemdetail-info .block-goods-color{
	margin-top: 90px;
	overflow: hidden;
}
.block-itemdetail-info .block-goods-color p{
	font-size: 1.6rem;
	text-align: center;
	letter-spacing: 0.17em;
	margin-bottom: 27px;
}
.block-itemdetail-info .block-goods-color ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap:wrap;
	width: calc(100% + 24px);
	margin-left: -12px;
}
.block-itemdetail-info .block-goods-color li{
	width: calc(100% / 3);
	padding: 0 12px;
}
.block-itemdetail-info .block-goods-color li:nth-child(n+4){
	margin-top: 24px;
}
.block-itemdetail-info .block-goods-color a{
	display: block;
}
.block-itemdetail-info .block-goods-color figure{
	display:block;
	position:relative;
	border: 1px #C9C9C9 solid;
	width: 100%;
	padding-top: 100%;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-itemdetail-info .block-goods-color figure img{
	display: block;
	position:absolute;
	top: 50%;
	left: 50%;
	max-width:100%;
	max-height:100%;
	transform: translate(-50%,-50%);
}
.block-itemdetail-info .block-goods-add-cart{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}
.block-itemdetail-info .block-goods-add-cart a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 350px;
	height: 50px;
	background-color: #696A6C;
	border: 1px #696A6C solid;
	text-decoration: none;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-itemdetail-info .block-goods-add-cart a span{
	position:relative;
	display: block;
	color: #ffffff;
	padding-left: 40px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 23px;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-itemdetail-info .block-goods-add-cart a span:before{
	content:"";
	display: block;
	position:absolute;
	left: 0;
	top: -1px;
	width: 20px;
	height: 23px;
	background-image: url(../img/ico_btn_cart.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-itemdetail-info .block-goods-share-link{
	margin-top: 32px;
}
.block-itemdetail-info .block-goods-share-link ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.block-itemdetail-info .block-goods-share-link ul li{
	padding: 0 5px;
}
.block-itemdetail-info .block-goods-share-link a{
	position:relative;
	display:block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-goods-share-link--twitter a{
	background-image: url(../img/ico_twitter.png);
	background-size: 25px auto;
}
.block-goods-share-link--facebook a{
	background-image: url(../img/ico_facebook.png);
	background-size: 25px auto;
}
.block-goods-share-link--line a{
	background-image: url(../img/ico_line.png);
	background-size: 24px auto;
}
.block-itemdetail-main .no-item{
	width: 100%;
	text-align:center;
	padding: 0 2em;
}
.block-itemdetail-main .no-item a{
	display:inline-block;
	margin-top: 3rem;
}

.block-itemdetail-sub{
  margin-top: 145px;
  margin-bottom: 75px;
}
.block-itemdetail-sub&gt;ul{
}
.block-itemdetail-sub&gt;ul&gt;li{
	border-bottom: 1px #ececec solid;
	display: flex;
	padding: 30px 110px 30px 34px;
}
.block-itemdetail-sub .block-itemdetail-sub--text{
	flex: 1;
	padding-top: 14px;
	padding-bottom: 20px;
	padding-right: 3em;
	letter-spacing: 0.05em;
}
.block-itemdetail-sub .block-itemdetail-sub--text h2{
	font-size: 1.8rem;
	margin-bottom: 28px;
}
.block-itemdetail-sub .block-itemdetail-sub--text p{
	font-size: 1.4rem;
	line-height: 1.8;
}
.block-itemdetail-sub .block-itemdetail-sub--img{
	width: 242px;
}
.block-itemdetail-sub .block-itemdetail-sub--img img{
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
@media screen and (min-width:1025px){
	.block-itemdetail-info .block-goods-add-cart a:hover{
		background-color: #ffffff;
	}
	.block-itemdetail-info .block-goods-add-cart a:hover span{
		color: #696A6C;
	}
	.block-itemdetail-info .block-goods-add-cart a:hover span:before{
		background-image: url(../img/ico_btn_cart_on.png);
	}
	.block-itemdetail-info .block-goods-share-link a:hover{
		opacity:0.5;
	}
	.block-itemdetail-info .block-goods-color a:hover figure{
		border: 1px #646464 solid;
	}
    .block-itemdetail-sub.mh_sp {
		display: none;
    }
}
@media screen and (max-width:1024px){
	.block-itemdetail-main{
		display:block;
		padding-top: 10px;
	}
	.block-itemdetail-img{
		position:relative;
		margin-bottom: 60px;
	}
	.block-itemdetail-img li{
		display: block;
		width: 100%;
		margin-bottom: 0;
	}
	.block-itemdetail-img figure{
		position:relative;
		width: 500px;
		height:500px;
		margin: 0 auto;
		padding: 0;
		border: none;
	}
	.block-itemdetail-img figure img{
		max-height:100%;
		position:absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.block-itemdetail-img .slick-arrow{
		position:absolute;
		top: 0;
		width: 10vw;
		height: 100%;
		background-color: transparent;
		border: none;
		cursor: pointer;
		outline: none;
		padding: 0;
		appearance: none;
		z-index: 10;
	}
	.block-itemdetail-img .slick-arrow:before{
		content:"";
		display:block;
		position:absolute;
		width: 10px;
		height: 10px;
		border-top:1px #000 solid;
		border-left:1px #000 solid;
		top: 50%;
	}
	.block-itemdetail-img .slick-next{
		right: 0;
	}
	.block-itemdetail-img .slick-next:before{
		transform: translate(0px, -4px) rotate(135deg);
		right: 6px;
	}
	.block-itemdetail-img .slick-prev{
		left: 0;
	}
	.block-itemdetail-img .slick-prev:before{
		transform: translate(2px, -4px) rotate(-45deg);
		left: 6px;
	}
	.block-itemdetail-img .slick-dots{
		position: absolute;
		bottom: -37px;
		left: 0;
		display:flex;
		align-items:center;
		justify-content: center;
		margin-top: 0;
		width: 100%;
	}
	.block-itemdetail-img .slick-dots li{
		margin: 0 1px 0 0;
		width:auto;
	}
	.block-itemdetail-img .slick-dots button{
		position:relative;
		width: 15px;
		height: 27px;
		background-color: transparent;
		border: none;
		cursor: pointer;
		outline: none;
		padding: 0;
		appearance: none;
		color: #ffffff;
	}
	.block-itemdetail-img .slick-dots button:before{
		content:"";
		position: absolute;
		width: 5px;
		height: 5px;
		top: 50%;
		left: 50%;
		transform: translate(-2px,-2px);
		border: 1px #696A6C solid;
		border-radius: 50%;
		transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.block-itemdetail-img .slick-dots .slick-active button:before{
		background-color: #696A6C;
	}
	.block-itemdetail-info{
		width: 100%;
		padding: 0 7vw;
	}
	.block-itemdetail-info .block-icon{
		justify-content: center;
	}
	.block-itemdetail-info .block-icon span{
		margin: 0 0 5px 0;
		font-size: 1.1rem;
		padding: 0 0.8em;
		line-height: 18px;
	}
	.block-itemdetail-info .block-goods-name h1{
		text-align: center;
		font-size: 1.5rem;
	}
	.block-itemdetail-info .block-goods-price{
		font-size: 1.2rem;
		margin-top: 10px;
	}
	.block-itemdetail-info .block-goods-price p{
		text-align: center;
	}
	.block-itemdetail-info .block-goods-info p.comment{
		font-size: 1.3rem;
	}
	.block-itemdetail-info .block-goods-text1 {
		margin-top: 18px;
	}
	.block-itemdetail-info .block-goods-text1 p{
		line-height:1.5;
	}
	.block-itemdetail-info .block-goods-banner {
		margin-top: 25px;
	}
	.block-itemdetail-info .block-goods-notice {
		margin-top: 25px;
	}
	.block-itemdetail-info .block-goods-color{
		margin-top: 50px;
	}
	.block-itemdetail-info .block-goods-color p{
		font-size: 1.4rem;
	}
	.block-itemdetail-info .block-goods-add-cart{
		margin-top: 35px;
	}
	.block-itemdetail-info .block-goods-add-cart a{
		width: 100%;
		max-width: 600px;
	}
	.block-itemdetail-info .block-goods-add-cart a span{
		font-size: 1.4rem;
	}
	.block-itemdetail-info .block-goods-share-link{
		margin-top: 25px;
	}
	.block-itemdetail-sub {
		margin-top: 75px;
		margin-bottom: 75px;
	}
	.block-itemdetail-sub&gt;ul&gt;li{
		padding: 30px 0 30px 0px;
		margin: 0 7vw;
	}
	.block-itemdetail-sub .block-itemdetail-sub--text h2{
		font-size: 1.4rem;
	}
    .block-itemdetail-sub.mh_pc {
		display: none;
    }
}
@media screen and (max-width:600px) {
	.block-itemdetail-img figure{
		width:80vw;
		height:80vw;
	}
	.block-itemdetail-info .block-goods-name h1{
		font-size: 1.4rem;
	}
	.block-itemdetail-info .block-goods-text2 li{
		font-size: 1.2rem;
	}
	.block-itemdetail-info .block-goods-color ul {
		width: calc(100% + 10px);
		margin-left: -5px;
	}
	.block-itemdetail-info .block-goods-color li{
		width: 50%;
		padding: 0 5px;
	}
	.block-itemdetail-info .block-goods-color li:nth-child(n+3){
		margin-top: 10px;
	}
	.block-itemdetail-sub&gt;ul&gt;li{
		flex-wrap:wrap;
		flex-direction: column;
	}
	.block-itemdetail-sub .block-itemdetail-sub--text{
		width: 100%;
		order: 2;
		padding: 0;
		margin-top: 2em;
	}
	.block-itemdetail-sub .block-itemdetail-sub--text h2 {
		margin-bottom: 1.5em;
	}
	.block-itemdetail-sub .block-itemdetail-sub--text p{
		font-size: 1.2rem;
		line-height: 1.6;
	}
	.block-itemdetail-sub .block-itemdetail-sub--img{
		width: 100%;
		order: 1;
	}
	.block-itemdetail-sub .block-itemdetail-sub--img img{
		width: 100%;
		max-width: 220px;
	}
}


/* ----ITEM DETAIL(CART MODAL)---- */
.cart-modal {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 10010;
	background-color: rgba(236, 236, 236, 0.55);
}
.cart-modal.is-active {
	display: flex;
}
.cart-modal-inner {
	margin: auto;
	background: rgba(255,255,255,0.9);
	width: 90%;
	max-width: 650px;
	padding: 40px 50px;
	border: 1px solid #696A6C;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	font-family: "A1 Mincho", serif;
}
.cart-modal h2 {
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 1em;
	padding-bottom: 1em;
	position: relative;
}
.cart-modal p {
	text-align: center;
}
.cart-modal .link-block .block-add-cart--btn {
	display: inline-block;
	padding: 1em 2em;
	background-color: #696A6C;
	color: #fff;
	font-family: "A1 Mincho", serif;
	text-decoration:none;
	border: none;
}
.cart-modal .link-block .block-add-cart--btn a{
	font-size: 1.4rem;
}
.cart-modal .link-block {
	text-align: center;
	margin-top: 2em;
}
#js-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 1em;
	height: 1em;
	z-index: 10;
	cursor: pointer;
}
#js-modal-close::before, #js-modal-close::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 1px;
	background-color: #696A6C;
}
#js-modal-close::before {
	transform: rotate(45deg);
}
#js-modal-close::after {
	transform: rotate(-45deg);
}
.cart-modal h2::after {
    content: "";
    display: block;
    width: 67%;
    height: 1px;
    background-color: #696A6C;
    line-height: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.cart-modal-inner .cart-move-wrap &gt; div {
    display: inline-block;
    transition: .2s all;
    width: 100%;
}
.attention-text--wrap {
    transform: translateX(120%);
    position: absolute;
}
.cart-modal-inner .cart-move-wrap &gt; div.cart-serlect--wrap.no-active {
    transform: translateX(-120%);
    position: absolute;
    display: none;
}
.attention-text--wrap.is-active {
    transform: translateX(0);
    position: relative;
}
.block-goods-form-modal--title {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 1.7em;
}
.block-goods-form-modal--title h3{
    font-size: 1.5rem;
    font-weight: bold;
    padding-right: 1.5em;
}
.block-goods-form-modal--title a {
    font-size: 0.8em;
    text-decoration: underline;
}
.block-goods-form-modal--title a:hover{
    text-decoration: none;
}
.block-goods-form-modal--radio-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3em;
}
.block-goods-form-modal--radio-square {
    margin-right: 10px;
    width: calc((100% - 20px)/3);
    margin-bottom: 10px;
}
.block-goods-form-modal--radio-square:nth-child(3n) {
    margin-right: 0;
}
.block-goods-form-modal--radio-square input {
    display: none;
}
.block-goods-form-modal--radio-square label {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px #585858 solid;
    text-align: center;
    transition: all .4s ease;
    padding: 0.5em;
    transition: all .4s ease;
    color: #585858;
    box-sizing: border-box;
}
.block-goods-form-modal--radio-square label::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: 2px #696A6C solid;
    transition: all .4s ease;
    box-sizing: border-box;
    opacity: 0;
}
.block-goods-form-modal--radio-square input:checked+label {
    border: 1px #696A6C solid;
    color: #696A6C;
}
.block-goods-form-modal--radio-square input:checked+label::after {
    opacity: 1;
}
.block-goods-form-modal--price {
    display: flex;
    align-items: baseline;
}
.block-goods-form-modal-nav {
    margin-top: 1.2em;
    display: flex;
    align-items: center;
}
.block-goods-form-modal-nav .link-block.cart-next {
    margin-top: 0;
    margin-left: auto;
}
.block-goods-form-modal--price .modal_price_label {
    font-size: 1.6rem;
    font-weight: bold;
    margin-right: 15px;
}
.block-goods-form-modal--price p:not(.modal_price_label) {
    font-size: 1.1rem;
}
.block-goods-form-modal--radio-circle {
    margin-right: 20px;
}
.block-goods-form-modal--radio-circle input {
    display: none;
}
.block-goods-form-modal--radio-circle label {
    position: relative;
    padding-left: 28px;
}
.block-goods-form-modal--radio-circle label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    transition: all .4s ease;
}
.block-goods-form-modal--radio-circle label::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 9px;
    height: 9px;
    background: #696A6C;
    border-radius: 50%;
    transition: all .4s ease;
    opacity: 0;
}
.block-goods-form-modal--radio-circle input:checked+label::after {
    opacity: 1;
}
@media screen and (max-width:600px){
	.cart-modal-inner{
		padding: 30px 6vw;
	}
	.block-goods-form-modal--title{
		display: block;
	}
	.block-goods-form-modal-nav{
		display: block;
	}
	.block-goods-form-modal-nav .link-block.cart-next{
		margin-top: 30px;
	}
	.cart-modal .link-block .block-add-cart--btn{
		width: 100%;
	}
}

/* ----CONCEPT---- */
.block-concept-heading{
	margin-top: 33px;
	margin-bottom: 47px;
}
.block-concept-heading h1{
	text-align: center;
	font-size: 2.0rem;
	padding: 0 1em;
}
.block-concept-text div{
	margin: 0 auto;
	width: 100%;
	font-size: 1.2rem;
	max-width: 600px;
	box-shadow: 0 1px 10px rgb(0,0,0,0.16);
	padding: 50px 72px;
	line-height: 2.1;
}
@media screen and (max-width:1024px){
	.block-concept-heading{
  		margin-top: 50px;
		margin-bottom: 10px;
	}
	.block-concept-heading h1{
		font-size: 1.5rem;
	}
	.block-concept-text{
		display:flex;
		justify-content:center;
		align-items: center;
		margin-bottom: 5em;
	}
	.block-concept-text div{
		width: auto;
		max-width: 530px;
		margin: 0 40px;
		padding: 34px 22px;
	}
	.block-concept-text div p{
		line-height: 1.8;
	}
}
@media screen and (max-width:374px){
	.block-concept-text div{
		margin: 0 6vw;
	}
}

/* ----SUPPORT---- */
.block-support-heading h1,
.block-support-heading h2{
	font-size: 1.8rem;
	border-bottom: 1px #696A6C solid;
	margin-bottom: 20px;
	padding-bottom: 12px;
}
.block-support-heading h1{
	margin-top: 40px;
}
.block-support-heading h2{
	margin-top: 35px;
}
.block-support-detail{
	margin-bottom: 35px;
}
.block-support-detail p{
	line-height: 2.1;
}
.block-support-detail ul{
	margin-top: 19px;
}
.block-support-detail li{
	padding-left:1em;
	text-indent:-1em;
}
.block-support-detail li:nth-child(n+1){
	margin-top: 8px;
}
.block-support-link{
	margin-bottom: 50px;
}
.block-support-link a{
	margin-top: 4px;
	display: inline-block;
	background-color: #6A696C;
	color: #ffffff;
	text-decoration:none;
	line-height: 38px;
	min-width: 325px;
	padding: 0 2em;
	text-align: center;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width:1025px){
	.block-support-link a:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width:1024px){
	.block-support-heading {
       	margin-top: 30px;
		margin-bottom: 12px;
	}
	.block-support-heading h1,
	.block-support-heading h2{
		margin: 0 4vw;
		padding-bottom: 9px;
		font-size: 1.5rem;
	}
	.block-support-heading h1{
	}
	.block-support-heading h2{
		margin-top: 14px;
	}
	.block-support-detail {
		margin: 0 4vw;
	}
	.block-support-detail p{
		line-height: 1.6;
	}
	.block-support-link{
		margin: 0 4vw 5em 4vw;
	}
	.block-support-link a{
		width: 100%;
		max-width: 350px;
		min-width: auto;
	}
}
@media screen and (max-width:400px){
	.block-support-link a{
		line-height: 29px;
	}
}

/* ----SHOP LIST---- */
.block-shoplist-anchor{
	margin-top: 90px;
}
.block-shoplist-anchor ul{
	display:flex;
	flex-wrap:wrap;
}
.block-shoplist-anchor li{
	position:relative;
	margin-bottom: 2px;
	padding-right: 0.6em;
	margin-right: 0.6em;
}
.block-shoplist-anchor li:after{
	content:"";
	display: block;
	position:absolute;
	width: 1px;
	height: 40%;
	right: -1px;
	top: 32%;
	background-color: #C9C9C9;
}
.block-shoplist-anchor li:last-child{
	padding-right: 0;
	margin-right: 0;
}
.block-shoplist-anchor li:last-child:after{
	display: none;
}
.block-shoplist-anchor li a{
	font-size: 1.6rem;
	text-decoration:none;
}
.block-shoplist-heading{
}
.block-shoplist-heading h1,
.block-shoplist-heading h2{
	font-size: 1.4rem;
	border-bottom: 1px #696A6C solid;
	margin-bottom: 25px;
	padding-bottom: 18px;
}
.block-shoplist-heading h1{
	font-size: 2.0rem;
	margin-top: 50px;
}
.block-shoplist-heading h2{
	font-size: 2.0rem;
	margin-top: 50px;
}
.block-shoplist-heading h2 span{
	padding-left: 5px;
}
.block-shoplist-link{
	margin-bottom: 75px;
	overflow: hidden;
}
.block-shoplist-link ul{
	width: calc(100% + 44px);
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	margin-left: -22px;
}
.block-shoplist-link li{
	margin: 0 22px 22px 22px;
}
.block-shoplist-link a{
	display: block;
	border:1px #6A696C solid;
	height:35px;
	min-width: 307px;
	text-decoration:none;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
}
.block-shoplist-link a span{
	display: block;
	text-decoration:none;
	line-height: 33px;
	padding: 0 1em;
	text-align: center;
}
.block-shoplist-items{
	overflow: hidden;
	display: flex;
	justify-content: center;
	padding: 0px 0 0 5vw;
}
.block-shoplist-items ul{
	display:flex;
	justify-content: flex-start;
	align-content: center;
	flex-wrap: wrap;
	width: calc(100% + 50px);
	max-width: 760px;
	margin-left: -25px;
}
.block-shoplist-items li{
	width: 50%;
	padding: 0 25px 40px 25px;
}
.block-shoplist-items li h3{
	font-size: 1.6rem;
	margin-bottom: 20px;
}
.block-shoplist-items li p{
	margin-bottom: 14px;
	line-height: 1.85;
}
.block-shoplist-items li&gt;a{
	text-decoration:none;
	font-weight:300;
	transition: all .4s cubic-bezier(0.33, 1, 0.68, 1);
	text-decoration:underline;
}

@media screen and (min-width:1025px){
	.block-shoplist-link a:hover{
		border:1px #dcdcdc solid;
	}
	.block-shoplist-items li{
		padding: 0 25px;
	}
	.block-shoplist-items li:nth-child(n+3){
		padding-top: 63px;
	}
	.block-shoplist-items li a:hover{
		opacity:0.5;
	}
}
@media screen and (max-width:1024px){
	.block-shoplist-anchor{
		margin: -5px 4vw 30px 4vw;
	}
	.block-shoplist-anchor li a{
		font-size: 1.1rem;
	}
	.block-shoplist-heading {
		margin-bottom: 12px;
	}
	.block-shoplist-heading h1,
	.block-shoplist-heading h2{
		margin: 0 4vw;
		padding-bottom: 4px;
	}
	.block-shoplist-heading h1{
		margin-top: -7px;
		font-size: 1.6rem;
	}
	.block-shoplist-heading h2{
		margin-top: 21px;
		font-size: 1.6rem;
	}
	.block-shoplist-link{
		margin: 0 4vw;
	}
	.block-shoplist-link ul{
		width: calc(100% + 22px);
	}
	.block-shoplist-link li{
		margin: 0 11px 11px 11px;
	}
	.block-shoplist-link a{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 37px;
		width: 40vw;
		min-width: 136px;
	}
	.block-shoplist-link a span{
		height: auto;
		line-height: 1.3;
		font-size: 1.0rem;
	}
	.block-shoplist-items{
		margin: 0 4vw 40px 4vw;
		padding: 0;
	}
	.block-shoplist-items ul{
		display:flex;
		justify-content: flex-start;
		align-content: center;
		flex-wrap: wrap;
		width: 100%;
		margin: 0;
	}
	.block-shoplist-items li{
		width: 50%;
		padding: 0 15px 0 0;
	}
	.block-shoplist-items li:nth-child(n+3){
		padding-top: 22px;
	}
	.block-shoplist-items li h3{
		font-size: 1.2rem;
		margin-bottom: 5px;
        font-weight: bold;
	}
	.block-shoplist-items li p{
		font-size: 1.1rem;
		line-height: 1.6;
		margin-bottom: 3px;
	}
	.block-shoplist-items li a{
		font-size: 1.1rem;
	}
}

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

	.block-shoplist-items li{
		width: 100%;
		padding: 22px 0 0 0;
	}

}/* max-width:500px */

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

	.block-shoplist-items li:nth-child(n+2){
		padding-top: 20px;
	}
}


/* ショップリストメインブロックマージン調整 */
.forcms_block_addressid_main_LICENSE_MARGARETHOWELLIDEA_LINEUP_SHOPLIST_main_BLOCK20230121155527_2,
.forcms_block_addressid_main_LICENSE_MARGARETHOWELLIDEA_LINEUP_SHOPLIST_main_T001ArticleDataList_4{
	padding-left: 40px;
}

@media screen and (max-width:1025px) {
	.forcms_block_addressid_main_LICENSE_MARGARETHOWELLIDEA_LINEUP_SHOPLIST_main_BLOCK20230121155527_2,
	.forcms_block_addressid_main_LICENSE_MARGARETHOWELLIDEA_LINEUP_SHOPLIST_main_T001ArticleDataList_4{
		padding-left: 0px;
	}
}/* max-width:1025px */


/* TOP .home-news三件未満の時にVIEW MOREボタン非表示 */
/* .home-news.nomore .home-news-btn{
	display: none;
} */

.home-news.nomore{
	padding-bottom: 20px;
}</pre></body></html>