﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
:root{
	--m-color:#1da3c1;
	--s-color:#ca3c25;
	--t-color:#245388;
}



h1,h2,h3,h4,h5,h6,input,button,textarea,select,p,blockquote,th,td,pre,address,li,dt,dd {
	font-size: 14px;
	-webkit-text-size-adjust: none;
}
h2,h3{padding: 9px 0 9px 0;}
header, section, footer, aside, nav, main, article, figure {
    display: block;
}
img {
	vertical-align: bottom;
}	

a { color:#000; }
a:hover,
a:active { color: #000; text-decoration: none; }
a:visited {
}

table {
	width:100%
}

p { margin: 0 0 1.5em; }

.section { padding:  0 0 30px; }

p, dd, td, th, li {
	line-height: 1.8em;
}
#totop {
position: fixed;
    bottom: 14px;
    right: 1%;
    z-index: 1000;
    margin-bottom: 0;
    width: 45px;
}
.bold {font-weight:bold;}
.fl {float:left;}
.fr {float:right;}

*, *:before, *:after {
	box-sizing: border-box;
}
body {
	font-family: 'UTMAvo', sans-serif;
	color: #666;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/

#wrapper{
	min-width: 1170px;
	overflow: hidden;
}
.container, .under #main{
	width: 1170px;
	margin: 0 auto;
	position: relative;
}
img{
	max-width: 100%;
}
.sp {
	display: none !important;
}
.h-top {
    background: var(--m-color);
    color: #fff;
	padding: 7px 0;
}
.h-top-list {
    display: flex;
    justify-content: flex-end;
}
.h-top-item {
    border-right: 1px solid #fff;
    line-height: 1.2em;
	margin: 0 10px;
	padding-right: 15px;
	font-size: 13px;
}
.h-top-item:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
.h-top-list a {
	text-decoration: none;
	color: #fff;
}
.h-top-list a:hover {
	text-decoration: underline;
}
.h-top-tel {
	background: url(../imgW/h_ico01.png) no-repeat left center;
	padding-left: 20px;
	font-weight: bold;
	font-size: 16px;
}
.h-top-add {
	background: url(../imgW/h_ico02.png) no-repeat left center;
	padding-left: 20px;
}
.h-top-mail {
	background: url(../imgW/h_ico03.png) no-repeat left center;
	padding-left: 25px;
}
.h-top-time {
	background: url(../imgW/h_ico04.png) no-repeat left center;
	padding-left: 22px;
}
.h-main {
    padding: 10px 0;
}
.h-main .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
    margin: 0;    width: 150px;
}
.h-right {
    display: flex;
	align-items: center;
}
.gnavi {
	display: flex;
	margin-right: 30px;
}
.gnavi > li > a {
	text-decoration: none;
	font-size: 16px;
	text-transform: uppercase;
	display: block;
	padding: 25px 0;
	position: relative;
}
.gnavi li {
	position: relative;
}
.gnavi > li {
	margin: 0 20px;
}
.gnavi > li:hover > a {
	color:var(--s-color);
}
.gnavi > li.active > a {
	font-weight: bold;
	color: var(--s-color);
}
.gnavi > li > a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--t-color);
	transform: scale(0,1);
	transition: all 0.5s ease;
}
.gnavi > li.active > a:after, .gnavi > li:hover > a:after {
	transform: scale(1,1);
}
.gnavi > li.over > a {
	padding-right: 15px;
}
.gnavi > li.over > a:before {
	content: '';
	position: absolute;
	border: solid #000;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	right: 0;
	top: calc(50% - 4px);
	transition: all 0.5s ease;
}
.gnavi > li.active > a:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
	top: calc(50% - 2px);
	border-color: var(--s-color);
}
.submenu {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    min-width: 200px
}
.submenu a {
    text-decoration:none;
    display: block;
    background: var(--t-color);
    color: #fff;
    margin-top: 1px;
    font-size: 15px;
    padding: 10px 15px;
    white-space: nowrap
}
    .submenu a:hover ,.subsubmenu a:hover {
        background: var(--s-color);
    }

