/* お知らせ */
.announcered {
	border: #ef000e 1px solid;
	padding: 10px 15px;
	margin-top: 3rem;
	margin-bottom:2rem;
}
.announcered .title {
	color: #ef000e;
	font-weight: bold;
	margin-bottom: 5px;
}
.announcered .text {
	padding-left:20px;
	background:url("/support/images/ico_circle_gray_s.gif") no-repeat 3px 4px;
	font-size: 1.5rem;
}
 @media only screen and (max-width: 767px) {
.announcered {
	padding: 13px;
	margin-top: 3rem;
}
.announcered .title {
	font-size: 1.4rem;
	margin-bottom: 5px;
}
.announcered .text {
	font-size: 1.3rem;
}
}
/* ----------------------------------------------------
	長期休暇営業案内
---------------------------------------------------- */
.businessHours {
	border: #ef000e 1px solid;
	padding: 10px 15px;
	margin-top: 15px;
}
.businessHours .bh_area {
	font-size: 1.4rem;
}
.businessHours img {
	width: auto;
	max-width: 100%;
}
 @media only screen and (max-width: 767px) {
.businessHours {
	padding: 13px;
}
.businessHours .bh_area {
	font-size: 1.3rem;
}
}
.businessHours .bh_link a {
	position: relative;
	padding-left: 1em;
}
.businessHours .bh_link a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	display: inline-block;
	font-size: 1.2em;
	line-height: 1;
	position: absolute;
	top: 10px;
	left: 0;
	margin-top: -0.4em;
}
.businessHours.none, .businessHours .none {	/* 非表示用 */
	display: none;
}
/* ユーティリティ */
a.hover-fade {
	text-decoration: none;
}
ul.list-btn-show-list {
	display: flex;
}
ul.list-btn-show-list li {
	display: flex;
	align-items: center;
}
/* 一覧を見るボタン */
a.btn-show-list {
	display: inline-block;
	padding: 0.25em 1em 0.25em 2em;
	font-size: 1.3rem;
	background: #fff;
	color: #535353;
	border: solid 1px #535353;
	border-radius: 0.5rem;
	position: relative;
	text-decoration: none;
}
a.btn-show-list::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	display: inline-block;
	font-size: 1.2em;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 0.75em;
	margin-top: -0.5em;
}
/* 製品・サービス */
#lineup ul.list-lineup-item {
	display: none;
}
ul.list-lineup a {
	background-color: #fff;
	text-decoration: none;
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
/* セクション */
	.sub-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
	border-top: solid 1px #d9d9d9;
}
/* 製品・サービス */
	ul.list-lineup {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}
ul.list-lineup>li {
	width: 49%;
	margin-left: 1%;
	margin-top: 0.5rem;
}
ul.list-lineup>li:nth-child(2n-1) {
	margin-left: 0;
}
ul.list-lineup>li:nth-child(-n+2) {
	margin-top: 0;
}
ul.list-lineup>li>a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 1rem;
	line-height: 1.3;
}
ul.list-lineup>li>a .img {
	padding: 0 20%;
}
ul.list-lineup>li>a .ttl {
	width: 100%;
	text-align: center;
}
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print, screen and (min-width: 768px) {
/* 一覧を見るボタン */
	.btn-show-list:hover {
	background: #535353;
	color: #fff;
}
/* セクション */
	.sub-section {
	padding-top: 6rem;
	padding-bottom: 6rem;
}
ul.list-lineup {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}
ul.list-lineup>li {
	width: 24%;
	margin-left: 1%;
	margin-top: 1.5rem;
}
ul.list-lineup>li:nth-child(4n-3) {
	margin-left: 0;
}
ul.list-lineup>li:nth-child(-n+4) {
	margin-top: 0;
}
ul.list-lineup>li>a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 1rem;
	font-size: 1.8rem;
	line-height: 1.3;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
}
ul.list-lineup>li>a:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 0;
	bottom: 0;
	background: #e6000d;
	height: 4px;
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
ul.list-lineup>li>a:hover:before, ul.list-lineup>li>a:focus:before, ul.list-lineup>li>a:active:before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
ul.list-lineup>li>a .img {
	padding: 0 20%;
}
ul.list-lineup>li>a .ttl {
	width: 100%;
	text-align: center;
}
}

