@charset 'utf-8';

/*reset*/ 
* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-font-feature-settings: 'palt';
	        font-feature-settings: 'palt';
}
ul,ol,dl,dt,dd {
	list-style: none;
	margin:0;
	padding:0;
}
img {
	width:100%;
	max-width: 100%;
	height: auto;
}
main {
	display: block;
}

/*link style*/
a {color:#333}
a:hover {color:inherit;text-decoration: none;}
.underline {
	text-decoration: underline;
}
.list-border {
	margin:15px 0;
	border-top: 1px solid #ddd;
}
.list-border a {
	border-bottom: 1px solid #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding:0.5rem;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
}
.list-border a:after {
	content: ">";
}
.list-border a:hover {
	background-color: #e6ebf1;
}
/*button*/
.btn {
	width:100%;
	font-size: 1.1rem;
	padding:15px;
	margin: 15px 0;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
	font-weight: bold;
}
.btn-ordercsv {
	width:100%;
	font-size: 1.1rem;
	padding-left:8px;
	padding-right:8px;
	padding-top:3px;
	padding-bottom:3px;
	margin-left:3px;
	margin-right:0px;
	margin-top:3px;
	margin-bottom:3px;

	-webkit-transition: background-color .3s;
	transition: background-color .3s;
	font-weight: bold;
	height:30px;
	border: none;
}
.btn-ordercsv-alt{
	width:100%;
	font-size: 1.1rem;
	padding-left:8px;
	padding-right:8px;
	padding-top:4.5px;
	padding-bottom:4.5px;
	margin-left:3px;
	margin-right:0px;
	margin-top:3px;
	margin-bottom:3px;

	-webkit-transition: background-color .3s;
	transition: background-color .3s;
	font-weight: bold;
	height:30px;
	border: none;
}
.btn:disabled {
	background-color: #333;
	color:#999;
}
.btn:disabled:hover {
	background-color: #333;
	color:#999;
}
.btn.small {
	width:auto;

}
.btn-gray {
	background-color: #f2f2f2;
	color:#003E80;
}
.btn-gray:hover {
	background-color: #e9e9e9;
	color:#003E80;
}
.btn-gray-ghost {
	border:4px solid #888;
	color:#888;
	font-weight: bold;
	padding:5px 15px;
}
.btn-blue {
	background-color: #003E80;
	color:#fff;
}
.btn-blue:hover {
	background-color: #005dbf;
	color:#fff;
}
.btn-red {
	border:2px solid transparent;
	background-color: #DC0723;
	color:#fff;
}
.btn-red:hover {
	background-color: #F43151;
	color:#fff;
}
.btn-red-ghost {
	border:2px solid #DC0723;
	color:#DC0723;
}
.btn-red-ghost:hover {
	background-color: #f9e3e6;
	color:#DC0723;
}
.btn-skyblue {
	background-color: #87ceeb;
	color: #003E80;
}
.btn-skyblue:hover {
	background-color: #55bae2;
	color: #003E80;
}
.btn-textlink {
	border:none;
	background:none;
	text-decoration: underline;
	color:#888;
	font-size: 0.9rem;
	margin:0;
	padding:0;
}
.btn.has-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.btn.has-icon:before {
	content: "";
	display: inline-block;
	margin-right:5px;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.btn.has-icon-after {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.btn.has-icon-after:after {
	content: "";
	display: inline-block;
	margin-left:5px;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.btn-search:before { background-image: url(../img/icon/icon-search-white.png)}
.btn-cart:before {background-image: url(../img/icon/icon-cart.png)}

.btn-close {
	border:none;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
	        box-shadow: 0 0 10px rgba(0,0,0,0.2);
	font-size: 0.8rem;
	padding:5px 30px;
	-webkit-transition: -webkit-box-shadow .3s;
	transition: -webkit-box-shadow .3s;
	transition: box-shadow .3s;
	transition: box-shadow .3s, -webkit-box-shadow .3s;
}
.btn-close:hover {
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.4);
	        box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.accordion-area {
	overflow:hidden;
	height:80px;
	position: relative;
	-webkit-transition: height .3s;
	transition: height .3s;
}
.accordion-area:not(.is-open):before {
	content: "";
	display: block;
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
	background: linear-gradient(to bottom, transparent, #fff); 
}
.accordion-area.is-open {
	height:auto;
}
.btn-column > div {
	margin-top:10px;
}
.btn-column .btn {
	margin:0;
}
.btn-column2 .btn {
	width:50%;
}

/*text style*/
[class*=heading-]{
	font-weight: bold;
	line-height: 1.4;
	margin:0;
}
.heading-xs {
	font-size: 1rem;
}
.heading-sm {
	font-size: 1.1rem;
}
.heading-md {
	font-size: 1.4rem;
}
.heading-lg {
	font-size: 1.8rem;
}
.heading-underline {
	padding:15px;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
}
.strong {
	font-weight: bold;
	font-size: 1.5em;
}
.red {
	color:#DC0723;
}
.blue {
	color:#003E80;	
}
.no-wrap {
	white-space: nowrap;
}
.word-break {
	word-break: break-all;
}

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

/*form input parts*/
.input-parts {
	width:100%;
	-webkit-appearance: none;
	border:2px solid #f0f0f0;
	min-height: 30px;
	background-color: #fff;
	border-radius: 0;
	padding:5px;
	font-size: 0.9em;
}
select.input-parts {
	background-image: url(../img/icon/arrow-small.png);
	background-size: 10px;
	background-position: center right 10px;
	background-repeat: no-repeat;
	padding:5px 15px 5px 5px;
}
.number.input-parts {
	width:3rem;
	padding:2px 5px;
}
.nav-menu-item .input-submit {
	color:#003E80;
	background-color: transparent;
	border:1px solid #003E80;
	border-radius: 4px;
	margin-left:5px;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
	white-space: nowrap;
}
.nav-menu-item .input-submit:hover {
	color:#fff;
	background-color:#003E80;
}
.input-column {
	margin-left:-5px;
	margin-right:-5px;
	margin-bottom: 10px;
}
.input-column .input-parts{
	margin:0 5px;
}
.input-file {
	display: none;
}
.input-file_ordercsv {
	display: none;
}
.t {
	display: none;
}
.btn-label {
	display: block;
	cursor:pointer;
}
.btn-label .btn {
	margin:0;
}
input:disabled,select:disabled {
	background-color: #f9f9f9;
}

.label-non-mergin {
    display: inline-block;
    margin-bottom: .0rem;
}

.text-order-csv {
    width: 300px;
}

/*block style*/
@media (max-width:767px){
.sidebar > [class*=style-] {
	margin-left:15px;
	margin-right:15px;
}
}

.style-card {
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	        box-shadow: 0 0 20px rgba(0,0,0,0.1);
	padding:15px;
}
.style-card p:last-child {
	margin-bottom: 0;
}
.style-box-blue {
	border:4px solid #003E80;
}
.style-box-blue_heading {
	background-color: #003E80;
	color:#fff;
	font-size: 1.2rem;
	font-weight: bold;
	padding:15px;
	margin:0;
	text-align: center;
}
.style-box-gray {
	background-color: #eee;
	padding:15px;
}
.style-underline {
	border-bottom: 1px solid #ddd;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

/*layout*/
@media(max-width:767px){
.sidebar {
	padding:0;
}
}
@media(min-width:768px){
/*.main {
	order:1;
}*/
.main + .sidebar {
	-webkit-box-ordinal-group:0;
	    -ms-flex-order:-1;
	        order:-1;
}
}
.container.narrow {
	max-width:768px;
}
.container.narrow.more {
	max-width:375px;
}

/*table*/
@media(min-width:768px){
.table {
	font-size: 0.8rem;
}
}
.table th,.table td {
	border:none;
	vertical-align: middle;
}
@media(max-width:767px){
.table .table-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	border:1px solid #eee;
	margin-bottom: 15px;
	padding:0;
}
.table-row td {
	display: block;
}
.table .has-th-text:before {
	content: attr(data-th-text);
	margin-right:2px;
	font-weight: bold;
	font-size: 0.8em;
}
}
@media (max-width:575px){
.table tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-bottom: 15px;
}	
}
@media(max-width:767px){
.table .table-heading {
	display: none !important;
}
}
.table tr {
	border-bottom: 1px solid #eee;
}
.table .btn {
	font-size: 0.8rem;
	padding:10px;
	margin:0;
	border-radius: 0;
}
.table-scrolling {
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.dl-table {
	border: 1px solid #eee;
	border-bottom: none;
	font-size: 0.8em;
}
.dl-row {
	border-bottom: 1px solid #eee;
}
.dl-row dt,.dl-row dd {
	padding:15px;
}
.dl-row dt {
	background-color: #f6f6f6;
}
@media(min-width:576px){
.dl-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dl-row dt {
	width:30%;
}
}

/*header*/

.site-header {
	border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 767px){
.site-header .container {
	/*max-width:100%;*/
	padding:0;
}
}
.fixed-header {
	position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
}
.has-fixed-header {
	padding-top:150px;
}
@media(max-width:767px){
.has-fixed-header .login-page {
	margin-top:-80px;
}
}
@media (min-width:576px){
.has-fixed-header {
	padding-top:170px;
}
}
@media (min-width:768px){
	.has-fixed-header {
		padding-top:130px;
	}
	}
@media (min-width:992px){
.has-fixed-header {
	padding-top:86px;
}
}
.site-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin:0;
	font-size:1.1rem;
}
.site-name-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	color:#212529;
	padding:15px 0;
}
.site-name-link:hover {
	color:inherit;
	opacity: .7;
}

.site-logo {
	width:140px;
	margin-right:10px;
}
.site-subtitle {
	font-size: 0.8em;
}
@media(min-width:768px){
.site-logo {
	width:160px;
}
.site-subtitle {
	font-size: 1em;
}
}
@media (min-width:1200px){
.site-logo {
	width:190px;
}
}
.site-subtitle {
	font-weight: bold;
}

/*header nav*/
.nav-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding:0;
	position: relative;
	/*white-space: nowrap;*/
}
@media(max-width:767px){
.nav-menu-item {
	width:16%;
}
.nav-menu-item.contact {
	width:34%;
}
.nav-menu-item.search {
	-webkit-box-ordinal-group:2;
	    -ms-flex-order:1;
	        order:1;
	width:100%;
	border-top:1px solid #f0f0f0;
	border-right:1px solid #f0f0f0;
	padding:5px;
}
.nav-menu-item.search form {
	width:100%;
}
.nav-menu-item.search input[type*=search] {
	width:100% !important;
}
}
@media(max-width:991px){
.nav-menu {
	/*justify-content: flex-start;
	overflow-x: scroll;*/
	background-color: #fafafa;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.nav-menu:before {
	content: "";
	position: absolute;
	width:100vw;
	height:100%;
	background-color: #fafafa;
	z-index:-1;
}
}
.nav-menu-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 0.7rem;
	border-left: 1px solid #f0f0f0;
	position: relative;
}
@media (max-width:767px){
/*.nav-menu-item:first-child {
	border-left: none;
}*/
}
/*@media (min-width:768px){*/
.nav-menu-item:last-child {
	border-right: 1px solid #f0f0f0;
}
/*}*/
@media (min-width:1200px){
	.nav-menu-item br {
		display: none;
	}
}
.nav-menu-item .badge {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width:30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	top:5px;
	right:5px;
	font-size: 0.6rem;
	color:#fff;
	background-color: #DC0723;
}
.nav-menu-item a {
	-webkit-transition: background .3s;
	transition: background .3s;
	text-align: center;
	color:#003E80;
	padding:10px;
	width:100%;
	height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.nav-menu-item form {
	padding:10px;
}
@media (max-width:575px){
.nav-menu-item a {
	-webkit-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	        transform: scale(0.8);
	padding:0;
}
.nav-menu-item form {
	padding:5px;
}
.nav-menu-item .badge {
	-webkit-transform:scale(0.7);
	    -ms-transform:scale(0.7);
	        transform:scale(0.7);
}
}
@media (min-width:768px){
	.nav-menu-item a,.nav-menu-item form {
		min-width: 70px;
	}
}
@media (min-width:1200px){
	.nav-menu-item a,.nav-menu-item form {
		padding:15px;
	}
}
.nav-menu-item a:hover {
	background-color: #e6ebf1;
}	
.nav-menu-item [type=search] {
	border-radius: 4px;
	-webkit-appearance:none;
	width:12rem !important;
	background-image: url(../img/icon/icon-search.png);
	background-position: 5px center;
	background-size: 15px;
	background-repeat: no-repeat;
	padding:5px 5px 5px 25px;
 }
.site-header [class^='icon-']:before {
	content:"";
	display: block;
	width:16px;
	height:16px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin:0 auto;
}
@media (min-width:768px){
.site-header [class^='icon-']:before {
	width:22px;
	height:22px;
}	
}
.icon-contact:before {background-image: url(../img/icon/icon-contact.png)}
.icon-cart:before {background-image: url(../img/icon/icon-cart.png)}
.icon-cart-white:after {background-image: url(../img/icon/icon-cart-white.png)}
.icon-favorite:before {background-image: url(../img/icon/icon-favorite.png)}
.icon-favorite.done:after {background-image: url(../img/icon/icon-favorite-red.png)}
.icon-favorite.none:after {background-image: url(../img/icon/icon-favorite-red2.png)}
.icon-search:before {background-image: url(../img/icon/icon-search.png)}
.icon-user:before {background-image: url(../img/icon/icon-user.png)}
.icon-csvimport:before {background-image: url(../img/icon/icon-csvimport.png)}

.breadcrumbs {
	padding:15px 0;
	margin-bottom: 15px;
	font-size: 0.8rem;
}
.breadcrumbs a {
	color:#003E80;
	text-decoration: underline;
}
/*sidebar*/
.sidebar-container {
	margin-bottom: 45px;
}
.sidebar-container_heading {
	font-size: 1.2rem;
	font-weight: bold;
	background-color: #eee;
	padding:15px;
	margin:0;
}
.sidebar-item {
	margin:15px;
}
.sidebar-menulist {
	margin-bottom: 15px;
}
.sidebar-menulist li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #555;
    padding: 15px 0;
    color: #333;
}
.sidebar-menulist li a:hover {
	opacity: .7;
}
.sidebar-menulist li a:after {
	content: "";
	display: inline-block;
	margin-left:auto;
	margin-right:10px;
	width:6px;
	height: 10px;
	background-image: url(../img/icon/arrow-dark.png);
	background-position: center right;
	background-size: contain;
	background-repeat: no-repeat;
}
.sidebar-menulist li a img {
	width:35px;
	margin-right:5px;
}


/*toppage hero slider*/
.hero-slider {
	/*overflow: hidden;*/
}
.slick-arrow {
	z-index: 100;
	position:absolute;
	top:50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.slick-prev {
	left:10px;
}
.slick-next {
	right:5px;
}
.slick-prev:before, .slick-next:before {
    content: "";
	display: block;
	width:15px;
	height: 24px;
	background-image: url(../img/icon/arrow.png);
	background-size: cover;
}
.slick-prev:before {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.slick-dots {
	z-index:100;
	position: absolute;
	bottom:5px;
}
@media (min-width:768px){
.slick-dots {
	bottom:30px;
}
.slick-prev {
	left:30px;
}
.slick-next {
	right:30px;
}	
}
.slick-dots li button:before {
	color:#ccc;
	opacity: 0.9;	
}
.slick-dots li.slick-active button:before {
	color:#003E80;
}

/*toppage brand list*/
.brand-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left:-15px;
	margin-right:-15px;
}
.brand-list-item {
	padding:0 15px;
	width:33.3%;
	margin: 15px 0;
}
@media(min-width:768px){
.brand-list-item {
	padding:0 30px;
}
}
a:hover .brand-logo {
	opacity: .7;
}
.brand-logo {
	text-align:center;
	margin:0;
}
.brand-logo img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 15px;
}
.brand-logo figcaption {
	font-weight: bold;
	font-size: 0.7rem;
}
@media(min-width:768px){
.brand-logo figcaption {
	font-size: 1rem;
}
}
.brand-logo figcaption:before {content: "["}
.brand-logo figcaption:after {content: "]"}
/*toppage news-list*/
.news-list {
	padding:15px;
}
.news-list-item {
	margin-bottom: 15px;
}
@media(min-width:576px){
.news-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}	
}
.post-date {
	color:#999;
	font-size: 0.9rem;
	margin-right:30px;
}
.post-title {
	font-size: 1rem;
}

