@charset "UTF-8";

main.fntW400 {
	font-weight: 400;
}

main .fntRed2 {
	color: #E6000D;
}

/* お知らせ */
.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-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: 20px;
	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: 20px !important;
	padding-top: 3rem;
}
}
/* sub-section*/
.sub-section .sub-title {
	padding: 0.2em 0.5em;
	background: #f5f5f5;
	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;
}
}
/* 目的からさがす */
#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.6rem;
}
 @media only screen and (max-width: 767px) {
#mail-inq .link-btn span.text {
	display: inline-block;
	padding-left: 50px;
	background-position: left center;
}
}
/* textLink */
.textLink a {
	color: #000099 !important;
}

.textLink a:hover {
	color: #FF6633 !important;
	text-decoration: none !important;
}

.textLink2 a {
	color: #000099 !important;
	text-decoration: underline !important;
}

.textLink2 a:hover {
	color: #FF6633 !important;
	text-decoration: none !important;
}

.textLink2.dot {
	position: relative;
	padding-left: 1em !important;
	text-indent: 0 !important;
}

.textLink2.dot::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: calc(0.5em - 1.5px);
	top: 0.7em;
	width: 0.1875em;
	height: 0.1875em;
	border-radius: 50%;
	background-color: black;
}

.products-sub-title {
	border: unset;
	padding-left: unset;
	margin-bottom: unset;
}

@media only screen and (width < 768px) {
	.products-sub-title {
		flex-shrink: 0;
		font-size: 2.2rem;
	}
}

/* itemLinkList */
.itemLinkList {
	margin: 20px 0;
}

.itemLinkList ul .linkAr2 {
	margin-right: 1.5em;
}

.itemLinkList .itemLinkBtn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.itemLinkList .itemLinkBtn button {
	width: 190px;
	position: relative;
	padding: 0.5em 2em 0.5em 1em;
	border: 1px solid #7f7f7f;
	border-radius: 0.5rem;
	background: #fff;
	color: #000;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

.itemLinkList .itemLinkBtn button::after {
	position: absolute;
	top: 50%;
	right: 1em;
	display: block;
	content: "\f107";
	transition: transform .5s;
	color: #b01681;
	font-family: "Font Awesome 5 Free";
	font-size: 1em;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%);
}

.itemLinkList .itemLinkBtn button:hover {
	opacity: 0.8;
}

@media print,
screen and (width >=768px) {
	.itemLinkList ul {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
}

@media only screen and (width < 768px) {
	.itemLinkList ul li+li {
		margin-top: 10px;
	}
}

.linkAr2 {
	padding-left: 25px;
	background: url(/trouble_check/div/images/ico_arrow_r.gif) no-repeat 0 8px;
}

.itemLinkList ul .linkAr2 {
	margin-right: 1.5em;
}

.linkAr2 a {
	color: #000099;
	text-decoration: underline;
}

.product-accordion_areaWrap {
	display: grid;
}

.itemLinkList .itemLinkBtn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.itemLinkList .itemLinkBtn button {
	width: 190px;
	position: relative;
	padding: 0.5em 2em 0.5em 1em;
	border: 1px solid #7f7f7f;
	border-radius: 0.5rem;
	background: #fff;
	color: #000;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

.itemLinkList .itemLinkBtn button::after {
	position: absolute;
	top: 50%;
	right: 1em;
	display: block;
	content: "\f107";
	transition: transform .5s;
	color: #b01681;
	font-family: "Font Awesome 5 Free";
	font-size: 1em;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%);
}

/* searchBox.ver02 */
#typeSearch.searchBox.ver02 {
	margin-top: 20px;
}

#typeSearch.searchBox.ver02 label {
	margin-bottom: 0;
}

#typeSearch.searchBox.ver02 .form-hint-text {
	display: block;
	margin-bottom: 5px;
	font-weight: 400;
}

#typeSearch.searchBox.ver02 .formArea {
	background: none;
	padding-left: 0;
	margin-top: 0;
}

#typeSearch.searchBox.ver02 .formArea .fieldBlock {
	display: flex;
	width: 100%;
	max-width: 870px;
}

#typeSearch.searchBox.ver02 .formArea .fieldBlock input[type=text] {
	flex: 1 1 100px;
	box-sizing: border-box;
	padding: 5px;
	border: #000 1px solid;
	border-right: none;
	border-radius: 0;
	box-shadow: none;
	min-width: 0;
}

#typeSearch.searchBox.ver02 .formArea .fieldBlock .btnSearch {
	position: relative;
	float: none;
	flex: 0 0 80px;
	box-sizing: border-box;
	margin-top: 0;
	padding: 0.5rem 0 0.5rem 2rem;
	color: #ffffff;
	border: #444 1px solid;
	border-radius: 0;
	background: #444;
	font-size: 1.3rem;
	min-width: 0;
}

#typeSearch.searchBox.ver02 .formArea .fieldBlock .btnSearch::after {
	position: absolute;
	top: calc(50% - 0.5em);
	left: 0.5em;
	display: block;
	content: "\f002";
	font-family: "Font Awesome 5 Free";
	font-size: 1em;
	font-weight: 900;
	line-height: 1;
}

#typeSearch.searchBox.ver02 #errorText {
	color: #c00000;
	font-size: 0.8em;
}

#typeSearch.searchBox.ver02 a.btn-show-list {
	position: relative;
	display: inline-block;
	width: 200px;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	padding: 1rem 2em 1rem 1em;
	text-decoration: none;
	color: #000;
	border: solid 1px #000;
	border-radius: 999px;
	background: #fff;
	font-size: 1.4rem;
	font-weight: bold;
}

#typeSearch.searchBox.ver02 a.btn-show-list:hover {
	color: #fff;
	background: #535353;
}

#typeSearch.searchBox.ver02 a.btn-show-list::before {
	display: none;
}

#typeSearch.searchBox.ver02 a.btn-show-list::after {
	content: "\f105";
	position: absolute;
	top: 50%;
	right: 10px;
	display: inline-block;
	color: #b01681;
	font-family: "Font Awesome 5 Free";
	font-size: 1.2em;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-46%);
}

@media print,
screen and (width >=768px) {
	#typeSearch.searchBox.ver02 .formArea .fieldBlock {
		width: 80%;
	}

	#typeSearch.searchBox.ver02 .formArea .fieldBlock input[type=text] {
		padding: 12px 8px;
	}

	#typeSearch.searchBox.ver02 .formArea .fieldBlock .btnSearch {
		width: auto;
		padding: 12px 15px 12px 30px;
		font-size: 1.6rem;
	}
}

/* product-accordion */
.product-accordion_areaWrap {
	display: grid;
}

.product-accordion_area {
	display: none;
	overflow-y: hidden;
	animation: expandY .5s ease-out;
}

.product-accordion_area[aria-hidden="true"] {
	/* close NVDA不可 */
	display: none;
}

.product-accordion_area[aria-hidden="false"] {
	/* open NVDA可能 */
	display: flex;
}

@keyframes expandY {
	from {
		max-height: 0;
	}

	to {
		max-height: 100%;
	}
}

@media only screen and (width < 768px) {
	.product-accordion_area[aria-hidden="false"] {
		flex-direction: column;
	}
}
