@charset "UTF-8";
@import url("refix.css");
/* ******************************************************************

	--style.css--

	1. Style setting
		1-1. FontColor styles
		1-2. Headline styles
		1-3. Form styles

	2. Layout setting
		2-1. Base styles
		2-2. Header styles
		2-3. Navi styles
		2-4. Main styles
		2-5. Vertical Navi styles
		2-6. Footer styles
		2-7. Common styles

****************************************************************** */

/*==================================================================
	1. Style setting
===================================================================*/

/* ------------------------------------------------------------------
	1-1. FontColor styles
-------------------------------------------------------------------*/
html {
	color:#000;
	overflow-x:hidden;
}
a:link, a:visited {
	color:#000;
	text-decoration:none;
}
a:hover, a:active {
	color:#000;
	text-decoration:underline;
}
html {
	background:#FFF;
}
body {
	background:#FFF;
	min-width:1024px;
	overflow-x:hidden;
}
.touchHover, .noTapColor, button {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
#pageContact {
	color:#515151;
}
#pageContact #contents a:link, #pageContact #contents a:visited {
	color:#515151;
	text-decoration:none;
}
#pageContact #contents a:hover, #pageContact #contents a:active {
	color:#515151;
	text-decoration:underline;
}

.headline1::selection {
	background:#333;
	color:#fff;
}

p::selection {
	background:#333;
	color:#fff;
}

/*Firefoxに対応*/
p::-moz-selection {
	background:#333;
	color:#fff;
}
.headline1::-moz-selection {
	background:#333;
	color:#fff;
}

/* ------------------------------------------------------------------
	1-2. Headline styles
-------------------------------------------------------------------*/
.headline1 {
	font-family:Montserrat, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:50px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.headline1 span {
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	display:block;
	font-size:20px;
	color:#9AC92B;
}
.headline2 {
	background:#8ABF23;
	padding:10px 0 8px;
	text-align:center;
}
.headline3 {
	padding-bottom:23px;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:35px;
	font-weight:bold;
	color:#000;
}
.headline4 {
	margin-bottom:17px;
	padding:12px 10px 10px;
	background:#313131;
	text-align:center;
}
.headline5 {
	margin-bottom:18px;
	font-size:23px;
	font-weight:bold;
	color:#000;
}
.headline6 {
	padding:8px 10px;
	background:#9AC92B;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:23px;
	font-weight:bold;
	color:#FFF;
	text-align:center;
}
.headline7 {
	margin-top:-10px;
	padding:38px 53px 34px;
	border:5px solid #87BF0D;
	font-family:Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:44px;
	font-weight:bold;
}
.headline7 span {
	display:block;
	padding:15px 0 0 5px;
	font-size:13px;
	font-weight:normal;
	line-height:1.7em;
}
.headline8 {
	padding:0 0 0 20px;
	background:url(/img/public/icon_deco01.gif) no-repeat 0 4px;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:24px;
	font-weight:bold;
}
.headline9 {
	padding:0 0 13px 28px;
	background:url(/img/public/icon_deco01.gif) no-repeat 5px 2px;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:24px;
	line-height:1;
}
.headline9 span {
	font-size:13px;
	font-weight:normal;
	position:relative;
}
.headline10 {
	padding-bottom: 44px;
	font-size:30px;
	font-weight: bold;
	text-align: center;
}
.headline11 {
	padding:11px 20px;
	background: #87BF0D;
	font-size:20px;
	font-weight:bold;
	color: #fff;
}

/* ------------------------------------------------------------------
	1-3. Form styles
-------------------------------------------------------------------*/
select, textarea, input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"] {
	height:41px;
	padding:10px 12px;
	border:1px solid #EEE;
	background:#EEE;
	font-size:14px;
	-webkit-transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-shadow:none;
	-webkit-appearance:none;
}
input[type="checkbox"] {
	margin:0;
	padding:0;
}
textarea {
	padding-top:15px;
	resize:none;
	line-height:1.2;
}
select {
	color:#9A9A9A;
	cursor:pointer;
	padding-right:5px;
}
select:hover, select:active {
	background:#FFF;
	color:#000;
}
select option {
	background:#EBEBEB;
	color:#9A9A9A;
}
select option:focus, select option:hover, select option:checked {
	background:#FFF;
	color:#000;
}
input:hover, textarea:hover, input.input-focus, textarea.input-focus {
	outline:none;
	border:1px solid #DBDBDB;
	background:#FFF;
}
::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
 color:#B4B4B4;
 opacity:1;
}
:-moz-placeholder, textarea:-moz-placeholder {
 color:#B4B4B4;
 opacity:1;
}
::-moz-placeholder, textarea::-moz-placeholder {
 color:#B4B4B4;
 opacity:1;
}
:-ms-input-placeholder, textarea:-ms-input-placeholder {
 color:#B4B4B4 !important;
 opacity:1 !important;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
 color:#CCC;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
 color:#CCC;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
 color:#CCC;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
 color:#CCC !important;
}
input.size01 {
	width:221px;
}
input.size02 {
	width:211px;
}
input.size03 {
	width:601px;
}
input.size04 {
	width:121px;
}
input.size05 {
	width:361px;
}
input.size06 {
	width:118px;
}
textarea.size01 {
	height:147px;
	width:601px;
}
.selectOption .select-transform-wrapper,
.ipadStyle select {
	width:211px !important;
}
/* JTransform */
.select-transform-wrapper {
	position:relative;
	height:41px;
	border:1px solid #EEE;
	background:#EEE url(/img/public/icon_arrow03.png) no-repeat 93% 50%;
	-webkit-transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	font-size:14px;
}
.ipadStyle select {
	background:#EEE url(/img/public/icon_arrow03.png) no-repeat 93% 50%;
	-webkit-transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
.select-transform-wrapper.hover {
	border:1px solid #EEE;
	background:#FFF url(/img/public/icon_arrow03.png) no-repeat 93% 50%;
}
.select-transform-label {
	padding:0 26px 0 13px;
	display:block;
	height:41px;
	line-height:38px;
	overflow:hidden;
	cursor:pointer;
}
.select-transform-blind {
	display:block;
	position:fixed;
	left:-9999px;
	top:-9999px;
}
.select-transform-mobile-blind {
	position:absolute;
	top:0;
	z-index:9999;
	opacity:0;
}
.select-transform-option {
	position:absolute;
	top:40px;
	left:-1px;
	display:block;
	height:0;
	overflow:hidden;
}
.select-transform-option ul {
	width:209px !important;
	background:#FFF;
	border:1px solid #EBEBEB;
	border-top:none;
	width:100%;
	position:relative;
	height:86%;
	overflow:hidden;
	overflow-y:auto;
}
.select-transform-option li {
	margin:0!important;
}
.select-transform-option a {
	display:block;
	height:26px;
	padding-left:10px;
	line-height:26px;
	text-decoration:none;
	color:#333;
}
.ipadStyle select {
	color:#A9A9A9;
}
.ipadStyle select.selected {
	color:#000;
}
.select-transform-option a.active {
	background:#F1F1F1;
	color:#4d4d4d;
}
.select-transform-option a:hover {
	background:#EAEAEA;
	color:#4d4d4d;
}
.cbCustomHidden {
	position:fixed;
	left:-9999px;
	top:-9999px;
}
.cbCustom label {
	margin-right:20px;
}
.cbCustomCheckbox {
	display:inline-block;
	float:left;
	width:20px;
	height:20px;
	margin:0 9px 0 0px;
	background:url(/img/public/icon_checkbox01.png) no-repeat 0 0;
	vertical-align:middle;
}
.cbCustomCheckbox.checked {
	background:url(/img/public/icon_checkbox02.png) no-repeat 0 0;
}
.cbCustomRadio {
	display:inline-block;
	float:left;
	width:20px;
	height:20px;
	margin:0 9px 0 0px;
	background:url(/img/public/icon_radio01.png) no-repeat 0 0;
	vertical-align:middle;
}
.cbCustomRadio.checked {
	background:url(/img/public/icon_radio02.png) no-repeat 0 0;
}
label {
	cursor:pointer;
}
.error {
	background-color:#FFD3C3;
	margin:0 auto 10px;
	padding:8px 0;
}
.error li {
	background:#FFD3C3 url(/img/public/icon_error.gif) no-repeat 10px 0.35em;
	color:#F00;
	padding-left:25px;
}
.error input,
.error textarea,
.error select {
	background-color:#FFD3C3;
}
.mutiChoose .mutiField {
	float:left;
	padding:0 10px 0 0;
}
.mutiChoose .selectOption {
	float:left;
}
.mutiChoose .selectOption .select-transform-wrapper {
	background-position:85% 50%;
	width:80px !important;
}
.mutiChoose .select-transform-option ul {
	width:78px !important;
}

/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Base styles
-------------------------------------------------------------------*/
#contents {
	clear:both;
	margin:13px auto 0;
}

/* ------------------------------------------------------------------
	2-2. Header styles
-------------------------------------------------------------------*/
#headerSection {
	position:relative;
	width:100%;
	/*min-width:1272px;*/
	background-color:#FFF;
}
#header .headerInner {
	overflow:hidden;
	position:relative;
	z-index:999999;
	background-color:#FFF;
}
.hSection {
	margin: 0 auto;
    overflow: hidden;
	padding:19px 0 13px;
    position: relative;
    width: 960px;
}
#logo {
	float:left;
	width:auto;
}
.naviLink {
	float:right;
	width:auto;
	padding-top:26px;
}
.naviLink li {
	float:left;
	padding-left:19px;
}
.naviLink li a {
	background:url(/img/public/icon_arrow01.gif) no-repeat 0 50%;
	padding-left:7px;
	color:#505050;
	font-size:12px;
}
#header > nav {
	width:100%;
	position:relative;
	z-index:9002;
	/*margin:0 0 0 -480px;
	padding:0 50%;*/
	margin:0 auto;
}
#header > i {
	display:none;
}
#header > .mask {
	display:none;
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:9000;
	background:#ffffff;
	opacity:0;
}
#header > .background {
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	z-index:9001;
	background:#FFF;
}
#navBox {
	height:54px;
}
#navi .sub {
	left:0;
    min-width:960px;
    position:absolute;
    width:100%;
    z-index:96;
	display:none;
	top:100%;
	behavior:url(/htc/PIE.php);
}
#navi .section {
	background:#fff;
	border-top:2px solid #8bc23f;
    padding:38px 0 32px;
    text-align:center;
    width:100%;
	-moz-box-shadow:0 4px 4px #707071;
    -webkit-box-shadow:0 4px 4px #707071;
    box-shadow:0 4px 4px #707071;
	behavior:url(/htc/PIE.php);
	z-index:9999;
}
.biggerLinkList .hover {
	cursor:pointer;
}
#navi li ul li {
	float:left;
	width:auto!important;
}
#navi li ul a {
	background:none;
	height:auto;
	background:none;
	text-indent:inherit;
	width:auto;
}
#navi .sub-menu {
	width:960px;
	margin-left:auto;
	margin-right:auto;
	background:#FFF;
}
#navi .sub-menu li {
	float:left;
}
#navi .sub-menu .borderLeft {
	background:url(/img/public/bg_border01.png) repeat-y 0 0!important;
}
#navi .sub-menu li div {
	width:180px!important;
	padding:0 30px!important;
	background:url(/img/public/bg_border01.png) repeat-y 100% 0!important;
}
#navi .sub-menu li .w134 {
	width:134px!important;
	padding:0 29px!important;
}
#navi .sub-menu li div span {
	display:block!important;
	margin-top:5px!important;
	text-align:left!important;
}
#navi .sub-menu li div span a {
	display:inline-block!important;
	padding-left:15px!important;
	background:url(/img/public/icon_arrow38.png) no-repeat 0 5px!important;
	color:#505050!important;
	font-size:15px!important;
}
#navi .sub-menu li div form {
	text-align:left!important;
}
#navi .sub-menu li div #keyword {
	width:100%!important;
	height:29px!important;
	border:1px solid #DDD!important;
	background:#EBEBEB!important;
}
#navi .sub-menu li div .buttonSearch {
	margin-top:9px!important;
	padding:9px 12px 6px 14px!important;
	background:#3C3C3C!important;
	border:none!important;
	color:#FFF!important;
	font-weight:bold!important;
	cursor:pointer!important;
}
#navi .sub-menu li div .naviTitle {
	margin:22px 0!important;
	padding:0;
	text-align:left!important;
}
#navi .sub-menu li div .naviTitle img,
#navi .sub-menu li div .naviTitle span {
	display:inline-block!important;
	margin:0 6px 0 0!important;
	vertical-align:middle!important;
}
#navi .sub-menu li div .naviTitle span {
	font-size:15px!important;
}
#navi .sub-menu li div .gloveList {
	width:auto;
}
#navi .sub-menu li div .gloveList li {
	float:none!important;
	margin-bottom:13px!important;
	padding-left:6px!important;
	text-align:left!important;
}
#navi .sub-menu li div .gloveList li a {
	padding-left:12px!important;
	background:url(/img/public/icon_arrow39.png) no-repeat 0 50%!important;
	color:#505050!important;
	font-size:14px!important;
	width:auto;
}
#navi .sub-menu li div .gloveList01 li a {
	background:url(/img/public/icon_arrow40.png) no-repeat 0 50%!important;
	width:auto;
}
#navi .sub-menu li div .gloveList02 li a {
	background:url(/img/public/icon_arrow41.png) no-repeat 0 50%!important;
	width:auto;
}
#navi .sub-menu li div .medicalNavLink {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
#navi .sub-menu li div .medicalNavLink p {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 125px;
}
#navi .sub-menu li div .medicalNavLink .iconSearch {
	width: 21px;
	height: 21px;
	padding-left: 5px;
}

#navi .sub-menu li div .medicalNavLink .iconArrow {
	width: 7px;
	height: 11px;
}

#navi .sub-menu li div .medicalNavLink span {
	font-size: 15px !important;
}
#navi .sub-menu li div hr {
	margin: 20px 0 35px;
	border: 1px solid #eeeeee;
}
#navi #naviContact ul a.hover:hover,
#navi #naviContact ul a.hover {
	width:auto;
	background:none;
	background-position:0 0!important;
}
#container {
	min-width:1024px;
	overflow-x:hidden;
}
@media screen and (max-width:1024px) {
	html {
		overflow-x:auto;
	}
}

/* ------------------------------------------------------------------
	2-3. Navi styles
-------------------------------------------------------------------*/
#navi {
	position:relative;
	clear:both;
	background:#000;
}
header #navi {
	width:100%;
	z-index:99;
	-moz-box-shadow:0px 1px 2px #000;
	-webkit-box-shadow:0px 1px 2px #000;
	-o-box-shadow:0px 1px 2px #000;
	box-shadow:0px 1px 2px #000;
	behavior:url(/htc/PIE.php);
}
#navi ul {
	width:960px;
	margin:0 auto;
}
#navi li {
	float:left;
	z-index:99999;
}
#navi li a {
	display:block;
	overflow:hidden;
	width:191px;
	height:54px;
	background:url(/img/public/navi.gif) no-repeat;
	text-indent:-9999px;
	position:relative;
	z-index:99;
}
#navi #naviHome a {
	background-position:0 0;
}
#navi #naviHome a:hover {
	background-position:0 -54px;
}
#navi #naviGlove a {
	background-position:-191px 0;
}
#navi #naviGlove a:hover {
	background-position:-191px -54px;
}
#navi #naviCorporation a {
	width:191px;
	background-position:-382px 0;
}
#navi #naviCorporation a:hover {
	width:191px;
	background-position:-382px -54px;
}
#navi #naviInformation a {
	width:192px;
	background-position:-573px 0;
}
#navi #naviInformation a:hover {
	width:192px;
	background-position:-573px -54px;
}
#navi #naviContact a {
	width:195px;
	background-position:-765px 0;
}
#navi #naviContact a:hover {
	width:195px;
	background-position:-765px -54px;
}
#navi #naviInformation .sub-menu img {
	max-height:90px;
	max-width:180px;
}
/**** right linkList****/
#companyNav {
	position:fixed;
	right:28px;
	top:50%;
	z-index:10;
}
#companyNav li {
	padding-bottom:2px;
	text-align:right;
}
#companyNav a {
	display:inline-block;
}
#companyNav a span {
	display:inline-block;
	float:right;
	transform:scale(0.6);
}
#companyNav .dotNav {
	position:relative;
	top:6px;
	width:12px;
	height:12px;
	background-color:#707070;
	border-radius:50%;
}
#companyNav .labelNav {
	position:relative;
	margin-right:2px;
	padding:0.4em 0.5em 0.2em;
	color:#ec008d;
	font-size:0.775rem;
	filter:alpha(opacity=0);
	opacity:0;
}
#companyNav a:hover .dotNav,
#companyNav a.active .dotNav {
	background-color:#ec008d;
}
#companyNav a:hover .labelNav,
#companyNav a.active .labelNav {
	filter:alpha(opacity=100);
	opacity:1;
}
#companyNav a.active span,
#companyNav a:hover span {
	transform:scale(1);
}