/*summary page select-liststype */
[class*=select-liststyle_] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 10px;
}
[class*=select-liststyle_] input {
	position: absolute;
    left: -999vw;
}
[class*=select-liststyle_] label {
	position: relative;
    text-indent: -999vw;
    width:25px;
    cursor:pointer;
    margin:0;
}
[class*=select-liststyle_] label:before {
	content: "";
	display: block;
	width:25px;
	height: 25px;
	background-size: 100%;
	position: absolute;
	top:0;
	left: 0;
}
.select-liststyle_block label:before {
	background-image: url(../img/list-style-block.png);
}
.select-liststyle_list label:before {
	background-image: url(../img/list-style-list.png);
}
[class*=select-liststyle_] input:not(:checked) + label:before {
    -webkit-filter:grayscale(100%) brightness(360%);
    -moz-filter:grayscale(100%) brightness(360%);
    -ms-filter:grayscale(100%) brightness(360%);
    filter:grayscale(100%) brightness(360%);
}
/*summary page pagenation*/
.pagenation a {
	font-size: 0.8rem;
	display: block;
	font-weight: bold;
	min-width:25px;
	line-height:25px;
	padding-left:2px;
	padding-right:2px;
	text-align: center;
	background-color: #003E80;
	color:#eee;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
}
.pagenation a:not(.current):hover {
	background-color: #005dbf;
}
.pagenation a.current {
	background-color: #eee;
	color:#003E80;
	pointer-events: none;
}
/*summary page item sort*/
.item-sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.item-sort_select {
	width:9rem;
	margin-left:10px;
}
/*summary page search terms*/
.search-terms {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	color:#888;
}
.search-terms li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.btn-delete {
	border: none;
	background:none;
	color:#888;
}
.btn-delete:hover,
.btn-delete:hover + span {
	opacity: .7;
}

