@charset "utf-8";
/*
///////////////////////////////////////////////////////////////////////////////////
//
//  基本CSS設定
//
///////////////////////////////////////////////////////////////////////////////////
/*
/* [RESET,FORMAT]
--------------------------------------------------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
}
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section {
	display: block;
}
ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	color: #212121;
	text-decoration: none;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

a:hover {
	opacity: 0.5;
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 180%;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #CCC;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}

/* [SITE FORMAT]
--------------------------------------------------------------------------*/
html, body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	height: 100%;
	line-height: 180%;
	color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="submit"],
textarea,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border: none;
}

select {
	background: none;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: none;
}

select::-ms-expand {
	display: none;
}

input[type="checkbox"],
input[type="radio"] {
	vertical-align: middle;
	margin-top: -1px;
	cursor: pointer;
	margin-right: 8px;
}

input[type="submit"],
button {
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover,
button:hover {
	opacity: 0.5;
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
}

label {
	cursor: pointer;
}

figcaption {
	text-align: center;
	font-size: 12px;
	margin-top: 5px;
}

header {
	background: #FFF;
	position: fixed;
	width: 100%;
	height: 135px;
	box-shadow: 0 0 10px rgba(102, 102, 102, 0.35);
	-moz-box-shadow: 0 0 10px rgba(102, 102, 102, 0.35);
	-o-box-shadow: 0 0 10px rgba(102, 102, 102, 102.35);
	-ms-box-shadow: 0 0 10px rgba(102, 102, 102, 0.35);
	border-top: solid 5px #0032a0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	z-index: 2;
}

header div.pkg {
	width: 1020px;
	margin: 0 auto;
	padding: 0;
}

img {
	vertical-align: bottom;
}

a[href^="tel:"] {
	pointer-events: none;
}

h2 {
	font-size: 30px;
	line-height: 34px;
	color: #0032a0;
}

h3 {
	font-size: 16px;
	font-weight: normal;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 20px;
}

.ttl {
	max-width: 1020px;
	margin: 0 auto;
}

.ttl h3 {
	font-size: 30px;
	font-weight: bold;
	color: #0032a0;
	margin-bottom: 15px;
}

.ttl p.eng {
	font-size: 24px;
	font-family: din-condensed, sans-serif;
	margin-bottom: 35px;
}

#logo {
	position: absolute;
	top: 25px;
	left: 0;
	width: 140px;
}

#logo img {
	width: 100%;
	height: auto;
}

#menu {
	position: absolute;
	background: #0032a0;
	width: 60px;
	height: 60px;
	padding: 0;
	margin: 0;
	line-height: 0;
	text-align: center;
	color: #FFF;
	top: 0;
	right: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: none;
}

#menu span {
	display: block;
	height: 60px;
	line-height: 60px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0;
	padding: 0;
}

#menu span:nth-child(2) {
	display: none;
}

nav#nav-guide {
	position: absolute;
	display: block;
	top: 20px;
	right: 0;
}

nav#nav-guide ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

nav#nav-guide ul li:last-child {
	margin-left: 40px;
}

nav#nav-guide ul li a {
	font-size: 12px;
	line-height: 40px;
	color: #999;
}

nav#nav-guide ul li:last-child a {
	width: 158px;
	display: block;
	background: #0032a0;
	color: #FFF;
	font-weight: bold;
	text-align: center;
}

nav#nav-guide ul li a span.material-icons {
	position: relative;
	font-size: 18px;
	vertical-align: middle;
	margin: -3px 5px 0 0;
}

nav#nav-main {
	position: absolute;
	width: 100%;
	height: 50px;
	top: 80px;
	display: block;
	border-top: solid 1px #e5e5e5;
}

nav#nav-main ul {
	width: 1020px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0 auto;
}

nav#nav-main ul li {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
nav#nav-main > ul > li {
	flex: 1; /* メインナビゲーションを均等割 */
}

nav#nav-main ul li a {
	width: 100%;
	position: relative;
	display: block;
	text-align: center;
	line-height: 15px;
	margin: 17px 0;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 14px;
	font-weight: bold;
	border-right: solid 1px #e5e5e5;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