/* ------------------------------------------------------------------
	2-4. Main styles
-------------------------------------------------------------------*/
#main {
	background:url(/img/public/bg_transparent.png) repeat-x 0 0;
	min-height:100% !important;
	width:100%;
}
#main .mainSection {
	background:url(/img/public/bg_square.png) repeat 0 0;
	padding-top:1px;
}
#main .mainContent {
	background:#FFF;
	margin:0 auto;
	width:960px;
}
.headBox {
	position:relative;
	z-index:10;
	background:#FFF;
	padding:61px 0 85px;
	border-bottom:1px solid #F1F1F1;
}
.headBox01 {
	padding:61px 0 30px;
}
.headText {
	padding-top:13px;
	font-size:14px;
	line-height:1.55;
	text-align:center;
}
/* Breadcrumbs styles */
.breadcrumbs {
	background:#E9E9E9;
	padding:7px 0 6px 11px;
	font-size:10px;
	color:#515151;
}
.breadcrumbs ol {
	margin:0 auto;
	width:960px;
}
.breadcrumbs li {
	display:inline;
}
.breadcrumbs a:link, .breadcrumbs a:visited {
	background:url(/img/public/icon_breadcrumbs.gif) no-repeat 100% 50%;
	color:#515151;
	font-size:10px;
	margin-right:10px;
	padding-right:18px;
	text-decoration:underline;
}
.breadcrumbs a:hover {
	text-decoration:none;
}
/* ------------------------------------------------------------------
	2-5. Vertical Navi styles
-------------------------------------------------------------------*/
#verticalNav {
	position:fixed;
	right:28px;
	top:50%;
	bottom:auto;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
	z-index:1;
}
#verticalNav li {
	text-align:right;
}
#verticalNav a {
	display:inline-block;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
#verticalNav a span {
	float:right;
	display:inline-block;
	-webkit-transform:scale(0.6);
	-moz-transform:scale(0.6);
	-ms-transform:scale(0.6);
	-o-transform:scale(0.6);
	transform:scale(0.6);
}
#verticalNav a.selected span,
#verticalNav a:hover span {
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
#verticalNav a.selected .labelNav,
#verticalNav a:hover .labelNav {
	filter:alpha(opacity=100);
	opacity:1;
}
#verticalNav a:hover .dotNav,
#verticalNav a.selected .dotNav {
	background-color:#EC008D;
}
#verticalNav .dotNav {
	position:relative;
	top:8px;
	height:12px;
	width:12px;
	border-radius:50%;
	background-color:#707070;
	-webkit-transition:-webkit-transform 0.2s, background-color 0.6s;
	-moz-transition:-moz-transform 0.2s, background-color 0.6s;
	transition:transform 0.2s, background-color 0.6s;
	-webkit-transform-origin:50% 50%;
	-moz-transform-origin:50% 50%;
	-ms-transform-origin:50% 50%;
	-o-transform-origin:50% 50%;
	transform-origin:50% 50%;
}
#verticalNav .labelNav {
	position:relative;
	margin-right:10px;
	padding:.32em .5em 0.08em;
	color:#ec008d;
	font-size:14px;
	font-size:0.875rem;
	-webkit-transition:-webkit-transform 0.3s, opacity 0.3s;
	-moz-transition:-moz-transform 0.3s, opacity 0.3s;
	transition:transform 0.3s, opacity 0.3s;
	filter:alpha(opacity=0);
	opacity:0;
	-webkit-transform-origin:100% 50%;
	-moz-transform-origin:100% 50%;
	-ms-transform-origin:100% 50%;
	-o-transform-origin:100% 50%;
	transform-origin:100% 50%;
}
/* ------------------------------------------------------------------
	2-6. Footer styles
-------------------------------------------------------------------*/
#footer {
	clear:both;
}
#footer .inner {
	position:relative;
	margin:0 auto;
	width:964px;
}
.pageTop {
	position:absolute;
	right:-119px;
	bottom:13px;
}
@media screen and (max-width:1205px) {
	.pageTop {
		position:absolute;
		right:15px;
		bottom:13px;
	}
}
#copyright {
	padding-top:4px;
	color:#505050;
	font-size:12px;
}
.fInfo {
	background:#000;
	padding:23px 0 24px;
	text-align:center;
}
.fNav {
	background:#FFF;
	padding:13px 0 15px;
	text-align:center;
}
.fNav > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}
.fNav li {
	width: max-content;
}

.fNav li a {
	background:url(/img/public/icon_arrow01.gif) no-repeat 0 7px;
	padding-left: 8px;
	color:#505050;
}
*:first-child + html .fNav li {
	display:inline;
}
.fLink {
	padding:32px 0 31px;
	background:#8BBF0D;
	color:#FFF;
}
.fLink .inner {
	position:relative;
}
.fLink .nav li.fLinkBlock {
	float:left;
	width:160px;
	height:auto;
	margin-right:37px;
}
.fLinkCaption {
	border-bottom:3px solid #FFF;
	padding:0 0 6px 4px;
	font-size:15px;
	font-weight:bold;
}
.fLink .fLinkContent li {
	display:block;
	border-bottom:1px solid #FFF;
	padding:10px 0 4px 6px;
	font-size:12px;
}
.fLink .fLinkContent li a {
	display:block;
	color:#FFF;
	padding:0 0 6px 8px;
	background:url(/img/public/icon_arrow02.png) no-repeat 0 7px;
	line-height:1.5;
}
.fLink .nav li.lastNav {
	margin-right:0;
}
.fLink .nav dl.subLink dt {
	font-weight:bold;
	font-size:12px;
	padding:11px 0 5px 4px;
}
.fLink .nav dl.subLink ul li {
	padding:2px 0 0 6px;
}
.fLink .nav dl.subLink ul li a {
	padding:0 0 6px 8px;
	background:url(/img/public/icon_arrow02.png) no-repeat 0 7px;
	line-height:1.5;
	color:#FFF;
	display:block;
}
.fLink .nav dl.subLink dd {
	border-bottom:1px solid #FFF;
	padding:0 0 7px 0;
}
.fLink .nav .border a {
	border-bottom:1px solid #FFF;
	padding-bottom: 7px !important;
}

.fLink .nav .infoLink a {
	color:#fff;
	display:block;
	font-weight:bold;
	font-size:12px;
	padding:11px 0 5px 4px;
}
/* ------------------------------------------------------------------
	2-7. Common styles
-------------------------------------------------------------------*/
/*--Button styles --*/
button {
	background:none;
	padding:0;
	border:none;
	cursor:pointer;
}
.buttonRipple {
	display:inline-block;
	padding:19px 22px 20px 24px;
	background-color:#FFF;
	border:3px solid #515151;
	position:relative;
	overflow:hidden;
	min-width:289px;
	text-align:center;
	text-decoration:none !important;
	transition:background-color 0.35s ease 0s, color 0.35s ease 0s;
}
.buttonRipple:hover,
.buttonActive {
	background:#515151;
	color:#FFF;
	text-decoration:none;
}
a.buttonRipple {
	min-width:237px;
}
.buttonRipple span {
	padding-left:17px;
	font-size:16px;
	font-weight:bold;
	color:#000;
	background:url(/img/public/icon_arrow31.png) no-repeat 0 5px;
}
.buttonBlack01,
.buttonBlack02 {
	border-color:#000;
}
.buttonBlack01:hover,
.buttonBlack02:hover,
.buttonActive {
	background-color:#000;
}
.buttonBlack01 span,
.buttonBlack02 span {
	background:url(/img/public/icon_arrow35.png) no-repeat 0 5px;
}
.buttonRipple:hover span,
.buttonActive span {
	color:#FFF;
	background:url(/img/public/icon_arrow32.png) no-repeat 0 5px;
}
.buttonRipple:hover span:after {
	border-color:#FFF;
}
.buttonRipple.smallButton {
	min-width:inherit;
}
.buttonPink {
	border-color:#F38AB4;
}
.buttonPink2 {
	border-color:#CA4165;
}
.buttonPink:hover {
	background:#F38AB4;
	color:#FFF;
}
.buttonPink2:hover {
	background:#CA4165;
}
.buttonPink span {
	color:#F38AB4;
	background:url(/img/public/icon_arrow33.png) no-repeat 0 5px;
}
.buttonPink2 span {
	color:#CA4165;
	background:url(/img/public/icon_arrow34.png) no-repeat 0 5px;
}
.buttonReset {
	padding:10px 0;
	min-width:130px !important;
	border:2px solid #000;
	font-size:15px !important;
	font-weight:normal!important;
}
.buttonReset {
	display:inline-block;
	width:130px;
	border:2px solid #000;
	padding:10px 0 10px 0;
	font-size:15px;
	background:#FFF;
	transition:background-color 0.35s ease 0s, color 0.35s ease 0s;
}
.buttonReset:hover {
	background:#000;
	color:#FFF;
	text-decoration:none;
}
.buttonReset span {
	background:url(/img/public/icon_arrow35.png) no-repeat 0 4px;
	padding:0 0 0 17px;
}
.buttonReset:hover span {
	color:#FFF;
	background:url(/img/public/icon_arrow32.png) no-repeat 0 4px;
}
.buttonList {
	text-align:center;
}
.buttonList li {
	display:inline-block;
	margin:0 7px;
}
.btnSearch {
	margin:4px;
	padding:7px 9px;
	min-width:80px;
	background:#5E5E5E;
	border:none;
	color:#FFF;
}
.btnSearch:hover {
	border:none;
	color:#FFF;
	background:#5E5E5E;
	cursor:pointer;
	opacity:0.7;
	filter:alpha(opacity=70);
}
.step {
	padding:29px 40px 61px 42px;
}
.step .intro {
	padding:0 9px 32px 7px;
}
.step .caption {
	float:left;
	width:765px;
	font-size:14px;
	line-height:1.4;
}
.step .text {
	float:right;
	text-align:right;
}
.step .text a {
	display:block;
	padding:2px 0 0 8px;
	text-align:center;
	text-decoration:underline;
}
.step .text a:hover {
	text-decoration:none;
}
.stepList {
	margin-bottom:16px;
}
.tableForm {
	margin-bottom:54px;
	width:100%;
}
.tableForm p {
	padding:2px 5px 0 6px;
	font-size:14px;
}
.tableForm th, .tableForm td {
	padding:14px 10px 0 3px;
	vertical-align:middle;
}
.tableForm th {
	width:196px;
	padding:16px 10px 5px;
	text-align:right;
}
.tableForm th .required {
	display:block;
	margin:4px 2px 0 0;
	padding:0;
}
.tableForm th .required span {
	background:#CC0001;
	color:#FFF;
	padding:0 5px 1px;
	font-size:11px;
}
.tableForm th label {
	margin:0;
}
.tableForm .colForm th, .tableForm .colForm td {
	padding-top:27px;
	padding-bottom:20px;
}
.tableForm .colForm01 th, .tableForm .colForm01 td {
	padding-top:39px;
	padding-bottom:8px;
}
.tableForm .colForm02 th, .tableForm .colForm02 td {
	padding-top:20px;
	padding-bottom:8px;
}
.radioList li {
	display:table-cell;
	vertical-align:middle;
}
.radioList li .labelM {
	margin:0 20px 0 0;
}
*:first-child + html .radioList li {
	display:inline;
}
.checkboxList li {
	display:table-cell;
	vertical-align:middle;
}
.checkboxList li .labelM {
	margin:0 14px 0 0;
}
*:first-child + html .checkboxList li {
	display:inline;
}
.linkText {
	padding-bottom:27px;
	text-align:center;
}
.linkText a {
	font-size:14px;
	text-decoration:underline !important;
}
.linkText a:hover {
	text-decoration:none !important;
}
.imageFull img {
	max-height:300px;
}
#contents.contents {
	width:960px;
	margin:32px auto 54px;
}
#contents.contents #main {
	width:721px;
	float:right;
	min-height:100% !important;
	background:#FFF;
	border:none;
}
#contents.contents #side {
	float:left;
	width:220px;
	padding-bottom:9px;
	border:1px solid #D6D6D6;
}
#contents.contents #side h4 {
	padding:16px 10px 14px;
	background:#58585B;
}
#contents.contents #side .sideInner {
	padding:13px 18px 7px 15px;
}
#contents.contents #side .sideInner h5 {
	margin-bottom:12px;
	padding-bottom:3px;
	border-bottom:1px solid #8F8F8E;
}
#contents.contents #side .typeList li {
	position:relative;
	padding-bottom:15px;
}
#side .typeList li .tips {
	position:relative;
}
#side .typeList li .tips .question {
	position:absolute;
	right:1px;
}
#side .typeList li .tooltip {
	position:absolute;
	bottom:7px;
	left:72px;
	z-index:10;
	width:390px;
	padding:13px;
	border:3px solid #FFF;
	border-radius:5px;
	background-color:#8dc012;
	-webkit-box-shadow:0 2px 2px 0 #CCC;
	box-shadow:0 2px 2px 0 #CCC;
	color:#FFF;
	font-size:13px;
	line-height:1.6;
	display:none;
}
#side .typeList li .tooltip:after {
	display:block;
	content:'';
	background:url(/img/public/icon_arrow26.png) no-repeat 10% 100%;
	position:absolute;
	width:28px;
	height:17px;
	bottom:-17px;
	left:88px;
}
#side .typeList li .tooltip .imgTip {
	width:77px;
	margin-right:20px;
}
#side .typeList li .tooltip .titleTip {
	padding-bottom:5px;
	color:#000;
	font-size:21px;
	font-weight:bold;
	line-height:1.3;
}
#contents.contents #side .typeList li.typeLast {
	padding-bottom:0;
}
#contents.contents #side .typeList li p.typeTitle {
	float:left;
	margin-bottom:8px;
	padding:0 20px 0 18px;
	text-indent:-18px;
}
#contents.contents #side .typeList li p.typeTitle span {
	padding-left:18px;
	background:url(/img/public/icon_arrow04.gif) no-repeat 0 2px;
	color:#000;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}
