@charset "utf-8";
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	font-weight: normal;
}
textarea, select, input[type="text"], input[type="checkbox"], input[type="radio"], input[type="button"], input[type="submit"] {
	font-size: 100%;
}
h1, h2, h3, h4, #menubar {
;
}
ul {
	list-style-type: none;
}
ol {
	padding-left: 40px;
	padding-bottom: 15px;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}
iframe {
	width: 100%;
}
p {
	line-height: 1.5;		/*行間*/
	text-align: justify;
	text-justify: inter-ideograph;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #2f6e1b;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅　※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/
	margin: 0 auto;
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-top: 4px solid #41baaa;	/*上の線の幅、線種、色*/
	background: linear-gradient(#f4f2ea, #fff 40%);/*背景グラデーション*/
}
header .inner {
	position: relative;
	height: 120px;	/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	width: 350px;	/*画像幅*/
	position: absolute;
	left: 1%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 38px;	/*ヘッダーに対して上から38pxの場所に配置*/
}
h1#top {
	font-size:12px;
	margin-left:10px;
	margin-top:5px;
}
/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	position: absolute;
	right: 3%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
	top: 0px;		/*ヘッダーブロックに対して上から0pxの場所に配置*/
	width: 250px;	/*ブロック幅*/
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.15);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.15は透明度15%の事。*/
	border-radius: 0px 0px 4px 4px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
	line-height: 50px;	/*高さ*/
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
}
/*「文字サイズ」のテキスト*/
#fsize p {
	float: left;
	font-size: 18px;	/*文字サイズ*/
	padding: 0 20px;	/*上下、左右への余白*/
}
/*文字サイズボタン１個あたり*/
#fsize ul li {
	float: left;	/*左に回り込み*/
}
#fsize ul a {
	overflow: hidden;
	display: block;
	text-decoration: none;
	text-align: center;
	color: #fff;	/*文字色*/
}
/*「小」ボタン設定*/
#fsize ul li#small a::before {
	display: block;
	content: "小";		/*「小」の文字を出力*/
	font-size: 18px;	/*文字サイズ*/
	background: #2f6e1b;	/*背景色*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	margin-top: 5px;
	margin-right: 10px;
}
/*「大」ボタン設定*/
#fsize ul li#large a::before {
	display: block;
	content: "大";		/*「大」の文字を出力*/
	font-size: 30px;	/*文字サイズ*/
	background: #ccc;	/*背景色*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
}
/*マウスオン時の「大」ボタン設定*/
#fsize ul li#large a:hover::before {
	background: #2f6e1b;	/*背景色*/
}
/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 0%;		/*header のinnerに対して右から3%の場所に配置*/
	bottom: 60px;	/*header のinnerに対して下から15pxの場所に配置*/
}
#headermenu ul {
	bottom: -50px;	/*header のinnerに対して下から15pxの場所に配置*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: right;	/*左に回り込み*/
	margin-left: 0px;	/*左側にスペースを空ける*/
	margin-top: 5px;
}
#headermenu li a {
	text-decoration: none;
	display: inline-block;
	background: #41baaa;	/*背景色（古いブラウザ用）*/
	color: #FFF;	/*文字色*/
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #41baaa;	/*枠線の幅、線種、色*/
}
#headermenu img {
	width: 60%;
	margin-left: 0px;	/*左側にスペースを空ける*/
	margin-right:1%;
	margin-bottom: 4px;
}
/*マウスオン時*/
#headermenu li a:hover {
	color: #41baaa;	/*文字色*/
	background: #fff;	/*背景色*/
}
#headermenu p {
	float:right;
	line-height:1.3;
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	border-top: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
	border-bottom: 1px solid #dcdcdc;	/*下の線の幅、線種、色*/
	font-size: 15px;	/*文字サイズ*/
	background: #41baaa;	/*背景色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 14.28%;		/*メニュー幅（100÷5個=20%）※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;	/*内容をセンタリング*/
	padding: 15px 0;	/*上下、左右へのボックス内の余白*/
	border-right: 1px solid #dcdcdc;	/*右の線の幅、線種、色*/
	color: #fff;	/*文字色*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #dcdcdc;	/*左の線の幅、線種、色*/
}
/*マウスオン時と、現在表示中(current)メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #fff;	/*背景色*/
	color: #555;	/*文字色*/
	font-weight:bold;
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}
/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 10;
	margin-top: 1px;
	width: 14.28%;	/*幅。上の「#menubar li」と合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;
	border: none;
	background: #4c4c4c;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景グラデーション。0,0,0は黒の事で0.7は透明度70%の事。*/
	color: #fff;	/*文字色*/
	padding: 6px 0;	/*上下、左右へのボックス内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #41baaa;	/*背景色*/
}
/*パンくず
----------------------------------------------------------------------------------------------------------------------------------*/
p.pankuzu {
	padding-top:1%;
	padding-left:2%;
	font-size:80%;
}
p.pankuzu a {
	text-decoration: none;
}
/*トップページコンテンツ .contents bg1
---------------------------------------------------------------------------*/
.bg1 {
	background: #f4f2ea url(../images/bg1.png);	/*背景色、背景画像の読み込み*/
}
.bigheadline {
	margin: 0px auto;
	margin-bottom:3%;
	width:40%;
}
/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	overflow: hidden;
	padding: 40px 0px;	/*上下、左右へのボックス内の余白*/
}
/*h2タグの設定*/
.contents h2 {
	clear: both;
	margin-bottom: 50px;	/*見出しの下にとるスペース*/
	padding: 10px 20px;		/*上下、左右への余白*/
	font-size: 150%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	text-align: center;	/*内容をセンタリング*/
	font-weight:bold;
	position:relative;
	line-height:70px;
}
.contents h2::after, .contents h2::before {
	content:'';
	position:absolute;
	left:0;
	bottom:0;
}
.contents h2::before {
	width:100px;
	height:3px;
	background-color:#41baaa;
	z-index:2;
	left:50%;
	bottom:-1px;
	transform:translateX(-50%)
}
.contents h2::after {
	width:90%;
	left:5%;
	height:1px;
	background-color:#1e2e53;
	z-index:1
}
/*h3タグの設定*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding-top: 40px;	/*見出しの下にとるスペース*/
	font-size: 150%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	text-align: center;	/*内容をセンタリング*/
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:bold;
}
/*h4タグの設定*/
.contents h4 {
	font-size: 130%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	padding: 10px 20px;		/*上下、左右への余白*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 30px;	/*見出しの下にとるスペース*/
	font-weight:bold;
}
/*段落タグ設定*/
.contents p {
	padding: 0px 20px 40px;	/*上、左右、下への余白*/
}
/*段落タグが続く場合に余白が空きすぎないようにする*/
.contents p + p {
	margin-top: -20px;
}
/*h2とh3とh4タグの直後の段落タグ設定*/
.contents h2 + p, .contents h3 + p, .contents h4 + p {
	margin-top: -10px;
}
p.outline {
	text-align: center;	/*内容をセンタリング*/
	padding-bottom:70px;
}
section {
	padding:0 20px;
}
/*listブロック(修理内容・修理事例)
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list {
	overflow: hidden;
	position: relative;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.3) inset;	/*ボックスの影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.3は透明度30%の事。insetは内側に向かう影。*/
	margin: 0 2% 30px;	/*上、左右、下へのボックスの外に空けるスペース*/
	background: #fff;	/*背景色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	padding: 4%;	/*ボックス内の余白*/
}
.list a {
	overflow: hidden;
	text-decoration: none;
	display: block;
}
/*h4タグ設定*/
.list h4 {
	padding: 0;
	border: none;
	font-size: 180%;	/*文字サイズ*/
	color: #2f6e1b;		/*文字色*/
	line-height: 1.5em;
}
.list h4.title {
	text-align:center;
	margin-top:2%;
	margin-bottom:3%;
}
span.kakko {
	padding-right:1%;
	margin-left:-15px;
}
span.kakko2 {
	margin-left:1%;
}
/*段落タグ設定*/
.list p {
	margin: 0 !important;
	padding: 0;
	line-height: 1.5;
	overflow: hidden;
}
/*トップページこだわりテキスト*/