nav#nav-main ul li:first-child a {
	border-left: solid 1px #e5e5e5;
}

nav#nav-main ul li a:hover {
	opacity: 0.5;
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
}

nav#nav-main ul li div {
	position: fixed;
	width: 100%;
	top: 135px;
	left: 0;
	background: #00236f;
	display: none;
}

nav#nav-main ul li div ul {
	width: 1020px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0 auto;
	padding: 60px 0 60px 0;
	color: #FFF;
}

nav#nav-main ul li div ul li {
	width: 32%;
	margin-right: 2%;
	height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: solid 1px #FFF !important;
}

nav#nav-main ul li div ul li:nth-child(4),
nav#nav-main ul li div ul li:nth-child(7),
nav#nav-main ul li div ul li:nth-child(10),
nav#nav-main ul li div ul li:nth-child(13) {
	margin-right: 0;
}

nav#nav-main ul li div ul li:first-child {
	width: 100%;
	margin-bottom: 20px;
	border: none !important;
}

nav#nav-main ul li div ul li a {
	width: 100%;
	line-height: normal;
	text-align: left;
	color: #FFF;
	border: none !important;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0;
	padding: 0;
	display: flex;
}

nav#nav-main ul li div ul li a {
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	border-right: none;
	border-left: none;
}

nav#nav-main ul li div ul li:first-child a {
	font-size: 18px;
	font-weight: bold;
	border-bottom: none !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

nav#nav-main ul li div ul li a:hover {
	text-decoration: none;
}

nav#nav-main ul li div ul li:first-child a p {
	width: 110px;
	height: auto;
	margin-right: 15px;
}

nav#nav-main ul li div ul li:first-child a p img {
	width: 100%;
}

nav#nav-main ul li div ul li a span.eng {
	font-size: 16px;
	font-family: din-condensed, sans-serif;
	font-weight: bold;
	margin-left: 20px;
}

nav#nav-main ul li div ul li:first-child a span.material-icons {
	margin: -3px 10px 0 0;
}

nav#nav-main ul li div ul li a span.material-icons {
	position: relative;
	font-size: 15px;
	vertical-align: middle;
	margin: 0 10px 0 0;
}

nav#nav-sp {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 60px;
	left: 0;
	overflow-x: scroll;
	z-index: 9999;
}

nav#nav-sp li {
	position: relative;
	width: 100%;
	line-height: 60px;
	border-bottom: solid 1px #CCC;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0;
	padding: 0;
}

nav#nav-sp li a,
nav#nav-sp li em {
	font-size: 16px;
	font-weight: bold;
	padding: 0 20px;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background: #fff;
}

nav#nav-sp li p {
	background: #f5f5f5;
	position: absolute;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	right: 0;
	top: 0;
	cursor: pointer;
}

nav#nav-sp li p span {
	line-height: 60px;
	display: block;
	color: #0032a0;
}

nav#nav-sp li p span:last-child {
	display: none;
}

nav#nav-sp li div {
	display: none;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0;
	padding: 0;
}

nav#nav-sp li div ul {
	max-height: 400px;
	overflow-y: scroll;
}

nav#nav-sp li div ul li {
	height: auto;
	line-height: normal;
	border-bottom: solid 1px #FFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

nav#nav-sp li div ul li:last-child {
	border-bottom: none;
}

nav#nav-sp li div ul li a {
	font-size: 14px;
	padding: 20px;
	line-height: 19px;
	font-weight: normal;
	color: #FFF;
	display: block;
	display: flex;
	background: #00236f;
}

nav#nav-sp li div ul li a span {
	position: relative;
	font-size: 18px;
	font-weight: normal;
	margin-right: 10px;
	vertical-align: middle;
	margin-top: -3px;
}

nav#nav-sp li div#nav-guide-sp {
	display: block;
	background: #00236f;
	padding: 40px 20px;
}