#contents.contents #side .typeList li p.typeTitle01 span {
	background:url(/img/public/icon_arrow07.gif) no-repeat 0 2px;
}
#contents.contents #side .typeList li p.typeTitle02 span {
	background:url(/img/public/icon_arrow10.gif) no-repeat 0 2px;
}
#contents.contents #side .typeList li p.typeTitle a:hover {
	color:#A3A3A3;
	text-decoration:none;
}
#contents.contents #side .boxText {
	clear:both;
	width:165px;
	margin-left:1px;
	padding:10px 10px 0;
	background:#F2F2F2;
	color:#000;
}
#contents.contents #side .boxText ul li {
	padding-bottom:9px;
}
#contents.contents #side .boxText ul li span {
	display:block;
	padding:2px 0 0 26px;
	font-size:10px;
}
#contents.contents #side .boxText ul li label {
	margin-right: 0;
}
#contents.contents #side .boxText ul li .cbCustomCheckbox {
	margin-right: 6px;
}
#contents.contents #side .cbCustomCheckbox {
	display:inline-block;
	float:left;
	width:15px;
	height:15px;
	margin:1px 12px 0 0;
	background:url(/img/public/icon_checkbox03.gif) no-repeat 0 0;
	vertical-align:middle;
}
#contents.contents #side .cbCustomCheckbox.checked {
	background:url(/img/public/icon_checkbox04.gif) no-repeat 0 0;
}
#contents.contents #side .boxText .colorList {
	margin-right:-14px;
	padding:2px 0 7px 3px;
}
#contents.contents #side .boxText .colorList li {
	float:left;
	position:relative;
	height:19px;
	width:26px;
	padding-bottom:0 !important;
	margin:0 7px 6px 0;
}
#contents.contents #side .boxText .colorList li a {
	display:block;
	height:19px;
	width:26px;
	cursor:pointer;
	padding:1px;
}
#contents.contents #side .boxText .colorList li a.selected {
	background:#FF0000;
}
#contents.contents #side .boxText .colorList span {
	display:none;
	position:absolute;
	z-index:5;
	top:-27px;
	left:50%;
	min-width:50px;
	margin-left:-24px;
	padding:5px 0;
	background:#FFF;
	border:1px solid #CCC;
	text-align:center;
	color:#505050;
	border-radius:2px;
}
#contents.contents #side .boxText .colorList span:after,
#contents.contents #side .boxText .colorList span:before {
	top:100%;
	left:50%;
	border:solid transparent;
	content:" ";
	height:0;
	width:0;
	position:absolute;
	pointer-events:none;
}
#contents.contents #side .boxText .colorList span:after {
	border-color:rgba(255, 255, 255, 0);
	border-top-color:#FFF;
	border-width:3px;
	margin-left:-3px;
}
#contents.contents #side .boxText .colorList span:before {
	border-color:rgba(204, 204, 204, 0);
	border-top-color:#CCC;
	border-width:4px;
	margin-left:-4px;
}
.headBlock {
	background:#E782A9;
}
.headBlock01 {
	background:#FA9906;
}
.headBlock02 {
	background:#F12D14;
}
.headBlock04 {
	background:#1f94d3;
}
.headBlock .headInner {
	width:960px;
	margin:0 auto;
	padding:27px 0 12px;
}
.headBlock .headInner .headline1 {
	float:left;
	width:600px;
	padding:9px 0 9px;
	text-align:left;
}
.headBlock .headInner .headline1 img.searchImage {
	display:inline-block;
	width:50px;
	padding:14px 11px 0 0;
	vertical-align:top;
}
.headBlock .headInner .headline1 span {
	display:inline-block;
	color:#FFF;
	font-family:Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:16px;
	font-weight:bold;
	vertical-align:top;
}
.headBlock .headInner .headline1 span em {
	display:block;
	font-size:36px;
	font-weight:bold;
}
.headBlock .glovesList {
	float:right;
	width:192px;
	margin-right:2px;
}
.headBlock .glovesList li {
	margin-bottom:10px;
}
.headBlock .glovesList li .buttonPink01 {
	padding:10px 3px 10px 0;
	background:#E782A9;
	border:3px solid #FFF;
	text-decoration:none;
	min-width:183px;
}
.headBlock .glovesList li .buttonPink01:hover {
	background:#CF7497;
}
.headBlock .glovesList li .buttonOrange01 {
	padding:10px 3px 10px 0;
	background:#FA9906;
	border:3px solid #FFF;
	text-decoration:none;
	min-width:183px;
}
.headBlock .glovesList li .buttonOrange01:hover {
	background-color:#ED9005;
}
.headBlock .glovesList li .buttonRed01 {
	padding:10px 3px 10px 0;
	background:#F12D14;
	border:3px solid #FFF;
	text-decoration:none;
	min-width:183px;
}
.headBlock .glovesList li .buttonRed01:hover {
	background-color:#D92911;
}
.headBlock .glovesList li span {
	padding-left:17px;
	font-size:16px;
	font-weight:bold;
	position:relative;
	z-index:1;
	-webkit-transition:all 0.3s ease-out 0s;
	-moz-transition:all 0.3s ease-out 0s;
	transition:all 0.3s ease-out 0s;
	color:#FFF;
	background:url(/img/public/icon_arrow32.png) no-repeat 0 5px;
}
#contents.contents #main .result {
	margin-top:-3px;
	padding-bottom:9px;
	color:#000;
	font-size:14px;
}
#contents.contents #main .result span {
	padding-left:4px;
}
#contents.contents #main .groupList {
	margin-right:-22px;
}
#contents.contents #main .groupList li {
	float:left;
	width:172px;
	position:relative;
	padding:0 11px 37px 0;
}
#contents.contents #main .groupList li span {
	color:#000;
}
#contents.contents #main .groupList li div {
	padding:4px 4px 0;
}
#contents.contents #main .groupList li .groupImage {
	position:relative;
	display:block;
	padding:12px;
	border:1px solid #D6D6D6;
	cursor:pointer;
}
#contents.contents #main .groupList li .groupImage > p {
	display:table-cell;
	width:146px;
	height:200px;
	background-color:#FFF;
	text-align:center;
	vertical-align:middle;
	line-height:0;
}
#contents.contents #main .groupList li .groupImage > p > img {
	max-width:146px;
	max-height:200px;
	width:auto;
	height:auto;
}
#contents.contents #main .groupList li .groupImage:hover .boxText01 {
	opacity:1;
	filter:alpha(opacity=100);
}
#contents.contents #main .groupList li .newImage {
	position:absolute;
	left:1px;
	top:1px;
	z-index:2;
}
#contents.contents #main .groupList li .groupText01 {
	padding-bottom:7px;
	font-size:12px;
	font-weight:bold;
	line-height:1.4;
}
#contents.contents #main .groupList li .groupText01 span {
	color:#000;
}
#contents.contents #main .groupList li .groupText02 {
	display:inline-block;
	margin-bottom:5px;
	padding:1px 5px 2px;
	border:1px solid #F12D14;
	color:#F12D14;
	font-size:9px;
}
#contents.contents #main .groupList li .groupText03 {
	width:54px;
	margin-bottom:5px;
	padding:1px 5px 2px;
	border:1px solid #1D2088;
	color:#1D2088;
	font-size:9px;
	text-align:center;
}
#contents.contents #main .groupList li .sizeList {
	padding-bottom:5px;
}
#contents.contents #main .groupList li .sizeList li {
	float:left;
	width:auto;
	min-width:14px;
	margin-right:2px;
	padding:1px 1px 2px !important;
	background:#DCDCDC;
	font-size:11px;
	text-align:center;
}
#contents.contents #main .groupList li .colorList li {
	float:left;
	width:auto;
	padding:0 2px 0 0 !important;
}
#contents.contents #main .boxText01 {
	position:absolute;
	top:-1px;
	left:-1px;
	right:0;
	bottom:-1px;
	z-index:3;
	width:132px;
	padding:26px 20px 20px !important;
	background:url(/img/public/bg_transparent01.png) repeat 0 0;
	line-height:1.5;
	opacity:0;
	filter:alpha(opacity=0);
	-webkit-transition:all 0.5s ease 0s;
	-moz-transition:all 0.5s ease 0s;
	-o-transition:all 0.5s ease 0s;
	transition:all 0.5s ease 0s;
}
#contents.contents #main .boxText01 .detailText01 {
	font-size:10px;
	color:#FFF;
}
#contents.contents #main .boxText01 .detailText02 {
	padding-bottom:12px;
	font-size:14px;
	font-weight:bold;
	color:#FFF;
}
#contents.contents #main .boxText01 .detailText03 {
	padding:0 0 0 2px;
	font-size:11px;
	color:#FFF;
	line-height:1.6;
}
#contents.contents #main .boxText01 .detailLink {
	position:absolute;
	bottom:20px;
	margin-left:48px;
	width:82px;
	border:1px solid #FFF;
}
#contents.contents #main .boxText01 .detailLink a {
	display:block;
	padding:2px 3px 2px 6px;
	background:#EB95B6;
}
#contents.contents #main .boxText01 .detailLink a:hover {
	background:#DB7BA0;
	text-decoration:none;
}
#contents.contents #main .boxText01 .detailLink span {
	display:block;
	padding-left:14px;
	background:url(/img/public/icon_arrow06.png) no-repeat 0 5px;
	background:url(/img/public/icon_arrow06.png) no-repeat 0 3px\0;
	color:#FFF;
	font-size:11px;
	font-weight:bold;
	text-decoration:none;
}
#contents.contents #main .colorRed {
	background:url(/img/public/bg_transparent03.png) repeat 0 0;
}
#contents.contents #main .colorRed .detailLink a {
	display:block;
	padding:2px 3px 2px 6px;
	background:#F12D14;
}
#contents.contents #main .colorRed .detailLink a:hover {
	background:#D92911;
	text-decoration:none;
}
#contents.contents #main .colorOrange {
	background:url(/img/public/bg_transparent02.png) repeat 0 0;
	line-height:1.5;
}
#contents.contents #main .colorOrange .detailText02 {
	padding-bottom:10px;
	font-size:14px;
	font-weight:bold;
	color:#FFF;
}
#contents.contents #main .colorOrange .detailText03 {
	padding:0 0 21px 2px;
	font-size:11px;
	color:#FFF;
	line-height:1.6;
}
#contents.contents #main .colorOrange .detailLink a {
	display:block;
	padding:2px 3px 2px 6px;
	background:#FA9906;
}
#contents.contents #main .colorOrange .detailLink a:hover {
	background:#ED9005;
	text-decoration:none;
}
/* ------------------------------------------------------------------
	2-8. Contact styles
-------------------------------------------------------------------*/
.block {
	padding:39px 47px 80px 51px;
}
.blockLast {
	padding:39px 47px 69px 51px;
}
.block02 {
	display:block;
	margin:0 auto;
}
.itemList {
	margin-right:-40px;
}
.itemList li {
	float:left;
	width:359px;
	margin-right:40px;
	padding:25px;
	background:url(/img/public/contact/bg_dot01.gif) repeat 0 0;
	border-top:1px solid #FFF;
	border-left:1px solid #F3F3F3;
	border-right:1px solid #F3F3F3;
	border-bottom:1px solid #DCDCDC;
	border-radius:3px;
}
.itemTitle {
	background-color:#F8E5EA;
	text-align:center;
	padding:10px 5px 6px;
}
.textThanks {
	margin:49px 10px 41px;
	color:#000;
	font-size:25px;
	font-weight:bold;
	line-height:1.7;
	text-align:center;
}
.itemList li .itemContent {
	padding:28px 15px 21px;
	background:#FFF url(/img/public/contact/bg_item01.gif) repeat-x 0 0;
}
.itemList li .itemContent01 {
	background:#FFF url(/img/public/contact/bg_item02.gif) repeat-x 0 0;
}
.itemList li .itemContent02 {
	background:#FFF url(/img/public/contact/bg_item03.gif) repeat-x 0 0;
}
.itemList li.consult {
	width:357px;
	margin:0 0 0 23px;
	background:#FFF;
	border:none;
	border-radius:0;
}
.itemList02 li {
	padding:0;
	width:409px;
}
.itemList02 li .itemInner {
	padding:25px;
}
.itemList02 li.consult .itemInner {
	padding:0 0 23px 0;
	border:4px solid #EDBFCC;
}
.itemList li.consult .itemContent {
	padding:20px 11px;
	background:#FFF;
}
.customerText01 {
	margin-bottom:19px;
	padding:36px 0 34px;
	border-bottom:5px solid #9BC92B;
	text-align:center;
}
.customerText02 {
	padding-left:10px;
	padding-bottom:15px;
}
.customerText03 {
	margin-bottom:20px;
	padding:89px 0 104px;
	border-bottom:5px solid #9BC92B;
	text-align:center;
}
.customerText04 {
	padding-left:19px;
	padding-bottom:15px;
}
.contactBlock {
	width:808px;
	margin-top:40px;
	padding:27px 26px 24px;
	background:#F1F1F1;
}
.contactBlock .contactInner .telImage {
	width:381px;
	float:left;
	padding-right:18px;
}
.contactBlock .contactInner div {
	width:390px;
	float:left;
	padding-top:15px;
	font-size:14px;
}
.contactBlock .contactInner div h4 {
	padding-bottom:6px;
	font-size:17px;
	font-weight:bold;
	color:#000;
}
.contactBlock .contactInner div p {
	color:#000;
}
.contactBlock .contactInner div .noteText {
	padding-top:3px;
	color:#CC0000;
}
.questionBlock {
	padding:25px 25px 26px;
	background:url(/img/public/contact/bg_dot01.gif) repeat 0 0;
	border-left:1px solid #F3F3F3;
	border-right:1px solid #F3F3F3;
	border-bottom:1px solid #DCDCDC;
	border-radius:3px;
}
.questionInner {
	padding:16px 22px 10px;
	background:#FFF url(/img/public/contact/bg_question.gif) repeat-y 0 0;
}
.questionContent {
	float:left;
	width:445px;
	margin-right:26px;
}
.questionInner .questionContent .faqImage {
	float:left;
	width:60px;
	padding-right:22px;
}
.questionInner .questionContent div {
	float:left;
	width:auto;
	padding-top:11px;
}
.questionInner .questionContent div h4 {
	padding-bottom:3px;
}
.itemList li.consult .consultList li {
	width:359px;
	float:none;
	margin:0 0 29px 0;
	padding:5px;
	background:#FFF;
	border-bottom:1px solid #DFD8DB;
	border-left:none;
	border-right:none;
	border-radius:0;
}
.itemList li.consult .consultList li.last {
	margin:0;
}
.itemList li.consult .consultList li div {
	padding:14px 17px 12px;
	border:1px solid #EDBFCC;
}
.itemList li.consult .arrowImage {
	position:relative;
}
.itemList li.consult .arrowImage img {
	display:none;
}
.itemList li.consult .arrowImage:before {
	top:100%;
	left:50%;
	border:solid transparent;
	content:" ";
	height:0;
	width:0;
	position:absolute;
	pointer-events:none;
}
.itemList li.consult .arrowImage:before {
	background:url(/img/public/contact/icon_arrow01.gif) no-repeat 0 3px;
	border-width:16px;
	margin-left:-23px;
}
.colorGreen {
	background:#9AC92B;
}
.consultText01 {
	padding-bottom:14px;
}
.faqBlock {
	padding:20px 81px 96px 73px;
}
.faqList li {
	padding-bottom:10px;
	background:url(/img/public/contact/icon_dot02.gif) repeat-x 0 100%;
	min-height:66px;
	height:100%;
}
.faqList li a.faqLink {
	display:block;
	position:relative;
	padding:20px 0 11px;
	text-decoration:none;
	outline:none;
	-webkit-transition:color 0.2s ease-in-out;
	-moz-transition:color 0.2s ease-in-out;
	-o-transition:color 0.2s ease-in-out;
	-ms-transition:color 0.2s ease-in-out;
	transition:color 0.2s ease-in-out;
}
.faqList li a.faqLink:hover {
	color:#66B6E8;
	text-decoration:none;
}
.faqList li img.questionImage {
	display:inline-block;
	width:34px;
	padding-right:15px;
	vertical-align:middle;
}
.faqList li img.answerImage {
	display:inline-block;
	width:45px;
	padding-right:15px;
	vertical-align:middle;
}
.faqList li span.faqText01 {
	display:inline-block;
	width:690px;
	font-size:17px;
	vertical-align:middle;
	line-height:1.5;
}
.faqList li.st-open a span.faqText01 {
	color:#66B6E8;
	font-weight:bold;
}
.faqList li span.faqText02 {
	display:inline-block;
	width:710px;
	font-size:15px;
	vertical-align:middle;
	line-height:1.5;
}
.faqList li .accordionBox {
	margin:17px 0 9px;
	padding:21px 11px 20px;
	background:#E9E9E9;
	border-bottom:1px solid #E1E1E1;
}
.faqList li .accordionBox a {
	color:#4F81BD;
	text-decoration:underline;
}
.faqList li .accordionBox a:hover {
	text-decoration:none;
}
.faqList li.st-open a span.arrow {
	opacity:1;
	right:20px;
	background:url(/img/public/contact/icon_up.gif) no-repeat 100% 50%\0;
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	transform:rotate(180deg);
}
.faqList li a span.arrow {
	width:29px;
	background:url(/img/public/contact/icon_down.gif) no-repeat 100% 50%;
	height:16px;
	opacity:0;
	right:-30px;
	position:absolute;
	text-indent:-9000px;
	top:50%;
	opacity:0;
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
.faqList li a:hover span.arrow {
	opacity:1;
	right:20px;
}
/* ------------------------------------------------------------------
	2-9. Company styles
-------------------------------------------------------------------*/
#pageCompany #main, #pageNews #main, #pageBusiness #main, #pageMovie #main, #pageTip #main, #pagePrivacy #main, #pageSitemap #main, #pageProduct #main, #pageDx #main {
	width:100%;
	min-height:100% !important;
	background:#FFF;
	border-top:1px solid #FAFAFA;
}
#pageAskdoctors #main {
	background:#FFF;
}
#pagePolicy #main .mainSection,
#pageCompany #main .mainSection, #pageNews #main .mainSection, #pageBusiness #main .mainSection, #pageMovie #main .mainSection, #pageTip #main .mainSection, #pagePrivacy #main .mainSection, #pageSitemap #main .mainSection, #pageProduct #main .mainSection, #pageDx #main .mainSection {
	background:#FFF;
}
#pagePolicy #main .mainContent,
#pageCompany #main .mainContent, #pageNews #main .mainContent, #pageBusiness #main .mainContent, #pageMovie #main .mainContent, #pageTip #main .mainContent, #pagePrivacy #main .mainContent, #pageSitemap #main .mainContent, #pageDx #main .mainContent {
	background:url(/img/public/company/bg_main.gif) no-repeat 50% 0;
	margin:-2px auto 79px;
	width:960px;
}
#pageCompany .headBox, #pageNews .headBox, #pageBusiness .headBox, #pageMovie .headBox, #pageTip .headBox, #pagePrivacy .headBox, #pageSitemap .headBox {
	border:none;
}
.blockList {
	margin-right:-40px;
	padding:38px 3px 0;
}
.blockList li {
	float:left;
	width:304px;
	margin:0 20px 70px 0;
}
.blockList li p.blockImage {
	padding:1px 2px 3px;
	background:url(/img/public/company/bg_box.gif) no-repeat 0 0;
}
.blockList li p.blockImage span {
	display:block;
	width:300px;
	height:200px;
	overflow:hidden;
}
.blockList li p.blockImage span img {
	transition:0.5s;
}
.blockList li p.blockImage span img:hover {
	opacity:0.6;
	transition:0.5s;
}
.blockList li div {
	padding:6px 4px 0;
	color:#515151;
}
.blockList li div h2 {
	padding-bottom:3px;
	font-family:Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#000;
}
.blockList li div .blockText01 {
	padding-left:2px;
	font-size:13px;
	line-height:1.55;
}
.historyBlock {
	width:812px;
	margin:0 auto;
	background:url(/img/public/company/bg_dot.gif) repeat-y 77px 50px;
}
.historyBlock .blockInner {
	margin-top:48px;
}
.historyBlock .blockInner .dateText {
	float:left;
	width:82px;
	margin-top:-10px;
	background:url(/img/public/company/icon_circle.gif) no-repeat 100% 50%;
	font-family:'Montserrat', Arial, 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:20px;
}
.historyBlock .blockInner div.blockContent {
	float:right;
	width:708px;
	margin-top:-37px;
	background:url(/img/public/company/icon_arrow01.gif) no-repeat 0 33px;
}
.historyBlock .blockInner div.blockContent div {
	width:auto;
	margin-left:11px;
	padding:24px 25px 32px;
	background:#F3F3F3;
}
.historyBlock .blockList01 li {
	margin-bottom:13px;
}
.historyBlock .blockList01 li span {
	display:block;
	padding-left:9px;
	background:url(/img/public/company/icon_dot.gif) no-repeat 0 9px;
	font-size:14px;
	color:#515151;
}
.historyBlock .blockList01 li span a {
	color:#515151;
	text-decoration:underline;
}
.historyBlock .blockList01 li span a:hover {
	text-decoration:none;
}