p.titletext {
	padding:0 4%;
	line-height: 1.5;
	font-size:110%;
	letter-spacing:0.1em;
	text-align:justify;
}
p.next {
	padding-top: 20px;	/*見出しの下にとるスペース*/
	padding-bottom: 10px;	/*見出しの下にとるスペース*/
	font-size: 150%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	font-weight:bold;
	text-align: center;	/*内容をセンタリング*/
}
p.next a {
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
p.next2 {
	padding-top: 20px;	/*見出しの下にとるスペース*/
	padding-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 120%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	font-weight:bold;
	text-align: center;	/*内容をセンタリング*/
}
p.next2 a {
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*figure画像の設定*/
.list figure img {
	margin:0 0 3% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list figure img.fr {
	width: 33%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 2%;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list figure img.fl {
	width: 40%;		/*画像幅*/
	float: left;	/*左に回り込み*/
	margin: 0 4% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
img.repaircenter-midasi {
	width: 40%;
}
/*修理事例figure画像の右側回り込みの設定*/
.list figure img.bg {
	width: 60%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 2%;	/*上、右、下、左への画像の外側にとるスペース*/
	border:1px solid #CCC;
}
/*時計ベルトオーダー例*/
.example {
	overflow: hidden;
	position: relative;
	margin-bottom:20px;
}
.example h4 {
	padding: 0;
	border: none;
	font-size: 140%;	/*文字サイズ*/
	color: #000;		/*文字色*/
	line-height: 1.5em;
}
.example img {
	margin-top:10px;
}
/*純正ベルト*/
.saturatedmenu {
	overflow: hidden;
	padding: 20px 0 0 0;
	font-size: 80%;	/*文字サイズ*/
}
/*１行分の設定*/
.saturatedmenu ul {
	float: left;	/*左に回り込み*/
	width: 29%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 0%;
	padding-left: 1%;
}
/*店舗について*/

h4.shop {
	width: 60%;		/*画像幅*/
}
p.shop {
	width: 49%;		/*画像幅*/
	float: right;
}
figure.shop img.fl {
	width: 49%;		/*画像幅*/
	float: left;	/*右に回り込み*/
	margin: 0 2% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*list2 ブロック枠無し(エンハンスにつて・修理センター)
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list2 {
	overflow: hidden;
	position: relative;
	margin: 0 2%;	/*上、左右、下へのボックスの外に空けるスペース*/
	background: #fff;	/*背景色*/
	padding: 2% 4%;	/*ボックス内の余白*/
	margin-bottom: 40px;
	border: 1px solid #41baaa;	/*上の線の幅、線種、色*/
}
/*h4タグの設定　キャッチフレーズ*/
.list2 h4.catchphrase {
	padding: 0;
	border: none;
	color: #2f6e1b;		/*文字色*/
	line-height: 1.5em;
	font-size: 200%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	margin-top: 20px;		/*上下、左右への余白*/
	margin-bottom: 0px;	/*見出しの下にとるスペース*/
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
/*段落タグ設定*/
.list2 p {
	margin: 0;
	padding: 0 !important;
	line-height: 2.0;
	overflow: hidden;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	margin-bottom:40px;
}
/*figure画像の設定*/
.list2 figure img {
	margin: 0 0 4% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list2 figure img.fr {
	width: 15%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0px 0 0 4%;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list2 figure img.fl {
	width: 30%;		/*画像幅*/
	float: left;	/*左に回り込み*/
	margin: 0 4% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
.phrase {
	width: 75%;
	margin-bottom:40px;
}
.center {
	width: 60%;
}
/*list3(修理センター)
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list3 {
	float: left;	/*左に回り込み*/
}
.list3 img {
	width: 33%;
	margin-top:10px;
	margin-bottom:20px;
}
.photo3 {
	margin-left:0.5%;
	margin-right:0.5%;
}
.photo4 {
	float: right;
}
/*list4 エンハンスについて
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list4 {
	overflow: hidden;
	position: relative;
	margin: 0 2%;	/*上、左右、下へのボックスの外に空けるスペース*/
	background: #fff;	/*背景色*/
	padding: 1% 4%;	/*ボックス内の余白*/
	margin-bottom: 40px;
	margin-top:-2%;
}
p.indent-1 {
	padding-top: 2%;
	padding-left:1em;
	text-indent:-1em;
	border-top: 1px dotted #888;	/*上の線の幅、線種、色*/
}
p.last {
	border-bottom: 1px dotted #888;	/*上の線の幅、線種、色*/
	padding-bottom: 2%;
}
/*list5ブロック トップページ
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list5 {
	overflow: hidden;
	position: relative;
	border: 4px solid #41baaa;	/*上の線の幅、線種、色*/
	margin: 0 2% 30px;	/*上、左右、下へのボックスの外に空けるスペース*/
	background: #fff;	/*背景色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	padding: 4%;	/*ボックス内の余白*/
}
.list5 a {
	overflow: hidden;
	text-decoration: none;
	display: block;
}
.list5:hover {
	border: 4px solid #346bb0;
}
/*h4タグ設定*/
.list5 h4 {
	padding: 0;
	border: none;
	font-size: 100%;	/*文字サイズ*/
	color: #2f6e1b;		/*文字色*/
	line-height: 1.5em;
	padding-bottom:8%;
	padding-top:8%;
}
.list5 h4 img {
	width: 65%;
}
/*段落タグ設定*/
.list5 p {
	margin: 0 !important;
	padding: 0;
	line-height: 1.5;
	overflow: hidden;
	float: none;
}
/*figure画像の設定*/
.list5 figure img {
	margin:0 0 3% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list5 figure img.fr {
	width: 33%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 2%;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list5 figure img.fl {
	width: 30%;		/*画像幅*/
	float: left;	/*左に回り込み*/
	margin: 0 4% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
img.repaircenter-midasi {
	width: 40%;
}
.c3 .list5 p.small {
	font-size: 80%;
	line-height: 20px;
	height: 3.0em;	/*上の「.list p」の「1.8」×「表示させたい行数」を設定。7.2だと4行分になる。*/
}
/*時計修理流れ 画像
---------------------------------------------------------------------------*/

figure.flow img.fr {
	width: 45%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 3%;	/*上、右、下、左への画像の外側にとるスペース*/
}
img.yajirushi {
	width: 5%;
	margin-bottom:2%;
}
/*採用情報--------------------------------------------*/
span.saiyou {
	color:#41baaa;
}
/*2カラム利用時--------------------------------------------*/
.c2 .list {
	float: left;	/*左に回り込み*/
	padding: 3%;	/*ボックス内の余白の上書き*/
	width: 40%;		/*幅*/
}
/*h4タグ*/
.c2 .list h4 {
	font-size: 130%;
}
/*p段落タグ*/
.c2 .list p {
	height: 5.4em;	/*上の「.list p」の「1.8」×「表示させたい行数」を設定。5.4だと3行分になる。*/
}
/*3カラム利用時--------------------------------------------*/
.c3 .list {
	float: left;	/*左に回り込み*/
	padding: 1%;	/*ボックス内の余白の上書き*/
	width: 27.3%;	/*幅*/
}
.c3 .list5 {
	float: left;	/*左に回り込み*/
	padding: 1%;	/*ボックス内の余白の上書き*/
	width: 26.6%;	/*幅*/
}
/*h4タグ*/
.c3 .list h4 {
	font-size: 110%;
}
.c3 .list5 h4 {
	font-size: 110%;
}
/*p段落タグ*/
.c3 .list p {
	font-size: 90%;
	height: 7.0em;	/*上の「.list p」の「1.8」×「表示させたい行数」を設定。7.2だと4行分になる。*/
}
/*右下の「→」マークを少し小さく設定しなおす*/
.c3 .list a::before {
	width: 20px;
	line-height: 20px;
	font-size: 12px;
}
.c3 .list5 a::before {
	width: 20px;
	line-height: 20px;
	font-size: 12px;
}
/*右下の「→」マークを少し小さく設定しなおす*/
.c3 .list a::before {
	width: 20px;
	line-height: 20px;
	font-size: 12px;
}
.c3 .list5 a::before {
	width: 20px;
	line-height: 20px;
	font-size: 12px;
}
.c3 .list p.small {
	font-size: 80%;
	line-height: 20px;
	height: 5.4em;	/*上の「.list p」の「1.8」×「表示させたい行数」を設定。7.2だと4行分になる。*/
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
.main {
	float: left;	/*左に回り込み*/
	width: 72%;		/*幅*/
	overflow: hidden;
}
/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: right;	/*右に回り込み*/
	width: 24%;		/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	letter-spacing: normal;
	font-size: 120%;	/*文字サイズ*/
	margin-bottom: 20px;
}
/*subコンテンツのh2タグの１文字目への設定*/
.sub h2::first-letter {
	padding-left: 15px;
}
/*段落タグ設定*/
.sub p {
	padding-bottom: 10px;	/*上、左右、下への余白*/
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #888;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #888;	/*下の線の線種、幅、色*/
}
.sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: rgba(0,0,0,0.02);	/*背景色。rgbaは色設定で0,0,0は黒。0.02は透明度2%の事。*/
	border: solid 2px #346bb0;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
}
/*box1内のメニューの設定*/
.sub .box1 ul.submenu {
	margin-bottom: 0px;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 85%;	/*文字サイズ*/
	background: #41baaa;	/*背景色*/
	color: #fff;	/*文字色*/
}
footer a {
	text-decoration: none;
	color: #fff;	/*文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;
	font-size: 90%;	/*文字サイズ*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 4%;
}
#footermenu a {
	color: #fff;
}
#footermenu a:hover {
	color: rgba(255,255,255,0.7);
}
#footeraddress {
	float: right;
	padding-right:2%;
}
#footeraddress h4 {
	font-size:18px;
	line-height:0.1;
	margin-top:10px;
}
#footeraddress p {
	font-size:14px;
	line-height:1.5;
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

#new {
	width: 95%;
	margin:0 auto;
}
#new dl {
	padding: 10px 40px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #2f6e1b;	/*文字色*/
	letter-spacing: 0.1em;
	padding-top:2%;
	padding-bottom:2%;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	padding-top:2%;
	padding-bottom:2%;
}
/*よく頂く質問ページ
---------------------------------------------------------------------------*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
	padding:0 20px;
}
.cp_qa .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #cccccc;
}
.cp_qa label {
	font-size: 100%;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 100%;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	line-height: 1.5;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
 height: auto;
 padding: 14px;
 opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	color: #2f6e1b;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
	display: none;
}
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #2f6e1b;	/*文字色*/
	padding-top: 15px;
	margin-bottom: 10px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}
/*「Q」と「A」のマーク共通設定*/
.faq dt::before, .faq dd::before {
	margin-right: 5px;
	display: inline-block;
	text-align: center;
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
}
/*「Q」のマーク追加設定*/
.faq dt::before {
	content: "Q";			/*「Q」の文字を出力する設定*/
	background: #2f6e1b;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*「A」のマーク追加設定*/
.faq dd::before {
	content: "A";		/*「A」の文字を出力する設定*/
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*テーブル
---------------------------------------------------------------------------*/
/*ta1,ta2共通設定*/
.ta1, .ta2 {
	width: 96%;
	margin: 0 auto;
	margin-bottom:40px;
}
.ta1 {
	margin-top: 20px;
}
.ta1 td, .ta1 th {
	border-top: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.7;
	padding: 15px;	/*ボックス内の余白*/
}
.ta1 td a {
	text-decoration: none;
}
.ta2 td, .ta2 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
.ta2 td {
	width: 19%;
	font-size:85%;
}
.ta1 th {
	width: 250px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f0f0f0;	/*背景色*/
	font-weight: normal;
}
.ta1 td {
	padding-left: 70px;
}
/*ta1の左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*ta2の左側ボックス*/
.ta2 th {
	background: #c8daf0;	/*背景色*/
}
/*ta2の右側ボックス*/
.ta2 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta1.price td {
	text-align: right;
}
.ta1.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta1.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}
/*ボタン(btn)の設定
---------------------------------------------------------------------------*/
input[type="submit"].btn, input[type="button"].btn {
	padding: 15px;	/*ボタン内の余白*/
	margin-bottom: 30px;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;	/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover, input[type="button"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	position: relative;
	top: 1px;
	left: 1px;	/*マウスオン時に上から1px、左から1px場所を移動する*/
}
/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #41baaa;	/*背景色*/
	width: 60px;	/*幅*/
	line-height: 60px;	/*高さ*/
	margin-bottom: 20px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #308e82;	/*背景色*/
}
/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	width: 100px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(32px, -9px);	/**/
	color: #FFF;	/*文字色*/
	background: #666;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	text-shadow: none;
	width: auto;
	padding: 2px 5px;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
/*その他
---------------------------------------------------------------------------*/
.look {
	background: #eee;
	padding: 5px 10px;
	border-radius: 4px;
}
.mb15, .mb1em {
	margin-bottom: 15px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.p0 {
	padding:0 !important;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 45px 15px;
	list-style: disc;
	margin-bottom: 20px;
}
.color1, .color1 a {
	color: #F00;
}
.pr {
	font-size: 10px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center !important;
}
.r {
	text-align: right !important;
}
.l {
	text-align: left !important;
}
img.fr {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}
img.fl {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
img.center {
	margin: 0 auto;
}
.big1 {
	font-size: 200%;
}
.mini1 {
	font-size: 11px;
	display: inline-block;
	line-height: 1.5;
}
.sh {
	display: none;
}
/*メガメニュー
---------------------------------------------------------------------------*/
ol, ul {
	list-style: none;
}
a {
	text-decoration: none;
}
.wrapper {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 13px;
	background: #fff;
	border-top: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
	border-bottom: 1px solid #dcdcdc;	/*下の線の幅、線種、色*/
	font-size: 15px;	/*文字サイズ*/
	background: #41baaa;	/*背景色*/
}
.contents {
	width: 100%;
	height: 100%;
}
.contents__inner {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 50px 0px;
	color: #fff;
}
.contents__inner h1 {
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
}
/**
 * dropmenu
 */
.dropmenu {
	position: relative;
	width: 100%;
	height: 50px;
	max-width: 1200px;
	margin: 0 auto;
}
.dropmenu> li {
	float: left;
	width: 12.5%;
	height: 50px;
	line-height: 50px;
	background: #41baaa;
}
.dropmenu> li:first-child a {
	border-left: 1px solid #dcdcdc;	/*左の線の幅、線種、色*/
}
.dropmenu> li a {
	display: block;
	color: #fff;
	border-right: 1px solid #dcdcdc;	/*右の線の幅、線種、色*/
}
.dropmenu> li a:hover {
	background: #fff;	/*背景色*/
	color: #555;	/*文字色*/
}
.dropmenu__none:hover, .dropmenu__multi:hover, .dropmenu__mega:hover, .dropmenu__single:hover {
	background: #41baaa;
	-webkit-transition: .2s ease;
	transition: .2s ease;
}
.dropmenu__second-level li a:hover {
	background: #41baaa;
}
.dropmenu__second-level li:last-child a {
	border: none;
}
.init-bottom:after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 0 0 15px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.dropmenu:before, .dropmenu:after {
	content: "";
	display: table;
}
.dropmenu:after {
	clear: both;
}
.dropmenu {
 *zoom: 1;
}
/**
 * mega dropmenu
 */
.dropmenu__mega .dropmenu__second-level {
	position: absolute;
	top: 40px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 1%;
	background: #41baaa;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}
.dropmenu__mega:hover .dropmenu__second-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}
.dropmenu__mega .dropmenu__second-level> li {
	float: left;
	width: 25%;
	border: none;
}
.dropmenu__mega .dropmenu__second-level> li:nth-child(4n) {
	margin: 0 0;
}



/*画面幅1200px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1200px) {
/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 1200px;	/*サイト幅*/
}
/*メインメニューとドロップダウンメニューの設定変更。
上の共通設定で、max-widthを1200pxにしており、メニュー数が５個なので、1200÷5=240pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 150px;
}
}

/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px) {
#menubar li, #menubar ul.ddmenu {
	width: 140px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	font-size:90%;
}
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 2%;		/*header のinnerに対して右から3%の場所に配置*/
	font-size:80%;
}
#headermenu img {
	width: 55%;
	margin-left: 0px;	/*左側にスペースを空ける*/
	margin-right:2%;
	margin-bottom: 4px;
}
/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 10;
	margin-top: 1px;
	width: 12.5%;	/*幅。上の「#menubar li」と合わせる。*/
	font-size:150%;
}
/*メニュー１個あたりの設定*/

#menubar ul.ddmenu li a {
	padding: 12px 0;	/*上下、左右へのボックス内の余白*/
}
/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 1%;		/*header のinnerに対して右から3%の場所に配置*/
	bottom: 60px;	/*header のinnerに対して下から15pxの場所に配置*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: right;	/*左に回り込み*/
	margin-left: 0px;	/*左側にスペースを空ける*/
	margin-top: 5px;
}
#headermenu li a {
	text-decoration: none;
	display: inline-block;
	background: #41baaa;	/*背景色（古いブラウザ用）*/
	color: #FFF;	/*文字色*/
	padding: 10px 30px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #41baaa;	/*枠線の幅、線種、色*/
}
/*トップページこだわりテキスト*/	
	p.titletext {
	padding:4%;
	line-height: 1.2;
	font-size:70%;
}
.c3 .list5 {
	float: left;	/*左に回り込み*/
	padding: 1%;	/*ボックス内の余白の上書き*/
	width: 26.2%;	/*幅*/
}
/*h4タグ*/


.c3 .list5 h4 {
	font-size: 100%;
	padding-top:1%;
	padding-bottom:2%;
}
.c3 .list5 p.small {
	font-size: 80%;
	line-height: 20px;
	height: 5.4em;	/*上の「.list p」の「1.8」×「表示させたい行数」を設定。7.2だと4行分になる。*/
}
/*figure画像の設定*/
.list5 figure img {
	margin:0 0 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list5 figure img.fl {
	width: 100%;		/*画像幅*/
	float: none;	/*左に回り込み*/
	margin: 0 0 2% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*フッターメニュー
---------------------------------------------------------------------------*/

/*１行分の設定*/
#footermenu ul {
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 0%;
	padding-left: 3%;
	border-right:1px dotted #FFF;
}
#footeraddress {
	width: 34%;
	padding-right: 1%;
}
#footeraddress h4 {
	font-size:18px;
	line-height:0.1;
	margin-top:8px;
}
#footeraddress p {
	font-size:11px;
	line-height:1.4;
}
p.outline {
	padding-left:5%;
	padding-right:5%;
	font-size:90%;
}
/*top見出し
---------------------------------------------------------------------------*/

.list5 h4 img {
	width: 80%;
}
/*修理内容について
---------------------------------------------------------------------------*/

.ta2 td, .ta2 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
	font-size:90%;
}
.ta2 td {
	width: 19%;
	font-size:52%;
}
/*純正ベルト*/
.saturatedmenu {
	overflow: hidden;
	padding: 20px 0 0 0;
	font-size: 100%;	/*文字サイズ*/
}
/*１行分の設定*/
.saturatedmenu ul {
	float: none;	/*左に回り込み*/
	width: 100%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 0%;
	padding-left: 1%;
}
/*ENHANCEについてについて
---------------------------------------------------------------------------*/
.ta1 th {
	width: 210px;	/*幅*/
}
.ta1 td {
	padding-left: 50px;
}
}
	
	

	

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {
/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: auto;
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 70%;	/*画像幅*/
	left: 2%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 40px;	/*ヘッダーに対して上から38pxの場所に配置*/
}
header .inner {
	height: 140px;	/*ヘッダーの高さ*/
}
h1#top {
	font-size:12px;
	margin-left:5px;
	margin-top:5px;
}
#headermenu {
	display: none;
}
.bigheadline {
	margin-top:5%;
	margin-bottom:5%;
	width:80%;
}
/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	overflow: hidden;
	position: absolute;
	border-top: 1px solid #fff;
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;
	text-decoration: none;
	padding: 15px 5%;
	border-bottom: 1px solid #fff;
	background: #41baaa;
	color: #fff;
	font-size: 150%;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}