/*summary page product-list*/
.products-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
	margin-top:15px;
	margin-bottom: 30px;
}
.products-list-item a:hover > div {
	opacity: .7;
}
.products-list.is-block-style {
	margin-left:-15px;
	margin-right:-15px;
}
.products-list.is-block-style .products-list-item {
	width:100%;
	padding:7px 15px;
}
@media(min-width:576px){
.products-list.is-block-style .products-list-item {
	width:calc(100% / 2);
	padding:15px;
}
}
@media(min-width:992px){
.products-list.is-block-style .products-list-item {
	width:calc(99% / 3);
}
}
.products-list.is-list-style .products-img {
	display: none;
}
.products-list.is-list-style .products-list-item {
	width:100%;
	padding:15px 0;
}
.products-list-item_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.products-list .price {
	font-weight: bold;
	font-size: 1.2rem;
	text-align: right;
	margin-left:auto;
}
.products-attr {
	width:100%;
	font-size: 0.7rem;
	color:#bbb;
	margin-bottom: 5px;
}
.products-attr_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}
.products-attr_title {
	font-weight: normal;
}
.products-attr_title:after {
	content: "|";
	margin:0 5px;
}
@media (max-width:767px){
.products-attr_totalprice {
	width:100%;
	font-size:1.2rem;
	text-align: right;
	margin-top:15px;
}
}