.historyBlock .blockList01 li .boxImage {
	margin-left:-3px;
	padding:9px 0 12px;
	font-size:0;
}
.historyBlock .blockLast {
	padding:0;
	background:#FFF;
}
/* ------------------------------------------------------------------
	2-10. Professional styles
-------------------------------------------------------------------*/
#contents.contents01 {
	width:960px;
	margin:0 auto 90px;
}
#contents.contents01 #main {
	width:960px;
	background:none;
}
.listGuide, .listGuide02 {
	margin-left:-14px;
}
.listGuide li {
	display:table;
	position:relative;
	float:left;
	width:467px;
	height:113px;
	margin-left:14px;
	margin-bottom:14px;
	border:3px solid #87BF0D;
}
.listGuide li .image {
	display:table-cell;
	width:112px;
}
.listGuide li .image img {
	vertical-align:top;
}
.listGuide li .infoBox {
	display:table-cell;
	min-height:100%;
	padding-left:30px;
	background:url(/img/public/icon_arrow17.png) no-repeat 94% 50%;
	font-size:26px;
	font-weight:bold;
	vertical-align:middle;
	transition:background-color 0.35s ease 0s, color 0.35s ease 0s;
}
.listGuide li .infoBox:hover, .listGuide li .hoverOn {
	background:#87BF0D url(/img/public/icon_arrow30.png) no-repeat 94% 50%;
}
.listGuide li a {
	text-decoration:none;
	color:#000;
}
.listGuide li .infoBox span {
	display:block;
	margin-top:2px;
	font-size:16px;
}
.listGuide li:hover .hoverBox {
	opacity:1;
	filter:alpha(opacity=100);
}
.hoverBox {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	padding:22px 29px 0 27px;
	background:url(/img/public/professional/application/bg_green.png) repeat 0 0;
	font-weight:bold;
	opacity:0;
	filter:alpha(opacity=0);
	-webkit-transition:all 0.5s ease 0s;
	-moz-transition:all 0.5s ease 0s;
	-o-transition:all 0.5s ease 0s;
	transition:all 0.5s ease 0s;
}
.hoverBox .title {
	color:#FFF;
	font-size:30px;
}
.hoverBox .title span {
	display:block;
	margin-top:-13px;
	font-size:12px;
}
.hoverBox .detail {
	padding-top:12px;
}
.hoverBox .detail a {
	display:inline-block;
	float:right;
	padding-left:13px;
	background:url(/img/public/icon_arrow08.png) no-repeat 0 50%;
	color:#FFF;
	font-size:13px;
}
/* ------------------------------------------------------------------
	2-11. Professional Task styles
-------------------------------------------------------------------*/
.taskBlock .headline5 {
	padding-top:14px;
}
.listGuide02 {
	margin-top:-14px;
}
.wrapperAccordion .listGuide02 {
	margin-top:0;
}
.listGuide02 li {
	display:table;
	position:relative;
	float:left;
	width:467px;
	height:113px;
	margin-left:14px;
	margin-top:14px;
	border:3px solid #FF8A00;
}
.listGuide02 li .image {
	display:table-cell;
	width:112px;
}
.listGuide02 li .image img {
	vertical-align:top;
}
.listGuide02 li .infoBox {
	display:table-cell;
	min-height:100%;
	padding:9px 7px 8px 30px;
	font-size:24px;
	font-weight:bold;
	vertical-align:middle;
}
.listGuide02 .title {
	min-height:23px;
	padding:2px 0 0 33px;
	background:url(/img/public/professional/task/icon_question.gif) no-repeat 0 4px;
	color:#FF9600;
	font-size:24px;
	font-weight:bold;
}
.listGuide02 .title img {
	margin-right:10px;
	vertical-align:text-bottom;
}
.listGuide02 .btnDetail {
	position:absolute;
	bottom:10px;
	right:10px;
	padding:7px 8px 7px 28px;
	background:#FF9600 url(/img/public/icon_arrow08.png) no-repeat 14px 50%;
	color:#FFF;
	font-size:12px;
}
.listGuide02 .hoverBox {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	padding:13px 14px 5px 14px;
	background:url(/img/public/professional/task/bg_orange.png) repeat 0 0;
	font-weight:bold;
	opacity:0;
	filter:alpha(opacity=0);
	-webkit-transition:all 0.5s ease 0s;
	-moz-transition:all 0.5s ease 0s;
	-o-transition:all 0.5s ease 0s;
	transition:all 0.5s ease 0s;
}
.listGuide02 .active .hoverBox {
	opacity:1;
	filter:alpha(opacity=100);
}
.listGuide02 .hoverBox .title {
	padding-left:28px;
	margin-bottom:3px;
	background:url(/img/public/professional/task/icon_question_h.gif) no-repeat 0 0;
	color:#FFF;
	font-size:14px;
}
.listGuide02 .hoverBox .answer {
	padding-left:3px;
	color:#000;
}
.listGuide02 .hoverBox .answer span {
	display:block;
	padding-left:27px;
	margin-top:-18px;
	line-height:1.55;
}
.listGuide02 .hoverBox .detail {
	position:absolute;
	bottom:10px;
	right:14px;
	padding:0;
	opacity:0;
	filter:alpha(opacity=0);
}
.listGuide02 .opened .hoverBox .detail {
	opacity:1;
	filter:alpha(opacity=100);
}
.listGuide02 .hoverBox .detail a {
	display:inline-block;
	float:right;
	padding-left:13px;
	background:url(/img/public/icon_arrow08.png) no-repeat 0 50%;
	color:#FFF;
	font-size:13px;
}
.listGuide02 li:hover .hoverBox, .listGuide02 li:hover .hoverBox .detail {
	opacity:1;
	filter:alpha(opacity=100);
	cursor:pointer;
}
.listGuide02 li .hoverBox .detail a:hover {
	text-decoration:none;
}
.listGuide02 li:hover .hoverBox .detail a {
	position:relative;
	z-index:10;
}
.btnWrap {
	display: flex;
	justify-content: center;
}
.btnWrap .btnConsult {
	background-image: none;
	box-sizing: border-box;
	max-width: 400px;
	margin-left: 10px;
	margin-right: 10px;
	width: 45%;
}
.btnWrap .btnConsult::before {
	background: url(/img/public/icon_arrow09.png) no-repeat 0 0/100%;
	content: "";
	content: "";
	display: inline-block;
	height: 12px;
	margin-right: 10px;
	width: 7px;
}
a.btnConsult {
	display:inline-block;
	padding:21px 28px 19px 50px;
	background:#80A828 url(/img/public/icon_arrow09.png) no-repeat 31px 50%;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
}
a.btnConsult:hover {
	text-decoration:none;
}
a.btnContact {
	display:inline-block;
	padding:21px 28px 19px 50px;
	background:#80A828 url(/img/public/icon_arrow09.png) no-repeat 31px 50%;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
}
a.btnContact:hover {
	text-decoration:none;
}
.listGuide02.pinkStyle li {
	border-color:#E782A9;
}
.listGuide02.pinkStyle .infoBox .title {
	background:url(/img/public/homecare/task/icon_question.gif) no-repeat 0 0;
	color:#E782A9;
}
.listGuide02.pinkStyle .btnDetail {
	background:#E782A9 url(/img/public/icon_arrow08.png) no-repeat 14px 50%;
}
.listGuide02.pinkStyle .hoverBox {
	background:url(/img/public/homecare/task/bg_pink.png) repeat 0 0;
}
.listGuide02.pinkStyle .hoverBox .title {
	background:url(/img/public/homecare/task/icon_question_h.gif) no-repeat 0 0;
}
.listGuide02.pinkStyle .infoBox {
	padding-left:20px;
	vertical-align:middle;
}
.listGuide02.pinkStyle .infoBox .title {
	padding-top:0;
	background:url(/img/public/homecare/task/icon_question.gif) no-repeat 0 4px;
	color:#E782A9;
	font-size:24px;
}
.bgColor {
	background:#FDFFFA;
}
.questionBlock01 {
	padding-top:25px;
}
.questionBlock01 .questionBox {
	display:table;
	width:100%;
	border-top:2px solid #FB9806;
	border-right:2px solid #FB9806;
	border-bottom:2px solid #FB9806;
}
.questionBlock01 .questionBox .imgCell {
	display:table-cell;
	width:55px;
	background:#FB9806;
	vertical-align:middle;
}
.questionBlock01 .questionBox .imgCell img {
	vertical-align:top;
}
.questionBlock01 .questionBox .textCell {
	display:table-cell;
	padding-left:14px;
	color:#FB9806;
	font-size:24px;
	font-weight:bold;
	vertical-align:middle;
}
.questionBlock01 .questionBox .textCell01 {
	display:table-cell;
	padding-left:14px;
	color:#FB9806;
	font-size:24px;
	font-weight:bold;
	vertical-align:middle;
}
.questionBlock01 .answerBox, .transferBlock {
	display:table;
	width:100%;
	padding:24px 0 23px;
}
.questionBlock01 .answerBox .textBlock,
.transferBlock .textBlock {
	display:table-cell;
	width:61.5%;
	padding-top:2px;
	background:url(/img/public/professional/task/icon_answer01.gif) no-repeat 19px 14px;
	font-size:24px;
	font-weight:bold;
	vertical-align:top;
	line-height:1.4em;
}
.questionBlock01 .answerBox .textBlock span {
	display:block;
	padding:0 20px 0 70px;
}
.questionBlock01 .answerBox .textBlock font {
	margin-top:5px;
	line-height:1.5;
	font-size:70%;
}
.questionBlock01 .answerBox .imgBlock,
.transferBlock .imgBlock {
	display:table-cell;
	width:39%;
	text-align:center;
}
.questionBlock01 .answerBox .imgBlock,
.transferBlock .imgBlock img {
	width:100%;
}
.productBlock {
	clear:left;
	margin-bottom:15px;
	padding:25px 25px 10px 32px;
	border:1px solid #B2B2B2;
	border-radius:4px;
}
.productBlock .description {
	padding:7px 20px 31px;
	line-height:1.55em;
}
.productBlock .wrapperProduct {
	padding-top:30px;
	border-top:1px solid #DCDCDC;
}
.lineBg {
	padding-top:20px;
	background:url(/img/public/bg_line05.gif) repeat-x 0 0;
}
.productList li {
	float:left;
	padding:0 10px 20px 0;
	position:relative;
	width:290px;
}
.productList > li {
	min-height:146px;
}
.productList li:last-child {
	padding-right:0;
}
.productList .groupImage {
	display:table-cell;
	width:111px;
	min-height:146px;
	border:1px solid #D6D6D6;
	text-align:center;
	vertical-align:middle;
}
.productList .groupImage a {
	display:table-cell;
	width:93px;
	padding:9px;
	vertical-align:middle;
}
.productList .groupImage img {
	vertical-align:middle;
	max-height:128px;
	max-width:91px;
	opacity:1;
	width:auto;
}
.productList .groupInfo {
	display:table-cell;
	position:relative;
	padding-left:10px;
	min-width:150px;
}
.productList li .detailText01 {
	margin-top:-2px;
	padding-bottom:4px;
	font-size:12px;
	font-weight:bold;
}
.productList li .detailText02 {
	padding-bottom:8px;
	font-size:10px;
	font-size:bold;
}
.productList li .groupText02 {
	display:inline-block;
	margin-bottom:5px;
	padding:1px 5px 2px;
	border:1px solid #1d2088;
	color:#1d2088;
	font-size:9px;
}
.productList li .sizeList {
	margin-bottom:4px;
}
.productList li .sizeList li {
	background:none repeat scroll 0 0 #dcdcdc;
	float:left;
	font-size:11px;
	margin-right:2px;
	min-width:14px;
	padding:1px 1px 2px;
	text-align:center;
	width:auto;
}
.productList li .colorList {
	padding-bottom:33px;
}
.productList li .colorList li {
	float:left;
	padding:0 2px 0 0;
	width:auto;
}
.productList li .buttonDetail {
	position:absolute;
	bottom:0;
	display:inline-block;
	background:#FA9906 url(/img/public/icon_arrow06.png) no-repeat 6px 50%;
	color:#FFF;
	padding:4px 8px 4px 21px;
	font-size:11px;
}
.productList li .buttonDetail.bgPink {
	background-color:#E782A9;
}
.productList li .buttonDetail.bgRed {
	background-color:#EC2C13;
}
.productList li .buttonDetail.bgRed02 {
	background-color:#F12D14;
}
.productList li .buttonDetail:hover {
	text-decoration:none;
}
.contents02 {
	width:960px;
	margin:0 auto;
}
.contents02 #main {
	background:none;
}
.featureSection {
	margin:58px 0 0;
	border-top:1px solid #F8CD71;
}
.featureSection .wrapperFeature {
	width:960px;
	margin:0 auto;
}
.featureBlock h4 {
	font-size:23px;
	font-family:Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-weight:bold;
}
.featureBlock ul {
	margin:8px 0 34px;
	padding:0 0 5px 2px;
	background:#F0F0F0;
}
.featureBlock li {
	float:left;
	width:300px;
	min-height:66px;
	margin:17px 0 11px;
	padding:0 0 0 19px;
	background:url(/img/public/bg_line02.gif) repeat-y 100% 0;
}
.featureBlock li:nth-child(3n) {
	background:none;
}
.featureBlock li:last-child {
	background:none;
}
.featureBlock .imageCell {
	display:table-cell;
	vertical-align:top;
	width:64px;
}
.featureBlock .imageCell img {
	width:100%;
	border:1px solid #D2D2D2;
	vertical-align:top;
}
.featureBlock .textCell {
	display:table-cell;
	padding-right:20px;
}
.featureBlock .textCell a {
	float:left;
	padding:2px 0 2px 42px;
	background:url(/img/public/icon_arrow15.png) no-repeat 13px 3px;
	line-height:1.6em;
}
/* ------------------------------------------------------------------
	2-11. Product styles
-------------------------------------------------------------------*/
.wrapperDetail {
	width:100%;
	position:relative;
	padding:18px 0 43px;
	background:#FFF;
}
.wrapperDetail .wrapperInner {
	width:900px;
	margin:0 auto;
}
.wrapperDetail .productLine {
	margin-bottom:15px;
	padding:5px 11px;
	border:1px solid #DADADA;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:13px;
	font-weight:bold;
	color:#000;
}
.wrapperDetail .typeText01 {
	padding:0 0 5px 10px;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:20px;
	font-weight:bold;
	color:#8ABF23;
}
.wrapperDetail .typeText02 span {
	display:inline-block;
	padding:10px 15px 0 0;
	font-family:'Montserrat', Arial, 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:20px;
	color:#7C7C7C;
	vertical-align:top;
}
.wrapperDetail .typeText02 {
	padding-left:10px;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:35px;
	font-weight:bold;
	color:#000;
}
.wrapperDetail div.section {
	padding-bottom:20px;
}
.wrapperDetail div.sectionLeft {
	float:left;
	width:320px;
	margin:26px 0 0 0;
}
.wrapperDetail div.sectionRight {
	position:relative;
	float:right;
	width:505px;
}
.wrapperDetail .imageList {
	margin-bottom:23px;
}
.wrapperDetail .imageList li {
	float:left;
	width:505px;
	height:335px;
	text-align:center;
}
.wrapperDetail .imageList li img {
	height:100%;
}
.wrapperDetail .thumbList {
	text-align:center;
	line-height:2.5em;
}
.wrapperDetail .thumbList a {
	display:inline-block;
	margin:0 4px 0 3px;
	width:65px;
	height:43px;
}
.wrapperDetail .thumbList a.selected {
	filter:alpha(opacity=60);
	opacity:0.6;
}
.wrapperDetail .thumbList a img {
	max-width:65px;
	max-height:43px;
}
.carouselWThumb p.prev a,
.carouselWThumb p.next a {
	display:none;
	position:absolute;
	z-index:100;
	top:150px;
	left:10px;
	width:21px;
	height:34px;
	overflow:hidden;
	background:url(/img/public/home/icon_prev.png) no-repeat 0 0;
	text-indent:-9999px;
}
.carouselWThumb .wrapImage:hover p.prev a,
.carouselWThumb .wrapImage:hover p.next a {
	display:block;
}
.carouselWThumb p.next a {
	left:auto;
	right:10px;
	background:url(/img/public/home/icon_next.png) no-repeat 0 0;
}
.wrapperDetail .section {
	padding-top:45px;
}
.wrapperDetail .sectionInner div {
	float:left;
	width:100%;
	margin-left:10px;
}
.wrapperDetail .sectionInner div ul.pagerList {
	width:29px;
	margin:16px auto 0;
}
.wrapperDetail .sectionInner div ul.pagerList li {
	float:left;
	width:auto;
	padding-right:11px;
}
.wrapperDetail .sectionInner div ul.pagerList li.pagerLast {
	padding-right:0;
}
.wrapperDetail .gloveList {
	float:right;
	width:73px;
	margin-right:-7px;
	padding-top:55px;
}
.wrapperDetail .gloveList li {
	float:left;
	width:29px;
	margin-right:7px;
}
.wrapperDetail .material {
	padding:63px 0 0 9px;
}
.wrapperDetail .material dt {
	padding:0;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
}
.wrapperDetail .material dd {
	margin:-1.3em 0 0.8em 0;
	padding:0 0 0 6.2em;
	color:#515151;
	text-indent:-1.3em;
}
.wrapperDetail .material dd span {
	padding-right:12px;
}
.wrapperDetail .material dd ul {
	width:100px;
	margin:-15px 0 0 20px;
}
.wrapperDetail .material dd ul li {
	display:inline;
}
.wrapperDetail .block01 {
	width:958px;
	margin:0 auto 20px;
	padding-bottom:40px;
	border:1px solid #CCC;
}
.wrapperDetail .block01 .blockInner {
	position:relative;
}
.wrapperDetail .block01 .tabList {
	margin-bottom:38px;
}
.wrapperDetail .block01 .tabList li {
	width:478px;
	float:left;
	text-align:center;
}
.wrapperDetail .block01 .tabList li.relate {
	width:480px;
}
.wrapperDetail .block01 .tabList li.relate a {
	border-left:none;
}
.wrapperDetail .block01 .tabList li a {
	display:block;
	padding:14px 10px 17px;
	background:#F6F6F6;
	border-left:1px solid #CCC;
	border-bottom:1px solid #CCC;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:20px;
	font-weight:bold;
	text-decoration:none;
}
.wrapperDetail .block01 .tabList li a.active, .wrapperDetail .block01 .tabList li a:hover {
	background:#FFF;
	border-bottom:1px solid #FFF;
}
.wrapperDetail .block01 .tabList li a.active span, .wrapperDetail .block01 .tabList li a:hover span {
	padding:0 8px 5px;
	border-bottom:3px solid #8BBF0D;
}
.wrapperDetail .block02 {
	padding-top:30px;
}
.tabContents {
	display:none;
}
.tabContents.activedTab {
	display:block;
}
.wrapperDetail .block01 .itemList01 {
	margin-left:78px;
}
.wrapperDetail .block01 .itemList01 li {
	float:left;
	width:246px;
	margin:0 10px;
	font-size:12px;
	color:#515151;
}
.wrapperDetail .block01 .itemList01 li .itemImage {
	padding-bottom:11px;
	text-align:center;
}
.wrapperDetail .block01 .itemList01 li .itemImage img {
	max-width:246px;
}
.wrapperDetail .block01 .itemList01 li h3 {
	margin-bottom:10px;
	padding-bottom:11px;
	font-size:16px;
	color:#5D9E26;
	border-bottom:2px solid #9AC92B;
}
.wrapperDetail .block01 .itemList01 li h3 a {
	color:#5D9E26;
}
.wrapperDetail .block01 p.prev a, .wrapperDetail .block01 p.next a {
	display:block;
	position:absolute;
	left:37px;
	top:50%;
	width:30px;
	margin-top:-57px;
	height:0;
	padding-top:80px;
	background:url(/img/public/product/btn_prev.gif) no-repeat 0 0;
	overflow:hidden;
}
.wrapperDetail .block01 p.next a {
	left:auto;
	right:39px;
	background:url(/img/public/product/btn_next.gif) no-repeat 0 0;
}
.wrapperDetail .block02 {
	width:960px;
	margin:0 auto;
	padding-bottom:56px;
}
.wrapperDetail .block02 h2 {
	margin-bottom:46px;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:18px;
	font-weight:bold;
	text-align:center;
}
.wrapperDetail .block02 h2 span {
	padding-bottom:9px;
	background:url(/img/public/product/bg_line02.gif) no-repeat 50% 100%;
}
.wrapperDetail .block02 .itemList02 {
	margin-right:-9px;
	padding:0;
	text-align:center;
}
.wrapperDetail .block02 .itemList02 li {
	display:inline-block;
	width:312px;
	margin-right:5px;
	vertical-align: top;
}
.wrapperDetail .block02 .itemList02 li .itemImage02 {
	margin:0 0 8px 0;
	padding:7px;
	background:url(/img/public/product/bg_box.png) no-repeat 0 0;
	text-align:center;
}
.wrapperDetail .block02 .itemList02 li .itemImage02 img {
	max-width:300px;
	max-height:180px;
}
.wrapperDetail .block02 .itemList02 li p {
	margin-left:5px;
	color:#515151;
}
.wrapperDetail01 {
	background:#FFF url(/img/public/product/bg_line01.gif) no-repeat 0 0;
}
.wrapperDetail01 .wrapperInner {
	/*padding-top:60px;*/
}
.wrapperDetail01 .blockDetail {
	width:864px;
	margin:0 auto;
	color:#515151;
	text-align:center;
}
.wrapperDetail01 .imageFull {
	padding-top:60px;
}
.wrapperDetail01 .blockDetail .senseText01 {
	padding:15px 0 61px;
	font-size:16px;
	line-height:1.6;
}
.wrapperDetail01 .blockDetail01 {
	margin-top:57px;
	padding-top:57px;
	border-top:1px solid #CCC;
}
.wrapperDetail01 .blockDetail01 .imageBox {
	float:left;
	width:157px;
	padding:12px 0 0 29px;
}
.wrapperDetail01 .blockDetail01 .imageBox img {
	width:100%;
}
.wrapperDetail01 .blockDetail01 .textBox {
	float:right;
	width:586px;
	padding-right:20px;
	font-size:16px;
	line-height:1.6;
	text-align:left;
}
.wrapperDetail01 .detailText01 {
	padding-bottom:23px;
}
.wrapperDetail01 .blockDetail02 {
	margin:55px auto 57px;
	padding-top:47px;
	border-top:1px solid #CCC;
}
.wrapperDetail01 .blockDetail02 .imageBox {
	float:right;
	width:380px;
	padding:12px 29px 0 0;
}
#blockSection02 .wrapperInner:first-child {
	padding-top:0;
}
#blockSection02 .wrapperInner:first-child .blockDetail02 {
	border:none;
}
.wrapperDetail01 .blockDetail02 .imageBox img {
	width:100%;
}
.wrapperDetail01 .blockDetail02 .textBox {
	float:left;
	width:365px;
	padding-left:29px;
	font-size:16px;
	line-height:1.6;
	text-align:left;
}
.wrapperDetail02 {
	padding:40px 0 60px;
	background:#F5F7F8;
}
.wrapperDetail02 .wrapperInner {
	width:926px;
	margin:0 auto;
}
.wrapperDetail02 .wrapperContent {
	margin-bottom:61px;
}
.wrapperDetail02 .wrapperContentLast {
	margin-bottom:0;
}
.wrapperDetail02 .wrapperContent .inner {
	margin:0 1px;
	padding:25px 30px 25px;
	background:#FFF;
	border:1px solid #F4F6F7;
	border-top:none;
	border-bottom:1px solid #DCDDDF;
}
.wrapperDetail02 .wrapperContent .textBlock {
	line-height:1.8;
	color:#515151;
}
.wrapperDetail02 .wrapperContent .textList01 {
	padding:0 12px;
}
.wrapperDetail02 .wrapperContent .textList01 li {
	padding-left:23px;
	padding-bottom:9px;
	color:#515151;
	text-indent:-27px;
	line-height:1.65;
}
.wrapperDetail02 .wrapperContent .textList01 li span {
	padding-right:11px;
	font-family:'Montserrat', Meiryo, メイリオ, sans-serif;
	font-size:16px;
}
.wrapperDetail02 .wrapperContent .boxContent {
	margin:3px 0 49px;
	padding:27px 21px 17px;
	border:1px solid #ADADAD;
}
.wrapperDetail02 .wrapperContent .textList02 {
	margin-bottom:13px;
	padding-bottom:16px;
	background:url(/img/public/icon_dot01.gif) repeat-x 0 100%;
}
.wrapperDetail02 .wrapperContent .textList02 li {
	padding-bottom:9px;
	color:#515151;
}
.wrapperDetail02 .wrapperContent .textList02 li .boxText02 {
	width:154px;
	margin-right:8px;
	padding:5px;
	background:#8ABF23;
	color:#FFF;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	text-align:center;
}
.wrapperDetail02 .wrapperContent .textList01.inlineBlockList li {
	width:28%;
	vertical-align:top;
}
.wrapperDetail02 .wrapperContent .textList02 li p {
	display:inline-block;
	vertical-align:middle;
	width:640px;
	font-size:13px;
}
.wrapperDetail02 .wrapperContent .noteText01 {
	font-size:13px;
	color:#515151;
	line-height:1.9;
}
.wrapperDetail02 .wrapperContent .noteText02 {
	margin:27px 0 41px -5px;
	padding-left:20px;
	font-size:13px;
	color:#515151;
	line-height:1.9;
	text-indent:-20px;
}
.wrapperDetail02 .wrapperContent .styleTable01 {
	width:859px;
	border:1px solid #9D9D9D;
}
.wrapperDetail02 .wrapperContent .styleTable01 th.bigSize {
	padding:12px 10px 13px;
	font-size:14px;
	font-weight:bold;
}
.wrapperDetail02 .wrapperContent .styleTable01 th {
	padding:7px 10px 5px;
	background:#E8E8E8;
	border-right:1px solid #AEAEAE;
	border-bottom:1px solid #AEAEAE;
	color:#000;
	font-size:12px;
	text-align:center;
}
.wrapperDetail02 .wrapperContent .styleTable01 td {
	padding:20px 10px;
	border-right:1px solid #AEAEAE;
	color:#515151;
	font-size:12px;
	text-align:center;
}
.wrapperDetail02 .wrapperContent .styleTable01 .bgColor {
	background:#F7F7F7;
}
.wrapperDetail02 .wrapperContent .styleTable01 .col1 {
	width:100px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .col2 {
	width:54px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .col3 {
	width:307px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .col4 {
	width:251px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .subCol01 {
	width:80px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .subCol02 {
	width:52px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .subCol03 {
	width:31px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .subCol04 {
	width:30px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .subCol05 {
	width:54px;
}
.wrapperDetail02 .wrapperContent .styleTable01 .subCol06 {
	width:27px;
}
.wrapperDetail02 .wrapperContent .buttonList01 {
	margin:-5px -24px 0 6px;
	padding-bottom:3px;
	text-align:center;
}
.wrapperDetail02 .wrapperContent .buttonList01 li {
	display:inline-block;
	width:410px;
	margin-right:24px;
}
.buttonList01.buttonContact {
	text-align:center;
	margin:50px 0 0 0;
}
.buttonBlue {
	padding:15px 16px 16px 17px;
	background-color:#FFF;
	border:3px solid #58B7A7;
	position:relative;
	overflow:hidden;
	min-width:371px;
}
a.buttonBlue {
	min-width:371px;
	background:url(/img/public/icon_arrow14.png) no-repeat 42px 20px;
}
.buttonBlue:hover {
	background-color:#58B7A7;
}
.buttonBlue span {
	font-size:16px;
	font-weight:bold;
	color:#58B7A7;
	background:none;
}
.buttonBlue:hover span {
	background:none;
}
#infscr-loading {
	position:relative;
	z-index:1000;
}
.mainContent01 {
	padding: 73px 0 100px;
}
.productText {
	padding-bottom: 41px;
	font-size: 16px;
	text-align: center;
	line-height: 1.5;
}
/* ------------------------------------------------------------------
	2-11. Industrial styles
-------------------------------------------------------------------*/
.listGuide01 li {
	position:relative;
	margin-bottom:14px;
	border:3px solid #F12D14;
}
.listGuide01 li p.guideImage {
	float:left;
	width:478px;
	font-size:0;
}
.listGuide01 li p.guideImage img {
	font-size:0;
}
.listGuide01 li .guideBlock {
	float:right;
	width:430px;
	padding:19px 16px 16px 0;
}
.listGuide01 li .guideRight {
	float:right !important;
	font-size:0 !important;
}
.listGuide01 li .guideLeft {
	float:left !important;
	padding:19px 16px 16px 29px;
}
.listGuide01 li div.guideBlock h2 {
	padding-bottom:10px;
	font-size:32px;
	font-weight:bold;
	color:#000;
}
.listGuide01 li .guideLeft .raisingButton {
	right:497px;
	bottom:26px;
}
.raisingButton {
	clear:both;
	position:absolute;
	right:16px;
	bottom:26px;
	text-align:center;
}
.raisingButton a {
	padding:10px 9px 10px 12px;
	background:#F12D14;
	color:#FFF;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
}
.raisingButton a span {
	padding-left:14px;
	background:url(/img/public/icon_arrow19.png) no-repeat 0 3px;
}
.headApp02 {
	position:relative;
	padding:34px 35px 30px;
	min-height:153px;
	border:3px solid #87BF0D;
	font-size:46px;
	z-index:2;
}
.headApp02 .f26 {
	margin-top:-8px;
	padding:0;
	font-size:26px;
	font-weight:bold;
}
.headApp02 span {
	padding-top:5px;
	line-height:1.54;
}
.headApp02 img {
	position:absolute;
	right:0;
	top:0;
	z-index:-1;
	height:100%;
}
.contents03 #main {
	background:#FFF;
}
.wrapTransfer {
	width:960px;
	margin:0 auto;
}
.transferBlock .textBlock {
	padding-right:30px;
	background:none;
	font-size:18px;
	font-weight:normal;
	line-height:1.55;
}
.transferContent .transferTitle {
	position:relative;
	top:5px;
	padding:11px 0 27px;
	background:url(/img/public/industrial/task/bg_transfer01.jpg) no-repeat;
	color:#FFF;
	font-size:21px;
	font-weight:bold;
}
.transferList {
	padding:7px 27px 8px 30px;
	border:1px solid #D7D7D7;
	border-top:none;
	box-shadow:0 0 5px #D7D7D7;
}
.transferList li {
	padding:12px 0 15px 30px;
	border-top:1px solid #DCDCDC;
	background:url(/img/public/icon_circle04.gif) no-repeat 0 13px;
	font-size:17px;
}
.transferList li:first-child {
	border:none;
}
.transferList span {
	font-weight:bold;
}
.transferContent p {
	text-align:center;
}
.transferContent .result {
	padding-top:8px;
	font-size:24px;
}
.transferContent .result span {
	color:#F12D14;
	font-size:31px;
}
.wrapProduct {
	margin-top:35px;
	border-top:1px solid #D7D7D7;
}
.wrapProduct01 {
	width:960px;
	margin:13px auto 0;
}
.questionBlock02 .questionBox {
	border:2px solid #F12D14;
}
.questionBlock02 .questionBox .textCell {
	display:block;
	color:#000;
	padding:8px 14px;
}
.questionBlock02 .answerBox {
	padding:9px 0 37px;
}
.questionBlock02 .answerBox .textBlock {
	display:block;
	width:100%;
	border:none;
	background:none;
	font-size:13px;
	font-weight:normal;
}
.questionBlock02 .answerBox .textBlock span {
	padding:0 0 0 18px;
}
.questionBlock02 .answerBox .resultBlock {
	margin-top:8px;
	padding-left:54px;
	background:url(/img/public/industrial/task/icon_arrow01.gif) no-repeat 18px 50%;
	font-size:15px;
	font-weight:bold;
}
#pageIndustrial .featureSection {
	border-color:#D7D7D7;
}
#pageIndustrial .featureBlock ul, #pageBusiness .featureBlock ul {
	background:#FFF;
}
#pageIndustrial .featureBlock li, #pageBusiness .featureBlock li {
	background:none;
}
#pageIndustrial .featureBlock .textCell a, #pageBusiness .featureBlock .textCell a {
	background:url(/img/public/icon_arrow20.png) no-repeat 13px 3px;
}
.contentBox {
	margin:17px 0 30px;
	border:1px solid #CCC;
}
.contentBox .title {
	padding:12px 23px;
	border-bottom:1px solid #CCC;
	background:#F6F6F6;
	font-size:20px;
	font-weight:bold;
}
.contentBox .inner {
	padding:15px 23px 30px;
}
.contentBox .contentBlock {
	margin-bottom:11px;
}
.contentBox .title01 {
	margin-bottom:8px;
	color:#86C100;
	font-size:16px;
}
.contentBox .text {
	font-size:14px;
	line-height:1.5;
}
.contentBox ul {
	padding:24px 26px;
}
.contentBox li {
	float:left;
	margin-right:19px;
}
.contentBox li p:first-child span {
	font-size:12px;
	line-height:1.8;
}
.contentBox li p:first-child strong {
	font-size:13px;
}
.contentBox li p img {
	margin-top:7px;
}
.contentBox li .chartTitle strong {
	font-size:19px;
	color:#333B52;
}
.contentBox li span {
	display:block;
	font-size:15px;
	line-height:1.7
}
.contentBox li em {
	display:block;
	padding-top:9px;
	font-size:11px;
}
.contentBox .textBox {
	margin-top:19px;
	padding:14px 0;
	border:3px solid #86C100;
	background:#FBFFF1;
	font-size:16px;
	line-height:1.45;
	font-weight:bold;
	text-align:center;
}
.levelBox {
	width:954px;
	padding:9px 0 6px;
	margin:34px auto 0;
	border:3px solid #5A5A5A;
	border-radius:5px;
}
.levelBox p, .levelBox ul {
	float:left;
	display:inline-block;
	vertical-align:middle;
}
.levelBox li {
	display:inline-block;
	vertical-align:middle;
}
.levelBox p {
	line-height:1.5;
}
.levelBox p:first-child {
	margin-right:30px;
	padding:50px 30px 50px 31px;
	background:url(/img/public/industrial/task/bg_line.gif) repeat-y 100% 0;
	font-size:16px;
	font-weight:bold;
	width:162px;
}
.levelBox ul {
	margin:0 32px 0 0;
	padding-bottom:1px;
}
.levelBox ul li {
	margin-right:5px;
}
.levelBox p:last-child {
	padding:5px 0;
	width:420px;
}
.descriptionBox01 .leftBox p {
	margin-top:-3px;
	padding-left:28px;
	font-size:18px;
	line-height:1.45;
}
.descriptionBox01 .leftBox {
	max-width:520px !important;
}
.productCut .productBlock {
	padding:0;
	border:none;
}
.wrapperProduct01 {
	padding:20px 0 3px 31px;
	margin-top:12px;
	border:3px solid #CCC;
	border-radius:5px;
}
.wrapperProduct01 .title {
	padding:17px 0 12px;
	font-size:16px;
}
.noBackground {
	background:none !important;
}
.transferContent .chartBox {
	margin:26px 30px 29px;
}
.transferContent .chartBox .inner {
	margin:8px 0 6px;
	padding:18px 37px 19px 75px;
	border:1px solid #CCC;
}
.transferContent .chartBox li {
	display:inline-block;
	margin-right:59px;
	text-align:center;
}
.transferContent .chartBox li img {
	margin-bottom:7px;
}
.transferContent .chartBox .photo {
	display:none;
}
.transferContent .chartBox a,
.photo a {
	display:inline-block;
	margin:0 auto;
}
.transferContent .chartBox a:hover,
.photo a:hover {
	text-decoration:none;
}
.transferContent .chartBox a span,
.photo a span {
	display:block;
	padding:5px 10px 5px 25px;
	background:#FFF;
	border:2px solid #CCC;
	font-size:12px;
	text-align:center;
}
.transferContent .chartBox a span.iconSearch {
	padding-left:25px;
	background:url(/img/public/icon_search07.png) no-repeat 8px 50%;
}
.photo a span.iconClose {
	padding-left:20px;
	background:#FFF url(/img/public/icon_close.png) no-repeat 18px 50%;
	width:52px;
}
.photo p {
	text-align:center;
}
.photo .imagePhoto {
	padding-bottom:30px;
}
.photo .imagePhoto img {
	border:1px solid #999;
}
#pageIndustrial .fancybox-close {
	display:none;
}
.productBlock02 {
	float:left;
	clear:none;
	width:411px;
	margin:0 20px 20px 0;
	padding:21px 25px 10px 32px;
}
.productBlock02 .description, .productBlock03 .description {
	margin-top:-9px;
	padding:0 28px 16px;
}
.productBlock02 .wrapperProduct {
	padding-top:20px;
}
.productBlock03 h4 {
	margin:0 0 18px;
	padding-top:10px;
	color:#87Bf0D;
	font-size:18px;
	font-weight:bold;
}
.productBlock03 h4:first-child {
	margin-top:-14px;
}
.wrapperProduct02 {
	background:url(/img/public/industrial/task/bg_line02.gif) repeat-x;
}
.wrapperProduct02 .productList li {
	padding-bottom:30px;
}
.wrapperProduct02 .inner .productList li:last-child {
	padding-bottom:0;
}
.wrapperProduct02 .inner {
	float:left;
	width:46%;
	margin-right:30px;
	background:url(/img/public/industrial/task/bg_line03.gif) repeat-y 100% 0;
}
.wrapperProduct02 .inner:first-child {
	width:50%;
}

/* ------------------------------------------------------------------
	2-10. Professional Application styles
-------------------------------------------------------------------*/
.headApp {
	padding:54px 57px 55px;
	border:0;
	background:#87BF0D url(/img/public/professional/application/bg_farming.gif) no-repeat 100% 0;
	-webkit-background-size:contain;
	background-size:contain;
	ms-behavior:url(/htc/backgroundsize.htc);
	behavior:url(/htc/backgroundsize.htc);
}
.appList {
	margin-top:13px;
	margin-left:-10px;
}
.appList li {
	float:left;
	height:54px;
	margin:0 0 10px 10px;
}
.appList li a {
	display:table-cell;
	width:180px;
	height:50px;
	border:2px solid #87BF0D !important;
	font-size:15px;
	font-weight:bold;
	text-align:left;
	vertical-align:middle;
}
.appList li a span {
	display:block;
	padding-left:44px;
	padding-right:10px;
	background:url(/img/public/icon_arrow16.png) no-repeat 19px 50% !important;
	font-size:14px !important;
}
.appList li a span:after {
	position:relative;
	width:0;
	height:0;
	border:0;
}
.appList li a:hover span {
	background:url(/img/public/icon_arrow16_h.png) no-repeat 19px 50% !important;
}
.appList li a.buttonRipple {
	min-width:136px;
	padding:0;
	border:0;
}
.appList li a.buttonRipple:hover {
	background-color:#87BF0D;
}
.appListSection {
	margin:-68px 0 110px;
	padding:40px 0;
	border-top:1px solid #D7D7D7;
	border-bottom:1px solid #D7D7D7;
}
.appListSection .appList li a span {
	background:url(/img/public/icon_arrow21.png) no-repeat 23px 51% !important;
}
.appListSection .appList li a:hover span {
	background:url(/img/public/icon_arrow21_h.png) no-repeat 23px 51% !important;
}
.endAppList {
	width:980px;
	margin:0 auto;
}
.appBlock {
	padding:21px 0 0 0;
	border:0;
}
.appBlock h3 {
	margin-bottom:21px;
	padding:9px 0 7px 53px;
	border-bottom:5px solid #87BF0D;
	background:url(/img/public/icon_leaf.gif) no-repeat 0 35%;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:30px;
	font-weight:bold;
}
.appBlock h3 span {
	float:right;
	padding:16px 18px 0 0;
	background:url(/img/public/icon_deco02.gif) no-repeat 100% 13px;
	font-size:12px;
	font-weight:normal;
}
.appBlock .descriptionBox {
	margin-bottom:13px;
}
.appBlock .descriptionBox .leftBox {
	max-width:540px;
	font-size:18px;
	line-height:1.74em;
}
.appBlock .descriptionBox .rightBox {
	max-width:420px;
}
.appBlock .descriptionBox .rightBox {
	width:auto;
}
.appBlock .wrapperProduct {
	margin:0 20px 25px;
	padding:29px 0 0 13px;
	border:2px solid #87BF0D;
	border-radius:4px;
}
.appBlock .productList {
	margin-left:-25px;
}
.appBlock .productList li {
	width:272px;
	padding:0 0 29px 32px;
}
.appBlock .pageTop01 {
	display:inline-block;
	float:right;
	position:relative;
	margin:-19px 0 17px;
}
.appBlock .pageTop01 a, .pointSection .pageTop01 a {
	padding:0 20px 0 15px;
	background:url(/img/public/icon_arrow18.gif) no-repeat 0 50%;
	font-size:12px;
}
.appBlock .description {
	padding-bottom:18px;
}
.appBlock .description a {
	text-decoration:underline;
}
.appBlock .description a:hover {
	text-decoration:none;
}

/* ------------------------------------------------------------------
	2-11. Homecare task styles
-------------------------------------------------------------------*/
.wrapperAccordion {
	width:100%;
	margin:-14px 0 90px;
	background:#FFF;
}
.wrapperAccordion .taskBlock {
	width:960px;
	margin:0 auto;
}
.wrapperAccordion .accordionBlock {
	width:100%;
	padding:40px 0;
	margin:26px 0 40px;
	background:#EDEDED;
}
.wrapperAccordion .accordionBox02 {
	position:relative;
	width:900px;
	margin:0 auto;
	padding:29px 30px 31px 29px;
	background:#FFF;
	-webkit-box-shadow:0px 1px 2px 0px #D0CFCF;
	-moz-box-shadow:0px 1px 2px 0px #D0CFCF;
	box-shadow:0px 1px 2px 0px #D0CFCF;
}
.wrapperAccordion .accordionBox02 .btnClose {
	position:absolute;
	top:0;
	right:-47px;
}
.wrapperAccordion .accordionBox02 .btnClose:hover {
	cursor:pointer;
}
.wrapperAccordion .questionBlock01.pinkStyle .questionBox {
	border-color:#E86B9B;
}
.wrapperAccordion .questionBlock01.pinkStyle .questionBox .textCell {
	color:#E86B9B;
}
.questionBlock01.pinkStyle .answerBox .textBlock {
	background:url(/img/public/homecare/task/icon_answer.png) no-repeat 8px 0;
}
.accordionBox02 .productBlock {
	padding:29px 10px 11px 20px;
	margin-bottom:0;
	border:2px solid #87BF0D;
}
.accordionBox02 .productList {
	margin:0 -65px 0 0;
}
.accordionBox02 .productList li {
	padding:0 27px 18px 0;
	width:272px;
}
.accordionBox02 .productList li .buttonDetail {
	background:#E782A9 url(/img/public/icon_arrow06.png) no-repeat 6px 50%;
}


/* ------------------------------------------------------------------
	2-12. Homecare application styles
-------------------------------------------------------------------*/
.headApp01 {
	padding:54px 57px 55px;
	border:0;
	background:#87BF0D url(/img/public/homecare/application/bg_kitchen.jpg) no-repeat 100% 0;
	-webkit-background-size:contain;
	background-size:contain;
	ms-behavior:url(/htc/backgroundsize.htc);
	behavior:url(/htc/backgroundsize.htc);
}
.headApp03 {
	padding:54px 57px 55px;
	border:0;
	background:#87BF0D url(/img/public/homecare/application/bg_bath.jpg) no-repeat 100% 0;
	-webkit-background-size:contain;
	background-size:contain;
	ms-behavior:url(/htc/backgroundsize.htc);
	behavior:url(/htc/backgroundsize.htc);
}
.headApp04 {
	padding:54px 57px 55px;
	border:0;
	background:#87BF0D url(/img/public/homecare/application/bg_toilet.jpg) no-repeat 100% 0;
	-webkit-background-size:contain;
	background-size:contain;
	ms-behavior:url(/htc/backgroundsize.htc);
	behavior:url(/htc/backgroundsize.htc);
}
.headApp05 {
	padding:54px 57px 55px;
	border:0;
	background:#87BF0D url(/img/public/homecare/application/bg_living.jpg) no-repeat 100% 0;
	-webkit-background-size:contain;
	background-size:contain;
	ms-behavior:url(/htc/backgroundsize.htc);
	behavior:url(/htc/backgroundsize.htc);
}
.appBlock01 {
	margin-top:20px;
}
.appBlock01 h3 {
	background:url(/img/public/icon_living.gif) no-repeat 0 35%;
}
.appBlock02 h3 {
	background:url(/img/public/icon_bath.gif) no-repeat 0 35%;
}
.appBlock03 h3 {
	background:url(/img/public/icon_toilet.gif) no-repeat 0 35%;
}
.appBlock04 h3 {
	background:url(/img/public/icon_kitchen.gif) no-repeat 0 35%;
}
.appBlock05 h3 {
	background:url(/img/public/icon_fishing.gif) no-repeat 0 35%;
}
.appBlock06 h3 {
	background:url(/img/public/icon_cleaning.gif) no-repeat 0 35%;
}
.appBlock07 h3 {
	background:url(/img/public/icon_transport.gif) no-repeat 0 35%;
}
.appBlock08 h3 {
	background:url(/img/public/icon_food.gif) no-repeat 0 35%;
}
.appBlock09 h3 {
	background:url(/img/public/icon_machine.gif) no-repeat 0 35%;
}
.appBlock10 h3 {
	background:url(/img/public/icon_diy.gif) no-repeat 0 35%;
}
.appBlock11 h3 {
	background:url(/img/public/icon_construction.gif) no-repeat 0 35%;
}
.appBlock12 h3 {
	background:url(/img/public/icon_caring.gif) no-repeat 0 35%;
}
.appBlock13 h3 {
	background:url(/img/public/icon_precisionmachine.gif) no-repeat 0 35%;
}
.appBlock14 h3 {
	background:url(/img/public/icon_glass.gif) no-repeat 0 35%;
}
.appBlock15 h3 {
	background:url(/img/public/icon_car.gif) no-repeat 0 35%;
}
.appBlock16 h3 {
	background:url(/img/public/icon_oil.gif) no-repeat 0 35%;
}
.appBlock17 h3 {
	background:url(/img/public/icon_coldregion.gif) no-repeat 0 35%;
}
.appBlock01 .descriptionBox {
	margin-bottom:25px;
}
.mapList {
	margin-top:-1px;
	border-top:1px solid #D7D7D7;
	background:#F7F7F7;
}
.mapList .mapInner {
	width:960px;
	margin:0 auto;
}
.mapList ul {
	padding:34px 0 70px;
	margin-right:-20px;
}
.mapList ul li {
	float:left;
	width:232px;
	margin:0 10px 20px 0;
}
.mapList ul li span {
	float:left;
	display:block;
	width:87px;
	padding:0 10px 0 3px;
}
.mapList ul li span img {
	width:100%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	-ms-border-radius:50%;
	-o-border-radius:50%;
	border-radius:50%;
	behavior:url(/htc/PIE.php);
	vertical-align:top;
}
.mapList ul li a.title {
	display:block;
	padding:3px 0 3px 30px;
	background:url(/img/public/icon_arrow36.png) no-repeat 0 3px;
	font-size:18px;
}
.mapList02 ul {
	padding-top:38px;
	margin-right:-75px;
}
.mapList02 ul li {
	width:215px;
	margin-right:43px;
}
.mapList02 ul li span {
	width:64px;
	padding:0 15px 0 0;
}
.mapList02 ul li span img {
	border:1px solid #D2D2D2;
	border-radius:0;
}
.mapList02 ul li a.title {
	float:left;
	width:106px;
	line-height:1.6em;
	padding:2px 0 2px 30px;
	background:url(/img/public/icon_arrow25.png) no-repeat 0 3px;
	font-size:13px;
}
.piecss3 {
	position:relative;
	z-index:10;
}
/* ------------------------------------------------------------------
	2-13. News styles
-------------------------------------------------------------------*/
.newsBlock {
	width:960px;
	margin:445px auto 70px;
}
.newsBlock h2 {
	padding-bottom:53px;
	font-family:'Montserrat', Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:50px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.newsBlock h2 span {
	margin-top:-5px;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	display:block;
	font-size:20px;
	font-weight:bold;
	color:#F89828;
	text-align:center;
}
.newsList li {
	position:relative;
	margin-bottom:4px;
	padding:17px 20px 16px 30px;
	background:#FFF;
	cursor:pointer;/*transition:all 0.3s ease 0s;*/
	display:none;
}
.newsList li:before {
	content:"";
	position:absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
	border:1px solid #BFBFBF;
	-webkit-transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	transition:all 150ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
}
.newsList li:hover:before {
	border:5px solid #FBC68B;
}
.newsList li .dateText, .newsTitle .dateText {
	float:left;
	width:122px;
	color:#505050;
	font-family:'Montserrat', Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:16px;
}
.newsList li div {
	float:left;
	width:776px;
}
.newsList li div .product, .newsTitle .product {
	float:left;
	width:47px;
	margin:2px 11px 0 0;
	padding:1px 2px 0;
	border-top:1px solid #6b93C4;
	border-bottom:1px solid #6b93C4;
	background:#084292;
	color:#FFF;
	font-family:'Montserrat', Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:10px;
	text-align:center;
}
.newsList li div .exhibition {
	border-top:1px solid #82BFBF;
	border-bottom:1px solid #82BFBF;
	background:#298989;
}
.newsList li div .news,
.newsTitle .news {
	border-top:1px solid #F2959C;
	border-bottom:1px solid #F2959C;
	background:#E74750;
}
.newsList li div .newsText {
	float:left;
	width:calc(100% - 62px);
	font-size:14px;
}
.newsList li div .newsText a {
	color:#505050;
}
.newsList li div .newsText a:hover {
	text-decoration:none;
}
.newsGroup .result {
	float:left;
	padding-top:7px;
	padding-left:6px;
	font-size:18px;
}
.newsGroup .condition {
	float:right;
}
.condition span.label {
	margin-left:36px;
	font-size:14px;
}
.condition .select-transform-wrapper {
	display:inline-block;
	width:211px !important;
	margin-left:16px;
	vertical-align:middle;
}
.newsGroup .select-transform-label {
	color:#4D4D4D !important;
}
.newsGroup {
	margin-bottom:20px;
}
.newsGroup .back {
	float:right;
	padding:11px 0 14px;
}
#pageNews .mainContent {
	padding-top:22px;
}
.newsDetail {
	padding:46px 45px 46px 47px;
	border:1px solid #C9C9C9;
}
.newsTitle {
	padding-bottom:16px;
	border-bottom:1px solid #CCC;
}
.newsTitle .dateText {
	width:86px;
}
.newsTitle .product {
}
.newsTitle .newsText {
	clear:left;
	padding-top:9px;
	color:#505050;
	font-size:19px;
	font-weight:bold;
}
.newsInfo .newsContent {
	margin:25px 0 27px;
	color:#505050;
	font-size:14px;
	line-height:1.65;
}
.newsInfo a {
	font-size:14px;
	color:#505050;
	text-decoration:underline;
}
.newsInfo a:hover {
	text-decoration:none;
}
.newsInfo img {
	margin-top:30px;
}
.newsLink {
	color:#505050;
	font-size:14px;
}
.newsLink a {
	color:#505050;
	font-size:14px;
	text-decoration:none;
}
.newsLink a span {
	padding-left:9px;
	text-decoration:underline;
}
.newsLink a:hover span {
	text-decoration:none;
}
/* ------------------------------------------------------------------
	2-14. Search_result styles
-------------------------------------------------------------------*/
.searchBlock {
	width:auto;
	margin:3px auto 24px;
	padding-top:27px;
	background:url(/img/public/home/bg_line01.gif) no-repeat 50% 0;
}
.searchBlock .searchInner {
	width:955px;
	margin:0 auto;
	box-sizing: border-box;
}
.searchBlock .searchText {
	display:inline-block;
	width:104px;
	padding-left:10px;
	font-family:Montserrat, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:20px;
	font-weight:bold;
	vertical-align: middle;
}
.searchBlock .searchInner div {
	display:inline-block;
	width:619px;
	padding:6px 12px 5px 8px;
	background:#EBEBEB;
	vertical-align: middle;
}
.searchBlock .searchInner div input.textSearch {
	width:502px;
	height:auto;
	padding:12px 9px 7px;
	background:#EBEBEB;
	border:none;
	font-size:15px;
}
.searchBlock .searchInner div input:hover.searchText {
	background:none;
	border:none;
}
.searchBlock .searchInner div input.buttonSearch {
	float:right;
	width:115px;
	padding:15px 5px 12px 20px;
	background:#3C3B3C url(/img/public/icon_search01.gif) no-repeat 22% 50%;
	border:none;
	color:#FFF;
	font-size:13px;
	cursor:pointer;
	text-align:center;
	font-family:'Hiragino Kaku Gothic ProN', Helvetica, Arial, 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
}
.searchBlock .searchInner .btnDiscontin {
	display: inline-block;
	vertical-align: middle;
	padding-left: 10px;
}
.searchBlock .searchInner .btnDiscontin a {
	display:block;
	width:140px;
	padding:12px 15px 12px 25px;
	background:#9a9a9a url(/img/public/icon_arrow05.png) no-repeat 15px 50%;
	color:#fff;
	font-size:13px;
	text-align:center;
	text-decoration:none;
}
.headBlock03 {
	background:#87BF0D;
}
.headBlock03 .headInner {
	padding-bottom:46px;
}
.headBlock03 .headInner .headline1 span em {
	margin-top:20px;
}
.searchBlock01 {
	margin:0;
	padding:16px 0 15px;
	background:#EBEBEB;
}
.searchBlock01 .searchText {
	padding:0;
	vertical-align:middle;
}
.searchBlock01 .searchInner div {
	margin-left:11px;
	background:#FFF;
}
.searchBlock01 .searchInner div input.textSearch {
	background:#FFF;
}
#pageSearch #contents.contents {
	margin:20px auto 100px;
}
#pageSearch #contents.contents #main {
	float:none;
	width:960px;
}
#pageSearch #contents.contents #main .groupList li {
	padding:0 24px 37px 0;
}
#contents.contents #main .colorGreen {
	background:url(/img/public/bg_transparent04.png) repeat;
}
#contents.contents #main .colorGreen .detailLink a {
	background:#89B825;
}
#contents.contents #main .colorGreen .detailLink a:hover {
	background:#9DD22A;
}
/* ------------------------------------------------------------------
	2-1n. Movie styles
-------------------------------------------------------------------*/
.movieBlock:first-child {
	padding-top:36px;
}
.movieBlock {
	margin:0 3px;
	padding-top:48px;
}
.movieBlock .title {
	margin-bottom:13px;
	padding:0 0 13px 2px;
	border-bottom:1px solid #000;
	font-size:20px;
	font-weight:bold;
}
.movieList li {
	position:relative;
	float:left;
	width:224px;
	margin:0 19px 44px 0;
}
.movieList .movieImg a {
	display:block;
	padding:1px 2px 3px;
	background:url(/img/public/movie/bg_box.jpg) no-repeat;
}
.movieList .movieImg a img {
	width:220px;
}
.movieList .movieImg a span {
	position:absolute;
	top:57px;
	z-index:2;
	display:block;
	margin:0 auto;
	width:220px;
	color:#FFF;
	font-weight:bold;
	text-align:center;
}
.movieList .movieTxt {
	padding:1px 0 0 18px;
	font-weight:bold;
	line-height:1.7;
	cursor:pointer;
	text-indent:-15px;
}
.movieList .movieImg:hover .playBox {
	cursor:pointer;
	opacity:1;
	filter:alpha(opacity=100);
}
.movieList .playBox {
	position:absolute;
	top:1px;
	left:2px;
	z-index:2;
	width:32px;
	height:33px;
	padding:47px 94px !important;
	background:url(/img/public/home/bg_transparent.png) repeat;
	transition:all 0.5s ease 0s;
	opacity:0;
	filter:alpha(opacity=0);
}
.modal {
	display:none;
	width:625px !important;
	height:667px;
	z-index:1001;
}
.overlay {
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	z-index:1000;
}
.close {
	position:absolute;
	top:-1px;
	right:-188px;
}
.modalContent {
}
.modalContent .description {
	margin:24px 0 44px;
	color:#FFF;
	font-size:23px;
	font-weight:bold;
	line-height:1.4;
	text-align:left;
}
.modalContent .description span {
	display:block;
	font-size:21px;
	font-weight:normal;
}
.modalContent .item01 {
	margin:0 0 7px 6px;
	color:#FFF;
	font-size:16px;
	text-align:left;
}
.modalContent .itemList01 {
	margin:0 2px 0 5px;
	padding:17px 17px 6px;
	border:1px solid #535353;
	background:#FFF;
}
.modalContent .itemList01 li {
	float:left;
	width:266px;
	margin:0 25px 14px 0;
	text-align:left;
}
.modalContent .productList li {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
    min-height:auto;
}