.wrapper {
	display: none;
}
/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 3%;	/*上から3%の場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close, #menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}
/*パンくず
----------------------------------------------------------------------------------------------------------------------------------*/
p.pankuzu {
	display: none;
}
/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	padding: 3%;
}
/*h3タグの設定*/
.contents h3 {
	padding-top: 20px;	/*見出しの下にとるスペース*/
	font-size: 120%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
}
section {
	padding:0 0px;
}
/*listブロック（※２カラムも３カラムと１列レイアウトと同じように設定しなおす）
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list {
	margin: 10px 0 !important;
	padding: 5% !important;
	float: none !important;
	width: auto !important;
	box-shadow: none;
	border-top: 1px solid #ccc;
}
.list:last-of-type {
	border-bottom: none;
	margin-bottom: 20px !important;
}
/*h4タグ設定*/
.list h4 {
	font-size: 180%;
}
/*段落タグ設定*/
.list p {
	font-size: 100% !important;
	line-height: 1.8 !important;
	height: auto !important;
}
/*figure画像の設定*/
.list figure img {
	margin: 0 0 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list figure img.fr {
	width: 100%;		/*画像幅*/
	float: none;	/*右に回り込み*/
	margin: 0 0 10px 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list figure img.fl {
	width: 100%;		/*画像幅*/
	float: none;	/*左に回り込み*/
	margin: 0 0 10px 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
img.repaircenter-midasi {
	width: 90%;
}
/*修理事例figure画像の右側回り込みの設定*/
.list figure img.bg {
	width: 100%;		/*画像幅*/
	float: none;	/*右に回り込み*/
	margin: 0 0 10px 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*店舗について*/

h4.shop {
	width: 70%;		/*画像幅*/
}
p.shop {
	width: 100%;		/*画像幅*/
	float: none;
	padding:0;
	margin: 0;
}
figure.shop img.fl {
	width: 100%;		/*画像幅*/
	float: none;	/*右に回り込み*/
	margin: 0 0 3% 0;	/*上、右、下、左への画像の外側にとるスペース*/
	padding:0;
}
/*list２ブロック枠無し
---------------------------------------------------------------------------*/
/*list２ブロック設定*/
.list2 {
	overflow: hidden;
	position: relative;
	margin: 0 2%;	/*上、左右、下へのボックスの外に空けるスペース*/
	background: #fff;	/*背景色*/
	padding: 2% 4%;	/*ボックス内の余白*/
	margin-bottom: 40px;
	border: 1px solid #41baaa;	/*上の線の幅、線種、色*/
	text-align:center;
}
/*h4タグの設定　キャッチフレーズ*/
.list2 h4.catchphrase {
	margin-top: 30px;		/*上下、左右への余白*/
	margin-bottom: 0px;	/*見出しの下にとるスペース*/
	margin-left:0px;
}
.center {
	width: 90%;
}
/*figure画像の設定*/
.list2 figure img {
	margin: 0 0 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list2 figure img.fr {
	width: 50%;		/*画像幅*/
	float: none;	/*右に回り込み*/
	margin: 0 0 20px 0;	/*上、右、下、左への画像の外側にとるスペース*/
	display: inline-block;
}
/*figure画像の左側回り込みの設定*/
.list2 figure img.fl {
	width: 50%;		/*画像幅*/
	float: none;	/*左に回り込み*/
	margin: 10px auto;	/*上、右、下、左への画像の外側にとるスペース*/
}
.phrase {
	width: 100%;
	margin-bottom:40px;
}
.list2 p {
	text-align:left;
}
/*list4 (時計ベルト)
---------------------------------------------------------------------------*/
/*listブロック設定*/

.list4 img {
	width: 100%;
	margin-top:10px;
	margin-bottom:10px;
}
/*list5ブロック トップページ
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list5 {
	margin: 10px 20px !important;
	padding: 3% !important;
	float: none !important;
	width: auto !important;
	box-shadow: none;
}
.list5:last-of-type {
	margin-bottom: -50px !important;
}
/*h4タグ設定*/
.list5 h4 {
	font-size: 140% !important;
	padding-bottom:0%;
	padding-top:2%;
}
.list5 h4 img {
	width: 75%;
}
/*段落タグ設定*/
.list5 p {
	font-size: 100% !important;
	line-height: 1.4 !important;
	height: auto !important;
}
/*figure画像の設定*/
.list5 figure img {
	margin: 0 5% 0 5%;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list5 figure img.fr {
	width: 100%;		/*画像幅*/
	float: none;	/*右に回り込み*/
	margin: 0 0 10px 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
.list5 a::before {
	display: none;
}
/*listbox
---------------------------------------------------------------------------*/
.listbox {
	width: 50%;		/*画像幅*/
	padding: 2% 4%;	/*ボックス内の余白*/
}
/*矢印
---------------------------------------------------------------------------*/
img.yajirushi {
	width: 6%;
	margin-bottom:20px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
	margin-top:50px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 8em;		/*幅*/
	color: #2f6e1b;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
}
/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: auto;
}
/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	margin-right: 3%;
}
/*その他
---------------------------------------------------------------------------*/
body.s-n .sub, body.s-n #footermenu, .m-n {
	display: none;
}
/*テーブル
---------------------------------------------------------------------------*/
/*ta1,ta2共通設定*/

.ta1, .ta2 {
	border-collapse: collapse;
}
.ta1 td, .ta1 th {
	border-top: none;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*テーブルの枠線の幅、線種、色*/
	display: block;
	padding: 10px;
}
.ta1 th {
	width:100%;	/*幅*/
	text-align:left;	/*センタリング*/
	border-top: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
.ta1 td {
	padding-left:10px;
}
.ta2 {
	border:none;	/*テーブルの枠線の幅、線種、色*/
}
.ta2 td {
	width: 100%;
	display: block;
	padding: 15px 0;
	font-size: 120%;
}
.ta2 td.nothing {
	display:none;
}
/*footer
---------------------------------------------------------------------------*/
#footermenu {
	overflow: hidden;
	padding: 20px;
	font-size: 120%;	/*文字サイズ*/
}
#footermenu ul {
	float:none;
	width: 100%;
}
#footermenu li {
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	line-height:1.5;
}
#footermenu li a {
	text-decoration: none;
	display: block;
	padding: 20px 5px;	/*メニュー内の余白。上下、左右への設定。*/
}
#footeraddress {
	width: 100%;
	margin-top:30px;
	padding: 0px 5px;
}
#footeraddress h4 {
	font-size:18px;
	line-height:0;
}
#footeraddress p {
	font-size:14px;
	line-height:1;
}
}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/


