@charset "utf-8";
/* -------------------------------
PRODUCTS SEARCH
------------------------------- */
#productsSearch {
	padding: 1.5rem;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
#productsSearch dl {
	display: inline-flex;
	flex-wrap: wrap;
}
#productsSearch dl dt {
	margin-right: 0.5rem;
	font-size: 1.8rem;
	font-weight: bold;
}
#productsSearch dl dd {
	flex: 1 0 auto;
}
#productsSearch dl dd .search {}
#productsSearch dl dd .search form {
	display: flex;
	align-items: center;
}
#productsSearch dl dd .search form input.txt {
	width: 100%;
	max-width: 27rem;
	height: 3rem;
	border-radius: 0.5rem;
	border: 1px solid #b2b2b2;
}
#productsSearch dl dd .search form input.btn {
	width: 2.6rem;
	height: 2.6rem;
	border: none;
	background: url(/archives/images/ico_search02.png) no-repeat center center / contain;
	margin-left: 1rem;
	cursor: pointer;
}
/* -------------------------------
CATALOG
------------------------------- */
#catalog {
	margin: 3rem auto;
}
#catalog ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#catalog ul li {
	width: calc((100% - 3rem) / 2);
}
#catalog ul li a {
	border: 2px solid #ccc;
	display: flex;
	flex-wrap: wrap;
	padding: 1.5rem;
	text-decoration: none !important;
	transition: all 0.4s ease;
}
#catalog ul li a:hover {
	text-decoration: underline !important;
	opacity: 0.8;
}
#catalog ul li .pic {
	width: 10rem;
	margin-right: 1.5rem;
}
#catalog ul li .pic img {
	width: 100%;
}
#catalog ul li .txt {
	flex: 1;
}
#catalog ul li .txt h4 {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 1.5rem;
}
/* -------------------------------
SORT
------------------------------- */
#sort {
	display: flex;
	flex-wrap: wrap;
}
#sort .category {
	flex: 1;
	background: #ffeef1;
	padding: 1rem 2rem 2rem;
}
#sort .kana {
	flex: 1;
	background: #cceae7;
	padding: 1rem 2rem 2rem;
}
#sort dl input {
	display: none;
}
#sort dl dt {
	background: #fff;
	font-size: 2.7rem;
	text-align: center;
	height: 6rem;
	line-height: 6rem;
	border-radius: 0.5rem;
	position: relative;
	margin-bottom: 4rem;
}
#sort dl dt::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 6.5px 0 6.5px;
	border-color: #fff transparent transparent transparent;
	left: 50%;
	top: 100%;
}
#sort .category dl dd {
	display: flex;
	justify-content: center;
}
#sort .category dl dd ul {
	display: flex;
	flex-direction: column;
}
#sort .category dl dd ul li {
	width: 100%;
	padding: 0.5rem 1.2rem;
}
#sort .category dl dd ul li a {
	font-size: 1.6rem;
	text-indent: -0.7em;
	display: block;
}
#sort .category dl dd ul li a::before {
	content: "";
	display: inline-block;
	height: 0.4rem;
	width: 0.4rem;
	border-top: 3px solid #ffaab0;
	border-right: 3px solid #ffaab0;
	transform: rotate(45deg);
	margin-right: 0.5rem;
	vertical-align: middle;
	margin-top: -0.2rem;
}
#sort .kana dl dd {
	display: flex;
	justify-content: center;
}
#sort .kana dl dd ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#sort .kana dl dd ul::after {
	content: "";
	display: block;
	padding: 1rem;
	width: 18rem;
}
#sort .kana dl dd ul li {
	padding: 1rem;
	text-align: center;
}
#sort .kana dl dd ul li a {
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 18rem;
	height: 5rem;
	line-height: 5rem;
	position: relative;
	text-align: center;
	background: #fff;
}
#sort .kana dl dd ul li a::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	height: 0.4rem;
	width: 0.4rem;
	border-top: 3px solid #ffaab0;
	border-right: 3px solid #ffaab0;
	transform: rotate(45deg);
	margin-right: 0.5rem;
	vertical-align: middle;
	margin-top: -0.2rem;
}
@media screen and (max-width: 768px) {
	#sort {
		flex-direction: column;
	}
	#sort .category {
		background: #fcd0d7;
		padding: 1rem 1rem 0;
	}
	#sort .kana {
		background: #b7e2de;
		padding: 1rem 1rem 0;
	}
	#sort dl dt {
		height: 4rem;
		line-height: 4rem;
		font-size: 2rem;
		text-align: center;
		position: relative;
		margin-bottom: 1rem;
	}
	#sort dl dt::after {
		display: none;
	}
	#sort dl dt label::after {
		content: "";
		display: block;
		position: absolute;
		border-right: 4px solid #ffaab0;
		border-bottom: 4px solid #ffaab0;
		height: 0.7rem;
		width: 0.7rem;
		top: 50%;
		right: 1rem;
		margin-top: -0.7rem;
		transform: rotate(45deg);
		transition: all 0.4s ease;
	}
	#sort dl input:checked + dt label::after {
		transform: rotate(225deg) translateX(-3.5px)translateY(-4px);
	}
	#sort dl dd {
		height: 0;
		overflow: hidden;
	}
	#sort .category dl dd {
		background: #ffeef1;
	}
	#sort .kana dl dd {
		background: #cceae7;
	}
	#sort dl input:checked + dt + dd {
		height: auto;
		margin: 0 -1rem;
		padding: 2rem 0;
	}
	#sort .kana dl dd ul {
		justify-content: space-between;
	}
	#sort .kana dl dd ul li {
		width: calc(100% / 3);
	}
	#sort .kana dl dd ul::after {
		width: calc(100% / 3);
		padding: 0;
	}
	#sort .kana dl dd ul li a {
		width: 100%;
		height: 4.4rem;
		line-height: 4.4rem;
		font-size: 1.7rem;
	}
}
/* -------------------------------
BRAND
------------------------------- */
#brand {
	padding: 5rem 0 0;
}
#brand ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 3rem calc(14000% / 1200);
}
#brand ul li {
	width: calc((100%/3) - 1.5rem);
	margin-bottom: 3rem;
}
#brand ul li:nth-of-type(3n+2):last-of-type {
	margin-right: calc((100%/3) + 0.8rem);
}
#brand ul li a {
	display: block;
}
#brand ul li a img {
	width: 100%;
}
#brand ul li a:hover {}
@media screen and (max-width: 768px) {
	#brand {
		padding: 1.5rem 0;
	}
	#brand ul {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding: 0;
	}
	#brand ul li {
		width: 24rem;
		max-width: 100%;
		margin-bottom: 1rem;
	}
	#brand ul li:nth-of-type(3n+2):last-of-type {
		width: 24rem;
		max-width: 100%;
		margin-bottom: 1rem;
		margin-right: auto;
		margin-left: auto;
	}
}
/* -------------------------------
NEWS
------------------------------- */
#news {
	background: #efefef;
	margin: 0 -50vw;
}
#news .inn {
	max-width: 120rem;
	padding: 5rem 5rem 4rem;
	margin: 0 auto;
}
#news .inn h2 {
	font-size: 2.7rem;
	text-align: center;
}
#news ul {
	max-width: 90rem;
	width: 100%;
	margin: 4rem auto 0;
}
#news ul li {
	padding: 1rem 3rem;
	line-height: 1.5;
	border-bottom: 1px dashed #898989;
}
#news ul li a {
	text-decoration: none;
	display: flex;
	font-size: 1.7rem;
}
#news ul li a time {
	text-decoration: none;
	margin-right: 2rem;
	font-weight: bold;
}
#news ul li a .txt {
	flex: 1 0 auto;
	text-decoration: underline;
}
#news ul li a:hover .txt {
	text-decoration: none;
}
@media screen and (max-width: 1200px) {
	#news {
		margin: 0;
	}
}
@media screen and (max-width: 768px) {
	#news .inn {
		padding: 3rem 0.5rem 0;
	}
	#news h2 {
		font-size: 2.3rem;
	}
	#news ul {
		margin-top: 2rem;
	}
	#news ul li {
		border-bottom: 1px dashed #898989;
		padding: 1rem;
	}
	#news ul li a, #news ul li span {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	#news ul li time {
		width: auto;
		font-size: 1.1rem;
	}
	#news ul li .txt {
		font-size: 1.3rem;
		margin-top: 0.5rem;
	}
}
/* -------------------------------
INFO
------------------------------- */
#info {}
#info .inn {
	max-width: 120rem;
	padding: 5rem 5rem 4rem;
	margin: 0 auto;
}
#info .inn h2 {
	font-size: 2.7rem;
	text-align: center;
}
#info ul {
	max-width: 90rem;
	width: 100%;
	margin: 4rem auto 0;
}
#info ul li {
	padding: 1rem 3rem;
	line-height: 1.5;
	border-bottom: 1px dashed #898989;
}
#info ul li a {
	text-decoration: none;
	display: flex;
	font-size: 1.7rem;
}
#info ul li a time {
	text-decoration: none;
	margin-right: 2rem;
	font-weight: bold;
}
#info ul li a .txt {
	flex: 1;
	text-decoration: underline;
}
#info ul li a:hover .txt {
	text-decoration: none;
}
#info .link {
	width: 30rem;
	margin: 3rem auto 0;
}
#info .link a {
	width: 100%;
	display: flex;
	border: 1px solid #ccc;
	border-radius: 3px;
	height: 5rem;
	position: relative;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	background: #fff;
}
#info .link a:hover {
	text-decoration: underline;
}
#info .link a p {
	flex: 1 0 auto;
	text-align: center;
	line-height: 1.2;
	padding: 0 0.4rem;
}
#info .link a p span {
	font-size: 1.2rem;
	display: block;
}
#info .link a::after {
	content: "";
	display: inline-block;
	height: 0.4rem;
	width: 0.4rem;
	border-top: 3px solid #ffaab0;
	border-right: 3px solid #ffaab0;
	transform: rotate(45deg);
	margin-right: 0.8rem;
	vertical-align: middle;
	margin-top: -0.2rem;
}
@media screen and (max-width: 768px) {
	#info .inn {
		padding: 3rem 0.5rem 0;
	}
	#info h2 {
		font-size: 2.3rem;
	}
	#info ul {
		margin-top: 2rem;
	}
	#info ul li {
		border-bottom: 1px dashed #898989;
		padding: 1rem;
	}
	#info ul li a, #info ul li span {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	#info ul li time {
		width: auto;
		font-size: 1.1rem;
	}
	#info ul li .txt {
		font-size: 1.3rem;
		margin-top: 0.5rem;
	}
	#info .link {
		margin-top: 2rem;
	}
}
/* -------------------------------
PRODUCTS DETAIL
------------------------------- */
#productDetail #description {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#productDetail #description .pic {
	width: calc(40000% / 850);
}
#productDetail #description .pic img {
	width: 100%;
}
#productDetail #description .txt {
	flex: 1;
}
#productDetail #description .txt #headLink {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 3rem;
}
#productDetail #description .txt #headLink li {
	width: calc(50% - 0.5rem)
}
#productDetail #description .txt #headLink li a {
	font-size: 2rem;
}
@media screen and (max-width: 1200px) {
	#productDetail #description .txt #headLink li a {
		font-size: calc(2000vw / 1200);
	}
}
#productDetail #description .txt #headLink li.brand a {
	width: 100%;
	display: block;
	background: #bfe8e7;
	height: 3.6rem;
	line-height: 3.6rem;
	position: relative;
	text-align: center;
	padding: 0 4rem;
	border-radius: 1.8rem;
	color: #1a6e87;
}
@media screen and (max-width: 1200px) {
	#productDetail #description .txt #headLink li a {
		padding-left: calc(2000vw / 1200) !important;
		padding-right: calc(4000vw / 1200) !important;
	}
}
#productDetail #description .txt #headLink li.brand a::after {
	content: "";
	display: block;
	position: absolute;
	background: url(/themes/products@medical/images/ico_arrow01.png) no-repeat center center / contain;
	width: 2rem;
	height: 2rem;
	right: 1rem;
	top: 50%;
	margin-top: -1rem;
}
#productDetail #description .txt #headLink li.example a {
	width: 100%;
	display: block;
	background: #ffd9e0;
	height: 3.6rem;
	line-height: 3.6rem;
	position: relative;
	text-align: center;
	padding: 0 4rem;
	border-radius: 1.8rem;
	color: #db455e;
}
#productDetail #description .txt #headLink li.example a::after {
	content: "";
	display: block;
	position: absolute;
	background: url(/themes/products@medical/images/ico_arrow02.png) no-repeat center center / contain;
	width: 2rem;
	height: 2rem;
	right: 1rem;
	top: 50%;
	margin-top: -1rem;
}
#productDetail #description .txt #inputArea p {
	font-size: 1.6rem;
	margin-top: 1rem;
}
#productDetail #description .txt #inputArea p.tit {
	font-size: 2.2rem;
	font-weight: bold;
	color: #fca2ad;
	margin-bottom: 2.5rem;
}
#productDetail #description .txt #inputArea ul {
	font-size: 1.6rem;
	margin-top: 1rem;
}
#productDetail #description .txt #inputArea ul li {
	font-size: 1.6rem;
	margin-top: 0.5rem;
	list-style: disc;
	margin-left: 2rem;
}
#productDetail #description .txt #inputArea h4 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-top: 1rem;
}
#productDetail #description .txt #footLink {
	margin-top: 3rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#productDetail #description .txt #footLink li {
	width: calc(50% - 0.5rem);
	margin-bottom: 1rem;
}
#productDetail #description .txt #footLink li a {
	display: flex;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 100%;
	height: 5rem;
	position: relative;
	align-items: center;
	justify-content: space-between;
}
#productDetail #description .txt #footLink li a p {
	flex: 1;
	text-align: center;
	line-height: 1.2;
}
#productDetail #description .txt #footLink li a p span {
	font-size: 1.2rem;
	display: block;
}
#productDetail #description .txt #footLink li a.pdf::before {
	content: "";
	display: inline-block;
	background: url(/archives/images/ico_pdf01.png) no-repeat center center / contain;
	width: 2.4rem;
	height: 2.8rem;
	margin-left: 1rem;
}
#productDetail #description .txt #footLink li a.mov::before {
	content: "";
	display: inline-block;
	background: url(/archives/images/ico_mov01.png) no-repeat center center / contain;
	width: 3.4rem;
	height: 2.4rem;
	margin-left: 1rem;
}
#productDetail #description .txt #footLink li a.mov02::before {
	content: "";
	display: inline-block;
	background: url(/archives/images/ico_mov02.png) no-repeat center center / contain;
	width: 3.4rem;
	height: 2.4rem;
	margin-left: 1rem;
}
#productDetail #description .txt #footLink li a::after {
	content: "";
	display: inline-block;
	height: 0.4rem;
	width: 0.4rem;
	border-top: 3px solid #ffaab0;
	border-right: 3px solid #ffaab0;
	transform: rotate(45deg);
	margin-right: 0.8rem;
	vertical-align: middle;
	margin-top: -0.2rem;
}
#productDetail #description .txt #acecideCaution {}
#productDetail #movie {
	margin-top: 4rem;
	padding: 3rem;
}
#productDetail #movie .movWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem;
	margin-bottom: 3rem;
}
#productDetail #lineup {
	margin-top: 4rem;
}
#productDetail #lineup table {
	width: 100%;
}
#productDetail #lineup table tr {
	border-bottom: 1px solid #e0e0e0;
}
#productDetail #lineup table tr:first-child {
	border-bottom: none;
}
#productDetail #lineup table th {
	background: #ffe6e9;
	font-weight: bold;
	height: 4rem;
	vertical-align: middle;
	text-align: center;
	border-left: 1rem solid #fff;
	border-bottom: 1rem solid #fff;
}
#productDetail #lineup table th:first-child() {
	border-left: none;
	width: 38%;
}
#productDetail #lineup table th:nth-child(2) {
	width: 31%;
}
#productDetail #lineup table th:nth-child(3) {
	width: 31%;
}
#productDetail #lineup table td {
	text-align: center;
	border-bottom: 1px solid #e0e0e0;
	padding: 0.5rem 1rem;
}
#productDetail #lineup table td:first-child {
	text-align: left;
}
#productDetail #hygieneBnr {
	text-align: center;
	margin-top: 40px;
}
#productDetail #hygieneBnr img {
	width: 28rem;
	border: solid 1px #CCC;
}
#productDetail #description .txt .bnr {
	width: 28rem;
	max-width: 90%;
	border: solid 1px #CCC;
	text-align: center;
	margin-top: 3rem;
}
#productDetail #description .txt .bnr img {}
@media screen and (max-width: 768px) {
	#productDetail #description {
		justify-content: flex-start;
		flex-direction: column;
		padding: 0 1.5rem;
	}
	#productDetail #description .pic {
		width: 100%;
	}
	#productDetail #description .txt {
		width: 100%;
		margin-top: 1.5rem;
	}
	#productDetail #description .txt #headLink {
		margin-bottom: 1.5rem;
	}
	#productDetail #description .txt #headLink li {
		width: calc(50% - 0.25rem)
	}
	#productDetail #description .txt #headLink li a {
		font-size: 1.5rem;
	}
	#productDetail #description .txt #headLink li.brand a {
		width: 100%;
		display: block;
		background: #bfe8e7;
		height: 4rem;
		line-height: 4rem;
		position: relative;
		text-align: center;
		padding: 0 3rem;
		border-radius: 2rem;
		color: #1a6e87;
	}
	#productDetail #description .txt #headLink li.brand a::after {
		content: "";
		display: block;
		position: absolute;
		background: url(/themes/products@medical/images/ico_arrow01.png) no-repeat center center / contain;
		width: 1.4rem;
		height: 1.4rem;
		right: 0.5rem;
		top: 50%;
		margin-top: -0.7rem;
	}
	#productDetail #description .txt #headLink li.example a {
		width: 100%;
		display: block;
		background: #ffd9e0;
		height: 4rem;
		line-height: 4rem;
		position: relative;
		text-align: center;
		padding: 0 3rem;
		border-radius: 2rem;
		color: #db455e;
	}
	#productDetail #description .txt #headLink li.example a::after {
		content: "";
		display: block;
		position: absolute;
		background: url(/archives/images/ico_arrow02.png) no-repeat center center / contain;
		width: 1.4rem;
		height: 1.4rem;
		right: 0.5rem;
		top: 50%;
		margin-top: -0.7rem;
	}
	#productDetail #description .txt #inputArea p {
		font-size: 1.4rem;
		margin-top: 0.5rem;
	}
	#productDetail #description .txt #inputArea ul {
		font-size: 1.4rem;
		margin-top: 0.5rem;
	}
	#productDetail #description .txt #inputArea ul li {
		font-size: 1.4rem;
		margin-top: 0.5rem;
	}
	#productDetail #description .txt #inputArea h4 {
		font-size: 1.4rem;
		margin-top: 0.5rem;
	}
	#productDetail #description .txt #footLink {
		margin-top: 2.5rem;
		justify-content: flex-start;
		flex-direction: column;
		align-items: center;
	}
	#productDetail #description .txt #footLink li {
		width: 22rem;
		max-width: 100%;
		margin-bottom: 1rem;
	}
	#productDetail #description .txt #footLink li a {
		display: flex;
		border: 1px solid #ccc;
		border-radius: 3px;
		width: 100%;
		height: 4.5rem;
		position: relative;
		align-items: center;
		justify-content: space-between;
	}
	#productDetail #description .txt #footLink li a p {
		flex: 1 0 auto;
		text-align: center;
		line-height: 1.2;
		font-size: 1.5rem;
	}
	#productDetail #description .txt #footLink li a p span {
		font-size: 1.2rem;
		display: block;
	}
	#productDetail #description .txt #footLink li a.pdf::before {
		content: "";
		display: inline-block;
		background: url(/archives/images/ico_pdf01.png) no-repeat center center / contain;
		width: 2.1rem;
		height: 2.5rem;
		margin-left: 0.5rem;
	}
	#productDetail #description .txt #footLink li a.mov::before {
		content: "";
		display: inline-block;
		background: url(/archives/images/ico_mov01.png) no-repeat center center / contain;
		width: 2.4rem;
		height: 1.7rem;
		margin-left: 0.5rem;
	}
	#productDetail #description .txt #footLink li a::after {
		content: "";
		display: inline-block;
		height: 0.8rem;
		width: 0.8rem;
		border-top: 2px solid #ffaab0;
		border-right: 2px solid #ffaab0;
		transform: rotate(45deg);
		margin-right: 0.8rem;
		vertical-align: middle;
		margin-top: -0.2rem;
	}
	#productDetail #description .txt #acecideCaution {
		font-size: 1.4rem;
	}
	#productDetail #movie {
		margin-top: 4rem;
		padding: 2rem 2.5rem 1.5rem;
	}
	#productDetail #movie .movWrap {
		width: 100%;
		position: relative;
		padding-top: 90.57%;
	}
	#productDetail #movie .movWrap iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
	#productDetail #movie .movWrap .h5_player {
		position: absolute !important;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
	.h5_player .player_main {
		position: absolute !important;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
	.h5_player .video_main {
		width: 100% !important;
		height: 100% !important;
	}
	#productDetail #lineup {
		margin-top: 1.5rem;
	}
	#productDetail #lineup table th {
		font-size: 1.3rem;
		font-weight: bold;
		height: 2.5rem;
		border-left: 1px solid #fff;
		border-bottom: 5px solid #fff;
	}
	#productDetail #lineup table th:first-child {
		border-left: none;
		width: 40%;
	}
	#productDetail #lineup table th:nth-child(2) {
		width: 20%;
	}
	#productDetail #lineup table th:nth-child(3) {
		width: 20%;
	}
	#productDetail #lineup table td {
		text-align: center;
		border-bottom: 1px solid #e0e0e0;
		padding: 0.25rem 0.5rem;
		font-size: 1.3rem;
		vertical-align: middle;
	}
	#productDetail #lineup table td:first-child {
		text-align: left;
	}
	#productDetail #description .txt .bnr {
		margin: 1.5rem auto;
	}
}
/* -------------------------------
LINKS
------------------------------- */
#productDetail .links {
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}
#productDetail .links li {
	min-width: 20rem;
	margin-left: 1rem;
	margin-bottom: 1rem;
}
#productDetail .links li:only-child {
	width: 36rem;
	max-width: 100%;
	margin-left: 0;
}
#productDetail .links li a {
	width: 100%;
	display: flex;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 100%;
	height: 5rem;
	position: relative;
	align-items: center;
	justify-content: space-between;
}
#productDetail .links li a p {
	flex: 1;
	text-align: center;
	line-height: 1.2;
	padding: 0 0.4rem;
}
#productDetail .links li a p span {
	font-size: 1.2rem;
	display: block;
}
#productDetail .links li a.btnPink {
	background: #ffaab0;
	border: 1px solid #ffaab0;
	border-radius: 3px;
	width: 100%;
	height: 5rem;
	position: relative;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	color: #fff;
}
#productDetail .links li a.btnPink p span {
	font-size: 1.4rem;
	color: #fff;
	display: block;
}
#productDetail .links li a.btnPink::after {
	content: "";
	display: inline-block;
	margin-right: 0.5rem;
	height: 0.4rem;
	width: 0.4rem;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
	margin-right: 0.8rem;
	vertical-align: middle;
	margin-top: -0.2rem;
}
#productDetail .links li a.pdf::before {
	content: "";
	display: inline-block;
	background: url(/archives/images/ico_pdf01.png) no-repeat center center / contain;
	width: 2.4rem;
	height: 2.8rem;
	margin-left: 1rem;
}
#productDetail .links li a.mov::before {
	content: "";
	display: inline-block;
	background: url(/archives/images/ico_mov01.png) no-repeat center center / contain;
	width: 3.4rem;
	height: 2.4rem;
	margin-left: 1rem;
}
#productDetail .links li a::after {
	content: "";
	display: inline-block;
	margin-right: 0.5rem;
	height: 0.4rem;
	width: 0.4rem;
	border-top: 3px solid #ffaab0;
	border-right: 3px solid #ffaab0;
	transform: rotate(45deg);
	margin-right: 0.8rem;
	vertical-align: middle;
	margin-top: -0.2rem;
}