.subsubmenu {
   position: absolute;
    z-index: 10;
    left: 101%;
    top: 0;
    display: none;
    min-width: 200px;
}
 .subsubmenu a {
    text-decoration:none;
    display: block;
    background: var(--t-color);
    color: #fff;
    margin-top: 1px;
    font-size: 15px;
    padding: 10px 15px;
    white-space: nowrap
}
.h-search-ttl {
    margin: 0;
    border-left: 1px solid;
    line-height: 0;
    padding: 0 20px;
	cursor: pointer;
}
.h-search {
    position: relative;
}
.h-search-form {
    position: absolute;
    width: 250px;
    left: -30px;
    top: 30px;
	display: none;
}
.h-search-form input {
	width: 100%;
	border: 1px solid rgba(0,0,0,0.2);
	padding: 5px 10px;
	font-size: 13px;
	outline: none;
}
.h-search-form button {
    position: absolute;
    border: none;
    background: var(--s-color);
    color: #fff;
    right: 0;
    top: 0;
    font-size: 12px;
    padding: 6px 10px;
	outline: none;
}
.h-cart a {
	display: inline-block;
	text-decoration: none;
	background: url(../imgW/h_ico06.png) no-repeat left center;
	font-size: 13px;
	text-transform: uppercase;
	padding: 3px 0 3px 30px;
}
.mainvisual {
	position: relative;
}
.mainvisual p {
	margin:0;
}
.slick-dots {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 30px;
}
.slick-dots li {
	display: inline-block;
	margin: 0 8px;
}
.slick-dots li button:after {
	position: absolute;
	content: '';
	left: calc(50% - 11px);
	top: calc(50% - 11px);
	width: 22px;
	height: 22px;
	border: 1px solid transparent;
}
.slick-dots li button {
	width: 11px;
	height: 11px;
	background: #fff;
	border: none;
	outline: none;
	text-indent: -500000px;
	position: relative;
	cursor: pointer;
}
.slick-dots li.slick-active button:after {
	border-color: #fff;
}
/*.mainvisual .container {
	position: absolute;
	top: 50%;
	transform: translate(-50%,-60%);
	z-index: 10;
	left: 50%;
	display: flex;
	text-align: center;
	justify-content: flex-end;
}
.main-txt p:nth-child(1) {
    border-bottom: 2px solid #fff;
    padding: 40px;
    margin: 0 0 20px;
	display: inline-block;
}
.main-txt p:last-child {
	margin: 0;
	font-size: 36px;
	color: #fff;
	text-transform: uppercase;
	font-family: 'UTMEricssonCapital';
}*/
/*box01*/
.box01 {
	padding: 60px 0;
}
.box01 .container {
	display: flex;
	justify-content: space-between;
}
.b01-img {
    margin: 0;
    width: 500px;
    order: 2;
	text-align: center;
}
.b01-main {
	width: calc(100% - 500px);
	text-align: justify;
}
.idx-ttl {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: var(--t-color);
    text-transform: uppercase;
    position: relative;
    padding: 0 0 10px;
    margin: 0 0 20px;
}
.idx-ttl:before {
	content: '';
	position: absolute;
	width: 144px;
	height: 1px;
	background: var(--s-color);
	bottom: 2px;
	left: calc(50% - 72px);
}
.idx-ttl:after {
	content: '';
	position: absolute;
	width: 34px;
	height: 5px;
	background: var(--s-color);
	bottom: 0;
	left: calc(50% - 17px);
}
.idx-txt {
    margin: 0;
    font-size: 17px;
    line-height: 1.5em;
	padding-right: 20px;
}
.idx-txt p{font-size:15px;color:#000;}
.btn{
	padding: 6px 30px;
    font-size: 18px;
    width: max-content;
    background: var(--t-color);
    color: #fff;
    transition: all 0.5s ease;
    border: none;
    border-radius: 4px;
    margin: auto;
    text-decoration: none;
    display: block;
    text-align: center;
}
.btn:hover{
	background:var(--s-color);
	color:#fff;
}
.box02 {
	background: #f1f1f1;
	padding: 50px 0;
}
.b02-list {
	margin: 0 -20px;
    
}
.b02-list .slick-list{
	margin: 0 -20px;
    display: flex !important;
    justify-content: center;
    
}


.b02-item {
	margin: 0 20px;
}
.b02-item a {
    display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
    text-decoration: none;
    background: #fff;
}
.b02-ttl {
    margin: 0;
    background: var(--t-color);
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2em;
    padding: 10px;
}
.b02-ttl span {
	display: block;
	font-weight: normal;
	font-style: italic;
	font-size: 14px;
}
.b02-img {
    display: flex;
  
    justify-content: center;
    align-items: center;
   
    width: calc(100% - 20px);
    margin: 10px auto;
	position: relative;
}
.b02-img:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #24538966;
	left: 0;
	top: 0;
	transform: scale(0.5,0.5);
	opacity: 0;
	transition: all 0.5s ease;
}
.b02-item a:hover .b02-img:after {
	transform: scale(1,1);
	opacity: 1;
}
.b02-img:before {
    content: '+';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 60px;
    z-index: 2;
    color: #fff;
	transition: all 0.5s ease;
	opacity: 0;
}
.b02-item a:hover .b02-img:before {
	opacity: 1;
}
.slick-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
	width: 82px;
	height: 38px;
	background: rgba(0,0,0,0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	text-indent: -50000px;
	transition: all 0.5s ease;
	outline: none;
	cursor: pointer;
}
.slick-arrow:hover {
	background: #000;
}
.slick-prev {
	left: 20px;
}
.slick-next {
	right: 20px;
}
.slick-arrow:after {
	content: '';
	position: absolute;
	width: 46px;
	height: 9px;
}
.slick-prev:after {
	background: url(../imgW/arr_pre.png) no-repeat;
	background-size: 100% auto;
}
.slick-next:after {
	background: url(../imgW/arr_next.png) no-repeat;
	background-size: 100% auto;
}
/*box03*/
.box03 {
	padding: 60px 0;
	background: #6fa6d4;
}
.box03 .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width:932px;
}
.b03-img {
    
    margin: 0;
	border:0; 
	width: calc(100% - 550px);
}
.b03-main {
    width:500px;
}
.b03-ttl {
    font-size: 16px;
    color: #ffffff;
    background: var(--t-color);
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 11px;
    margin: 0 0 20px;
}
.b03-list li {
	font-size: 18px;
	color: #565e5d;
	margin: 0 0 15px;
	background: #fafefe;
	padding: 9px 9px 9px 70px;
	position: relative;
}
.b03-list li:last-child {
	margin: 0;
}
.b03-list li:before {
	content: '';
	position: absolute;
	width: 50px;
	height: 100%;
	background: url('../imgW/b03_ico01.png?v=101') no-repeat center var(--s-color);
	left: 0;
	top: 0;
}