header #logo img {
	width: 70%;	/*画像幅*/
	left: 2%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 40px;	/*ヘッダーに対して上から38pxの場所に配置*/
}
header .inner {
	height: 120px;	/*ヘッダーの高さ*/
}
h1#top {
	font-size:12px;
	margin-left:5px;
	margin-top:5px;
}
#headermenu {
	display: none;
}
/*コンテンツ
---------------------------------------------------------------------------*/
.contents h2, .contents h3, .contents h4 {
	padding: 5px 5px 5px 5px;
	margin-bottom: 20px;
	font-size: 180%;
}
.contents h2 {
	padding-top:0;
}
/*h2,h3タグの左側のアクセント*/
.contents h2::first-letter, .contents h3::first-letter {
	padding-left: 10px;	/*線とテキストとの距離*/
}
/*段落タグ設定*/
.contents p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}
p.outline {
	line-height:1.5;
	text-align:left;
}
/*subコンテンツ
---------------------------------------------------------------------------*/
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 10px;
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	padding: 10px;			/*ボックス内の余白*/
}
.list2 {
	margin-top: 10px;
}
/*h4タグの設定　キャッチフレーズ*/

.center {
	width: 95%;
}
/*h4タグ設定*/
.list h4 {
	font-size: 170% !important;
}
/*h4タグの設定　キャッチフレーズ*/