/******Application index style******/
.appGroup {
	position:relative;
}
.appGroup h2 {
	position:absolute;
	top:29px;
	left:0;
	right:0;
	z-index:2;
	text-align:center;
	font-size:22px;
	font-weight:bold;
}
.appGroup h2 span {
	vertical-align:top;
}
.appGroup h2 span img {
	margin:3px 5px 0 0;
}
.appGroup h2 em {
	font-size:19px;
	font-weight:bold;
}
.appGroup h2 .textDirection {
	display:block;
	margin-top:-3px;
	font-size:12px;
}
.appGroup h2 .textDirection em {
	color:#6EA000;
	font-size:14px;
}
.appGroup .bg {
	position:absolute;
	top:0;
	z-index:1;
}
.appGroup .overlay01 {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:2;
	background:url(/img/public/bg_transparent05.png) repeat 0 0;
	opacity:0;
	filter:alpha(opacity=0);
}
.appGroup .overlay01.show {
	display:block!important;
}
.listApp {
	position:relative;
	z-index:3;
	height:297px;
	margin-left:-9px;
	padding:82px 253px 0 278px;
}
.listApp li {
	float:left;
	margin-left:9px;
	margin-bottom:9px;
	opacity:0;
	filter:alpha(opacity=0);
}
.listApp li img {
	vertical-align:top;
}
.listApp .kitchen {
	padding:2px 0 0 1px;
}
.listApp .livingroom01 {
	padding:1px 0 0 2px;
}
.listApp .bathroom {
	padding:0;
}
.listApp .restroom {
	padding:0;
}
.listApp .livingroom02 {
	padding:0;
	margin-top:-16px;
}
.appGroup .popup {
	display:none;
	position:absolute;
	top:10px;
	left:-47px;
	right:0;
	z-index:5;
	width:712px;
	height:360px;
	margin:0 auto;
	background:url(/img/public/bg_transparent06.png) repeat 0 0;
}
.appGroup .close01 {
	display:inline-block;
	position:absolute;
	top:0;
	right:-47px;
	background:#FFF;
}
.appGroup .close01 img {
	vertical-align:top;
}
.appGroup .popup h3 {
	font-size:29px;
	font-family:Montserrat, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
}
.appGroup .popup h3 span {
	display:block;
	margin-top:-2px;
	font-size:16px;
}
.buttonList02 {
	float:left;
	margin:13px 8px 0 2px;
}
.buttonList02 li {
	position:relative;
	padding:3px;
	margin-bottom:5px;
}
.buttonList02 li a {
	display:table-cell;
	width:126px;
	height:41px;
	padding-left:35px;
	background:#FFF url(/img/public/icon_arrow27.png) no-repeat 14px 50%;
	color:#686564;
	font-size:15px;
	text-decoration:none;
	vertical-align:middle;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	-o-box-shadow:none;
	box-shadow:none;
	transition:background-color 0.35s ease 0s, color 0.35s ease 0s;
}
.buttonList02 li a:before {
	content:'';
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:161px;
	min-height:41px;
	border-radius:6px;
	border:3px solid #8DC219;
}
.buttonList02 li.active a {
	border-radius:6px;
	background:#8DC219 url(/img/public/icon_arrow05.png) no-repeat 14px 50%;
	-moz-box-shadow:0 2px 2px #CDCCCC;
	-webkit-box-shadow:0 2px 2px #CDCCCC;
	-o-box-shadow:0 2px 2px #CDCCCC;
	box-shadow:0 2px 2px #CDCCCC;
	color:#FFF;
}
.buttonList02 li.active a:before {
	border:0;
}
.appGroup .popup .leftBox {
	margin:20px 0 0 46px;
}
.appGroup .popup .rightBox {
	position:relative;
	margin:25px 87px 0 0;
}
.popup .listStar {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}
.popup .listStar li {
	display:inline-block;
	position:absolute;
}
.popup .listStar li .iconStar {
	display:block;
}
.popup .note01 {
	float:right;
	margin-top:3px;
}
.popup .note01 span {
	padding-left:2px;
	color:#686564;
	font-size:12px;
}
.popup .note01 img {
	position:relative;
	top:2px;
}
.popup .listStar .tooltip01 {
	display:none;
	position:absolute;
	bottom:8px;
	width:264px;
	padding:10px 0 7px;
	border:3px solid #8DC219;
	border-radius:6px;
	background:#FFF;
	overflow:visible;
	z-index:10;
}
.popup .listStar .tooltip01:after {
	content:'';
	position:absolute;
	bottom:-8px;
	left:50%;
	margin-left:-14px;
	width:18px;
	height:8px;
	background:url(/img/public/icon_arrow28.png) no-repeat 0 0;
}
.popup .listStar .tooltip01:hover {
	text-decoration:none;
}
.popup .listStar .tooltip01 .text01 {
	display:table-cell;
	width:80%;
	padding:8px 8px 0 18px;
	font-size:25px;
	vertical-align:top;
}
.popup .listStar .tooltip01 .text01 em {
	display:block;
	font-size:14px;
	margin-top:2px;
}
.popup .listStar .tooltip01 .image01 {
	display:table-cell;
	width:71px;
	padding:0 10px 0 0;
	vertical-align:middle;
	text-align:right;
}
.appGroup01 .popup01 .listStar .star01 {
	top:91px;
	left:86px;
}
.appGroup01 .popup01 .listStar .star02{
	top:169px;
	left:53px;
}
.appGroup01 .popup01 .listStar .star03{
	top:153px;
	left:256px;
}
.appGroup01 .popup01 .listStar .star04{
	top:175px;
	left:148px;
}
.appGroup01 .popup01 .listStar .star05{
	top:169px;
	left:306px;
}
.appGroup01 .popup01 .listStar .star01 .tooltip01 {
	left:-120px;
	bottom:30px;
}
.appGroup01 .popup01 .listStar .star02 .tooltip01 {
	left:-54px;
	bottom:31px;
}
.appGroup01 .popup01 .listStar .star03 .tooltip01 {
	left:-120px;
	bottom:30px;
}
.appGroup01 .popup01 .listStar .star04 .tooltip01 {
	left:-120px;
	bottom:30px;
}
.appGroup01 .popup01 .listStar .star05 .tooltip01 {
	left:-120px;
	bottom:30px;
}
.appGroup01 .popup05 .listStar .star01 {
	top:78px;
	left:112px;
}
.appGroup01 .popup05 .listStar .star02{
	top:72px;
	left:276px;
}
.appGroup01 .popup05 .listStar .star03{
	top:254px;
	left:248px;
}
.appGroup01 .popup05 .listStar .tooltip01 {
	width:224px;
}
.appGroup01 .popup05 .listStar .star01 .tooltip01 {
	left:-98px;
	bottom:32px;
}
.appGroup01 .popup05 .listStar .star02 .tooltip01 {
	left:-99px;
	bottom:30px;
}
.appGroup01 .popup05 .listStar .star03 .tooltip01 {
	left:-99px;
	bottom:30px;
}
.appGroup01 .popup03 .listStar .star01 {
	top:124px;
	left:94px;
}
.appGroup01 .popup03 .listStar .star02 {
	top:162px;
	left:221px;
}
.appGroup01 .popup03 .listStar .star03 {
	top:74px;
	left:174px;
}
.appGroup01 .popup03 .listStar .star01 .tooltip01 {
	width:254px;
}
.appGroup01 .popup03 .listStar .star02 .tooltip01 {
	width:353px;
}
.appGroup01 .popup03 .listStar .star01 .tooltip01 {
	left:-94px;
	bottom:30px;
}
.appGroup01 .popup03 .listStar .star01 .tooltip01:after {
	left:107px;
}
.appGroup01 .popup03 .listStar .star02 .tooltip01 {
	left:-218px;
	bottom:29px;
}
.appGroup01 .popup03 .listStar .star02 .tooltip01:after {
	left:230px;
}
.appGroup01 .popup03 .listStar .star03 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup01 .popup04 .listStar .star01 {
	top:150px;
	left:92px;
}
.appGroup01 .popup04 .listStar .star02{
	top:259px;
	left:14px;
}
.appGroup01 .popup04 .listStar .tooltip01 {
	width:224px;
}
.appGroup01 .popup04 .listStar .star01 .tooltip01 {
	left:-99px;
	bottom:31px;
}
.appGroup01 .popup04 .listStar .star02 .tooltip01 {
	left:-99px;
	bottom:30px;
}
.appGroup01 .popup01 .listStar .star01 .tooltip01 {
	width:335px;
}
.appGroup01 .popup01 .listStar .star01 .tooltip01:after {
	left:38%;
	margin-left:-9px;
}
.appGroup01 .popup01 .listStar .star02 .tooltip01:after {
	left:25%;
	margin-left:-13px;
}
.appList01 {
	margin-top:29px;
	margin-left:-19px;
}
.appList01 li {
	float:left;
	width:50%;
	margin-bottom:19px;
}
.appList01 li a {
	display:block;
	margin-left:19px;
	padding:17px 20px 17px 48px;
	border:2px solid #87BF0D;
	background:url(/img/public/icon_arrow29.png) no-repeat 30px 50% !important;
	font-size:18px;
	font-weight:bold;
	text-align:left;
}
.appList01 li a.hoverOn,
.appList01 li a:hover {
	background:#87BF0D url(/img/public/icon_arrow30.png) no-repeat 30px 50% !important;
	color:#000;
}
.contents04 {
	width:960px;
	margin:-30px auto 123px !important;
}
.contents04 #main {
	background:none;
}