/*box04*/
.box04 {
	padding: 40px 0;
}
.b04-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.b04-item {
}
.b04-item a {
    display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
    text-decoration: none;
    background: #fff;
}
.b04-ttl {
    margin: 0 0 15px;
   font-size: 15px;
    line-height: 1.5;
    font-weight: bold;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b04-img {
	overflow: hidden;
    display: flex;
    height: 240px;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    width: 100%;
    margin: 0 0 10px;
	position: relative;
}
.b04-img:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #24538966;
	left: 0;
	top: 0;
	transform: scale(0.5,0.5);
	opacity: 0;
	transition: all 0.5s ease;
}
.b04-item:hover .b04-img:after {
	transform: scale(1,1);
	opacity: 1;
}
.b04-img:before {
    content: '+';
    position: absolute;
	top: 15px;
	left: 15px;
    font-size: 60px;
    z-index: 2;
    color: #fff;
    transition: all 0.5s ease;
    opacity: 0;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.b04-item:hover .b04-img:before {
	opacity: 1;
}
.b04-info {
    border: 1px dashed #ccc;
    padding: 10px 15px;
	color: #565e5d;
	transition: all 0.5s ease;
}
.b04-cont {
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.b04-price {
    font-size: 16px;
    font-style: italic;
}
.b04-cart {
	display: inline-block;
	background: url(../imgW/icon_cart01.png) no-repeat;
	width: 24px;
	height: 20px;
	transition: all 0.5s ease;
}
.b04-item:hover .b04-info {
    border: 1px solid var(--t-color);
    background: var(--t-color);
    color: #fff;
}
.b04-item:hover .b04-cart {
	background: url(../imgW/icon_cart02.png) no-repeat;
}
/*footer*/
.footer01 {
	background: #f5f5f5;
	color: #000;
	padding: 40px 0;
}
.f01-main01 {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 0 0 15px;
	margin: 0 0 20px;
}
.f01-mod01 {
    width: 455px;
}
.f01-txt {
    margin: 0;
    font-size: 12px;
}
.f-logo {
    margin: 0 0 10px;
	width:150px;
}
.f01-ttl {
    font-size: 18px;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: bold;
}
.f01-com p{ margin: 0 0 10px;font-size:12px;}
.f01-menu li {
	font-size: 13px;
	color: #000000;
	margin: 0 0 3px;
}
.f01-menu a {
	color: #000000;
	text-decoration: none;
}
.f01-menu a:hover {
	text-decoration: underline;
}
.f01-main02 {
    display: flex;
    justify-content: space-between;
	align-items: flex-end;
}
.f-add {
    margin: 0;
    font-size: 12px;
}
.f-add span {
	display: block;

	margin-top: 10px;
}
.f-mail {
    margin: 0;
}
.f-form {
    display: flex;
	align-items: center;
}
.f-form-ttl {
    margin: 0 20px 0 0;
    font-size: 16px;
    text-transform: uppercase;
}
.f-form .form {
	display: flex;
}
.f-form input {
	font-size: 12px;
	background: #fff;
	border: 1px solid;
	padding: 10px 15px;
	width: 200px;
	outline: none;
}
.f-form .button {
    background: var(--s-color);
    color: #ffffff;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	border: none;
	padding: 0 15px;
	cursor: pointer;
	outline: none;
    display: flex;
    align-items: center;
}
.copyright {
    margin: 0;
    text-align: center;
    background: var(--m-color);
    color: #fff;
    padding: 15px 0;
}
.copyright a {
	color: #fff;
	text-decoration: none;
}
.under .mainvisual {
    background: var(--m-color);
    background-size: cover;
}
.under .mainvisual h2 {
    font-size: 27px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    text-align: center;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.topic-path {
    padding: 0 0 10px;
    margin: 25px 0 35px;
    border-bottom: 1px solid #acacac;
}
.topic-path li {
    display: inline-block;
    color: #14489b;
    text-transform: uppercase;
}
.topic-path li:not(:last-child):after {
    content: '/';
    position: relative;
    display: inline-block;
    color: #4d4d4d;
    margin: 0 10px;
}
.topic-path a {
    color: var(--t-color);
    text-decoration: none;
}
.sp-main {
    display: flex;
    justify-content: space-between;
	margin: 0 0 30px;
}
.sp-main-img {
    width: calc(52% - 40px);
	display: flex;
	justify-content: space-between;
}
.sp-main-info {
    width: 48%;
}
.sp-main-slide {
    width: 413px;
	order: 2;
}
.sp-main-thumb {
    width: 97px;
}
.sp-main-thumb.slick-vertical .slick-slide {
	border: 1px solid #c4c4c4;
	width: 97px;
	height: 97px;
	margin: 3px 0;
	display: flex;
    justify-content: center;
    align-items: center;
}
.sp-main-thumb img, .sp-main-slide img {
	max-width: 100%;
	max-height: 100%;
}
.sp-main-slide.slick-initialized .slick-slide {
	height: 413px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.sp-main-ttl {
    font-size: 25px;
    font-weight: bold;
    color: #353535;
    line-height: 1.3em;
    margin: 0 0 5px;
}
.sp-main-sku {
    border-bottom: 1px solid #cdcdcd;
    padding: 0 0 5px;
	margin: 0 0 15px;
}
.sp-main-list li {
	position: relative;
	padding-left: 15px;
}
.sp-main-list li:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #333;
	left: 0;
	top: 10px;
}
.sp-main-list {
	margin: 0 0 10px;
}
.price-old span{
    position:relative;
    font-size: 21px !important;
    color: #b3b3b3 !important;
    font-style: italic;
}
.price-old span:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #b3b3b3;
    top: 55%;
}
.sp-main-price {
	font-size: 15px;
	color: #000;
	font-weight: bold;
	margin: 0 0 10px;
}
.sp-main-price span {
	font-size: 25px;
	color: #ff0000;
	font-weight: normal;
}
.sp-main-num {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #000;
	margin: 0 0 10px;
}
.sp-main-num .dpui-numberPicker {
    margin-left: 10px;
}
.sp-main-btn {
	margin: 0 0 10px;
}
.sp-main-btn a {
    background: var(--t-color);
	color:#fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    width: 190px;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    transition: all 0.5s ease;
}
.sp-main-btn a:hover {
    background: var(--s-color);
}
.sp-cont {
    display: flex;
    justify-content: space-between;
}
.sp-cont-main {
    width: 790px;
}
.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #7f7f7f;
}
.tabs li {
    background: none;
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}
.tabs li.current {
color: #353535;
    border-bottom: 2px solid #353535;
}
.tab-content {
    display: none;
    padding: 40px 20px 0;
}
.tab-content.current {
    display: inherit;
}
.sp-cont-related {
    width: 247px;
}
.sp-cont-ttl {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
	border-bottom: 1px solid #7f7f7f;
}
.sp-cont-ttl {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #7f7f7f;
    padding: 0 0 7px;
    margin: 0 0 20px;
}
.sp-cont-item {
    margin: 0 0 20px;
}
.sp-cont-item a {
	text-decoration: none;
	background: #fff;
	display: block;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
	padding: 10px;
	text-align: center;
	transition: all 0.5s ease;
}
.sp-itm-img {
	height: 220px;
	margin: 0 0 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sp-itm-img img {
	max-height: 100%;
}
.sp-itm-ttl {
	line-height: 1.5;margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #565e5d;
    text-align: left;
}
.sp-itm-price {
    font-size: 16px;
    text-align: center;
    color: #565e5d;
    margin: 0 0 10px;
    font-style: italic;
}
.sp-itm-btn {
	margin: 0 auto;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	border: 1px solid #7e7979;
	padding: 5px 30px;
	font-size: 13px;
	transition: all 0.5s ease;
}
.sp-cont-item:hover .sp-itm-btn {
    background: #d1a541;
	color: #fff;
	border-color: #d1a541;
}
.sp-cont-item:hover a {
	opacity: 0.8;
}

/*LeftMenu*/
.side-cate span{
    font-size: 21px;
    border-left: 3px solid #736e6e;
    padding-left: 5px;
}
.side-sub{margin: 5px 0 15px;}
.side-sub li a{
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 5px 5px 5px 25px;
}
.side-sub li a:hover{color:#565e5d;}
/**/
.b-product{display: flex; margin-bottom: 50px;}
.b-product-l{width: 25%;border-right: 1px solid #e6e6e6;margin-right: 20px;}
.b-product-r{width: 75%;}
.pro-list{display:flex;flex-wrap:wrap;}
.pro-item{width: calc(100%/4 - 30px);
    margin-bottom: 35px;
    margin-right: 30px;}
.pro-item:nth-child(4n){margin-right:0;}

.pro-item a {
    display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
    text-decoration: none;
    background: #fff;
}
.pro-ttl {
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pro-img {
	overflow: hidden;
    display: flex;
    height: 240px;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    width: 100%;
    margin: 0 0 10px;
	position: relative;
}
.pro-img:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #24538966;
	left: 0;
	top: 0;
	transform: scale(0.5,0.5);
	opacity: 0;
	transition: all 0.5s ease;
}
.pro-item:hover .pro-img:after {
	transform: scale(1,1);
	opacity: 1;
}
.pro-img:before {
    content: '+';
    position: absolute;
	top: 15px;
	left: 15px;
    font-size: 60px;
    z-index: 2;
    color: #fff;
    transition: all 0.5s ease;
    opacity: 0;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pro-item:hover .pro-img:before {
	opacity: 1;
}
.pro-info {
    border: 1px dashed #ccc;
    padding: 10px 15px;
	color: #565e5d;
	transition: all 0.5s ease;
}
.pro-cont {
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.pro-price {
    font-size: 16px;
    font-style: italic;
}
.pro-price .old, .b04-price .old{
	display: inline-block;
    color: rgb(170, 170, 170);
    font-weight: 400;
    font-size: 17px;
    text-decoration: line-through;
    margin-left: 10px;
}
.b04-img .discount, .pro-img .discount {
	position: absolute;
    color: rgb(255, 255, 255);
	left: 10px;
    top: 10px;
    width: 41px;
    z-index: 3;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8em;
    background: rgb(255, 23, 23);
    padding: 0px 2px;
    border-radius: 20px;
    text-align: center;
}
.b04-price ,.pro-price{
	/*font-size: 16px;*/
    font-style: italic;
    font-size: 20px;
    color: rgb(237, 57, 0);
    font-weight: bold;
    /* padding: 5px 20px; */
    border-radius: 5px;
}
.pro-cart {
	display: inline-block;
	background: url(../imgW/icon_cart01.png) no-repeat;
	width: 24px;
	height: 20px;
	transition: all 0.5s ease;
}
.pro-item:hover .pro-info {
    border: 1px solid var(--t-color);
    background: var(--t-color);
    color: #fff;
}
.pro-item:hover .pro-cart {
	background: url(../imgW/icon_cart02.png) no-repeat;
}
.tel-mb{display:none;}
@media screen and (max-width: 768px) {
	.pro-price .old, .b04-price .old {margin-left: 10px;display: block;}
.tel-mb{display: block;position: fixed;bottom: 6%;left: 0%;width: 65px;}
.pro-ttl{font-size:14px;
display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b-product-l{display:none;}
.b-product-r{width:100%;}
.sp-main {display: block;}
.sp-main-img {
width: 100%;
justify-content: center;
margin: 0 0 30px;
}
.sp-main-info {
    width: 100%;
}
.sp-cont {
    display: block;
}
.sp-cont-main {
    width: 100%;
    margin: 0 0 30px;
}
.sp-cont-related {
    margin: 0 auto;
    width: 100%;
}
.sp-cont-list {
    
}
.sp-cont-item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
}
.sp-cont-item:nth-child(3n) {
    margin-right: 0;
}
.sp-itm-ttl {
   font-size: 14px;margin-bottom: 10px;
}
.sp-itm-price {
	font-size: 16px;
    line-height: 1em;
    text-align: left;
}
#wrapper {
	min-width: 100%;
	margin: 0;
}
#main,  #footer {
	min-width: 100%;
}
.container, .under #main {
	padding: 0 3%;
	width: 100%;
}
.sp {
	display: block !important;
}
.pc {
	display: none !important;
}
/* MENU-ICON */
.menu-icon {
	width: 50px;
	height: 43px;
	box-sizing: border-box;
	text-align: center;
	text-transform: uppercase;
	line-height: 1em;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	padding: 8px 0;
	background: var(--t-color);
}
.menu-icon span {
	display: block;
	margin: 0 auto 15px;
	width: 30px;
	height: 3px;
	background-color: #fff;
	-webkit-transition-duration: 0;
	-moz-transition-duration: 0;
	-ms-transition-duration: 0;
	-o-transition-duration: 0;
	transition-duration: 0;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	top: 12px;
	left: 0;
	position: relative;
}
.menu-icon span::after, .menu-icon span::before {
	display: block;
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: #fff;
	-webkit-transition-property: margin, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-delay: 0.2s, 0;
	-moz-transition-delay: 0.2s, 0;
	-ms-transition-delay: 0.2s, 0;
	-o-transition-delay: 0.2s, 0;
	transition-delay: 0.2s, 0;
}
.menu-icon span::before {
	margin-top: -10px;
}
.menu-icon span::after {
	margin-top: 10px;
}
.menu-icon.active span {
	background-color: transparent;
}
.menu-icon.active span::before, .menu-icon.active span::after {
	margin-top: 0px;
	-webkit-transition-delay: 0, 0.2s;
	-moz-transition-delay: 0, 0.2s;
	-ms-transition-delay: 0, 0.2s;
	-o-transition-delay: 0, 0.2s;
	transition-delay: 0, 0.2s;
}
.menu-icon.active span::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu-icon.active span::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#totop {
	width: 40px;
	
	bottom: 50px;
	line-height: 0;
}
#header {
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.9);
}
.h-right {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
	z-index: 9999;
    overflow: auto;
	transform: translateX(300px);
	transition: all 0.5s ease;
}
.h-right.active {
	transform: translateX(0);
}

.gnavi {
    display: block;
    margin: 0 0 30px;
}
.gnavi > li > a:after {
	display: none;
}
.close {
    text-align: center;
    padding: 10px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
	cursor: pointer;
	margin: 0 0 20px;
}
.close span {
    display: inline-block;
    position: relative;
    top: -7px;
    margin-left: 6px;
}
.close span::after, .close span::before {
    display: block;
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #666;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
}
.close span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.gnavi > li {
    margin: 0;
}
.gnavi > li > a {
    font-size: 14px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.gnv-ico {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 46px;
    display: inline-block;
}
.gnavi > li.over > a:before {
    right: 20px;
}

li.subover > a:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 20px;
    top: 20px;
    transition: all 0.5s ease;
}
.submenu, .subsubmenu{position:relative;}
.subsubmenu{left: 0;}
.subsubmenu a {background: var(--m-color);}
.h-search-form {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 10px;
    margin: 0 0 20px;
}
.h-search-ttl {
    display: none;
}
.h-search-form button {
    right: 10px;
}
.h-cart {
    text-align: center;
    margin: 0 0 30px;
}
.bdhide {
	display: none;
	z-index: -999;
	position: fixed;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	top: 0;
	left: 0;
	will-change: opacity;
	transition: opacity 0.5s ease;
	opacity: 0;
	background: #3c3442;
}
.bdhide.show {
	display: block;
	opacity: 0.8;
	z-index: 999;
	transition: opacity 0.5s ease;
}
html.hide {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}
.fixed .h-main {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.9);
    width: 100%;
	transition: all 1s ease;
}
.logo {
    width: 60px;
}
.mainvisual .container {
    display: block;
}
.main-txt p:nth-child(1) {
    padding: 0 20px 10px;
    margin: 0 0 10px;
    width: 40vw;
}
.main-txt p:last-child {
    font-size: 4vw;
}
.box01 {
    padding: 40px 0;
}
.box01 .container, .box03 .container {
    display: block;
}
.b01-img {
    text-align: center;
    width: 100%;
}
.b01-main {
    width: 100%;
	margin: 0 0 20px;
}
.idx-ttl {
    font-size: 22px;
}
.idx-txt {
    font-size: 14px;
    line-height: 1.8em;
}
.b02-item {
    margin: 0 10px;
}
.b02-list {
    margin: 0 -10px;
}
.box02 .slick-list {
  display: flex !important;
  justify-content: center !important;
}