nav#nav-sp li div#nav-guide-sp a {
	color: #FFF;
	height: auto;
	line-height: normal;
	font-size: 12px;
	font-weight: normal;
	padding: 0;
	margin-bottom: 15px;
	background: none;
}

nav#nav-sp li div#nav-guide-sp a:nth-child(2) {
	margin-bottom: 30px;
}

nav#nav-sp li div#nav-guide-sp a:last-child {
	background: #0032a0;
	height: 62px;
	line-height: 62px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 60px;
}

nav#nav-sp li div#nav-guide-sp a span {
	position: relative;
	font-size: 15px;
	vertical-align: middle;
	margin-top: -2px;
	margin-right: 5px;
}

main {
	width: 100%;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-top: 135px;
}

main img {
	width: 100%;
}

.dsp-sp {
	display: none;
}

footer {
	background: #0032a0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #FFF;
}

footer .pkg {
	padding: 60px 0 100px 0;
}

footer .pkg a {
	color: #FFF;
}

#logo-f {
	background: url(../images/layouts/logo-f.png) no-repeat left center;
	width: 100%;
	height: 55px;
	padding-left: 170px;
	margin-bottom: 60px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#logo-f a {
	background: #FFF;
	width: 218px;
	height: 55px;
	line-height: 55px;
	display: block;
	text-align: center;
	color: #0032a0;
}

#nav-f,
.list-fw {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 0 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 12px;
	line-height: 22px;
}
.list-f {
	width: 240px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-bottom: 30px;
}
#nav-f > li:not(.list-f) {
	flex: 1;
}
#nav-f > li:not(.list-f) .list-fw {
	justify-content: flex-start;
}

.list-fw li {
	width: 240px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.list-f ul li {
	font-size: 12px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.list-f ul li:first-child,
.ttl-f {
	font-size: 15px;
	border-bottom: solid 1px #FFF;
	padding-bottom: 5px;
	margin-bottom: 15px;
}

.list-f ul li a:hover {
	text-decoration: underline;
}

#copyright {
	background: #00236f;
	font-size: 10px;
	color: #FFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#copyright div {
	width: 1020px;
	height: 72px;
	line-height: 72px;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#copyright div ul {
	width: 50%;
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	left: 0;
}

#copyright div ul li a {
	color: #FFF;
}

#copyright div p {
	width: 50%;
	position: absolute;
	right: 0;
	text-align: right;
}

.back_top {
	position: relative;
	z-index: 1;
}

.back_top a {
	background: #0032a0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: solid 1px #FFF;
	color: #FFF;
	font-size: 14px;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	display: block;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 3;
}

.bread-pkg {
	background: #FFF;
}

#breadcrumbs p {
	width: 1020px;
	margin: 0 auto;
	font-size: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	overflow: hidden;
	color: #212121;
	padding: 12px 0;
}

#breadcrumbs a {
	color: #999;
}

#breadcrumbs span,
#breadcrumbs a {
	line-height: 30px;
}

#breadcrumbs a:hover {
	color: #999;
}

input[type="text"],
input[type="tel"],
input[type="fax"],
input[type="email"] {
	width: 100%;
	border: solid 1px #ccc;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	line-height: 34px;
	padding: 5px 10px;
}

input[type="text"].w-110 {
	width: 110px;
	margin-right: 10px;
}

textarea {
	width: 100%;
	border: solid 1px #ccc;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 10px;
}

input[type="submit"] {
	background: #0032a0;
	color: #FFF;
	width: 380px;
	height: 60px;
	line-height: 34px;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 15px;
	margin: 0 auto;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/layouts/bg-list.png) no-repeat right center;
	background-size: 18px;
	border: solid 1px #0032a0;
	font-size: 12px;
	font-weight: bold;
	color: #0032a0;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 2px 88px 2px 8px;
	cursor: pointer;
}

/* 20210909 */
nav#nav-main ul li div ul li a span.attrArrow::before,
nav#nav-guide ul li a span.attrInfo::before,
#nav-guide-sp a span.attrInfo::before {
	content: attr(data-icon);
}