/******Professional/application index style******/
.appGroup02 {
	margin-bottom:26px;
}
.appGroup02 h2 {
	top:16px;
}
.appGroup02 h2 .textDirection em {
	color:#FFF;
}
.appGroup02 .listApp {
	height:391px;
	padding:0;
}
.appGroup02 .listApp li {
	position:absolute;
	margin:0;
}
.appGroup02 .listApp .machine {
	left:249px;
	top:157px;
}
.appGroup02 .listApp .agriculture {
	left:271px;
	top:74px;
}
.appGroup02 .listApp .caring {
	left:501px;
	top:103px;
}
.appGroup02 .listApp .food {
	left:627px;
	top:166px;
}
.appGroup02 .listApp .diy {
	left:497px;
	top:178px;
}
.appGroup02 .listApp .fishing {
	left:38px;
	bottom:10px;
}
.appGroup02 .listApp .transport {
	left:69px;
	bottom:123px;
}
.appGroup02 .listApp .construction {
	right:30px;
	bottom:38px;
}
.appGroup02 .listApp .cleaning {
	right:388px;
	bottom:31px;
}
.appGroup02 .popup {
	top:15px;
	width:712px;
	height:360px;
}
.appGroup02 .w852 {
	width:852px;
}
.appGroup02 .buttonList02 {
	float:left;
}
.appGroup02 .popup .leftBox {
	margin:20px 0 0 42px;
}
.appGroup02 .popup01 .listStar .star01 {
	left:190px;
	top:79px;
}
.appGroup02 .popup01 .listStar .star02 {
	left:128px;
	top:113px;
}
.appGroup02 .popup01 .listStar .star03 {
	left:168px;
	top:153px;
}
.appGroup02 .popup01 .listStar .star04 {
	left:305px;
	top:91px;
}
.appGroup02 .popup01 .listStar .star05 {
	left:49px;
	top:204px;
}
.appGroup02 .popup01 .listStar .star06 {
	left:91px;
	top:169px;
}
.appGroup02 .popup01 .listStar .star07 {
	left:150px;
	top:241px;
}
.appGroup02 .popup01 .listStar .tooltip01 {
	width:273px;
}
.appGroup02 .popup01 .listStar .star01 .tooltip01 {
	left:-124px;
	bottom:30px;
}
.appGroup02 .popup01 .listStar .star02 .tooltip01 {
	left:-124px;
	bottom:30px;
}
.appGroup02 .popup01 .listStar .star03 .tooltip01 {
	left:-124px;
	bottom:30px;
}
.appGroup02 .popup01 .listStar .star04 .tooltip01 {
	width:323px;
	left:-149px;
	bottom:30px;
}
.appGroup02 .popup01 .listStar .star05 .tooltip01 {
	left:-124px;
	bottom:30px;
}
.appGroup02 .popup01 .listStar .star06 .tooltip01 {
	left:-124px;
	bottom:30px;
}
.appGroup02 .popup01 .listStar .star07 .tooltip01 {
	left:-124px;
	bottom:30px;
}
.appGroup02 .popup02 .listStar .star01 {
	left:223px;
	bottom:66px;
}
.appGroup02 .popup02 .listStar .star02 {
	left:305px;
	top:134px;
}
.appGroup02 .popup02 .listStar .star03 {
	left:52px;
	top:144px;
}
.appGroup02 .popup02 .listStar .star01 .tooltip01 {
	left:-149px;
	bottom:30px;
	width:323px;
}
.appGroup02 .popup02 .listStar .star02 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup02 .listStar .star03 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup03 .listStar .star01 {
	left:269px;
	top:243px;
}
.appGroup02 .popup03 .listStar .star01 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup04 .listStar .star01 {
	left:272px;
	top:77px;
}
.appGroup02 .popup04 .listStar .star02 {
	left:142px;
	top:109px;
}
.appGroup02 .popup04 .listStar .star03 {
	left:325px;
	top:208px;
}
.appGroup02 .popup04 .listStar .star04 {
	left:105px;
	top:201px;
}
.appGroup02 .popup04 .listStar .star05 {
	left:210px;
	top:90px;
}
.appGroup02 .popup04 .listStar .star01 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup04 .listStar .star02 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup04 .listStar .star03 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup04 .listStar .star04 .tooltip01 {
	width:353px;
	left:-108px;
	bottom:31px;
}
.appGroup02 .popup04 .listStar .star04 .tooltip01:after {
	left:121px;
}
.appGroup02 .popup04 .listStar .star05 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup05 .listStar .star01 {
	left:248px;
	top:92px;
}
.appGroup02 .popup05 .listStar .star02 {
	left:81px;
	top:218px;
}
.appGroup02 .popup05 .listStar .star03 {
	left:264px;
	top:192px;
}
.appGroup02 .popup05 .listStar .star01 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup05 .listStar .star02 .tooltip01 {
	left:-119px;
	bottom:31px;
}
.appGroup02 .popup05 .listStar .star03 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup06 .listStar .star01 {
	left:241px;
	top:127px;
}
.appGroup02 .popup06 .listStar .star02 {
	left:77px;
	top:177px;
}
.appGroup02 .popup06 .listStar .star03 {
	left:207px;
	top:236px;
}
.appGroup02 .popup06 .listStar .star01 .tooltip01 {
	left:-158px;
	bottom:30px;
	width:342px;
}
.appGroup02 .popup06 .listStar .star02 .tooltip01 {
	left:-155px;
	bottom:31px;
	width:336px;
}
.appGroup02 .popup06 .listStar .star03 .tooltip01 {
	left:-169px;
	bottom:30px;
	width:364px;
}
.appGroup02 .popup07 .listStar .star01 {
	left:112px;
	top:197px;
}
.appGroup02 .popup07 .listStar .star02 {
	left:311px;
	top:172px;
}
.appGroup02 .popup07 .listStar .star03 {
	left:200px;
	top:186px;
}
.appGroup02 .popup07 .listStar .star01 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup07 .listStar .star02 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup07 .listStar .star03 .tooltip01 {
	left:-149px;
	bottom:30px;
	width:323px;
}
.appGroup02 .popup08 .listStar .star01 {
	left:227px;
	top:139px;
}
.appGroup02 .popup08 .listStar .star02 {
	left:257px;
	top:188px;
}
.appGroup02 .popup08 .listStar .star01 .tooltip01 {
	left:-149px;
	bottom:30px;
	width:323px;
}
.appGroup02 .popup08 .listStar .star02 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup09 .listStar .star01 {
	left:261px;
	top:146px;
}
.appGroup02 .popup09 .listStar .star02 {
	left:118px;
	top:153px;
}
.appGroup02 .popup09 .listStar .star03 {
	left:322px;
	top:151px;
}
.appGroup02 .popup09 .listStar .star04 {
	left:198px;
	top:153px;
}
.appGroup02 .popup09 .listStar .star01 .tooltip01 {
	left:-164px;
	bottom:30px;
	width:354px;
}
.appGroup02 .popup09 .listStar .star02 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup09 .listStar .star03 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.appGroup02 .popup09 .listStar .star04 .tooltip01 {
	left:-119px;
	bottom:30px;
}
.textShadow {
	text-shadow:0 0 5px #FFF, 0 0 3px #FFF, 0 0 2px #FFF;
}
.textElement01 {
	margin:40px 0 20px 0;
}
.textElement01 .redText {
	color:#f12d14;
	font-weight:bold;
	padding:0 0 19px 0;
	font-size:15px;
}
.textElement01 .grayText {
	font-size:16px;
	background:#f5f5f5;
	padding:7px 5px 7px 11px;
	font-weight:bold;
}
.textElement01 .title {
	background:#757575;
	color:#FFF;
	font-size:18px;
	padding:8px 5px 10px 24px;
	font-weight:bold;
}
.textElement01 .elementInner {
	border:1px solid #ccc;
	border-top:none;
	padding:10px 20px 20px 20px;
}
.textElement01 table {
	width:100%;
	margin:0 0 6px 0;
}
.textElement01 table th,
.textElement01 table td {
	border-bottom:1px solid #ccc;
	padding:7px 7px 9px 23px;
}
.textElement01 table th {
	width:125px;
}
.textElement01 table td {
	padding-left:10px;
}
.textElement01 table th {
	font-weight:bold;
}
.note{
	font-size:10px;
}
.listItem {
	margin:0 -36px -15px 0;
	position:relative;
}
.productOut .listItem {
	margin:0 -36px 0 0;
}
.listItem li {
	width:428px;
	padding:0 0 30px 0;
	margin:0 36px 0 0;
	float:left;
}
.listItem li li {
	padding:0;
	margin:0;
	float:none;
}
.listItem li p.itemImage {
	width:141px;
	font-size:0;
	float:left;
}
.listItem li p.itemImage img {
	border:4px solid #d6d6d6;
}
.listItem li .itemText {
	float:right;
	width:273px;
	line-height:1.6;
}
.productBlock01 .listItem li .itemText {
	width:auto;
}
.listItem li .itemText .link {
	padding:0 0 3px 0;
}
.listItem li .itemText a {
	color:#87bf0d;
	font-weight:bold;
	font-size:18px;
	border-bottom:2px solid #87bf0d;
}
.listItem li .itemText a:hover {
	border-bottom:2px solid #fff;
	text-decoration:none!important;
}
.productBlock .wrapperItem {
	padding-top:20px;
}
.listItem li ul.link a {
	background:url(/img/public/icon_dot.gif) no-repeat 6px 11px;
	padding:0 0 0 19px;
}
.transferContent01 .transferTitle {
	background:url(/img/public/industrial/task/bg_transfer0101.gif) no-repeat;
}
.transferContent01 .transferList {
	box-shadow:none;
}
.transferContent01 .transferList li {
	font-size:15px;
	background:url(/img/public/icon_circle02.png) no-repeat 0 13px;
	padding:12px 0 10px 30px;
}
.transferContent01 .transferInner {
	padding:7px 30px 0 30px;
	border:1px solid #D7D7D7;
	border-top:none;
}
.transferContent01 .transferInner .transferList {
	padding:0;
	border:none;
}
.transferContent01 .redText {
	text-align:left;
	font-weight:bold;
	font-size:17px;
	color:#ed2c14;
	padding:16px 0 20px 0;
}
.generalBox {
	margin-bottom:30px;
}
.generalBox .title {
	padding:8px 23px 9px;
	border:1px solid #CCC;
	background:#F6F6F6;
	font-size:18px;
	text-align:left;
	font-weight:bold;
}
.generalBox ul li {
	font-size:14px;
	line-height:1.5;
}
.generalBox .inner {
	padding:14px 21px 0;
	border:1px solid #B2B2B2;
	border-width:0 1px 1px;
}
.productOut {
	margin:0 -20px 0 0;
}
.productOut .productBlock {
	float:left;
	margin:0 20px 0 0;
	width:411px;
}
.productOut .listItem li {
	padding:0 0 14px 0;
}
.productOut .listItem li .itemText {
	width:253px;
	padding-right:20px;
}
.borderNone {
	background:url(/img/public/bg_line05.gif) repeat-x 0 0;
	border-top:none!important;
	margin:10px 0 0 0;
}
.productBlock01 .listItem li p.itemImage {
	width:440px;
}
.productBlock01 .listItem li {
	width:737px;
}
.listItem li p.title {
	font-weight:bold;
	font-size:18px;
	padding:0 0 3px 0;
}
.listItem li ul.link01 li {
	width:auto;
	padding:0 0 3px 0;
}
.listItem li ul.link01 li a {
	font-size:13px;
	background:url(/img/public/icon_arrow.gif) no-repeat 0 4px;
	padding:0 0 0 11px;
}