#productDetail .action {
	margin-top: 50px;
}
#productDetail .action ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#productDetail .action ul li {
	max-width: 36rem;
	width: 100%;
	margin: 0 1rem;
}
#productDetail .action ul li a {
	display: block;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 100%;
	height: 90px;
	line-height: 90px;
	position: relative;
	text-align: center;
	background: #fff;
	transition: all 0.4s ease ;
	text-decoration: none;
}
#productDetail .action ul li a:hover {
	background: #FFE6E9;
}
#productDetail .action ul li:first-child a {
	padding-left: 40px;
}
#productDetail .action ul li:first-child a::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 10px;
	top: 50%;
	width: 48px;
	height: 36px;
	margin-top: -18px;
	background: url(/themes/products@medical/images/ico_action01.png) no-repeat center center / contain;
}
/*
#productDetail .action ul li:last-child a {
	padding-left: 60px;
}
#productDetail .action ul li:last-child a::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 10px;
	top: 50%;
	width: 78px;
	height: 65px;
	margin-top: -32.5px;
	background: url(/themes/products@medical/images/ico_action02.png) no-repeat center center / contain;
}
*/
@media screen and (max-width: 768px) {
	#productDetail .links {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		margin: 0 1.5rem 1.5rem;
	}
	#productDetail .links li {
		min-width: 0;
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-bottom: 1rem;
	}
	#productDetail .links li a {
		width: 100%;
		display: flex;
		border: 1px solid #ccc;
		border-radius: 3px;
		width: 100%;
		height: 4.4rem;
		line-height: 4.4rem;
		position: relative;
		align-items: center;
		justify-content: space-between;
	}
	#productDetail .links li a::after {
		content: "";
		display: inline-block;
		margin-right: 0.5rem;
		height: 0.8rem;
		width: 0.8rem;
		border-top: 2px solid #ffaab0;
		border-right: 2px solid #ffaab0;
		transform: rotate(45deg);
		margin-right: 0.8rem;
		vertical-align: middle;
	}
	#productDetail .links li a p {
		flex: 1;
		text-align: center;
		line-height: 1.2;
		padding: 0.4rem;
		font-size: 1.5rem;
	}
	#productDetail .action ul {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
	}
	#productDetail .action ul li {
		width: 100%;
		margin: 1.5rem 0 0;
	}
	#productDetail .action ul li a {
		font-size: 1.5rem;
	}
	#productDetail .action ul li:first-child a {
		padding-left: 0;
		padding-top: 20px;
	}
	#productDetail .action ul li:first-child a::before {
		top: 10px;
		left: 50%;
		margin-left: -24px;
		margin-top: 0;
	}