/*product page*/
.product-details {
	margin-bottom: 60px;
}
@media(min-width:992px){
.product-details {
	width:300px;
}
.product-sku {
	width:calc(100% - 300px);
	padding-left:30px;
}
}
@media(min-width:1200px){
.product-details {
	width:510px;
}
.product-sku {
	width:calc(100% - 510px);
}
}
.products-attr_link {
	font-size: 0.9rem;
}
.products-attr_link a {
	padding:2px 15px;
	display: inline-block;
	color:#fff;
	border-radius: 4px;
}
.product-sku .products-attr {
	font-size: 0.9rem;
}
.products-attr_link a:hover {
	opacity: .7;
}
.products-attr_link .brands {
	background-color: #003E80;
}
.products-attr_link .category {
	background-color: #555;
}
.spec-table {
	font-size: 0.7rem;
}
.spec-table_row {
	border-bottom: 1px solid #555;
	padding:10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	word-break: break-all;
}
.spec-table_row:nth-child(odd){background-color: #f0f0f0;}
.spec-table_row:nth-child(even){background-color: #fafafa;}
.spec-table_row dt { width:30%;padding-right:15px;}
.spec-table_row dd { width:70%;}

.spec-img li {
	margin-bottom: 30px;
}
.product-sku li {
	margin-bottom: 30px;
	position: relative;
}
.product-sku .badge {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #fff;
    background-color: #DC0723;
}
.product-sku_detail {
	padding-left:15px;
}
.add-cart {
	font-size: 0.7rem;
	margin-top: 15px;
}
.add-cart .btn {
	font-size: 0.7rem;
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 0;
}
.add-cart .icon-cart-white:after {
	background-image: url(../img/icon/icon-cart-white.png);
}
@media(min-width:768px){
.product-sku_img {
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.sku-image {
	width: 150px;
}
.product-sku_detail {
	width:calc(100% - 150px);
	padding-left:15px;
}
.add-cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	font-size: 0.7rem;
	margin-top: 15px;
}
.add-cart .btn {
	margin: 0 0 0 10px;
	width:auto;
}
}

.products-stock {
	font-size: 0.8rem;
	color:#888;
}
.products-stock dt {
	font-weight: normal;
}
.products-stock_topic {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-right:10px;
}
.products-stock_topic.schedule dt,
.products-stock_topic.schedule dd{
	color:#333;
	font-weight: bold;
}


/*login page*/
.step dt {
	width:4em;
}
.step dd {
	width:calc(100% - 5em);
}
.step a {
	color:#003E80;
	text-decoration: underline;
	font-weight: bold;
}

/*contact page*/
.contact .required {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.contact .required:before {
	content: "必須";
	color:#fff;
	font-size: 0.6rem;
	background-color: #DC0723;
	border-radius: 10px;
	padding:2px 4px;
	margin-right:5px;
}

/*cart page*/
.cart-items-list {
	margin-top:30px;
	border-top:1px solid #eee;
}
.cart-item {
	border-bottom:1px solid #eee;
	padding:30px 0;
}
.cart-height {
	min-height:0%;
}

/*cart check page*/
.attention {
	background-color:#DC0723;
	color:#fff;
	padding:15px;
	display: inline-block;
	text-align: left;
	font-size: 0.9rem;
	margin:30px 0 60px 0;
}
.attention p:last-child {
	margin-bottom: 0;
}

.alert-text {
	color: #962137;
	font-weight: 900;
	display: block;
}

@media(min-width:768px) {
	.header-alert-text {
		color: #962137;
		font-weight: 900;
		display: block;
		margin: -5px 0px 5px 15px;
	}
}
@media(max-width:767px) {
	.header-alert-text {
		color: #962137;
		font-weight: 900;
		display: block;
		margin-left: 10px;
	}
}

@media(max-width:767px){
.table.cart-check tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-bottom: 15px;
	max-width: 92vw;
}
.table.cart-check tr td {
	display: block;
}
.cart-item-img {
	width:100%;
}
.cart-item-title {
	width:100%;
}
.cart-item-totalprice {
	width:100%;
	font-weight: bold;
	font-size:1rem;
}
.cart-item-situation {
	width:100%;
}
}
@media(min-width:768px){
.cart-item-img img {
	width:60px;
}
.favorite-items .cart-item-img img {
	width:120px;
}
}
.shipping-address {
	font-size:0.8rem;
}

.wrap-pagination ul{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap-pagination ul li{
	width: 33%;
	text-align: center;
}

.wrap-pagination ul li span{
	display: block;
	padding: 1.5rem;
	font-size: 1rem;
}

.wrap-pagination ul li a{
	background-color: #f2f2f2;
	display: block;
	padding: 1rem;
	border-radius: 3px;
}

.wrap-pagination ul li a:hover{
	background-color: #e4e8ec;
}

.wrap-pagination img{
	width: 20px;
}

/*footer*/
.footer {
	margin-top: 60px;
	padding:60px 15px;
	background-color: #333;
	color:#eee;
	font-size: 0.9rem;
}
.footer-menu {
	margin-bottom: 15px;
}
.footer-menu a {
	color:#eee;
	padding:0.2em 0;
	display: block;
}
.footer-menu a:hover {
	color:#999;
}
@media(min-width:768px){
.footer-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.footer-menu a {
	margin:0 0.5em;
}
}

/*small page layout*/
body,html {
	/*height: 100%;*/
}
@media(max-width:767px) {
	body {
	}
}
@media(min-width:768px) {
	body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;

	}
}
footer {
}
.container-fluid {
	margin-right: auto;
	margin-left: auto;
	max-width: 1240px; 
}
/*order csv page*/
.order-csv-height {
	min-height:360px;
}
/*top page carousel width*/
@media (min-width: 768px) {
    .hero-slider {
        max-width: 1280px;
        margin: 15px auto 0;
    }
}
@media (max-width: 1295px) {
    .hero-slider {
        max-width: auto;
        width: 100%;
        margin: 57px auto 0;
    }
}