.listItem01 {
	margin:0 !important;
	background:url(/img/public/industrial/task/bg_line01.gif) repeat-x 0 100%;
}
.listItem01 li {
	width:218px;
	margin-right:10px;
	padding-bottom:16px;
}
.listItem01 li .itemImage {
	position:relative;
	margin-bottom:6px;
	border:1px solid #D6D6D6;
	width:206px;
}
.listItem01 .itemImage .image {
	min-height:160px;
	width:100%;
}
.listItem01 .itemImage .image a {
	display:block;
	width:100%;
}
.listItem01 .itemImage .image img {
	display:block;
	padding:0;
}
.listItem01 li .levelBlock {
	position:absolute;
	right:10px;
	top:10px;
	min-height:44px;
}
.listItem01 li .redText {
	margin:1px 0 -1px;
	color:#DF2912;
	font-size:12px;
	font-weight:bold;
}
.listItem01 li .itemText {
	float:none;
	width:auto;
}
.listItem01 li .itemText p {
	line-height:1.3;
}
.listItem01 li .itemText p a {
	display:inline-block;
	margin-bottom:3px;
	border-width:1px;
	border-color:#666;
	color:#000;
	font-size:14px;
	font-weight:bold;
}
.listItem01 li .itemText p a:hover {
	border-width:1px;
}
.listItem01 li .itemText ul li {
	width:auto;
	margin-right:0;
	padding:0 0 0 8px;
	text-indent:-8px;
}
.transferContent p.txt {
	text-align:left;
	font-size:15px;
	padding:13px 0 15px 0;
	line-height:1.5;
}
.caseSection {
	padding:31px 0 99px;
}
.caseBlock {
	border-bottom:1px solid #818181;
	margin:36px auto 0;
	width:860px;
}
.caseBlock p.description {
	padding-bottom:40px;
	font-size:14px;
	line-height:1.7;
}
.caseBlock .caseTitle {
	padding-bottom:23px;
}
.caseTitle .stepCase {
	display:inline-block;
	vertical-align:middle;
	background:#000;
	color:#FFF;
	margin:4px 18px 0 0;
	padding:8px 5px 10px;
	font-size:22px;
	font-weight:bold;
	width:14.9%;
	text-align:center;
	line-height:1.3;
}
.caseTitle .about {
	display:inline-block;
	vertical-align:middle;
	width:80%;
	font-size:17px;
	font-weight:bold;
	line-height:1.5;
	color:#000;
}
.caseTitle01 .about {
	font-size:20px;
}
.caseTitle01 .stepCase {
	margin-right:8px;
	padding:2px 5px 6px;
	font-size:18px;
	width:90px;
}
.caseBlock .bottomBox ul {
	margin:0 -52px 0 0;
}
.caseBlock .bottomBox li {
	margin-right:52px;
}
.bottomBox .box {
	width:860px;
	margin:0 auto;
}
.bottomBox ul {
	margin:0 -19px 0 0;
}
.bottomBox li {
	float:left;
	padding:0 0 30px;
	margin:0 19px 0 0;
}
.bottomBox li div.out {
	display:table;
	width:401px;
	background:#FFF;
	margin:0 0 1px;
}
.bottomBox li .image01 {
	display:table-cell;
	vertical-align:middle;
	width:224px;
	font-size:0;
}
.bottomBox li .text {
	display:table-cell;
	vertical-align:middle;
	border:1px solid #9B9B9B;
	border-left:none;
	text-align:center;
	margin:0
}
.bottomBox li .text .view {
	margin:13px 0 0;
}
.bottomBox li .text .view a {
	display:inline-block;
	width:130px;
	border:2px solid #000;
	padding:7px 0 9px;
	font-size:15px;
	background:#FFF;
	transition:background-color 0.35s ease 0s, color 0.35s ease 0s;
}
.bottomBox li .text .view a:hover {
	background:#000;
	color:#FFF;
	text-decoration:none !important;
}
.bottomBox li .text .view a span {
	background:url(/img/public/icon_arrow35.png) no-repeat 0 4px;
	padding:0 0 0 17px;
}
.bottomBox li .text .view a:hover span {
	color:#FFF;
	background:url(/img/public/icon_arrow32.png) no-repeat 0 4px;
}
.bottomBox li p:last-child {
	padding-top:5px;
	line-height:1.55;
}
.infoTable th,
.infoTable td {
	vertical-align:top;
}
.infoTable td {
	padding-left:40px;
	text-indent:-1.5em;
}
/* ------------------------------------------------------------------
	2-15. Sitemap styles
-------------------------------------------------------------------*/
.sitemapBlock {
	width:880px;
	margin:0 auto;
	padding-top:78px;
}
.sitemapBlock01 {
	padding-top:86px;
}
.sitemapBlock h2 {
	margin-bottom:23px;
	padding-bottom:10px;
	border-bottom:1px solid #000;
	font-size:20px;
	font-weight:bold;
	line-height:1.4;
}
.sitemapBlock dt {
	float:left;
	margin-right:58px;
	color:#515151;
	font-size:16px;
	font-weight:bold;
	line-height:1.8;
}
.sitemapBlock dd li {
	width:209px;
	margin:0 0 11px;
}
.sitemapBlock dd li:first-child {
	width:225px;
}
.sitemapBlock li {
	float:left;
	width:283px;
	margin:0 10px 12px 0;
}
.sitemapBlock li a {
	display:block;
	padding-left:15px;
	background:url(/img/public/icon_arrow38.png) no-repeat 0 11px;
	color:#515151;
	font-size:16px;
	line-height:1.8;
}
.blockList li ul.listArrow {
	padding:9px 0 0 0;
}
.blockList li ul.listArrow li {
	background:url(/img/public/icon_arrow38.png) no-repeat 2px 5px;
	margin:0;
	padding:0 0 11px 17px;
	float:none;
	width:auto;
}
.blockSearch li div {
	padding:15px 0 0 4px;
}
.searchBlock02 {
	background:none;
	margin:3px 0 80px 0;
}
.searchBlock02 .searchText {
	width:179px;
	padding:0 0 0 6px;
	font-weight:normal;
	font-size:17px;
}
.searchBlock02 .searchInner div {
	width:546px;
}
.searchBlock02 .searchInner div input.textSearch {
	width:430px;
}
.blockSearch li {
	max-width: 220px;
	margin-bottom:18px;
}
.blockSearch li a {
	color:#515151;
}
.blockSearch li p.blockImage {
	padding:0;
	background:none;
}
.productList .groupImage span {
	display:block;
	text-align:left;
	padding:3px 0 0 5px;
	margin:0 0 -3px 0;
	position:relative;
}
.listproduct {
	background:url(/img/public/industrial/task/bg_line01.gif) repeat-x 0 100%;
}
.searchBlock03 {
	background:none;
	margin:0;
}
.searchBlock03 .searchText {
	width:179px;
	padding:0;
	font-size:17px;
	font-weight:normal;
}
.searchBlock03 .searchInner {
	width: auto;
}
.searchBlock03 .searchInner div {
	width:480px;
}
.searchBlock03 .searchInner div input.textSearch {
	width:360px;
	/*width:530px;*/
}
p.thumbList img {
	height: 77px;
}
#CBFWebDebugBar {
    z-index: 1000311232 !important;
}

