@charset "UTF-8";


/* モバイル */

@media screen and (max-width: 767px)

{
/* CSSリセット */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}



/* html
----------------------------------------------------- */

html{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

/* body
-----------------------------------------------------*/

body{
	width: 100%;
	height: 100%;
	background: #FFF;
	color: #403929;
	font-size: 14px;
	font-family:"メイリオ",sans-serif;
	line-height: 1.7em;
	margin: 0;
	padding: 0;
	word-wrap : break-word;
	overflow-wrap : break-word;
}

div#wrap {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

div#container{
	width: 100%;
	height: 100%;
	height: auto !important;
	min-height: 100%;
	margin: 0 auto;
	padding: 0 0 50px 0;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	padding-bottom: 50px;
	background-color: #FFF;
}

/* link関連
----------------------------------------------------*/

a:link {
	text-decoration: none;
	color: #696C89;
}
a:visited {
	text-decoration: none;
	color: #698594;
}
a:hover {
	text-decoration: none;
	color: #B9D5D5;
}
a:active {
	text-decoration: none;
	color: #D6E3E9;
}

/*ページトップへ戻る
-----------------------------------------------------*/
#page_top{
	width: 60px;
	height: 60px;
	position: fixed;
	right: 13px;
	bottom: 12px;
	background: #637781;
	opacity: 0.5;
	border-radius: 30px;
	z-index: 9999;
}
#page_top a{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -25px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
#page_top a::after{
	content: 'TOP';
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 30px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