.box02 .slick-track {
  display: flex !important;
  justify-content: center !important;
}
.slick-arrow {
    width: 60px;
    height: 28px;
}
.slick-next {
    right: 10px;
}
.slick-prev {
    left: 10px;
}
.slick-arrow:after {
    width: 40px;
    height: 8px;
}
.b02-ttl {
    font-size: 14px;
    line-height: 1.5em;
}
.b02-ttl span {
    font-size: 12px;
}
.box03 {
    padding: 40px 0;
}
.b03-img {
    width: 100%;
    max-width: 570px;
    margin: 0 auto 20px;
}
.b03-main {
    width: 100%;
}
.b03-list li {
    font-size: 15px;
}
.f01-main01 {
    flex-wrap: wrap;
    justify-content: flex-start;
}
.f01-mod01 {
    width: 100%;
    margin: 0 0 20px;
}
.f01-ttl {
    font-size: 16px;
}
.f01-mod02 {
    margin-right: 40px;
}
.f01-main02 {
    display: block;
    text-align: center;
}
.f-mail {
    margin: 5px 0 15px;
}
.f-form {
    justify-content: center;
}
.f-form-ttl {
    font-size: 14px;
}
.copyright {
    font-size: 12px;
}
}
@media screen and (max-width: 640px) {
	.f01-main01{justify-content: space-between;}
	.f01-mod02{margin-right:5px;}
	.idx-txt {
    
    padding-right: 0;
}
.h-top-item {
    font-size: 11px;
	margin: 0 5px;
	padding-right: 10px;
}
.h-top-tel {
    background-size: 10px auto;
    padding-left: 15px;
}
.h-top-add {
    background-size: 9px auto;
    padding-left: 15px;
}
.h-top-mail {
    background-size: 14px auto;
    padding-right: 20px;
}
.h-top-time {
    background-size: 12px auto;
    padding-left: 18px;
}
.b04-list {
    grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 450px) {
.idx-txt p{
	font-size: 14px;line-height:1.7;
}	
.under .mainvisual h2{height:85px;}	
.b04-img{margin: 0 auto 10px;}
.pro-list {
    justify-content: space-between;
}
.pro-item:nth-child(2), .pro-item:nth-child(5), .pro-item:nth-child(8), .pro-item:nth-child(11){
    margin: 0 0 35px;
}
.pro-item{width: 48%;margin-right:0;}
.under .mainvisual h2{font-size: 20px;height: 80px;}
.f-form {
    display: block;
}
.f-form-ttl {
    margin: 0 0 10px;
}
.f-form .form {
    justify-content: center;
}
.h-top-item:nth-child(1) {
    margin-left: 0;
}
.h-top-list {
    flex-wrap: wrap;
    justify-content: center;
}
}
@media screen and (max-width: 375px) {
	.h-top-mail{padding-right:5px;}
	.h-top-tel{    padding-left: 10px;}
	.h-top-item{padding-right: 5px;}
}