.sgBlock {
	padding: 20px;
	background-color: #F6F6F4;
	border: 1px solid #ccc;
}

.sgBlock h2 {
	padding-bottom: 3px;
    font-family: Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.sgContent {
	display: flex;
	padding: 3px;
	font-size: 13px;
	color: #515151;
}

.sgImage {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.sgText {
	display: flex;
	align-items: center;
	line-height: 1.8;
}

.sgText p span a {
	color: #06C;
}

.medicalModal {
	display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 530px;
    background: #FFF;
    z-index: 1001;
	transform: translate(-50%, -50%);
	border-radius: 5px;
	overflow: hidden;
}

.medicalModal .modalHeader {
	padding: 15px;
	color: white;
	font-size: 21px;
	background-color: #1f94d3;
}

.medicalModal .modalBody {
	padding: 30px;
}

.medicalModal .modalBody p {
	line-height: 1.8;
}

.medicalModal .modalFooter {
	padding: 30px;
    text-align: center;
	border-top: 1px solid #c4c4c4;
}

.modalFooter .link {
	cursor: pointer;
	display: inline-block;
	background-image: linear-gradient(140deg, #00a6ff 0%, #1f94d3 100%);
	color: #FFF;
	text-decoration: none;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	font-size: 21px;
}

.askdoctorsImg {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 158px 0 179px;
}

.privacyBlock {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.privacyBlock .privacyList {
	margin-bottom: 0;
	width: 75%;
}
.privacyBlock .image {
	width: 25%;
}

.privacyWrap {
	border: 2px solid #eee;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 20px;
	padding: 20px;
}
.privacyWrap .privacyList {
	margin: 0;
	width: 85%;
}
.privacyWrap .privacyList dt {
	padding-top: 0;
}
.privacyWrap .privacyList dd:last-child {
	padding-bottom: 0;
}
.privacyWrap .image {
	width: 15%;
}