.center {
	width: 100%;
}
/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	padding-top: 10px;
}
/*時計ベルトオーダー例*/

.example h4 {
	font-size: 110%;	/*文字サイズ*/
}
/*よく頂くご質問
---------------------------------------------------------------------------*/
.cp_qa .cp_actab-content {
	margin: 0 10px;
	padding: 0 14px;
}
/*エンハンスについて
---------------------------------------------------------------------------*/

p.indent-1 {
	padding-top: 4%;
	padding-bottom: 8%;
	padding-left:1em;
	text-indent:-1em;
	border-top: 1px dotted #888;	/*上の線の幅、線種、色*/
}
p.last {
	border-bottom: 1px dotted #888;	/*上の線の幅、線種、色*/
	padding-bottom: 4%;
}
/*店舗について
---------------------------------------------------------------------------*/
p.shop img {
	margin-left: -3%;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
/*footer
---------------------------------------------------------------------------*/
#footermenu {
	overflow: hidden;
	padding: 20px;
	font-size: 120%;	/*文字サイズ*/
}
#footermenu ul {
	float:none;
	width: 100%;
}
#footermenu li {
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	line-height:1.5;
}
#footermenu li a {
	text-decoration: none;
	display: block;
	padding: 20px 5px;	/*メニュー内の余白。上下、左右への設定。*/
}
#footeraddress {
	margin-top:30px;
	padding: 0 0 0 10px;
}
#footeraddress h4 {
	font-size:140%;
	line-height:0;
}
#footeraddress p {
	font-size:100%;
	line-height:1.3;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 10px 0px;
}
/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	font-size: 14px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/

.ta1 th {
	width: 98%;	/*幅*/
	padding-left: 2%;
}
.ta1 td {
	padding-left: 2%;
}
/*その他
---------------------------------------------------------------------------*/
.ws, .wl {
	width: 94%;
}
.big1 {
	font-size: 16px;
}
img.fr, img.fl {
	float: none;
	margin: 0;
	width: 100%;
}
.sh {
	display:block;
}
.pc {
	display:none;
}
}