.search-form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	border-radius: 5px;
	box-sizing: border-box;
	position: relative;
	max-width: 500px;
}

.search-form label {
	width: 100%;
}
.search-form input {
	min-width: 100%;
	height: 38px;
	padding: 10px 0px 10px 20px;
	border: 1px solid #999999;
	border-right: 0;
	border-radius: 5px 0 0 5px;
	box-sizing: border-box;
	font-size: 1em;
	outline: none;
}

.search-form input::placeholder {
	color: #212121;
	font-size: 12px;
}

.search-form button {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 38px;
	height: 38px;
	border: none;
	background-color: #999999;
	cursor: pointer;
}

.search-form button::after {
	width: 24px;
	height: 24px;
	content: attr(data-icon);
	color: #fff;
}

.search-form button:hover {
	opacity: 1;
}

.search-form-box-sp {
	display: none;
}

.search-form-box-sp>button {
	position: absolute;
	right: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: #999999;
}

.search-form-box-sp>button::after {
	width: 24px;
	height: 24px;
	content: attr(data-icon);
	color: #fff;
}

.search-form-box-sp>button:hover {
	opacity: 1;
}

.search-form-box-sp>button:active {
	opacity: 0.5;
}

.search-form-box-sp .search-form-sp {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 60px;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	transition: opacity 0.5s ease, visibility 0.5s ease;
	background: #F5F5F5;
	padding: 10px;
	width: 100%;
	z-index: 5;
	box-sizing: border-box;
}

/* フォームの表示時のスタイル */
.search-form-box-sp .search-form-sp.visible {
	opacity: 1;
	visibility: visible;
}

.search-form-box-sp .search-form-sp form {
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 5px;
	box-sizing: border-box;
	width: 100%;
	max-width: 370px;
	margin: 0 auto;
}

.search-form-box-sp .search-form-sp label {
	width: 100%;
}

.search-form-box-sp .search-form-sp input {
	height: 50px;
	padding: 10px 0px 10px 20px;
	border: none;
	box-sizing: border-box;
	font-size: 1em;
	outline: none;
	border-radius: 5px 0 0 5px;
	border: 1px solid #999999;
}

.search-form-box-sp .search-form-sp input::placeholder {
	color: #212121;
	font-size: 12px;
}

.search-form-box-sp .search-form-sp button {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 50px;
	height: 50px;
	border: none;
	background-color: #999999;
	cursor: pointer;
}

.search-form-box-sp .search-form-sp button::after {
	width: 24px;
	height: 24px;
	content: attr(data-icon);
	color: #fff;
}






/* 2025-10-27 catalog
--------------------------------------------------------------------------*/

.product-catalog {
	box-sizing: border-box;
}

.product-catalog .lead {
	margin-top: -20px;
	margin-bottom: 35px;
}

.product-catalog-contents {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: stretch;
	gap: 30px;
}

@media (max-width: 767px) {
	.product-catalog-contents {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}

.product-catalog-item {
	flex-grow: 0;
	max-width: calc((100% - 90px) / 4);
}

@media (max-width: 767px) {
	.product-catalog-item {
		flex-grow: 1;
		max-width: 240px;
	}
}

.product-catalog .catalog {
	display: block;
}

.product-catalog .catalog-banner {
	display: block;
}

.product-catalog .catalog-banner > a {
	display: block;
	text-decoration: none;
}

.product-catalog .catalog-img {
	border: 1px solid #E5E5E5;
}

.product-catalog .catalog-img img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.41;
	object-fit: contain;
	object-position: center center;
}

.product-catalog .catalog-title {
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
}

.product-catalog .catalog-contents {
	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
	justify-content: flex-start;
}

.product-catalog .catalog-contents a {
	position: relative;
	color: #0032a0;
	text-decoration: underline;
}

.product-catalog .catalog-contents .material-icons {
	vertical-align: middle;
	margin-left: 0.2em;
	transform: translateY(-10%);
}

.product-catalog .catalog-contents a:hover {
	text-decoration: none;
}

.product-catalog p:not(.catalog-title) {
	margin-top: 5px;
}