/* ====================================
	IE印刷専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
.sub-section {
	border: none;
	padding-top: 3rem;
}
}
/* sub-section*/
.sub-section .sub-title {
	padding: 0.2em 0.5em;
	background: #dae3f3;
	margin-bottom: 20px;
}
.sub-section .link {
	text-decoration: underline;
}
.sub-section .link:hover {
	text-decoration: none;
}
 @media print, screen and (min-width: 768px) {
.sub-section .sub-title {
	font-size: 2.6rem;
	font-weight: 300;
}
}
@media only screen and (max-width: 767px) {
.sub-section h2 {
	font-size: 1.8rem;
	font-weight: 300;
}
}
/* 製品の形名からさがす */
#typeSearch {
	padding-bottom: 3rem;
	padding-top: 3rem;
}
#typeSearch .formArea {
	background: url(/support/top/images/icon_search.svg) no-repeat left center;
	background-size: 40px;
	padding-left: 55px;
	margin-top: 30px;
}
#typeSearch .formArea [type=button] {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
#typeSearch .formArea form #btnSch1 {
	background: #535353;
	color: #ffffff;
	padding: 0.5em 15px;
	border: #d9d9d9 1px solid;
	border-left: none;
	box-sizing: border-box;
	float: left;
}
#typeSearch .formArea [type=text] {
	width: 263px;
	padding: 8px;
	border: #d9d9d9 1px solid;
	border-right: none;
	box-sizing: border-box;
	float: left;
}
#typeSearch .formArea [type=text]::placeholder {
 font-size: 14px;
 color: #7d7d7d;
}
#typeSearch .formArea ul.list-btn-show-list {
	float: left;
	margin-top: 6px;
	margin-left: 12px;
}
 @media only screen and (max-width: 767px) {
#typeSearch .formArea [type=text] {
	width: 80%;
	padding: 5px;
}
 #typeSearch .formArea [type=text]::placeholder {
 font-size: 1.2rem;
}
#typeSearch .formArea {
	background-size: 35px auto;
	background-position: left top;
	padding-left: 14.2%;
}
#typeSearch .formArea form #btnSch1 {
	width: 20%;
	font-size: 1.3rem;
	padding: 0.75rem 0;
}
#typeSearch .formArea ul.list-btn-show-list {
	float: right;
	display: block;
	margin: 0;
}
#typeSearch ul.list-btn-show-list li {
	display: block;
}
#typeSearch a.btn-show-list {
	margin-top: 14px;
}
}
/* 目的からさがす */
#purpose {
	background: #f5f5f5;
	padding-bottom: 10px;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
#purpose ul.list-lineup>li>a {
	display: block;
	padding: 40px 1rem 25px;
}
#purpose ul.list-lineup>li>a:hover {
	background-color: #e5e5e5;
}
#purpose ul.list-lineup>li>a:before {
	background-color: transparent;
}
#purpose ul.list-lineup .line {
	display: none;
}
#purpose ul.list-lineup>li>a .ttl .sub {
	display: block;
	font-size: 1.5rem;
	margin-top: 5px;
}
#purpose ul.list-lineup-txt li a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	display: inline-block;
	font-size: 1.2em;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 0.75em;
	margin-top: -0.5em;
}
#purpose ul.list-lineup-txt>li>a {
	display: block;
	padding: 40px 1rem 25px;
}
#purpose ul.list-lineup-txt>li>a {
	padding: 1em 1em 1em 4.5em;
	position: relative;
	background-color: #fff;
	text-decoration: none;
}
#purpose ul.list-lineup-txt>li>a:hover {
	background-color: #e5e5e5;
}
#purpose ul.list-lineup-txt>li>a .ttl {
	text-align: left;
}
 @media print, screen and (min-width: 768px) {
#purpose ul.list-lineup-txt {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}
#purpose ul.list-lineup-txt>li {
	width: 24%;
	margin-left: 1%;
	margin-top: 1.5rem;
}
#purpose ul.list-lineup-txt>li:nth-child(4n-3) {
	margin-left: 0;
}
#purpose ul.list-lineup-txt>li:nth-child(-n+4) {
	margin-top: 0;
}
#purpose ul.list-lineup-txt>li>a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 1em 1em 1em 2em;
	font-size: 1.8rem;
	line-height: 1.3;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
}
#purpose ul.list-lineup-txt>li>a .ttl {
	width: 100%;
}
}
 @media only screen and (max-width: 767px) {
#purpose ul.list-lineup .line {
	display: block;
}
#purpose ul.list-lineup .line .img {
	padding: 0 30% 5%;
}
#purpose ul.list-lineup-txt {
	margin-top: 1em;
}
#purpose ul.list-lineup-txt>li>a {
	background: transparent;
	padding: 0.5em 1em 0.5em 2em;
}
}
/* Clear + ClearFix */
/* clear */
.clr {
	clear: both;
}
/* clearfix */
.clrFix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .clrFix {
	height: 1%;
}
.clrFix {
	zoom: 100%;
	min-height: 1%;
}
.link-btn {
	display: block;
	border: solid 1px #D9D9D9;
	font-size: 1.8rem;
	padding: 15px;
	font-weight: bold;
	line-height: 1.3;
}
.link-btn:hover {
	background-color: #e5e5e5;
	text-decoration: none;
}
.btn {
	width: 30%;
}
 @media only screen and (max-width: 767px) {
.btn {
	width: 100%;
}
}
/* COCORO MEMBERS登録のご案内 */
#members {
	padding-top: 3rem;
}
#members .link-btn {
	margin-top: 20px;
	position: relative;
	background: #bc0073;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	text-align: center;
}
#members .link-btn:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	display: inline-block;
	font-size: 1.2em;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0.75em;
	margin-top: -0.5em;
	color: #ffffff;
}
#members .link-btn:hover {
	opacity: 0.8;
}
/* メールでのお問い合わせについて */
#mail-inq .text-list {
	margin-bottom: 30px;
}
#mail-inq .text-list li {
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 5px;
}
#mail-inq .bold {
	font-weight: bold;
}
#mail-inq .em {
	color: #ef000e;
}
#mail-inq .businessHours {
	margin-bottom: 30px;
}
#mail-inq .btn {
	margin: auto;
}
#mail-inq .link-btn {
	text-align: center;
}
#mail-inq .link-btn span.text {
	display: block;
	background-image: url(/support/top/images/icon_mail.svg);
	background-size: 33px auto;
	background-position: left 13% center;
	background-repeat: no-repeat;
	padding-left: 70px;
}
#mail-inq .link-btn span.sab {
	font-weight: normal;
	font-size: 1.3rem;
}
 @media only screen and (max-width: 767px) {
#mail-inq .link-btn span.text {
	display: inline-block;
	padding-left: 50px;
	background-position: left center;
}
}
