comable-frontend-fashionable 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +7 -0
  2. data/README.rdoc +28 -0
  3. data/Rakefile +4 -0
  4. data/app/assets/images/10822071_04_75_JP.gif +0 -0
  5. data/app/assets/images/banner_QR.gif +0 -0
  6. data/app/assets/images/banner_fb.gif +0 -0
  7. data/app/assets/images/banner_member.gif +0 -0
  8. data/app/assets/images/banner_mm.gif +0 -0
  9. data/app/assets/images/banner_specialprice.jpg +0 -0
  10. data/app/assets/images/banner_staffsnapblog.jpg +0 -0
  11. data/app/assets/images/banner_tw.gif +0 -0
  12. data/app/assets/images/bt_delete.png +0 -0
  13. data/app/assets/images/bt_icon.png +0 -0
  14. data/app/assets/images/bt_login.png +0 -0
  15. data/app/assets/images/bt_member.png +0 -0
  16. data/app/assets/images/cart.png +0 -0
  17. data/app/assets/images/forget_icon.png +0 -0
  18. data/app/assets/images/header_logo.gif +0 -0
  19. data/app/assets/images/icon.png +0 -0
  20. data/app/assets/images/line_bg.gif +0 -0
  21. data/app/assets/images/logo.gif +0 -0
  22. data/app/assets/images/logo.png +0 -0
  23. data/app/assets/images/menu_arrow_down.png +0 -0
  24. data/app/assets/images/menu_arrow_up.png +0 -0
  25. data/app/assets/images/pagetop.gif +0 -0
  26. data/app/assets/images/ranking_01.jpg +0 -0
  27. data/app/assets/images/ranking_icon01.png +0 -0
  28. data/app/assets/images/ranking_icon02.png +0 -0
  29. data/app/assets/images/ranking_icon03.png +0 -0
  30. data/app/assets/images/search.png +0 -0
  31. data/app/assets/images/shoes_02.jpg +0 -0
  32. data/app/assets/images/shoes_04.jpg +0 -0
  33. data/app/assets/images/shoes_05.jpg +0 -0
  34. data/app/assets/images/shoppingcart.png +0 -0
  35. data/app/assets/images/special01.jpg +0 -0
  36. data/app/assets/images/special02.jpg +0 -0
  37. data/app/assets/images/special03.jpg +0 -0
  38. data/app/assets/images/step_01.gif +0 -0
  39. data/app/assets/images/step_01.png +0 -0
  40. data/app/assets/images/step_02.gif +0 -0
  41. data/app/assets/images/step_02.png +0 -0
  42. data/app/assets/images/step_03.gif +0 -0
  43. data/app/assets/images/step_03.png +0 -0
  44. data/app/assets/images/step_04.gif +0 -0
  45. data/app/assets/images/step_04.png +0 -0
  46. data/app/assets/images/top.jpg +0 -0
  47. data/app/assets/images/tops_01.jpg +0 -0
  48. data/app/assets/images/tops_02.jpg +0 -0
  49. data/app/assets/images/tops_04.jpg +0 -0
  50. data/app/assets/javascripts/comable/application.js +15 -0
  51. data/app/assets/javascripts/comable/base.js.coffee +24 -0
  52. data/app/assets/javascripts/comable/products.js.coffee +32 -0
  53. data/app/assets/stylesheets/comable/application.css +14 -0
  54. data/app/assets/stylesheets/comable/carts.scss +339 -0
  55. data/app/assets/stylesheets/comable/common.scss +284 -0
  56. data/app/assets/stylesheets/comable/customers.scss +255 -0
  57. data/app/assets/stylesheets/comable/detail.css +225 -0
  58. data/app/assets/stylesheets/comable/footer-common.css +121 -0
  59. data/app/assets/stylesheets/comable/home.css +1 -0
  60. data/app/assets/stylesheets/comable/index.css +168 -0
  61. data/app/assets/stylesheets/comable/orders.scss +341 -0
  62. data/app/assets/stylesheets/comable/passwords.scss +205 -0
  63. data/app/assets/stylesheets/comable/products.scss +787 -0
  64. data/app/assets/stylesheets/comable/registrations.scss +278 -0
  65. data/app/assets/stylesheets/comable/sessions.scss +287 -0
  66. data/app/assets/stylesheets/comable/top.scss +262 -0
  67. data/app/assets/stylesheets/comable/users.scss +255 -0
  68. data/app/controllers/comable/application_controller.rb +23 -0
  69. data/app/decorators/comable/product_decorator.rb +26 -0
  70. data/app/decorators/comable/products_controller_decorator.rb +18 -0
  71. data/app/views/comable/carts/show.html.slim +53 -0
  72. data/app/views/comable/home/show.html.slim +50 -0
  73. data/app/views/comable/orders/confirm.slim +82 -0
  74. data/app/views/comable/orders/create.slim +17 -0
  75. data/app/views/comable/orders/delivery.slim +52 -0
  76. data/app/views/comable/orders/orderer.slim +72 -0
  77. data/app/views/comable/orders/payment.slim +60 -0
  78. data/app/views/comable/orders/shipment.slim +60 -0
  79. data/app/views/comable/orders/signin.slim +89 -0
  80. data/app/views/comable/products/index.html.slim +60 -0
  81. data/app/views/comable/products/show.html.slim +63 -0
  82. data/app/views/comable/shared/_address.slim +24 -0
  83. data/app/views/comable/shared/_address_form.slim +60 -0
  84. data/app/views/comable/shared/_footer.slim +17 -0
  85. data/app/views/comable/shared/_header.slim +30 -0
  86. data/app/views/comable/shared/_sidebar.slim +20 -0
  87. data/app/views/comable/users/_address.slim +14 -0
  88. data/app/views/comable/users/addresses.slim +58 -0
  89. data/app/views/comable/users/show.slim +35 -0
  90. data/app/views/devise/passwords/edit.slim +12 -0
  91. data/app/views/devise/passwords/new.slim +20 -0
  92. data/app/views/devise/registrations/edit.html.slim +45 -0
  93. data/app/views/devise/registrations/new.html.slim +30 -0
  94. data/app/views/devise/sessions/new.slim +32 -0
  95. data/app/views/errors/error_404.slim +6 -0
  96. data/app/views/errors/error_500.slim +6 -0
  97. data/app/views/layouts/comable/application.slim +51 -0
  98. data/app/views/layouts/comable/error.slim +42 -0
  99. data/config/initializers/assets.rb +2 -0
  100. data/config/locales/fashionable_en.yml +11 -0
  101. data/config/locales/fashionable_ja.yml +11 -0
  102. data/lib/comable/frontend/fashionable/engine.rb +14 -0
  103. data/lib/comable/frontend/fashionable.rb +7 -0
  104. metadata +233 -0