/* ナビゲーションメニュー */
nav.menu {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background: #FFF;
	color: #000;
	text-align: center;
	transform: translateY(-100%);
	transition: all 0.6s;
	width: 100%;
}
nav.menu ul {
	background: #EEE8CD;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
nav.menu ul li {
	font-size: 15px;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #CCC;
	background: #E6F3F9;
}
/* 最後はラインを描かない */
nav.menu ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
nav.menu ul li a {
	display: block;
	color: #727692;
	padding: 14px 0;
}
/*下位カテゴリ見せない*/
nav.menu ul>li>ul {
	display: none;
}


/* このクラスを、jQueryで付与・削除する */
nav.menu.active {
	transform: translateY(0%);
}

.navToggle {
	display: block;
	position: fixed;   /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 15px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 3;
	background: rgba(99,119,129,0.5);
	text-align: center;
	border-radius: 3px;
}

.navToggle span {
	display: block;
	position: absolute;   /* .navToggleに対して */
	width: 30px;
	border-bottom: solid 3px #FFF;
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	left: 6px;
	margin: auto;
}
.navToggle span:nth-child(1) {
	top: 9px;
}
.navToggle span:nth-child(2) {
	top: 18px;
}
.navToggle span:nth-child(3) {
	top: 27px;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

/* ヘッダー
----------------------------------------------------*/

div#header {
	width: 100%;
	position: relative;
}

header {
	width: 100%;
	background: #FFFFFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	padding: 0;
	margin: 0;
}
header h1 {
	padding: 10px;
	margin: 0;
	font-weight: bold;
	line-height: 1.4;
	}
header img {
	max-width: 100%;
	margin: 0 auto;
}

/* ミドルdiv
----------------------------------------------------*/

div.middle {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: column;
}

/* メイン
----------------------------------------------------*/

div.main {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
h2 {
	font-size: 15px;
	font-weight: bold;
	padding: 5px 10px;
	color: #555B65;
	border: 1px solid #BCC0C8;
	background: #E4E6E9;
	background-image: url(img/h2_bg.gif);
}
/* 太字 */
span.bld {
	font-weight: bold;
}
/*メインdiv内　テキストリンク装飾*/
div.main a {
	border-bottom: 1px dotted #696C89;
	padding-bottom: 2px;
}
/*index　「ポリッシャーとは」*/
div.index_kaisetu01 {
	width: 97％;
	margin: 10px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.index_kaisetu01 img {
	max-width: 100%;
	margin: 0 auto 10px;
	display: block;
}
div.index_kaisetu01 div {
	width: 97%;
	margin: 0 10px;
}
/*index　「回転数の違い」*/
div.index_kaisetu02 {
	width: 97％;
	margin: 10px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.index_kaisetu02 h3{
	padding: 10px 0 5px;
}
span.akafuto {
	font-weight: bold;
	color: #E5554D;
}
span.kome {
	display: block;
	font-size: 12px;
	text-indent: -12px;
	padding-left: 12px;
	margin-left: 15px;
}
div.index_kaisetu02 ul {
	list-style: disc;
	padding-left: 20px;
	margin: 10px;
}
div.index_kaisetu02 ul li {
	margin: 8px 0;
}
/*index　「ポリッシャーの種類」*/
div.index_kaisetu03 {
	width: 97%;
	margin: 20px auto;
	padding: 0 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
div.index_kaisetu03 h3 {
	padding: 10px 0 5px;
	width: 100%;
	font-weight: bold;
}
div.index_kaisetu03 img {
	display: block;
	max-width: 100%;
	margin: 10px;
}
div.index_kaisetu03 p {
	width: 100%;
	padding: 10px;
}
h3.case {
	padding: 5px;
	border-top: 1px solid #E4E5E9;
	border-bottom: 3px double #E4E5E9;
	font-size: 14px;
	font-weight: bold;
	text-indent: -20px;
	padding-left: 20px;
}
h3.case::before {
	content:'◆';
	font-size: 16px;
	color: #5C729F;
	margin-right: 5px;
}
p.commentary {
	padding: 10px;
}
/*sousa　「ポリッシャーの操作方法」*/
ol.sousahou {
	list-style: desimal;
	padding-left: 20px;
	margin: 20px 10px;
}
ol.sousahou li {
	font-weight: bold;
}
/*左画像、右文章*/
ul.sousahou_u01 {
	width: 97%;
	padding: 0;
	margin: 20px auto 30px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: column;
	justify-content: center;
}
ul.sousahou_u01 li:first-child {
	width: 97%;
	margin: 10px 0;
}
ul.sousahou_u01 li:last-child {
	width: 97%;
	font-weight: normal;
}
ul.sousahou_u01 li img {
	max-width: 100%;
	display: block;
	margin: auto;
}
/*普通のリスト*/
ul.sousahou_u02 {
	list-style: disc;
	padding-left: 20px;
	margin: 20px 10px 30px 0;
}
ul.sousahou_u02 li {
	font-weight: normal;
	margin-top: 10px;
}
span.red {
	color: #E50000;
}
ul.sousahou_u02 li img {
	max-width: 100%;
	display: block;
	margin: 10px auto;
}
/*画像、文章、画像、文章（リスト表示なし）*/
ul.sousahou_u03 {
	list-style: none;
	padding: 0;
	margin: 20px auto 30px;
}
ul.sousahou_u03 li {
	font-weight: normal;
	margin-top: 10px;
}
ul.sousahou_u03 li img {
	max-width: 100%;
	display: block;
	margin: 10px auto;
}
span.black_block {
	font-weight: normal;
	display: block;
	margin: 10px 0 30px;
}
/*sousa　「使い方のコツ」*/
ol.tukai_kotu {
	list-style: desimal;
	padding-left: 20px;
	margin: 20px 10px 30px 0;
}
ol.tukai_kotu li {
	margin-top: 20px;
}
ol.tukai_kotu li img {
	max-width: 100%;
	display: block;
	margin: 10px auto 30px;
}
p.osusume {
	width: 96%;
	padding: 20px;
}
/*tejun　「ハードフロア」*/
div.tejun01 {
	width: 97％;
	margin: 20px auto;
	border: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.tejun01 h3 {
	margin: 0;
	padding: 6px;
	background: #FFFAC7;
	font-weight: bold;
}
div.tejun01 div {
	margin: 0;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
}
div.tejun01 div img {
	max-width: 100%;
	display: block;
	margin: 10px auto;
}
div.tejun01 ul {
	margin: 0;
	padding: 5px 10px 10px 10px;
	list-style: none;
	border-top: 1px solid #B9B9B9;
}
div.tejun01 ul li {
	margin-top: 10px;
}
div.tejun01 ul li:last-child {
	margin: 10px 0 20px;
}
div.tejun01 ul li a {
	display: block;
	font-weight: bold;
	padding: 4px;
	border: 1px solid #DACFE2;
	border-radius: 5px;
	background: #F2EBF6;
}
div.tejun01 ul li a:hover {
	background: rgba(242,235,246,0.5);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
div.tejun01 ul li span {
	border-radius: 5px;
	background: #855F9F;
	color: #FFF;
	padding: 4px 10px;
	font-weight: bold;
	margin-left: -5px;
}
div.tejun01 ul:last-child {
	display: none;
}
/*padbrs　「パッドとブラシの使い分け」*/
div.padcolor {
	width: 97%;
	margin: 15px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.padcolor img {
	max-width: 100%;
	display: block;
}
div.padcolor p {
	width: 100%;
	padding: 6px;
	margin-top: 10px;
}
table.pad_type_color {
	width: 97%;
	margin: 15px auto;
	border-collapse: collapse;
	border-spacing: 0;
}
table.pad_type_color th {
	border: 1px solid #B9B9B9;
	padding: 6px;
	text-align: center;
	background: #EEE;
}
table.pad_type_color th:nth-child(1) {
	width: 25%;
}
table.pad_type_color th:nth-child(2) {
	width: 75%;
}
table.pad_type_color td {
	border: 1px solid #B9B9B9;
	padding: 6px;
}
td.siro {
	background: #FFF;
	text-align: center;
	vertical-align: middle;
}
td.aka {
	background: #FF0000;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
}
td.ao {
	background: #0000FF;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
}
td.midori {
	background: #339900;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
}
td.cha {
	background: #663300;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
}
td.kuro {
	background: #000;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
}
td.haipuro {
	background: #333333;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
}
div.size_chigai {
	width: 95%;
	margin: 15px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.size_chigai img {
	max-width: 100%;
	display: block;
}
div.size_chigai p {
	margin-top :10px;
	padding: 10px;
}
img.kumi_img {
	max-width: 100%;
	display: block;
	margin: 20px auto 30px;
}
div.torituke {
	width: 97%;
	margin: 15px auto 30px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.torituke img {
	max-width: 100%;
	display: block;
	border: 1px solid #CCC;
}
div.torituke div {
	width: 97%;
	padding: 10px;
}
div.torituke p {
	width: 97%;
	margin: 0 auto 30px;
}
/*option　「オプション品」*/
div.tank {
	width: 97%;
	margin: 15px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.tank h4 {
	width: 97%;
	font-size: 15px;
	font-weight: bold;
	color: #5F4EC1;
}
div.tank h4:before {
	content: '◆';
	font-size: 18px;
	color: #5F4EC1;
	margin-right: 3px;
}
div.tank img {
	max-width: 100%;
	margin: 10px auto;
	display: block;
}
div.tank div{
	width: 97%;
	padding: 0 10px;
	margin: 0 auto 30px;
}
div.stand {
	width: 97%;
	margin: 15px auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.stand h4 {
	width: 97%;
	font-size: 15px;
	font-weight: bold;
	color: #5F4EC1;
}
div.stand h4:before {
	content: '◆';
	font-size: 18px;
	color: #5F4EC1;
	margin-right: 3px;
}
div.stand img {
	max-width: 100%;
	margin: 10px auto;
	display: block;
}
div.stand div{
	width: 97%;
	padding: 0 10px;
	margin: 0 auto 30px;
}
div.cover {
	width: 97%;
	margin: 15px auto 30px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.cover h4 {
	width: 97%;
	font-size: 15px;
	font-weight: bold;
	color: #5F4EC1;
}
div.cover h4:before {
	content: '◆';
	font-size: 18px;
	color: #5F4EC1;
	margin-right: 3px;
}
div.cover p {
	width: 97%;
	margin: 15px auto;
}
div.cover ul {
	list-style: none;
	width: 97%;
	margin: 15px auto;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
div.cover ul li {
	width: 45%;
	text-align: center;
	margin: 10px 10px 0 0;
	font-size: 13px;
}
div.cover ul li img {
	max-width: 100%;
	display: block;
	margin: 10px auto;
}
/*anpoli　「安全ポリッシャー」*/
p.anpoli_setsu {
	width: 97%;
	margin: 20px auto;
}
ol.anpoli_kai {
	list-style: decimal;
	padding-left: 30px;
	margin: 0 10px 30px;
}
ol.anpoli_kai li {
	font-size: 17px;
	font-weight: bold;
	margin: 0 0 40px 0;
}
ol.anpoli_kai li img {
	max-width: 100%;
	display: block;
	margin: 10px auto;
}
span.akagokubuto {
	font-weight: bold;
	font-size: 21px;
	color: #E50000;
}
span.hosomoji {
	font-size: 14px;
	font-weight: normal;
	display: block;
}



/* リンク 
---------------------------------------------------*/
ul.link {
	width: 182px;
	margin: 20px auto 0;
	padding: 0;
	list-style: none;
}
ul.link li {
	margin: 0;
	padding: 0;
	font-size: 11px;
	line-height: 1.4;
}
ul.link li img{
	display: block;
}
ul.link li:last-child {
	margin-top: 5px;
}

/* フッター
----------------------------------------------------*/

footer {
	width: 100%;
	height: 50px;
	background-color: #FFF;
	position: absolute;
	bottom: 0;
}

footer p {
	width: 100%;
	margin: 0 auto;
	padding: 10px 0;
	text-align: center;
	font-size: 0.7em;
}

}