/*	
	#productDetail .action ul li:last-child a {
		padding-left: 0;
		padding-top: 20px;
	}
	#productDetail .action ul li:last-child a::before {
		top: 5px;
		left: 50%;
		width: 78px;
		height: 48px;
		margin-left: -39px;
		margin-top: 0;
	}
*/	
}
/* -------------------------------
ANCHOR
------------------------------- */
#productDetail #anchor {
	margin-top: 2rem;
	margin-bottom: 4rem;
}
#productDetail #anchor .tab {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	border-bottom: 3px solid #ffaab0;
	margin-bottom: 1.5rem;
}
#productDetail #anchor .tab li {
	margin-right: 0.5rem;
}
#productDetail #anchor .tab li a, #brand #anchor .tab li span {
	height: 3.6rem;
	line-height: 3.6rem;
	display: block;
	border-radius: 5px 5px 0 0;
	text-align: center;
	font-size: 1.7rem;
	padding: 0 2rem;
}
#productDetail #anchor .tab li a {
	background: #d3d1d1;
}
#productDetail #anchor .tab li.current a {
	background: #ffaab0;
	text-decoration: none;
	pointer-events: none;
}
#productDetail #anchor .select {
	display: none;
}
@media screen and (max-width: 920px) {
	#productDetail #anchor {
		margin-left: 3.5rem;
		margin-right: 3.5rem;
	}
}
@media screen and (max-width: 768px) {
	#productDetail #anchor {
		margin: 1.5rem;
	}
}
#productDetail .spec {
	margin-top: 4rem;
	padding: 2rem 3rem 3rem;
}
#productDetail .spec dl dt {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 2rem;
	text-align: center;
}
#productDetail .spec dl dd p {
	font-size: 1.6rem;
}
#productDetail .spec dl dd small {
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	#productDetail .spec {
		margin-top: 2rem;
		margin-left: -1.5rem;
		margin-right: -1.5rem;
		padding: 1.5rem;
	}
	#productDetail .spec dl dt {
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 1.5rem;
		text-align: center;
	}
	#productDetail .spec dl dd p {
		font-size: 1.4rem;
	}
	#productDetail .spec dl dd small {
		font-size: 1.2rem;
	}
}
/* モーダルCSS */
.modalArea {
	display: none;
	position: fixed;
	z-index: 200000; /*サイトによってここの数値は調整 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translate3d(0,0,2px);
);
}
.modalBg {
	width: 100%;
	height: 100%;
	background-color: rgba(30, 30, 30, 0.9);
}
.modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 500px;
	padding: 10px 30px;
	background-color: #fff;
}
.closeModal {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	cursor: pointer;
}
.modalContents p  {
	font-weight: bold;
}
.modalContents p span {
	border-bottom:solid;/*下線を点線にする*/
	border-color:#FF0000;
	border-width:2px;
}
/* 以下ボタンスタイル */
button {
	padding: 10px;
	background-color: #fff;
	border: 1px solid #282828;
	border-radius: 2px;
	cursor: pointer;
}
/* Down Load Modal */
.cat-downLoadModal {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 20;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 20px;
}
.cat-downLoadModal__overlay {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.5);
}
.cat-downLoadModal__in {
	position: relative;
	z-index: 2;
	padding: 30px;
	width: 512px;
	box-sizing: border-box;
	background-color: #fff;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}
.cat-downLoadModal__in__del {
	border: 1px solid #707070;
	width: 25px;
	height: 25px;
	position: absolute;
	right: 30px;
	top: 30px;
	box-sizing: border-box;
	cursor: pointer;
}
.cat-downLoadModal__in__del:hover {
	opacity: .8;
}
.cat-downLoadModal__in__del::before, .cat-downLoadModal__in__del::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 80%;
	height: 1px;
	background-color: #707070;
	-webkit-transform-origin: center;
	transform-origin: center;
}
.cat-downLoadModal__in__del::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.cat-downLoadModal__in__del::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.cat-downLoadModal__in__text {
	margin: 0;
	padding-right: 30px;
}
.cat-downLoadModal__in__field {
	margin: 20px 0;
}
.cat-downLoadModal__in__field__block {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.cat-downLoadModal__in__field__block:not(:last-of-type) {
	margin-bottom: 6px;
}
.cat-downLoadModal__in__field__block__title {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 70px;
	flex: 0 0 70px;
}
.cat-downLoadModal__in__field__block__body {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	margin: 0;
	padding-right: 45px;
}
@media only screen and (max-width: 640px) {
	.cat-downLoadModal__in__field__block__body {
		padding-right: 0;
	}
}
.cat-downLoadModal__in__field__block__body__input {
	-webkit-appearance: none;
	appearance: none;
	padding: 10px 15px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #BEBEBE;
	font-size: 16px;
	border-radius: 0;
	background: #fff;
}
.cat-downLoadModal__in__field__block__body--select {
	position: relative;
}
.cat-downLoadModal__in__field__block__body--select::before {
	pointer-events: none;
	font-size: 1.2em;
	font-style: normal;
	font-weight: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #999999;
	position: absolute;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	content: "";
	border-right: 3px solid #BEBEBE;
	border-bottom: 3px solid #BEBEBE;
	height: 1.1rem;
	width: 1.1rem;
	transform: rotate(45deg);
	margin-top: 1.2rem;
	right: 60px;
}
@media only screen and (max-width: 640px) {
	.cat-downLoadModal__in__field__block__body--select::before {
		right: 15px;
	}
}
.cat-downLoadModal__in__field__block__body__select {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	border: 1px solid #BEBEBE;
	border-radius: 0;
	line-height: 1.4;
	padding: 10px 38px 10px 15px;
	box-sizing: border-box;
	width: 100%;
	background: none;
	display: block;
	font-size: 16px;
	color: #333;
}
.cat-downLoadModal__in__field__block__body__select::-ms-expand {
	display: none;
}
.cat-downLoadModal__in__send {
	padding: 0 60px 0 70px;
}
.cat-downLoadModal__in__send__button {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	padding: 12px 15px;
	box-sizing: border-box;
	border: 1px solid #fb929e;
	color: #fff;
	background-color: #fb929e;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.cat-downLoadModal__in__send__button:hover {
	opacity: .8;
}
.cat-downLoadModal__in__send__button.is-disabled {
	pointer-events: none;
	background-color: #e6e6e6;
	border-color: #e6e6e6;
}