@@ -0,0 +1,787 @@
1
+ @charset "UTF-8";
2
+ /* CSS list */
3
+
4
+ p.result {
5
+ font-size: 18px;
6
+ font-family: "メイリオ", Meiryo;
7
+ font-weight: bold;
8
+ margin: 18px 0;
9
+ }
10
+
11
+ /* 絞込検索 */
12
+ .search {
13
+ background: #8e8e8e;
14
+ border-radius: 3px;
15
+ overflow: hidden;
16
+ padding: 8px 0 8px 100px;
17
+ margin: 0 0 30px 0;
18
+ }
19
+ .search p.cate {
20
+ float: left;
21
+ color: #fff;
22
+ }
23
+ .search select {
24
+ float: left;
25
+ margin: 0 50px 0 5px;
26
+ }
27
+
28
+ /* 商品 */
29
+ .box {
30
+ border-left: 1px solid #f5f5f5;
31
+ margin: 0 0 0 2px;
32
+ }
33
+ ul.product {
34
+ clear: both;
35
+ overflow: hidden;
36
+ display: inline-block;
37
+ }
38
+ ul.product li {
39
+ float: left;
40
+ width: 134px;
41
+ height: 320px;
42
+ border-top: 1px solid #f5f5f5;
43
+ border-right: #f5f5f5 1px solid;
44
+ border-bottom: #f5f5f5 1px solid;
45
+ display: inline;
46
+ padding: 0 10px;
47
+ }
48
+ ul.product li img {
49
+ clear: both;
50
+ width: 134px;
51
+ height: 186px;
52
+ margin: 0 0 2px 0;
53
+ }
54
+ /* 商品名 */
55
+ ul.product li h2 {
56
+ height: 60px;
57
+ color: #000;
58
+ font-size: 12px;
59
+ font-weight: normal;
60
+ line-height: 14px;
61
+ }
62
+ ul.product li h2 a {
63
+ color: #000;
64
+ font-size: 12px;
65
+ font-weight: normal;
66
+ line-height: 14px;
67
+ }
68
+ /* 価格 */
69
+ ul.product li p.price {
70
+ color: #000;
71
+ font-size: 10px;
72
+ margin: 0;
73
+ }
74
+ ul.product li p.price span {
75
+ display: block;
76
+ color: #e70505;
77
+ }
78
+ /* アイコン */
79
+ ul.product li .icon {
80
+ height: 17px;
81
+ overflow: hidden;
82
+ margin: 10px 0 5px 0;
83
+ }
84
+ /* 新着 */
85
+ ul.product li .icon p.new {
86
+ float: left;
87
+ width: 63px;
88
+ background: #f2546a;
89
+ text-align: center;
90
+ font-weight: bold;
91
+ font-size: 10px;
92
+ color: #fff;
93
+ border-radius: 3px;
94
+ padding: 1px 0;
95
+ margin: 0 2px;
96
+ }
97
+ /* 再入荷 */
98
+ ul.product li .icon p.repeat {
99
+ float: left;
100
+ width: 63px;
101
+ background: #54b1f2;
102
+ text-align: center;
103
+ font-weight: bold;
104
+ font-size: 10px;
105
+ color: #fff;
106
+ border-radius: 3px;
107
+ padding: 1px 0;
108
+ margin: 0 2px;
109
+ }
110
+ /* 値下げ */
111
+ ul.product li .icon p.down {
112
+ float: left;
113
+ width: 63px;
114
+ background: #b473eb;
115
+ text-align: center;
116
+ font-weight: bold;
117
+ font-size: 10px;
118
+ color: #fff;
119
+ border-radius: 3px;
120
+ padding: 1px 0;
121
+ margin: 0 2px;
122
+ }
123
+ /* SOLDOUT */
124
+ ul.product li .icon p.soldout {
125
+ float: left;
126
+ width: 63px;
127
+ background: #000;
128
+ text-align: center;
129
+ font-weight: bold;
130
+ font-size: 10px;
131
+ color: #fff;
132
+ border-radius: 3px;
133
+ padding: 1px 0;
134
+ margin: 0 2px;
135
+ }
136
+
137
+ /* ページナビ */
138
+ ul.pageNav {
139
+ margin: 0 0 10px;
140
+ padding: 10px 10px 5px;
141
+ text-align: right;
142
+ }
143
+
144
+ ul.pageNav li {
145
+ display: inline;
146
+ margin: 0 2px;
147
+ padding: 0;
148
+ }
149
+
150
+ ul.pageNav li span,
151
+ ul.pageNav li a {
152
+ color: #000;
153
+ display: inline-block;
154
+ margin-bottom: 5px;
155
+ padding: 4px 10px;
156
+ text-decoration: none;
157
+ vertical-align: middle;
158
+ }
159
+ ul.pageNav li span {
160
+ background: #aaaaaa;
161
+ color: #fff;
162
+ }
163
+
164
+ ul.pageNav li a:hover {
165
+ color: #000;
166
+ background: #e6e6e6;
167
+ border-color: #00f;
168
+ }
169
+
170
+
171
+ @charset "UTF-8";
172
+ /* CSS top */
173
+
174
+ /* -------------------------------- */
175
+ /* 検索 */
176
+ #MainSearch {
177
+ clear: both;
178
+ background: #d7d7d7;
179
+ margin: 0 0 20px 0;
180
+ }
181
+ #MainSearch .inner {
182
+ width: 747px;
183
+ margin: 0 auto;
184
+ padding: 20px 0;
185
+ }
186
+ #MainSearch .inner input.textBox {
187
+ width: 654px;
188
+ height: 30px;
189
+ border: #616161 1px solid;
190
+ border-radius: 5px;
191
+ margin: 0;
192
+ padding: 0;
193
+ }
194
+ input.btn {
195
+ width: 82px;
196
+ height: 32px;
197
+ border-style: none;
198
+ border-radius: 5px;
199
+ background: image-url("search.png") #616161 no-repeat;
200
+ background-position: 10px 7px;
201
+ text-indent: 14px;
202
+ font-size: 15px;
203
+ color: #fff;
204
+ letter-spacing: 2px;
205
+ padding: 0;
206
+ }
207
+
208
+ /* -------------------------------- */
209
+ /* News & TOPICS */
210
+ .information {
211
+ width: 778px;
212
+ }
213
+ .information p.title {
214
+ background: #747272;
215
+ font-size: 16px;
216
+ font-family: "メイリオ", Meiryo;
217
+ font-weight: bold;
218
+ color: #fff;
219
+ letter-spacing: 1px;
220
+ padding: 2px 15px;
221
+ margin: 0 0 0 0;
222
+ }
223
+ /* 更新内容 */
224
+ .information .box-info {
225
+ overflow: scroll;
226
+ height: 110px;
227
+ border: 1px solid #f5f5f5;
228
+ margin: 0
229
+ }
230
+ .information .box-info p.date {
231
+ padding: 0 15px;
232
+ line-height: 16px;
233
+ }
234
+ .information .box-info p.date span {
235
+ display: block;
236
+ }
237
+ .information .box-info p.date span.red {
238
+ color: #e70505;
239
+ }
240
+ p.date a {
241
+ color: #979797;
242
+ font-weight: bold;
243
+ }
244
+ p.date a:hover {
245
+ text-decoration: underline;
246
+ }
247
+
248
+ hr.info {
249
+ width: 748px;
250
+ border: none;
251
+ border-top: #b9b9b9 1px dotted;
252
+ margin: 0 auto;
253
+ }
254
+
255
+ /* 特集バナー */
256
+ .special {
257
+ margin: 15px 0;
258
+ overflow: hidden;
259
+ }
260
+ .special img {
261
+ float: left;
262
+ border: #dfdfdf 1px solid;
263
+ margin: 0 5px;
264
+ }
265
+ .special img:hover {
266
+ opacity: 0.8;
267
+ filter: alpha(opacity=80);
268
+ -ms-filter: "alpha( opacity=80 )";
269
+ background: #fff;
270
+ }
271
+
272
+ /* product */
273
+ /* -------------------------------- */
274
+ #product {
275
+ width: 777px;
276
+ float: left;
277
+ }
278
+
279
+ .line-bg {
280
+ clear: both;
281
+ display: block;
282
+ border: none;
283
+ height: 11px;
284
+ background: image-url("line_bg.gif") repeat;
285
+ text-indent: -9999px;
286
+ margin: 18px 0 0 0;
287
+ }
288
+ /* 入荷アイテム */
289
+ .item-box {
290
+ border-left: #dfdfdf 1px solid;
291
+ overflow: hidden;
292
+ }
293
+ /* タイトル */
294
+ .item-box p.title {
295
+ border-right: #dfdfdf 1px solid;
296
+ font-family: "メイリオ", Meiryo;
297
+ font-weight: bold;
298
+ font-size: 22px;
299
+ padding: 5px 0 2px 15px;
300
+ }
301
+ .item-box p.title span {
302
+ font-size: 14px;
303
+ margin: 0 0 0 12px;
304
+ }
305
+ /* 商品 */
306
+ .item-box .item {
307
+ width: 156px;
308
+ height: 314px;
309
+ float: left;
310
+ border-top: #dfdfdf 1px solid;
311
+ border-right: #dfdfdf 1px solid;
312
+ border-bottom: #dfdfdf 1px solid;
313
+ padding: 0 0 0 37px;
314
+ }
315
+ .item-box .item img {
316
+ width: 120px;
317
+ height: 174px;
318
+ }
319
+ /* 商品名 */
320
+ .item-box .item h2 a {
321
+ width: 120px;
322
+ color: #000;
323
+ font-size: 12px;
324
+ font-weight: normal;
325
+ line-height: 14px;
326
+ }
327
+
328
+ /* 価格 */
329
+ .item-box .item p.price {
330
+ width: 120px;
331
+ font-size: 10px;
332
+ margin: 0 0 0 0;
333
+ }
334
+ .item p.price span {
335
+ color: #e70505;
336
+ }
337
+ /* 新着 */
338
+ .item-box .item p.new {
339
+ width: 75px;
340
+ background: #f2546a;
341
+ text-align: center;
342
+ font-weight: bold;
343
+ color: #fff;
344
+ border-radius: 3px;
345
+ margin: 7px 0 5px 0;
346
+ }
347
+ /* 再入荷 */
348
+ .item-box .item p.repeat {
349
+ width: 75px;
350
+ background: #54b1f2;
351
+ text-align: center;
352
+ font-weight: bold;
353
+ color: #fff;
354
+ border-radius: 3px;
355
+ margin: 7px 0 5px 0;
356
+ }
357
+ .item-box .item p a {
358
+ color: #000;
359
+ }
360
+ /* もっと見る */
361
+ p.more {
362
+ text-align: right;
363
+ margin: 5px 0 30px 0;
364
+ }
365
+ p.more a {
366
+ color: #000;
367
+ }
368
+ p.more a:hover {
369
+ text-decoration: underline;
370
+ }
371
+
372
+ /* ランキング */
373
+ p.ranking {
374
+ text-align: center;
375
+ font-family: "メイリオ", Meiryo;
376
+ font-weight: bold;
377
+ font-size: 22px;
378
+ border-bottom: #dfdfdf 1px solid;
379
+ padding: 10px 0;
380
+ }
381
+ .rank-box {
382
+ float: left;
383
+ width: 178px;
384
+ height: 395px;
385
+ padding: 0 0 0 10px;
386
+ }
387
+ /* icon */
388
+ .rank {
389
+ width: 34px;
390
+ margin : 20px auto 10px;
391
+ }
392
+ .rank-box img.product {
393
+ width: 168px;
394
+ height: 243px;
395
+ }
396
+
397
+ /* 商品名 */
398
+ .rank-box h2 a {
399
+ width: 168px;
400
+ color: #000;
401
+ font-size: 12px;
402
+ font-weight: normal;
403
+ }
404
+ /* 価格 */
405
+ .rank-box .price {
406
+ width: 168px;
407
+ font-size: 10px;
408
+ margin: 20px 0 0 0;
409
+ }
410
+ .rank-box .price span {
411
+ display: block;
412
+ color: #e70505;
413
+ }
414
+ .rank-box p a {
415
+ color: #000;
416
+ }
417
+
418
+ /* side-banner */
419
+ /* -------------------------------- */
420
+ #side-banner {
421
+ width: 200px;
422
+ float: right;
423
+ }
424
+ #side-banner img {
425
+ margin: 0 0 10px 0;
426
+ }
427
+ #side-banner img:hover {
428
+ opacity: 0.8;
429
+ filter: alpha(opacity=80);
430
+ -ms-filter: "alpha( opacity=80 )";
431
+ background: #fff;
432
+ }
433
+
434
+ @charset "UTF-8";
435
+ /* CSS detail */
436
+
437
+ #ProductDetailArea {
438
+ width: 780px;
439
+ overflow: hidden;
440
+ margin: 18px 0 0 0;
441
+ }
442
+ /* 画像 */
443
+ /* ------------------------------ */
444
+ .main-product {
445
+ float: left;
446
+ width: 416px;
447
+ }
448
+ .main-product img.main {
449
+ border: #000 1px solid;
450
+ }
451
+ /* 在庫 */
452
+ .stock {
453
+ border-top: #ccc 1px solid;
454
+ margin: 10px 0;
455
+ }
456
+ .stock li {
457
+ padding: 10px 20px;
458
+ border-bottom: #ccc 1px solid;
459
+ overflow: hidden;
460
+ }
461
+ .stock li p {
462
+ float: left;
463
+ width: 80px;
464
+ padding: 3px 0 0 0;
465
+ }
466
+ .stock li img.shoppingcart {
467
+ float: right;
468
+ margin: 0;
469
+ padding: 0;
470
+ }
471
+ img.shoppingcart:hover {
472
+ opacity: 0.8;
473
+ filter: alpha(opacity=80);
474
+ -ms-filter: "alpha( opacity=80 )";
475
+ background: #fff;
476
+ }
477
+ select#quantity{
478
+ vertical-align:0.6em;
479
+ margin:0 10px 0 0;
480
+ }
481
+
482
+ /* 詳細 */
483
+ /* ------------------------------ */
484
+ .main-detail {
485
+ float: right;
486
+ width: 355px;
487
+ }
488
+ /* アイコン */
489
+ .main-detail .icon {
490
+ width: 332px;
491
+ margin: 0 0 10px 0;
492
+ overflow: hidden;
493
+ }
494
+ /* 新着アイコン */
495
+ .main-detail .icon p.new {
496
+ float: left;
497
+ width: 75px;
498
+ background: #f2546a;
499
+ text-align: center;
500
+ font-weight: bold;
501
+ color: #fff;
502
+ border-radius: 3px;
503
+ margin: 0 2px;
504
+ }
505
+ /* 再入荷アイコン */
506
+ .main-detail .icon p.repeat {
507
+ float: left;
508
+ width: 75px;
509
+ background: #54b1f2;
510
+ text-align: center;
511
+ font-weight: bold;
512
+ color: #fff;
513
+ border-radius: 3px;
514
+ margin: 0 2px;
515
+ }
516
+ /* 値下げアイコン */
517
+ .main-detail .icon p.down {
518
+ float: left;
519
+ width: 75px;
520
+ background: #b473eb;
521
+ text-align: center;
522
+ font-weight: bold;
523
+ color: #fff;
524
+ border-radius: 3px;
525
+ margin: 0 2px;
526
+ }
527
+ /* SOLDUOT */
528
+ .main-detail .icon p.soldout {
529
+ float: left;
530
+ width: 75px;
531
+ background: #000;
532
+ text-align: center;
533
+ font-weight: bold;
534
+ color: #fff;
535
+ border-radius: 3px;
536
+ margin: 0 2px;
537
+ }
538
+
539
+ /* 商品番号 */
540
+ .lot-number {
541
+ clear: both;
542
+ font-size: 12px;
543
+ }
544
+ /* 商品名 */
545
+ h2 {
546
+ font-size: 18px;
547
+ font-weight: normal;
548
+ }
549
+ /* 価格 */
550
+ .price {
551
+ font-size: 14px;
552
+ margin: 30px 0 20px 0;
553
+ }
554
+ .price span {
555
+ display: block;
556
+ color: #e70505;
557
+ }
558
+
559
+ /* Detail Color */
560
+ .title {
561
+ font-size: 14px;
562
+ margin: 0;
563
+ }
564
+ ul.DetailColor {
565
+ overflow: hidden;
566
+ display: inline-block;
567
+ }
568
+ ul.DetailColor li {
569
+ float: left;
570
+ width: 66px;
571
+ height: 110px;
572
+ font-size: 10px;
573
+ display: inline;
574
+ cursor: pointer;
575
+ margin: 0 3px 0 0;
576
+ }
577
+ ul.DetailColor li img {
578
+ width: 66px;
579
+ height: 96px;
580
+ border: #000 1px solid;
581
+ }
582
+ ul.DetailColor li img:hover {
583
+ opacity: 0.8;
584
+ filter: alpha(opacity=80);
585
+ -ms-filter: "alpha( opacity=80 )";
586
+ background: #fff;
587
+ }
588
+
589
+ /* 詳細(素材等) */
590
+ .other-detail {
591
+ clear: both;
592
+ margin: 20px 0 0 0;
593
+ }
594
+ .other-detail th {
595
+ width: 70px;
596
+ vertical-align: top;
597
+ padding: 5px 0px 5px 5px;
598
+ }
599
+
600
+ /* サイズ */
601
+ .size {
602
+ width: 353px;
603
+ border: #aeaeae 1px solid;
604
+ font-size: 11px;
605
+ margin: 20px 0 0 0;
606
+ }
607
+ .size th {
608
+ background: #aeaeae;
609
+ color: #fff;
610
+ text-align: center;
611
+ padding: 4px 10px;
612
+ }
613
+ .size td {
614
+ border-bottom: #aeaeae 1px solid;
615
+ text-align: center;
616
+ padding: 4px 10px;
617
+ }
618
+
619
+ /* アイテム紹介 */
620
+ .introduction {
621
+ clear: both;
622
+ background: #fff;
623
+ padding: 20px 0 50px 0;
624
+ }
625
+ .introduction p {
626
+ font-size: 14px;
627
+ }
628
+ .introduction p.text {
629
+ border: #ccc 1px solid;
630
+ font-size: 12px;
631
+ padding: 5px;
632
+ }
633
+
634
+ /* 最近見たアイテム・他の人のチェックアイテム */
635
+ .check-item {
636
+ margin: 25px 0 25px 0;
637
+ }
638
+ .check-item p {
639
+ font-size: 14px;
640
+ }
641
+ .check-item .inner {
642
+ border: #ccc 1px solid;
643
+ padding: 12px 6px;
644
+ overflow: hidden;
645
+ }
646
+ .check-item .inner img {
647
+ float: left;
648
+ width: 73px;
649
+ margin: 0 6px;
650
+ }
651
+ .check-item .inner img:hover {
652
+ opacity: 0.8;
653
+ filter: alpha(opacity=80);
654
+ -ms-filter: "alpha( opacity=80 )";
655
+ background: #fff;
656
+ }
657
+
658
+ hr.dod {
659
+ border: none;
660
+ border-top: #ccc 1px dotted;
661
+ padding: 0 0 25px 0;
662
+ }
663
+
664
+ h2 {
665
+ width: 120px;
666
+ font-size: 24px;
667
+ font-weight: normal;
668
+ line-height: 10px;
669
+ margin: 0 0 0 20px 0;
670
+ }
671
+
672
+ h3 {
673
+ font-size: 16px;
674
+ margin: 50px 0 0 0;
675
+ }
676
+
677
+ p.ex {
678
+ margin: 20px 0 20px 20px;
679
+ }
680
+
681
+ /* table */
682
+ table {
683
+ width: 100%;
684
+ color: #3c3c3c;
685
+ font-weight: normal;
686
+ margin: 20px 0 0 0;
687
+ }
688
+ table th, td {
689
+ vertical-align: top;
690
+ padding: 10px 0 10px 20px;
691
+ }
692
+ table th {
693
+ width: 140px;
694
+ }
695
+ table td a {
696
+ color: #99cccc;
697
+ }
698
+ table td a:hover {
699
+ text-decoration: underline;
700
+ }
701
+
702
+ /* リスト */
703
+ table ul {
704
+ list-style: inside;
705
+ }
706
+ table ul li {
707
+ line-height: 20px;
708
+ }
709
+
710
+ /* dl */
711
+ dl {
712
+ margin: 0 0 0 20px;
713
+ padding: 0;
714
+ }
715
+ dt, dd {
716
+ margin: 0;
717
+ padding: 0;
718
+ }
719
+ dt {
720
+ font-weight: bold;
721
+ margin: 0px 0 0 0;
722
+ }
723
+ /* リスト */
724
+ dd li {
725
+ margin: 5px 0 0 15px;
726
+ }
727
+
728
+ /* よくある質問 */
729
+ .faq {
730
+ width: 900px;
731
+ background: #f0f0f0;
732
+ margin: 20px auto 0 auto;
733
+ padding: 0 20px 20px 20px;
734
+ }
735
+
736
+ .faq ul li.title {
737
+ font-weight: bold;
738
+ font-size: 13px;
739
+ padding: 20px 0 0 0;
740
+ }
741
+
742
+ .faq a {
743
+ color: #000;
744
+ }
745
+ .faq a:hover {
746
+ text-decoration: underline;
747
+ }
748
+
749
+ .answer-box {
750
+ width: 940px;
751
+ margin: 0 auto;
752
+ }
753
+ /* Q */
754
+ .q-box {
755
+ background: #424242;
756
+ color: #fff;
757
+ overflow: hidden;
758
+ padding: 8px 5px 5px 15px;
759
+ }
760
+ .q-box p.q {
761
+ float: left;
762
+ width: 20px;
763
+ }
764
+ .q-box p.question {
765
+ float: left;
766
+ width: 890px;
767
+ }
768
+ /* A */
769
+ .a-box {
770
+ border: #424242 1px solid;
771
+ overflow: hidden;
772
+ padding: 5px 5px 5px 15px;
773
+ }
774
+ .a-box p.a {
775
+ float: left;
776
+ font-weight: bold;
777
+ width: 20px;
778
+ }
779
+ .a-box p.answer {
780
+ float: left;
781
+ width: 890px;
782
+ }
783
+
784
+ /* error */
785
+ p.error {
786
+ text-align: center;
787
+ }