:root {
	--bodyBgColor: #fff;
	--textColor: #2e2f32;
	--textColorSub: #35acb1;
	--keyColor: #19b2bc;
	--keyColorSub: #0058cd;
	--bgColor: #f5f5f5;
	--borderColor: #ddd;
	--noticeColor: #e56161;
}

/* :root {
	--bodyBgColor: #222;
	--textColor: #fff;
	--textColorSub: #aaa;
	--keyColor: #19b2bc;
	--keyColorSub: #1988bc;
	--bgColor: #444;
	--borderColor: #666;
	--noticeColor: #e56161;
} */

/* clearfix
------------------------------------------*/
.clear {
	clear: both;
}
.clearfix {
	zoom: 1;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* base
------------------------------------------*/
*,
*:before,
*:after {
	outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	font-size: 62.5%;
	background: var(--bodyBgColor);
}
body,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6,
table,
td,
th,
input,
textarea,
select,
label,
button {
	color: var(--textColor);
	font-size: 1.4rem;
	font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-weight: normal;
	line-height: 1.6;
	word-break: break-all;
	word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	line-height: 1.3;
}
a,
button {
	color: var(--textColorSub);
	text-decoration: none;
	transition: all 0.2s linear;
	user-select: none;
}
.default a:hover,
.default button:hover {
	opacity: 0.7;
}

ul,
ol {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	backface-visibility: hidden;
	transition: all 0.2s linear;
}
::placeholder {
	color: var(--textColorSub);
}

.serif {
	font-family: "Times New Roman", "YuMincho", "Yu Mincho",
		"Hiragino Mincho ProN", "MS PMincho", serif;
}

.hkg{
	font-family: heisei-kaku-gothic-std,sans-serif;
	font-weight: 500;
	font-style: normal;
}

/* js
------------------------------------------*/
body.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

/* eccube
------------------------------------------*/
.bg-load-overlay {
	background: rgba(255, 255, 255, 0.4);
	box-sizing: border-box;
	position: fixed;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: space-around;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2147483647;
	opacity: 1;
}

/* Btn */
.ec-inlineBtn--cancel,
.ec-inlineBtn--action,
.ec-inlineBtn,
.ec-blockBtn--cancel,
.ec-blockBtn--action,
.ec-blockBtn {
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 50px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 50px;
	background: var(--keyColorSub);
	border: var(--keyColorSub) 1px solid;
	border-radius: 3px;
}
.ec-inlineBtn {
	padding: 0 30px;
	width: auto;
	height: 44px;
	line-height: 44px;
}
.ec-inlineBtn--cancel,
.ec-inlineBtn--action,
.ec-inlineBtn {
	display: inline-block;
	padding: 0 20px;
	width: auto;
	font-size: 1.3rem;
}
.ec-inlineBtn--action,
.ec-blockBtn--action,
.ec-blockBtn {
	background: var(--keyColor);
	border: var(--keyColor) 1px solid;
}
.default .ec-blockBtn--action:disabled {
	opacity: 0.7;
}
.ec-blockBtn--action + .ec-blockBtn--cancel,
.ec-blockBtn {
	margin: 10px 0 0 0;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea {
	display: block;
	padding: 0 10px;
	width: 100%;
	height: 44px;
	background: var(--bodyBgColor);
	border: var(--borderColor) 1px solid;
	border-radius: 3px;
	transition: all 0.2s linear;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
	background: var(--bodyBgColor);
	border: var(--textColorSub) 1px solid;
}
textarea {
	padding: 10px;
	height: 200px;
}
.ec-select select,
.ec-birth select {
	padding: 0 25px 0 10px;
	height: 44px;
	color: var(--textColor);
	font-size: 1.5rem;
	line-height: 44px;
	background: linear-gradient(45deg, transparent 50%, var(--textColor) 50%)
			no-repeat center right 14px/4px 4px,
		linear-gradient(-45deg, transparent 50%, var(--textColor) 50%) no-repeat
			center right 10px/4px 4px;
	background-color: var(--bodyBgColor);
	border: var(--borderColor) 1px solid;
	border-radius: 3px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.ec-checkbox input,
.ec-radio input {
	position: relative;
	top: -2px;
}
.ec-checkbox label,
.ec-radio label {
	margin: 0 15px 0 0;
}
.ec-halfInput {
	display: flex;
	flex-wrap: wrap;
}
.ec-halfInputItem {
	margin: 0 10px 0 0;
	width: 40%;
}
.ec-halfInput input {
	margin: 0 10px 0 0;
	width: 40%;
}
.ec-halfInputItem input {
	width: 100%;
}
.ec-halfInput span input {
	width: 90%;
}
.ec-telInput3 {
	display: inline-block;
	margin: 0 6px 0 0;
	width: 10%;
}
.ec-zipInput {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 10px 0;
	width: auto;
}
.ec-zipInput input {
	width: 120px;
}
.ec-zipInput + .ec-select,
.ec-select + .ec-input,
.ec-input + .ec-input {
	margin: 10px 0 0 0;
}
.error input[type="text"],
.error input[type="number"],
.error input[type="email"],
.error input[type="password"],
.error textarea,
.error select {
	border: var(--noticeColor) 1px solid;
	background-color: var(--bodyBgColor) 3f3;
}
.ec-errorMessage {
	width: 100%;
	color: var(--noticeColor);
	font-size: 1.3rem;
}

/* .ec-modal */
.ec-modal .checkbox {
	display: none;
}
.ec-modal .ec-modal-overlay {
	z-index: -100;
	opacity: 0;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.2s linear;
}
.ec-modal .ec-modal-wrap {
	align-self: center;
	width: 500px;
	max-width: 90%;
	margin: 0 auto;
	padding: 40px 25px;
	text-align: center;
	background: var(--bodyBgColor);
	border-radius: 3px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
	transition: all 0.2s linear;
}
.ec-modal .ec-modal-wrap .ec-modal-box {
	margin: 20px 0 0 0;
	text-align: center;
}
.ec-modal .ec-modal-wrap .ec-modal-box label {
	transition: all 0.2s linear;
}
.ec-modal .ec-modal-overlay .ec-modal-close {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
}
.ec-modal .ec-modal-overlay .ec-modal-close span {
	display: block;
	width: 40px;
	height: 40px;
}
.ec-modal .ec-modal-overlay .ec-modal-close span:before,
.ec-modal .ec-modal-overlay .ec-modal-close span:after {
	content: "";
	display: block;
	position: absolute;
	top: 19px;
	left: 10px;
	width: 20px;
	height: 2px;
	background: var(--keyColorSub);
	transform: rotate(45deg);
	border-radius: 1px;
}
.ec-modal .ec-modal-overlay .ec-modal-close span:after {
	transform: rotate(135deg);
}
.ec-modal .ec-modal-overlay-close {
	cursor: pointer;
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.ec-modal input:checked ~ .ec-modal-overlay {
	z-index: 9997;
	opacity: 1;
	overflow: auto;
	transform: scale(1);
}
.ec-modal input:checked ~ .ec-modal-overlay .ec-modal-overlay-close {
	display: block;
}
.ec-modal input:checked ~ .ec-modal-overlay .ec-modal-wrap {
	z-index: 9999;
	transform: translateY(0);
}

/* bootstrap */
.modal {
	overflow: auto;
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	padding: 40px;
	width: 600px;
	max-width: 80%;
	max-height: 80%;
	background: var(--bodyBgColor);
	border-radius: 10px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
	transform: translate(-50%, -50%);
	z-index: 1;
}
.modal.open {
	display: block;
}
.modal .modal-dialog {
	margin: 0 !important;
}
.modal p.text-left {
	padding: 15px;
	color: var(--textColor);
	font-size: 1.2rem;
	background: var(--bodyBgColor);
	border: var(--borderColor) 1px solid;
}
.modal-footer {
	display: flex;
	justify-content: center;
	margin: 40px 0 0 0;
	gap: 10px;
}
.modal-footer button {
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 50px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 50px;
	background: var(--keyColorSub);
	border: none;
	border-radius: 3px;
}
.modal-footer button:nth-child(2) {
	background: var(--keyColor) !important;
}

/* Layout
------------------------------------------*/
.container {
}
.main {
	margin: 0 auto;
	max-width: 1180px;
}
.front_page .main {
	max-width: 100%;
}


/* float-btn
------------------------------------------*/
#float-btn{
	position: fixed;
	top: calc((32 / 192) * 100vw);
	right: 0;
	z-index: 99999;
		-webkit-border-top-left-radius: 3px;
		-webkit-border-top-right-radius: 0;
		-webkit-border-bottom-right-radius: 0;
		-webkit-border-bottom-left-radius: 3px;
		-moz-border-radius-topleft: 3px;
		-moz-border-radius-topright: 0;
		-moz-border-radius-bottomright: 0;
		-moz-border-radius-bottomleft: 3px;
	overflow: hidden;
	ul{
		li{
			a{
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				text-align: center;
				width: 70px;
				height: 70px;
				color: #f2d619;
				font-size: 20px;
				background: #0058cd;
				span{
					display: block;
					color: #fff;
					font-size: 12px;
					line-height: 1;
					margin-top: .5em;
				}
			}
			&:nth-child(even){
				a{
					background: #35acb1;
				}
			}
		}
	}
}
/* header
------------------------------------------*/
.header {
	background: #fff;
	border-top: #0058cd 4px solid;
	.header-inner{
		position: relative;
		max-width: 1180px;
		height: 140px;
		margin: 0 auto;
		z-index: 20;
		.site-description {
			position: absolute;
			top: 70px;
			left: 295px;
			font-size: 13px;
			color: #181818;
			font-weight: ;
		}
		.header-comment{
			position: absolute;
			top: 90px;
			left: 295px;
			font-size: 13px;
			color: #181818;
			font-weight: ;
		}
		.header-logo {
			position: absolute;
			top: 35px;
			left: 0;
		}
		.header-tel {
			position: absolute;
			top: 55px;
			right: 0;
		}
		.header-hours {
			position: absolute;
			top: 100px;
			right: 0;
			font-size: 15px;
			text-align: center;
			padding: .1em .3em 0;
			background: #d7e6fd;
		}
		.hnav{
			position: absolute;
			top: -3px;
			right: 0;
			width: 530px;
			height: 34px;
			padding: 0 20px;
			background: #0058cd;
			-webkit-border-top-left-radius: 0;
			-webkit-border-top-right-radius: 0;
			-webkit-border-bottom-right-radius: 3px;
			-webkit-border-bottom-left-radius: 3px;
			-moz-border-radius-topleft: 0;
			-moz-border-radius-topright: 0;
			-moz-border-radius-bottomright: 3px;
			-moz-border-radius-bottomleft: 3px;
		}
		.hnav ul{
			display: flex;
			justify-content: space-between;
			align-items: center;
			li{
				a{
					img{
						vertical-align: bottom;
						height: auto;
					}
				}
			}
		}
	}
}

#gnav-wrapper{
	width: 100%;
	z-index: 9999;
	background: #e9e9e9;
	.gnav {
		margin: 0 auto;
		max-width: 1180px;
		height: 110px;
		/* droppy */
		.gnav-list {
			height: 110px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			position: relative;
			text-align: left;
			zoom: 1;
		}
		.gnav-list li { display: block; position: relative; z-index: 1000; }
		.gnav-list ul { display: none; position: absolute; top: 100%; left: 0; width: 150%; background: #33abb1; }
		.gnav-list ul li { float: none; }
		.gnav-list ul li a { display: block; padding: 5px 10px; color: #fff; font-size: 11px; zoom: 1; }
		.gnav-list ul li a:hover { text-decoration: none; background: #2651cd; }
		.gnav-list ul ul { display: none !important;top: 0; left: 100%; width: 100%; }
		.gnav-list a, .gnav-ul img{ display: block; }
	}
}

.gnav-cat-base{
	display: none;
}

.header-search{
	background: #ebf2fe;
	padding: 15px 0;
	.header-search-main{
		margin: 0 auto;
		max-width: 1180px;
		.searchform{
			display: block;
			/*display: flex;
			justify-content: space-between;
			gap: 16px;*/
			.ec-headerSearch__category{
				width: 220px;
				select{
					width: 220px;
					height: 36px !important;
					line-height: 36px !important;
				}
			}
			.ec-headerSearch__keyword{
				width: 100%;
				/*width: calc(100% - 236px);*/
				.ec-input{
					display: flex;
					justify-content: space-between;
					input{
						width: 1020px;
						/*width: 780px;*/
						padding-left: 1.0em;
						height: 36px !important;
						line-height: 36px !important;
						border: 1px solid #ced4da;
						border-right: .25rem;
						&::placeholder {
							color: var(--textColor);
						}
					}
					button{
						padding: 0;
						border: none;
						background: none;
					}
				}
			}
		}
	}
}

.sp-header {
	display: none;
}
.sp-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 15px;
}
.drawer-btn {
	position: relative;
	width: 44px;
	height: 44px;
}
.drawer-btn span,
.drawer-btn:before,
.drawer-btn:after {
	content: "";
	display: block;
	position: absolute;
	top: 21px;
	left: 14px;
	width: 16px;
	height: 2px;
	background: var(--textColor);
	border-radius: 1px;
}
.drawer-btn:before {
	top: 16px;
}
.drawer-btn:after {
	top: 26px;
}
.sp-header-logo {
	width: calc(100% - 88px);
	text-align: center;
}
.sp-header-logo img {
	width: 80px;
}
.sp-header-cart {
	position: relative;
}
.sp-header-cart a {
	display: block;
	width: 44px;
	height: 44px;
	font-size: 2rem;
	line-height: 44px;
	text-align: center;
}
.sp-header-cart span {
	position: absolute;
	top: 2px;
	right: 0;
	padding: 0 3px;
	min-width: 18px;
	height: 18px;
	color: var(--bodyBgColor);
	font-size: 1.1rem;
	line-height: 18px;
	text-align: center;
	background: var(--keyColor);
	border-radius: 20px;
}

/* drawer
------------------------------------------*/
.drawer-bg {
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	transition: all 0.2s ease;
	z-index: 9998;
}
.drawer-bg.open {
	opacity: 1;
	visibility: visible;
}
.drawer-close {
	cursor: pointer;
	display: block;
	position: fixed;
	top: 30px;
	left: 0;
	width: 80%;
	max-width: 300px;
	height: 40px;
}
.drawer-close:before,
.drawer-close:after {
	content: "";
	display: block;
	position: absolute;
	top: 19px;
	left: calc(100% + (25% / 2) - 15px);
	width: 30px;
	height: 2px;
	background: var(--bodyBgColor);
	transform: rotate(45deg);
	border-radius: 1px;
}
.drawer-close:after {
	transform: rotate(135deg);
}
.drawer {
	opacity: 0;
	visibility: hidden;
	overflow: auto;
	position: fixed;
	top: 0;
	right: 100%;
	width: 80%;
	max-width: 300px;
	height: 100%;
	background: var(--bodyBgColor);
	transition: all 0.2s ease;
	transform: none;
	z-index: 9999;
}
.drawer.open {
	opacity: 1;
	visibility: visible;
	transform: translateX(100%);
}
.drawer-main {
	margin: 15px;
	padding: 15px;
	text-align: center;
	background: var(--bgColor);
	border-radius: 3px;
}
.drawer-main p {
	margin: 0 0 10px 0;
	font-size: 1.1rem;
}
.drawer-main p span {
	font-size: 1.5rem;
	font-weight: bold;
}
.drawer-main-point {
	font-size: 1.1rem;
}
.drawer-main-point span {
	color: var(--keyColor);
	font-size: 1.5rem;
	font-weight: bold;
}
.drawer-main-btn {
	display: flex;
	justify-content: space-between;
}
.drawer-main-btn a {
	display: block;
	margin: 0;
	width: 48%;
	color: #fff;
}
.drawer-search {
	position: relative;
	margin: 0 15px 15px 15px;
	padding: 0 10px;
	width: calc(100% - 30px);
	height: 44px;
	border: var(--bgColor) 1px solid;
	border-radius: 30px;
}
.drawer-search input {
	width: 90%;
	height: 44px;
	line-height: 44px;
	background: none;
	border: none;
	appearance: none;
}
.drawer-search input::-webkit-search-cancel-button {
	appearance: none;
}
.drawer-search button {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 10px;
	font-size: 2rem;
	line-height: 44px;
	background: none;
	border: none;
}
.drawer-nav-title {
	padding: 8px 15px;
	font-size: 1.1rem;
	font-weight: bold;
	background: var(--bgColor);
}
.drawer-nav-list ul li {
	border-bottom: var(--bgColor) 1px solid;
}
.drawer-nav-list ul li a {
	display: block;
	position: relative;
	padding: 10px 15px 10px 25px;
	font-size: 1.3rem;
}
.drawer-nav-list ul li a:before {
	content: "\f105";
	position: absolute;
	top: 10px;
	left: 15px;
	font-family: FontAwesome;
}
.drawer-nav-list ul li ul {
	padding: 10px 15px 10px 25px;
}
.drawer-nav-list ul li ul li {
	border: none;
}
.drawer-nav-list ul li ul li a {
	padding: 5px 0;
}
.drawer-nav-list ul li ul li a:before {
	display: none;
}
.drawer-icon {
	margin: 30px 15px;
}
.drawer-icon ul {
	display: flex;
	justify-content: center;
}
.drawer-icon ul li {
	margin: 0 5px;
}
.drawer-icon ul li a {
	display: block;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 44px;
	background: var(--bgColor);
	border-radius: 50%;
}
.drawer-copyright {
	opacity: 0.7;
	padding: 0 0 30px 0;
	font-size: 1rem;
	text-align: center;
}

/* footer
------------------------------------------*/
.footer-info{
	margin: 120px auto 60px;
	max-width: 1180px;
	display: flex;
	justify-content: space-between;
	.calendar{
		width: 740px;
		display: flex;
		justify-content: space-between;
		h2{
			width: 160px;
		}
		.calendar-main{
			width: 520px;
			.shop-calendar-inner{
				display: flex;
				justify-content: space-between;
				.calendar-once{
					width: 250px;
					.calendar-title{
						margin-bottom: .5em;
						font-weight: 700;
						text-align: center;
					}
					table{
						width: 100%;
						tr{
							td{
								padding: 3px 0;
								text-align: center;
								background: #fff;
								border: #ddd 1px solid;
							}
							td.off{
								color: #a00;
								background: #fdd;
							}
						}
						tr:first-child{
							th {
								padding: 3px 0;
								text-align: center;
								background: #eee;
								border: #ddd 1px solid;
							}
						}
					}
				}
			}
			.shop-calendar-text {
				color: #c00;
				font-size: 1.2rem;
			}
		}
	}
	.sns{
		width: 330px;
		h2 {
			margin-bottom: 30px;
		}
		ul {
			display: flex;
			gap: 20px;
			li{
				.footer-sns-btn {
					display: flex;
					justify-content: center;
					width: 56px;
					height: 56px;
					font-size: 25px;
					background-color: #ccc;
					border-radius: 50%;
					align-items: center;
					color: #fafafa;
				}
				.footer-sns-btn-facebook {
					background-color: #3a579a;
				}
				.footer-sns-btn-twitter {
					background-color: #50aaf0;
				}
				.footer-sns-btn-instagram {
					background: #d6249f;
					background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
				}
				.footer-sns-btn-line {
					background-color: #01c500;
				}
			}
		}
	}
}
.front_page .footer-info{
	margin-top: 0;
}

.footer-map {
	margin: 0 auto 100px;
	max-width: 1180px;
	display: flex;
	justify-content: space-between;

	.googlemap {
		width: 650px;
		height: 350px;

		iframe {
			height: 350px;
		}
	}

	.googleview {
		width: 500px;
	}
}

.footer-maker {
	padding: 80px 0;
	background: #d7e6fd;
	text-align: center;

	h2 {
		margin-bottom: 60px;
	}

	.footer-maker-main {
		margin: 0 auto;
		max-width: 1090px;
	}

	ul {
		margin-bottom: 60px;
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 30px 50px;
	}

	.text {
		font-size: 16px;
	}
}


.pagetop-btn {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: all 0.2s ease;
}
.pagetop-btn.show {
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}
.sp-footer{
	display: none;
}
.footer {
	background: url(/html/template/cectpl/assets/img/footer-bg.png) no-repeat center center / cover;

	.footer-inner {
		position: relative;
		max-width: 1180px;
		padding: 60px 0;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	.footer-logo {
		width: 160px;
		margin-right: 50px;
	}

	.footer-about {
		width: 440px;
		text-align: left;
		color: #fff;
		font-size: 14px;

		h2 {
			color: #fff;
			font-size: 16px;
			margin-bottom: 1.0em;
		}

		p {
			margin-bottom: 1.0em;
		}
		
		a {
			color: inherit;
		}
		p:nth-child(2){
			a{
				&:before {
					content: '\f105';
					padding: 0 5px 0 0;
					color: #f2d619;
					font-size: 12px;
					font-weight: bold;
					font-family: 'Font Awesome 5 Free';
					line-height: 1;
					-webkit-font-smoothing: antialiased;
					-moz-osx-font-smoothing: grayscale;
				}
			}
		}
	}

	.footer-nav {
		display: flex;
		justify-content: flex-end;
		text-align: left;
		font-size: 12px;
		line-height: 2.0;

		ul li a {
			color: #fff;

			&:before {
				content: '\f105';
				padding: 0 5px 0 0;
				color: #f2d619;
				font-size: 12px;
				font-weight: bold;
				font-family: 'Font Awesome 5 Free';
				line-height: 1;
				-webkit-font-smoothing: antialiased;
				-moz-osx-font-smoothing: grayscale;
			}
		}
	}

	.footer-nav-once:last-child {
		margin-left: 60px;
	}

	.footer-copyright {
		text-align: center;
		font-size: 12px;
		color: #fff;
		height: 30px;
		line-height: 30px;
		background: #35acb1;
	}
}

.fixed-footer {
	display: none;
}

/* .sp-footer {
	display: none;
	margin: 80px 0 0 0;
	padding: 50px;
	text-align: center;
	background: var(--bgColor);
}
.sp-footer-nav ul {
	margin: 0 auto;
	max-width: 300px;
}
.sp-footer-nav ul li {
	text-align: left;
	border-bottom: var(--borderColor) 1px solid;
}
.sp-footer-nav ul li a {
	display: block;
	position: relative;
	padding: 10px 10px 10px 20px;
	font-size: 1.3rem;
}
.sp-footer-nav ul li a:before {
	content: "\f105";
	position: absolute;
	top: 10px;
	left: 5px;
	font-family: FontAwesome;
}
.sp-footer-logo {
	margin: 60px auto 20px auto;
	width: 80px;
}
.sp-footer-copyright {
	font-size: 1rem;
} */

/* home
------------------------------------------*/

/* mainvisual */
.mainvisual {
	position: relative;
	.slick-list{
		padding: 0 calc(50vw - 590px) !important;
	}
}

.mainvisual ul li {
	position: relative;
}
.mainvisual ul li img {
	width: 100%;
	filter: brightness(50%);
}
.mainvisual ul li.slick-current img{
	filter: brightness(100%);
	
}

.mainvisual .slick-arrow {
	opacity: 0.5;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: calc((50vw - 590px) - 38px);
	width: 38px;
	height: 60px;
	font-size: 2rem;
	line-height: 60px;
	text-align: center;
	background: #e8c70e;
	color: #fff;
	opacity: 1;
	border: none;
	border-radius: 3px;
	transform: translateY(-50%);
	transition: all 0.2s linear;
	z-index: 1;
}
.mainvisual .slick-arrow.fa-angle-right {
	left: auto;
	right: calc((50vw - 590px) - 38px);
}
.default .mainvisual .slick-arrow:hover {
	opacity: 0.7;
}

.main-products-list {
	padding: 80px 0;
	margin: 0 auto;
	max-width: 1180px;

	.btns {
		margin: 60px auto 0;
		text-align: center;
	}

	h2 {
		margin-bottom: 60px;
		text-align: center;
	}

	ul {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
	}

	.image {
		margin: 0 0 15px 0;

		img {
			width: 100%;
		}
	}

	&-code {
		text-align: left;
		color: #333;
		font-size: 1.6rem;
		font-weight: 700;

		span {
			font-size: 1.4rem;
			font-weight: 400;
		}
	}

	.text {
		h3 {

			a {
				color: #0058cd;
				font-weight: 700;
			}
		}

		.prices {
			font-size: 16px;
			font-weight: bold;
		}

		.price03 {
			color: var(--keyColor);
		}
	}
}


.main-products-list-newitems{
	ul{
		li{
			.image{
				position: relative;
				.new{
					position: absolute;
					bottom: 7px;
					left: 7px;
					width: 46px;
				}
			}
		}
	}
}

.main-products-list-recommend{
	ul{
		grid-template-columns: repeat(5, 1fr);
		gap: 55px 26px;
	}
}

.main-news{
	padding: 80px 0;
	background: url(/html/template/cectpl/assets/img/main-news-bg.png) no-repeat center 0 / cover;
	h2{
		margin-bottom: 60px;
		text-align: center;
	}
	.main-news-inner{
		margin: 0 auto;
		max-width: 1180px;
		ul{
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 25px 0;
			li{
				padding-right: 35px;
				display: flex;
				justify-content: space-between;
				.image{
					width: 120px;
				}
				.texts{
					width: calc(100% - 140px);
					text-align: left;
					h3 {
						font-weight: 400;
						line-height: 1.6;
						a{
							display: block;
							color: #0058cd;
							font-weight: 700;
							display: -webkit-box;
							-webkit-line-clamp: 2;
							-webkit-box-orient: vertical;
							overflow: hidden;
						}
						span{
							display: inline-block;
						}
						.date{
							color: #2f2f2f;
							margin-right: 1.0em;
						}
						.cat {
							a{
								color: #fff;
								font-size: 13px;
								display: block;
								background: #35acb1;
								text-align: center;
								padding: 0 1.5em;
								height: 22px;
								line-height: 22px;
							}
						}
					}
				}
			}
		}
		.btns{
			margin: 60px auto 0;
			text-align: center;
		}
	}
}

.main-guide {
	padding: 80px 0;
	background: #d7e6fd;
	text-align: center;

	h2 {
		margin-bottom: 50px;
	}

	.faq {
		margin-bottom: 120px;
	}

	.main-guide-main {
		margin: 0 auto;
		max-width: 1180px;

		ul {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 20px;
		}
	}
}

.main-banner{
	margin: 90px auto;
	max-width: 940px;
	ul{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

.main-reason {
	padding: 80px 0;
	background: url(/html/template/cectpl/assets/img/main-reason-bg.png) no-repeat center 0 / cover;

	h2 {
		margin-bottom: 60px;
		text-align: center;
	}

	.main-reason-main {
		margin: 0 auto;
		max-width: 1180px;
	}

	ul {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 35px;

		li {
			.image {
				margin-bottom: 20px;
			}

			h3 {
				margin-bottom: 15px;
				height: 60px;
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: left;
				text-align: left;
				padding-left: 20px;
				border-left: #35acb1 5px solid;
				color: #0058cd;
				font-size: 24px;
				font-weight: bold;
				line-height: 1.2;
			}

			.text {
				text-align: left;
				line-height: 1.4;
			}
		}
	}
}

.main-category {
	padding: 80px 0 120px 0;

	h2 {
		margin-bottom: 60px;
		text-align: center;
	}

	.main-category-main {
		margin: 0 auto;
		max-width: 1180px;
	}

	ul {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}



/* page
------------------------------------------*/

/* title */
.page-title {
	margin-top: 10px;
	background: url(/html/template/cectpl/assets/img/page-title-bg.png) no-repeat center 0 / cover;
}
}
.page-title-inner {
}
.page-title-inner h1,
.page-title-inner p {
	font-size: 20px;
	font-weight: bold;
	color: #0058cd;
	line-height: 1.3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	text-align: left;
	margin: 0 auto;
	max-width: 1180px;
	height: 104px;
}

/* breadcrumb */
.breadcrumb {
	margin: 10px 0 30px 0;
	font-size: 1.2rem;
}
.breadcrumb-inner {
	margin: 0 auto;
	max-width: 1180px;
}
.breadcrumb ul {
	display: flex;
}
.breadcrumb ul li:after {
	content: ">";
	margin: 0 5px;
}
.breadcrumb ul li:last-child:after {
	display: none;
}
.breadcrumb ul li:first-child:before {
	content: '\f015';
	padding: 0 5px 0 0;
	color: #35acb1;
	font-size: 11px;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* product list */
#cate_list{
	padding: 10px;
	border: #ccc 1px solid;
	margin-bottom: 50px;
  background: #fff;
	text-align: left;
}
.cate_h2{
	color: #0058cd;
    background: none !important;
    border-bottom: solid 1px #0058cd !important;
    margin: 0 0 10px !important;
    padding: 0 0 10px !important;
    font-size: 1.6rem !important;
}
.cate_list{
}
.cate_list ul li{
	display: inline-block;
	margin-right: 10px;
}
.cate_list ul li a{
	color: inherit;
}
.cate_list ul li:before {
    content: '\f138';
    display: inline-block;
    font-family: FontAwesome;
    color: #0058cd;
    font-size: smaller;
    margin: 0 5px 0 0;
}
.ec-productListRole {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.ec-productListRole__main {
	margin: 0 0 50px 0;
	width: calc(100% - 240px);
}
.ec-productListRole__side {
	width: 200px;
}
.ec-productListCategory {
	margin: 0 0 50px 0;
}
.ec-productListCategory__image {
	margin: 0 0 30px 0;
}
.ec-productListCategory__image img {
	width: 100%;
}
.ec-searchnavRole {
	margin: 0 0 30px 0;
}
.ec-searchnavRole__topicpath {
	margin: 0 0 5px 0;
	padding: 0 0 10px 0;
	border-bottom: var(--borderColor) 1px solid;
}
.ec-topicpath {
	display: flex;
}
.ec-topicpath li.ec-topicpath__divider {
	margin: 0 5px;
}
.ec-topicpath li a {
	font-weight: bold;
}
.ec-searchnavRole__infos {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ec-searchnavRole__counter span.ec-font-bold {
	font-weight: bold;
}
.ec-shelfGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.ec-shelfGrid li.ec-shelfGrid__item {
	position: relative;
}
.ec-shelfGrid li.ec-shelfGrid__item .ec-shelfGrid__item-image {
	margin: 0 0 15px 0;
}
.ec-shelfGrid li.ec-shelfGrid__item .ec-shelfGrid__item-image img {
	width: 100%;
}
.ec-shelfGrid li.ec-shelfGrid__item h3 {
	margin: 0 0 5px 0;
	font-weight: bold;
	a{
		color: #0058cd;
	}
}
.ec-shelfGrid li.ec-shelfGrid__item .ec-shelfGrid__description {
	margin: 5px 0;
	font-size: 1.3rem;
}
.ec-shelfGrid li.ec-shelfGrid__item .price02-default {
	font-size: 1.3rem;
	font-weight: normal;
}
.ec-shelfGrid li.ec-shelfGrid__item .price03-default {
	position: absolute;
	top: 5px;
	left: 5px;
	padding: 2px 6px;
	color: var(--bodyBgColor);
	font-size: 1.1rem;
	font-weight: normal;
	background: var(--keyColor);
	border-radius: 3px;
}
.ec-shelfGrid li.ec-shelfGrid__item .soldout {
	color: var(--noticeColor);
}

.ec-shelfGrid li.ec-shelfGrid__item{
	.prices {
		font-size: 16px;
		font-weight: bold;
	}
}
.ec-pagerRole {
	margin: 50px 0;
}
.ec-pagerRole ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.ec-pagerRole ul li {
	margin: 0 2px;
}
.ec-pagerRole ul li a {
	display: block;
	padding: 5px 12px;
	color: var(--keyColorSub);
	border: var(--keyColorSub) 1px solid;
	border-radius: 3px;
}
.ec-pagerRole ul li.ec-pager__item--active a {
	color: var(--bodyBgColor);
	font-weight: bold;
	background: var(--keyColorSub);
}

/* product list sidebar */
.ec-SideBlockRole {
	margin: 0 0 30px 0;
}
.ec-SideBlockRole h3 {
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	border-bottom: var(--textColor) 2px solid;
}
.ec-SideBlockRole ul li {
	padding: 5px 0;
	border-bottom: var(--borderColor) 1px dashed;
}
.ec-SideBlockRole ul li ul {
	padding: 10px;
}
.ec-SideBlockRole ul li ul li {
	font-size: 1.3rem;
	border: none;
}
.ec-sideAboutRole__main {
	padding: 15px;
	font-size: 1.3rem;
	background: var(--bgColor);
}
.ec-sideAboutRole__main .name {
	margin: 0 0 5px 0;
	font-weight: bold;
}
.ec-sideAboutRole__main .text p {
	position: relative;
	padding: 0 0 0 15px;
}
.ec-sideAboutRole__main .text p:before {
	content: "\f041";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--keyColorSub);
	font-family: FontAwesome;
}
.ec-sideAboutRole__main .text .phone_number:before {
	content: "\f095";
}
.ec-sideAboutRole__main .text .business_hour:before {
	content: "\f017";
}
.ec-sideCalendarRole .calendar-once:not(:first-of-type) {
	margin: 20px 0 0 0;
}
.ec-sideCalendarRole .calendar-once .calendar-title {
	margin: 0 0 10px 0;
	font-weight: bold;
	text-align: center;
}
.ec-sideCalendarRole table {
	width: 100%;
}
.ec-sideCalendarRole table thead th {
	padding: 5px 0;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}
.ec-sideCalendarRole table tbody td {
	padding: 5px 0;
	font-size: 1.3rem;
	text-align: center;
}
.ec-sideCalendarRole table tbody td.off {
	color: var(--bodyBgColor);
	background: var(--noticeColor);
}

/* product detail */
.deliv-notice {
	margin: 0 0 50px 0;
	padding: 15px;
	color: var(--bodyBgColor);
	text-align: center;
	background: var(--noticeColor);
	border-radius: 3px;
}
.deliv-notice:before {
	content: "\f071";
	margin: 0 8px 0 0;
	font-family: FontAwesome;
}
.ec-productRole .ec-grid2 {
	display: flex;
	margin: 0 0 80px 0;
}
.ec-productRole .ec-grid2__cell {
	position: relative;
	width: 55%;
}
.ec-productRole .ec-grid2__cell:last-of-type {
	padding: 0 0 0 40px;
	width: 45%;
}
.ec-sliderItemRole {
	position: sticky;
	top: 20px;
}
.ec-sliderItemRole .item_visual img {
	width: 100%;
}
.ec-sliderItemRole .item_nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 10px 0 0 0;
}
.ec-sliderItemRole .item_nav .slideThumb {
	cursor: pointer;
}
.default .ec-sliderItemRole .item_nav .slideThumb img:hover {
	opacity: 0.7;
}
.ec-productRole__code {
	margin: 0 0 10px 0;
	color: var(--textColorSub);
	font-size: 1.3rem;
}
.ec-productRole__profile .ec-headingTitle {
	margin: 0 0 20px 0;
	font-size: 3.2rem;
}
.ec-productRole__tags {
	display: flex;
	margin: 0 0 20px 0;
}
.ec-productRole__tags li {
	display: block;
	margin: 0 5px 0 0;
	padding: 3px 8px;
	color: #fff;
	font-size: 1.1rem;
	background: var(--keyColorSub);
	border-radius: 3px;
}
.ec-productRole__price .ec-price__tax {
	font-size: 1.3rem;
}
.ec-productRole__price01 {
	opacity: 0.7;
}
.ec-productRole__price01 .ec-price__price {
	text-decoration: line-through;
}
.ec-productRole__price03 {
	margin: 10px 0 0 0;
	padding: 20px;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-productRole__price03 p {
	margin: 0 0 5px 0;
}
.ec-productRole__price03 p span {
	display: block;
	color: var(--keyColor);
	font-size: 1.3rem;
}
.ec-productRole__price02 .ec-price__price,
.ec-productRole__price03 .ec-price__price {
	font-size: 2.4rem;
	font-weight: bold;
}
.ec-productRole__price02.hidden {
	opacity: 0.7;
}
.ec-productRole__price02.hidden .ec-price__price {
	color: var(--textColor);
	font-size: 1.5rem;
	font-weight: normal;
	text-decoration: line-through;
}
.ec-productRole__category {
	margin: 20px 0;
	padding: 20px 0 0 0;
	border-top: var(--borderColor) 1px solid;
}
.ec-productRole__category div {
	margin: 0 0 5px 0;
	font-weight: bold;
}
.ec-productRole__category ul {
	padding: 0 0 0 10px;
}
.ec-productRole__cart {
	margin: 0 0 20px 0;
	padding: 20px;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-productRole__actions > div {
	margin: 0 0 10px 0;
}
.ec-productRole__actions .ec-select select {
	width: 100%;
}
.ec-productRole__actions .ec-numberInput {
	display: flex;
	align-items: center;
}
.ec-productRole__actions .ec-numberInput span {
	width: 15%;
}
.ec-productRole__actions .ec-numberInput input {
	width: 85%;
}
.ec-productRole__btn {
	margin: 10px 0 0 0;
}
.ec-productRole__freearea {
	margin: 0 0 80px 0;
}
.ec-classcategory {
	margin: 0 0 30px 0;
}
.ec-classcategory dl dt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-classcategory dl dt p {
	padding: 10px 15px;
}
.ec-classcategory dl dt span {
	width: 70px;
	font-weight: normal;
	text-align: center;
}
.ec-classcategory dl dd {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-bottom: var(--borderColor) 1px dashed;
	transition: all 0.2s linear;
}
.default .ec-classcategory dl dd:hover {
	opacity: 0.7;
}
.ec-classcategory dl dd + dt {
	margin: 20px 0 0 0;
}
.ec-classcategory dl dd .name {
	padding: 15px;
	width: calc(100% - 230px);
	font-weight: bold;
}
.ec-classcategory dl dd .name span {
	display: block;
	color: var(--textColorSub);
	font-size: 1.3rem;
	font-weight: normal;
}
.ec-classcategory dl dd .price {
	padding: 15px 15px 15px 0;
	width: 180px;
	text-align: right;
}
.ec-classcategory dl dd .price .default {
	color: var(--textColorSub);
	font-size: 1.3rem;
}
.ec-classcategory dl dd .price .member span {
	color: var(--keyColor);
}
.ec-classcategory dl dd .stock {
	width: 70px;
	text-align: center;
	border-left: var(--borderColor) 1px dashed;
}
.ec-classcategory dl dd .stock.stock-unlimited {
	color: var(--keyColor);
}
.ec-classcategory dl dd .stock.stock-none {
	padding: 0 2px 0 0;
	color: var(--textColorSub);
}

.ec-classcategory-table {
	margin: 0 0 30px 0;
}
.ec-classcategory-table table {
	width: 100%;
	table-layout: fixed;
}
.ec-classcategory-table table thead th,
.ec-classcategory-table table tbody th {
	padding: 10px 5px;
	font-size: 1.3rem;
	font-weight: bold;
	vertical-align: middle;
	background: var(--bgColor);
	border: var(--borderColor) 1px solid;
}
.ec-classcategory-table table tbody td {
	padding: 10px 5px;
	font-size: 1.2rem;
	text-align: right;
	vertical-align: middle;
	border: var(--borderColor) 1px solid;
}
.ec-classcategory-table table tbody td span {
	color: var(--textColor);
}
.ec-classcategory-table table tbody td .code {
	color: var(--textColorSub);
}
.ec-classcategory-table .comment {
	margin: 5px 0 0 0;
	color: var(--textColorSub);
	font-size: 1.1rem;
}

.ec-productRole__cart.soldout .form-group {
	display: none;
}

/* other common */
.ec-link {
	cursor: pointer;
	text-decoration: underline;
}
.ec-required {
	margin: 0 0 0 10px;
	color: var(--noticeColor);
}
.ec-para-normal {
	margin: 0 0 50px 0;
}
.ec-para-normal + .ec-para-normal {
	margin: -50px 0 50px 0;
}
.ec-borderedDefs dl {
	display: flex;
	margin: 0 0 30px 0;
	padding: 0 0 30px 0;
	border-bottom: var(--borderColor) 1px dashed;
}
.ec-borderedDefs dl dt {
	width: 20%;
	font-weight: bold;
}
.ec-borderedDefs dl dd {
	position: relative;
	width: 80%;
}
.ec-borderedDefs dl dd p {
	margin: 5px 0 0 0;
	font-size: 1.3rem;
}
.ec-off4Grid {
	margin: 30px auto;
	max-width: 400px;
}
.ec-off4Grid .ec-checkbox {
	margin: 0 0 20px 0;
	text-align: center;
}
.ec-reportHeading {
	margin: 0 0 20px 0;
	font-size: 2.4rem;
	text-align: center;
}
.ec-reportDescription {
	text-align: center;
}

/* login */
.ec-login {
	margin: 0 auto;
	max-width: 600px;
}
.ec-login__icon {
	display: none;
}
.ec-login__input .ec-input input {
	margin: 0 0 10px 0;
}
.ec-login__input .ec-checkbox {
	margin: 10px 0 0 0;
}
.ec-login .ec-grid2 {
	display: flex;
}
.ec-login .ec-grid2 .ec-grid2__cell {
	width: 50%;
}
.ec-login .ec-grid2 .ec-grid2__cell:last-of-type {
	padding: 0 0 0 30px;
}

/* cart */
.page-cart .ec-grid3 {
	display: flex;
	justify-content: space-between;
}
.page-cart .ec-grid3 .ec-grid3__cell2 {
	width: 60%;
}
.page-cart .ec-grid3 .ec-grid3__cell {
	width: calc(40% - 40px);
}
.ec-guest {
	display: flex;
	align-items: center;
	padding: 0 50px;
	height: 100%;
	text-align: center;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-guest p {
	margin: 0 0 15px 0;
}
.ec-cartRole__progress {
	text-align: center;
}
.ec-progress {
	display: flex;
	justify-content: center;
	margin: 0 0 50px 0;
}
.ec-progress__item {
	position: relative;
	width: 20%;
	max-width: 100px;
	text-align: center;
}
.ec-progress__item:after {
	z-index: -1;
	content: "";
	display: block;
	position: absolute;
	top: 18px;
	left: 50%;
	width: 100%;
	height: 4px;
	background: var(--keyColorSub);
}
.ec-progress__item:last-of-type:after {
	display: none;
}
.ec-progress__number {
	margin: 0 auto 10px auto;
	width: 40px;
	height: 40px;
	color: var(--bodyBgColor);
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 40px;
	background: var(--keyColorSub);
	border-radius: 20px;
}
.ec-progress__label {
	font-size: 1.3rem;
	font-weight: bold;
}
.is-complete .ec-progress__number {
	background: var(--keyColor);
}
.is-complete .ec-progress__label {
	color: var(--keyColor);
}
.ec-cartRole__totalText {
	margin: 30px 0;
	text-align: center;
}
.ec-cartTable {
	display: table;
	width: 100%;
}
.ec-cartHeader {
	display: table-row;
}
.ec-cartHeader li {
	display: table-cell;
	padding: 20px;
	color: var(--keyColorSub);
	font-weight: bold;
	text-align: center;
	background: var(--bgColor);
}
.ec-cartRow {
	display: table-row;
}
.ec-cartRow li {
	display: table-cell;
	padding: 20px 0;
	vertical-align: middle;
	border-bottom: var(--borderColor) 1px dashed;
}
.ec-cartRow__delColumn {
	width: 8%;
}
.ec-cartRow__delColumn a img {
	display: none;
}
.ec-cartRow__delColumn a {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 40px;
	height: 40px;
}
.ec-cartRow__delColumn a:before,
.ec-cartRow__delColumn a:after {
	content: "";
	display: block;
	position: absolute;
	top: 19px;
	left: 10px;
	width: 20px;
	height: 2px;
	background: var(--keyColorSub);
	transform: rotate(45deg);
	border-radius: 1px;
}
.ec-cartRow__delColumn a:after {
	transform: rotate(135deg);
}
.ec-cartRow__img {
	display: table-cell;
	width: 80px;
	vertical-align: middle;
}
.ec-cartRow__summary {
	display: table-cell;
	padding: 0 0 0 15px;
	font-size: 1.1rem;
	font-weight: bold;
	vertical-align: middle;
}
.ec-cartRow__name a {
	font-size: 1.5rem;
}
.ec-cartRow__unitPrice {
	margin: 5px 0 0 0;
	font-size: 1.5rem;
}
.ec-cartRow__sutbtotalSP,
.ec-cartRow__amountSP {
	display: none;
}
.ec-cartRow__amountColumn {
	width: 12%;
	text-align: center;
}
.ec-cartRow__amount {
	margin: 0 0 10px 0;
}
.ec-cartRow__amountUpDown a,
.ec-cartRow__amountUpDown div {
	display: inline-block;
	position: relative;
	margin: 0 2px;
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	border: var(--keyColorSub) 2px solid;
	border-radius: 20px;
}
.ec-cartRow__amountUpDown div {
	opacity: 0.3;
}
.ec-cartRow__amountUpDown a img,
.ec-cartRow__amountUpDown div img {
	display: none;
}
a.ec-cartRow__amountDownButton:before,
a.ec-cartRow__amountUpButton:before,
a.ec-cartRow__amountUpButton:after,
div.ec-cartRow__amountDownButtonDisabled:before {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	left: 10px;
	width: 12px;
	height: 2px;
	background: var(--keyColorSub);
	border-radius: 1px;
}
a.ec-cartRow__amountUpButton:after {
	transform: rotate(90deg);
}
.ec-cartRow__subtotalColumn {
	width: 12%;
	text-align: right;
}
.ec-cartRole__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: row-reverse;
}
.ec-cartRole__total {
	margin: 30px 0;
	width: 100%;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: right;
}
.ec-cartRole__total span {
	margin: 0 0 0 10px;
	color: var(--noticeColor);
	font-size: 2.4rem;
}
.ec-cartRole__actions .ec-blockBtn--action,
.ec-cartRole__actions .ec-blockBtn--cancel {
	margin: 0 10px;
	width: 200px;
}
.ec-alert-warning {
	margin: 30px 0;
	padding: 15px;
	color: var(--bodyBgColor);
	text-align: center;
	background: var(--noticeColor);
	border-radius: 3px;
}
.ec-alert-warning__icon img {
	display: none;
}
.ec-alert-warning__text:before {
	content: "\f071";
	margin: 0 8px 0 0;
	font-family: FontAwesome;
}
.ec-orderRole {
	display: flex;
	justify-content: space-between;
}
.ec-orderRole__detail {
	width: 60%;
}
.ec-orderRole__summary {
	width: calc(40% - 40px);
}
.ec-orderRole__detail h2 {
	margin: 0 0 20px 0;
	height: 44px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 44px;
}
.ec-orderAccount,
.ec-orderDelivery,
.ec-orderPayment,
.ec-orderConfirm {
	position: relative;
	margin: 0 0 30px 0;
	padding: 30px;
	background: var(--bodyBgColor);
	border: var(--borderColor) 1px solid;
	border-radius: 3px;
}
.ec-orderAccount__change button,
.ec-orderDelivery__change button {
	position: absolute;
	top: 30px;
	right: 30px;
	color: var(--keyColorSub);
	background: var(--bodyBgColor);
	border: var(--keyColorSub) 1px solid;
}
.mod-button {
	display: flex;
}
.mod-button span {
	margin: 0 10px 0 0;
}
.ec-orderDelivery__title {
	margin: 0 0 20px 0;
	padding: 0 0 5px 0;
	font-weight: bold;
	border-bottom: var(--borderColor) 1px solid;
}
.ec-borderedList li {
	margin: 0 0 20px 0;
	padding: 0 0 20px 0;
	border-bottom: var(--borderColor) 1px dashed;
}
.ec-imageGrid {
	display: flex;
	align-items: center;
}
.ec-imageGrid__img {
	width: 80px;
}
.ec-imageGrid__content {
	padding: 0 0 0 20px;
	font-size: 1.3rem;
}
.ec-imageGrid__content span {
	margin: 0 0 0 5px;
}
.ec-selects {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 20px 0;
}
.ec-selects .ec-select label {
	margin: 0 10px 0 0;
	font-weight: bold;
}
.ec-selects .ec-select:first-of-type {
	margin: 10px 0;
	width: 100%;
}
.ec-selects .ec-select__delivery {
	margin: 0 20px 0 0;
}
.ec-totalBox {
	margin: 0 0 30px 0;
	padding: 30px;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-totalBox__spec {
	display: flex;
	justify-content: space-between;
}
.ec-totalBox__total {
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
	font-weight: bold;
	text-align: right;
	border-top: var(--borderColor) 1px dashed;
}
.ec-totalBox__total .ec-totalBox__price {
	margin: 0 5px 0 10px;
	font-size: 2.4rem;
}
.ec-totalBox__taxRate {
	display: flex;
	justify-content: flex-end;
	font-size: 1.1rem;
}
.ec-totalBox__taxRate dt {
	margin: 0 5px 0 0;
}
.ec-totalBox__taxRate dt:before {
	content: "[ ";
}
.ec-totalBox__taxRate dd:after {
	content: " ]";
}
.ec-totalBox__paymentTotal {
	margin: 10px 0 20px 0;
	font-weight: bold;
	text-align: right;
}
.ec-totalBox__paymentTotal .ec-totalBox__price {
	margin: 0 5px 0 10px;
	color: var(--noticeColor);
	font-size: 2.4rem;
}
.ec-totalBox__pointBlock {
	margin: 10px 0 0 0;
	padding: 10px 0;
	border-top: var(--borderColor) 1px dashed;
}
.ec-addressRole__actions,
.ec-AddAddress__new {
	margin: 0 0 30px 0;
}
.ec-addressList__item {
	display: flex;
	align-items: center;
	margin: 0 0 20px 0;
	padding: 30px;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-addressList__remove .ec-icon {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--bodyBgColor);
	border-radius: 3px;
}
.ec-addressList__remove .ec-icon img {
	display: none;
}
.ec-addressList__remove .ec-icon:before,
.ec-addressList__remove .ec-icon:after {
	content: "";
	display: block;
	position: absolute;
	top: 19px;
	left: 10px;
	width: 20px;
	height: 2px;
	background: var(--keyColorSub);
	transform: rotate(45deg);
	border-radius: 1px;
}
.ec-addressList__remove .ec-icon:after {
	transform: rotate(135deg);
}
.ec-addressList__action {
	margin: 0 0 0 auto;
	padding: 0 0 0 20px;
}
.ec-addressList__address {
	padding: 0 0 0 20px;
}
.ec-AddAddress__add {
	margin: 0 0 30px 0;
	padding: 0 0 30px 0;
	border-bottom: var(--borderColor) 1px dashed;
}
.ec-AddAddress__item {
	display: flex;
	align-items: center;
	padding: 30px;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-AddAddress__itemThumb {
	width: 120px;
}
.ec-AddAddress__itemtContent {
	padding: 0 0 0 20px;
}
.ec-AddAddress__itemtTitle {
	margin: 0 0 5px 0;
	font-weight: bold;
}
.ec-AddAddress__select {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
	width: 100%;
}
.ec-AddAddress__select label {
	font-weight: bold;
}
.ec-AddAddress__select select,
.ec-AddAddress__select input {
	margin: 0 10px 0 0;
}
.ec-AddAddress__selectNumber input {
	display: inline-block;
	width: 80px;
}

/* mypage */
.ec-navlistRole__navlist {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ec-navlistRole__navlist .ec-navlistRole__item {
	width: 19%;
}
.ec-navlistRole__navlist .ec-navlistRole__item a {
	display: block;
	padding: 10px;
	font-weight: bold;
	text-align: center;
	background: var(--bgColor);
	border-radius: 3px;
}
.ec-navlistRole__navlist .ec-navlistRole__item.active a {
	color: var(--bodyBgColor);
	background: var(--keyColorSub);
}
.ec-welcomeMsg {
	margin: 30px 0;
	padding: 0 0 30px 0;
	text-align: center;
	border-bottom: var(--borderColor) 1px solid;
}

.ec-historyRole__contents {
	display: flex;
	padding: 30px 0;
	border-top: var(--borderColor) 1px dashed;
}
.ec-historyRole__header {
	width: 25%;
}
.ec-historyListHeader__date {
	margin: 0 0 10px 0;
	font-weight: bold;
}
.ec-definitions {
	display: flex;
}
.ec-definitions dt {
	width: 120px;
}
.ec-definitions dt:after {
	content: " :";
}
.ec-historyListHeader__action {
	margin: 10px 0 0 0;
}
.ec-historyRole__detail .ec-imageGrid {
	margin: 10px 0 0 0;
}
.ec-historyRole__detail .ec-imageGrid:first-of-type {
	margin: 0;
}
.ec-orderOrder {
	margin: 0 0 30px 0;
}
.ec-orderDelivery__item {
	margin: 0 0 10px 0;
}
.ec-orderDelivery__address {
	margin: 0 0 10px 0;
}
.ec-definitions--soft {
	display: flex;
}
.ec-definitions--soft dt {
	width: 100px;
}
.ec-orderMail__body {
	display: none;
}
.ec-orderMail {
	margin: 0 0 30px 0;
	padding: 30px;
	background: var(--bodyBgColor);
	border: var(--borderColor) 1px solid;
	border-radius: 3px;
}
.ec-orderMail__link a {
	cursor: pointer;
	font-weight: bold;
	text-decoration: underline;
}
.ec-orderMail__body {
	margin: 20px 0 0 0;
	font-size: 1.3rem;
}
.ec-orderMail__close {
	margin: 20px 0 0 0;
	text-align: center;
}
.ec-orderMail__close a {
	text-decoration: underline;
}

.ec-favoriteRole__header {
	margin: 0 0 20px 0;
}
.ec-favoriteRole__itemList {
	display: flex;
	flex-wrap: flex;
	margin: 0 -15px;
}
.ec-favoriteRole__itemList li {
	position: relative;
	margin: 0 0 30px 0;
	padding: 0 15px;
	width: 25%;
}
.ec-favoriteRole__itemList li a.ec-closeBtn--circle {
	display: block;
	position: absolute;
	top: 5px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 3px;
}
.ec-favoriteRole__itemList li a.ec-closeBtn--circle:before,
.ec-favoriteRole__itemList li a.ec-closeBtn--circle:after {
	content: "";
	display: block;
	position: absolute;
	top: 19px;
	left: 10px;
	width: 20px;
	height: 2px;
	background: var(--keyColorSub);
	transform: rotate(45deg);
	border-radius: 1px;
}
.ec-favoriteRole__itemList li a.ec-closeBtn--circle:after {
	transform: rotate(135deg);
}
.ec-favoriteRole__itemList li a.ec-closeBtn--circle img {
	display: none;
}
.ec-favoriteRole__itemTitle {
	margin: 10px 0 0 0;
}
.ec-withdrawRole .ec-icon,
.ec-withdrawConfirmRole .ec-icon {
	display: none;
}

/* blog list */
.ec-blogListRole,
.ec-blogDetailRole {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.ec-blogListRole__main,
.ec-blogDetailRole__main {
	margin: 0 0 50px 0;
	width: calc(100% - 240px);
}
.ec-blogListRole__side,
.ec-blogDetailRole__side {
	width: 200px;
}
.ec-blogListRole__main h2 {
	margin: 0 0 30px 0;
	font-size: 1.8rem;
	border-bottom: var(--textColor) 2px solid;
}
.ec-blogListRole__main .item {
	display: flex;
	margin: 0 0 40px 0;
}
.ec-blogListRole__main .image {
	width: 150px;
}
.ec-blogListRole__main .text {
	padding: 0 0 0 20px;
	width: calc(100% - 150px);
}
.ec-blogListRole__main .text h3 {
	margin: 0 0 10px 0;
	font-size: 2.2rem;
	a{
		color: #0058cd;
	}
}
.ec-blogListRole__main .text .meta {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 0 0;
	font-size: 1.3rem;
}
.ec-blogListRole__main .text .meta .categories ul,
.ec-blogDetailRole__main .categories ul {
	display: flex;
	flex-wrap: wrap;
}
.ec-blogListRole__main .text .meta .categories ul li,
.ec-blogDetailRole__main .categories ul li {
	margin: 0 5px 0 0;
}
.ec-blogListRole__main .text .meta .categories ul li a,
.ec-blogDetailRole__main .categories ul li a {
	display: block;
	padding: 2px 10px;
	color: var(--bodyBgColor);
	font-size: 1.3rem;
	background: var(--keyColorSub);
	border-radius: 20px;
}

/* blog detail */
.ec-blogDetailRole__main .categories ul {
	margin: 0 0 10px 0;
}
.ec-blogDetailRole__main h1 {
	margin: 0 0 10px 0;
	font-size: 3.2rem;
	color: #0058cd;
}
.ec-blogDetailRole__main .date {
	margin: 0 0 20px 0;
	color: var(--textColorSub);
	font-size: 1.3rem;
}
.ec-blogDetailRole__main .eyecatch {
	margin: 0 0 10px 0;
}
.ec-blogDetailRole__main .eyecatch img {
	width: 100%;
}
.ec-blogDetailRole__main .sns {
	margin: 0 0 60px 0;
}
.ec-blogDetailRole__main .sns ul {
	display: flex;
	margin: 0 -2px;
}
.ec-blogDetailRole__main .sns ul li {
	margin: 0 2px;
	width: calc(100% / 5);
}
.ec-blogDetailRole__main .sns ul li a {
	display: block;
	padding: 10px;
	color: #fff;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	border-radius: 3px;
}
.ec-blogDetailRole__main .sns ul li a .fa {
	margin: 0 5px 0 0;
	font-weight: bold;
}
.ec-blogDetailRole__main .sns ul li.sns-facebook a {
	background: #3b5998;
}
.ec-blogDetailRole__main .sns ul li.sns-twitter a {
	background: #55acee;
}
.ec-blogDetailRole__main .sns ul li.sns-line a {
	background: #1dcd00;
}
.ec-blogDetailRole__main .sns ul li.sns-hatena a {
	background: #008fde;
}
.ec-blogDetailRole__main .sns ul li.sns-pocket a {
	background: #d3505a;
}

.ec-blogDetailRole__main .tags {
	margin: 30px 0;
}
.ec-blogDetailRole__main .tags ul {
	display: flex;
	margin: 0 0 10px 0;
}
.ec-blogDetailRole__main .tags ul li {
	margin: 0 5px 0 0;
}
.ec-blogDetailRole__main .tags ul li a {
	display: block;
	padding: 1px 5px;
	font-size: 1.1rem;
	border: var(--keyColorSub) 1px solid;
	border-radius: 3px;
}
.ec-blogDetailRole__main-content p {
	margin: 30px 0;
}
.ec-blogDetailRole__main-content p a {
	text-decoration: underline;
}
.ec-blogDetailRole__main-content h2 {
	margin: 30px 0;
	font-size: 2.5rem;
	font-weight: bold;
}
.ec-blogDetailRole__main-content h3 {
	margin: 30px 0;
	font-size: 2rem;
	font-weight: bold;
}
.ec-blogDetailRole__main-content h4 {
	margin: 30px 0;
	font-size: 1.8rem;
	font-weight: bold;
}

/* blog side */
.ec-blogSideBlockRole {
	margin: 0 0 30px 0;
}
.ec-blogSideBlockRole h3 {
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	border-bottom: var(--keyColorSub) 2px solid;
}
.ec-blogSideBlockRole ul li {
	padding: 5px 0;
	border-bottom: var(--borderColor) 1px dashed;
}
.ec-blogSideBlockRole ul li ul {
	padding: 10px;
}
.ec-blogSideBlockRole ul li ul li {
	font-size: 1.3rem;
	border: none;
}

/* other */
.page-content p {
	line-height: 2;
	font-size: 16px;
	margin-bottom: 60px;
}
.page-content iframe {
	width: 100%;
	height: 400px;
}
.page-content h2 {
	position: relative;
	margin: 0 0 25px;
	padding: 12px 10px 12px 40px;
	background: #0058cd;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}
.page-content h2:before{
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	background: #35acb1;
}
.page-content h2:after{
	display: block;
	content: '\f105';
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	z-index: 10;
}
.page-content h3 {
	margin: 50px 0 25px;
	padding: 11px 12px;
	background: #d7e6fd;
	color: #0058cd;
	font-size: 18px;
	font-weight: bold;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.page-content h4 {
	padding: 5px 0;
	color: #0058cd;
	font-size: 15px;
	font-weight: bold;
}
.page-content h4:before {
	content: '\f105';
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	z-index: 10;
	padding-right: 10px;
}
.page-content ul {
	margin: 40px 0;
}
.page-content ul li {
	margin: 10px 0 10px 25px;
	list-style: outside disc;
}
.page-content ol {
	margin: 40px 0;
}
.page-content ol li {
	margin: 10px 0 10px 25px;
	list-style: outside decimal;
}
