-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
executable file
·1278 lines (1111 loc) · 67.4 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@charset "utf-8";
/*
Theme Name:ORION
Theme URI:
Description:WordPressテーマ「ORION」
Author:Design Plus
Author URI:http://design-plus1.com/tcd-w/
Version:3.2.4
*/
/* --------------------------------------------------------------------------------
web fonts ウェブフォントファイルを変更した場合はv=1.0の数字を変更(キャッシュ対策)
-------------------------------------------------------------------------------- */
@font-face {
font-family: 'design_plus';
src: url('fonts/design_plus.eot?v=1.2');
src: url('fonts/design_plus.eot?v=1.2#iefix') format('embedded-opentype'),
url('fonts/design_plus.woff?v=1.2') format('woff'),
url('fonts/design_plus.ttf?v=1.2') format('truetype'),
url('fonts/design_plus.svg?v=1.2#design_plus') format('svg');
font-weight: normal;
font-style: normal;
}
/* アイコンフォント */
.icon-arrow-right:before {
content: "\e910";
}
.icon-file-text:before {
content: "\f15c";
}
.icon-share-alt:before {
content: "\f1e0";
}
.icon-phone:before {
content: "\f095";
}
.icon-envelope:before {
content: "\f0e0";
}
.icon-tag:before {
content: "\f02b";
}
.icon-pencil:before {
content: "\f040";
}
.icon-close:before {
content: "\e91a";
font-family: 'design_plus';
}
/* ----------------------------------------------------------------------
reset css
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display:block; }
audio, canvas, video { display:inline-block; max-width:100%; }
html { overflow-y: scroll; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; }
ul, ol { list-style:none; }
blockquote , q { quotes:none; }
blockquote:before, blockquote:after, q:before, q:after { content:''; content: none; }
a:focus { outline:none; }
ins { text-decoration:none; }
mark { font-style:italic; font-weight:bold; }
del { text-decoration:line-through; }
abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
table { border-collapse:collapse; border-spacing:0; width:100%; }
hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
button, input, select, textarea { outline:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; font-size:100%; }
input, textarea { background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); -webkit-appearance: none; border-radius:0; /* Removing the inner shadow, rounded corners on iOS inputs */ }
input[type="checkbox"]{ -webkit-appearance: checkbox; }
input[type="radio"]{ -webkit-appearance: radio; }
button::-moz-focus-inner, input::-moz-focus-inner { border:0; padding:0; }
img { -ms-interpolation-mode:bicubic; }
/* clearfix */
.clearfix:after { content: "."; display:block; clear:both; height:0; font-size:0.1em; line-height:0; visibility:hidden; overflow:hidden; }
.clearfix { display:inline-block; }
/* exlude MacIE5 \*/
* html .clearfix { height:1% }
.clearfix { display:block;}
/* end MacIE5 */
/* ----------------------------------------------------------------------
基本設定
---------------------------------------------------------------------- */
body { font-family:Arial,sans-serif; color:#333; line-height:1; min-width:1260px; }
.pc .admin-bar { padding-top:33px; }
a { color:#333; text-decoration:none; }
a, a:before, a:after, input {
-webkit-transition-property:background-color, color; -webkit-transition-duration:0.2s; -webkit-transition-timing-function:ease;
-moz-transition-property:background-color, color; -moz-transition-duration:0.2s; -moz-transition-timing-function:ease;
-o-transition-property:background-color, color; -o-transition-duration:0.2s; -o-transition-timing-function:ease;
transition-property:background-color, color; transition-duration:0.2s; transition-timing-function:ease;
}
a:hover { text-decoration:underline; }
.clear { clear:both; }
.hide { display:none; }
/* レイアウト */
#main_contents { background:#fff; width:100%; position:relative; z-index:10; }
#main_col {
width:1260px; margin:70px auto 100px; padding:0 30px;
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
#left_col { width:840px; float:left; }
#side_col { width:300px; float:right; }
/* ----------------------------------------------------------------------
固定ページテンプレート
---------------------------------------------------------------------- */
.pc .page_content_headline { margin:0 0 60px; text-align:center; }
.pc .page_content_headline h3 { font-size:42px; margin:0; line-height:140%; font-weight:400; }
.pc .page_content_one_column { margin:0 0 40px 0; }
.pc .page_content_one_column .image { width:100%; height:auto; display:block; margin:0 0 16px 0; }
.pc .page_content_two_column { margin:0 0 40px 0; }
.pc .page_content_two_column .content { width:570px; float:left; margin:0 60px 0 0; }
.pc .page_content_two_column .content.right { margin-right:0; }
.pc .page_content_two_column .content .image { width:100%; height:auto; display:block; margin:0 0 16px 0; }
.pc .page_content_three_column { margin:0 0 40px 0; }
.pc .page_content_three_column .content { width:370px; float:left; margin:0 45px 0 0; }
.pc .page_content_three_column .content.right { margin-right:0; }
.pc .page_content_three_column .content .image { width:100%; height:auto; display:block; margin:0 0 16px 0; }
.pc .page_content_one_column2 { margin:0 0 70px 0; }
.pc .page_content_one_column2 .image { width:570px; height:auto; display:block; margin:0 60px 0 0; float:left; }
.pc .page_content_one_column2.right .image { float:right; margin:0 0 0 60px; }
/* ----------------------------------------------------------------------
記事
---------------------------------------------------------------------- */
#article { position:relative; }
/* アイキャッチ画像 */
#post_image { padding:0; margin:0 0 30px 0; }
#post_image img { width:100%; height:auto; display:block; margin:0; }
/* 記事タイトル */
#post_title { padding:0; margin:15px 0 30px; font-size:21px; color:#000; line-height:140%; }
/* 記事本文*/
.post_content {}
.dis_post_content { padding:0 0 20px; }
/* SNSボタン */
#single_share { margin:0 0 30px; }
/* ----------------------------------------------------------------------
特別ページ
---------------------------------------------------------------------- */
/* ヘッダー画像 */
#header_image { width:100%; min-width:1200px; height:auto; position:relative; }
#header_image .image { width:100%; }
#header_image .image img { width:100%; height:auto; display:block; }
#header_image .caption {
position:absolute; padding:0 150px; text-decoration:none; color:#fff; display:block; width:100%; text-align:center;
top:50%; left:0;
-webkit-transform: translate3d(0,-50%,0); transform: translate3d(0,-50%,0);
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
#header_image .title { font-size:30px; display:none; }
#header_image.no_image { height:200px; background:#000; }
/* アーカイブページのキャッチフレーズ */
#dis_header_archive { text-align:center; margin:0 0 65px; }
#dis_header_archive .headline { font-size:46px; margin:0 0 20px 0; }
#dis_header_archive .desc { font-size: 14px; line-height:240%; }
/* 一覧 */
#dis_list_archive li { width:100%; position:relative; margin:0 0 5px 0; }
#dis_list_archive .image { width:100%; background:#000; display:block; }
#dis_list_archive .image img {
width:100%; height:auto; display:block; opacity:1;
-webkit-transition: -webkit-opacity 0.5s; transition: opacity 0.5s;
}
#dis_list_archive li:hover .image img { opacity:0.5; }
#dis_list_archive .caption {
position:absolute; padding:0 50px; text-decoration:none; color:#fff; display:block; width:100%;
top:50%; left:0; opacity:0;
-webkit-transform: translate3d(0,-50%,0); transform: translate3d(0,-50%,0);
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
-webkit-transition: -webkit-opacity 0.5s linear 0.5s; transition: opacity 0.5s linear 0.5s;
}
#dis_list_archive .active .caption { opacity:1; }
#dis_list_archive .title { font-size:40px; margin:0 0 5px 0; }
#dis_list_archive .desc { font-size:14px; margin:0; }
#dis_list_archive .desc p { font-size:18px; line-height:250%; }
#dis_list_archive li:nth-child(even) .caption { text-align:right; }
/* リンクボタン */
#previous_next_page { text-align:center; padding:50px 0 0; }
#previous_next_page a { background:#ccc; color:#fff; text-decoration:none; display:inline-block; width:180px; height:50px; line-height:50px; text-align:center; font-size:14px; position:relative; text-shadow:none; }
#previous_next_page a:before {
font-family:'design_plus'; content:'\e910'; font-size:16px; color:#fff; display:block; position:absolute; right:13px; top:2px;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
#previous_next_page a.prev:before { content:'\e90f'; right:auto; left:13px; }
/* 詳細ページ */
#dis_single_title { margin:-20px 0 20px 0; }
#dis_single_title .title { font-size:50px; float:left; line-height:160%; }
#dis_single_title .desc { font-size:18px; line-height:180%; margin:25px 0 0 30px; float:left; }
/* スライダー */
#single_slider_wrap { width:837px; position:relative; float:left; margin:10px 50px 50px 0; }
#single_slider { width:837px; height:580px; margin:0 0 10px 0; }
#single_slider_nav { width:847px; margin:0; }
#single_slider_nav .item { margin:0 10px 0 0; cursor:pointer; background:#000; display:block; position:relative; }
#single_slider_nav .item:after {
content:""; box-shadow:inset 0 0 0 0 rgba(0,0,0, 0); position:absolute; top:0; left:0; bottom:0; right: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;
}
#single_slider_nav .item.slick-current:after { box-shadow:inset 0 0 0 7px rgba(0,0,0, 0.5); }
#single_slider_nav .item:hover img, #single_slider_nav .item.slick-current img { }
/* タブ */
#single_tab { margin:0; padding:30px 0 0 0; position:relative; z-index:2; bottom:-1px; clear:both; }
#single_tab li { float:left; list-style-type:none; margin:0 -1px 0 0; padding:0; }
#single_tab li a { display:block; border:1px solid #ccc; padding:0 50px; height:50px; line-height:50px; background:#fbfbfb; text-decoration:none; color:#333; }
#single_tab li a.active, #single_tab li a.active:hover { border-bottom:1px solid #fff; background:#fff; }
#single_tab li a:hover { background:#eee; }
#single_tab_contents {
border:1px solid #ccc; z-index:1; padding:55px 80px 35px;
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.single_tab_content { display:none; }
#single_tab_contents .headline { font-size:30px; margin:0 0 30px 0; }
/* ----------------------------------------------------------------------
トップページ
---------------------------------------------------------------------- */
/* 全画面 */
.home #top { width:100%; height:100vh; position:relative; min-width:1200px; position:relative; }
/* スライダー */
#header_slider { width:100%; height:100vh; position:relative; min-width:1200px; background:#666; }
#header_slider .item { width:100%; height: 100vh; background:#000; }
#header_slider .link { display:block; width:100%; height:100%; position:relative; text-indent:-200px; overflow:hidden; }
#header_slider .link.no_link { pointer-events:none; }
/* 動画 */
#header_video { width:100%; height:100vh; position:relative; min-width:1200px; background:#000; }
#header_video .overlay { z-index:2; top:0px; left:0px; width:100%; height:100%; position:absolute; }
/* Youtube 動画 */
#header_youtube { width:100%; height:100vh; position:relative; min-width:1200px; background:#000; }
#header_youtube .overlay { z-index:2; top:0px; left:0px; width:100%; height:100%; position:absolute; }
/* ロゴ */
#header_logo_index {
z-index:9; text-align:center; color:#fff; position:absolute; display:none;
top:50%; top:-webkit-calc(50% - 20px); top:-moz-calc(50% - 20px); top:calc(50% - 20px); left:50%;
-webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%);
}
#header_logo_index .logo { font-size:34px; margin:0 0 20px 0; }
#header_logo_index .desc { font-size:12px; margin:0 0 20px 0; }
#header_logo_index .link {
position:relative; display:block; height:60px; width:60px; border-radius:100%; margin:0 auto;
text-decoration:none; background:#fff;
-webkit-transition: background-color 0.3s ease-in-out; -moz-transition: background-color 0.3s ease-in-out; transition: background-color 0.3s ease-in-out;
}
#header_logo_index .link span { text-indent:100%; white-space:nowrap; overflow:hidden; display:block; }
#header_logo_index .link:before {
font-family:'design_plus'; content:'\e90e'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
top:23px; left:21px; color:#333; font-size:18px; display:block; position:absolute;
}
#header_logo_index .link:hover { background:#000; }
#header_logo_index .link:hover:before { color:#fff; }
/* 共通部分 */
.index_content1 { width:1200px; margin:0 auto; padding:115px 0 55px; }
.index_content2 { width:100%; min-width:1200px; margin:0 auto; }
.index_content2 img { width:100%; height:auto; display:block; }
.index_content_header { text-align:center; padding:0 50px; margin-bottom:55px; }
.index_content_header .headline { font-size:40px; margin:0 0 20px 0; color:#000; }
.index_content_header .desc { font-size:14px; line-height:250%; }
.index_content_header3 { text-align:center; padding:0 50px; margin-bottom:55px; }
.index_content_header3 .headline { font-size:40px; margin:0 0 20px 0; color:#000; }
.index_content_header3 .desc { font-size:14px; line-height:250%; }
.index_wide_image { width:100%; min-width:1200px; height:auto; position:relative; }
.index_wide_image .image { width:100%; }
.index_wide_image .image img { width:100%; height:auto; display:block; }
.index_wide_image .caption {
position:absolute; padding:0 150px; text-decoration:none; color:#fff; display:block; width:100%; text-align:center;
top:50%; left:0;
-webkit-transform: translate3d(0,-50%,0); transform: translate3d(0,-50%,0);
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
.index_wide_image .title { font-size:30px; }
/* コンテンツ1 */
.index_box_list {
padding: 0px 0 65px 25px; display:flex; display: -webkit-flex;
justify-content: center;
//align-items: center;
display:-ms-flexbox; /*--- IE10 ---*/
}
.index_box_list .box {
width:360px; margin:0 auto 0 auto; padding:0 0 75px 0; position:relative;
justify-content: center;
align-items: center;
}
.index_box_list .image {
width:100%; height:auto; display:block; margin:0 0 25px 0; overflow:hidden;
//max-width: 339px;
}
.index_box_list .image img {
width:100%; height:auto; display:block;
-webkit-transition: all 0.35s ease-in-out; -moz-transition: all 0.35s ease-in-out; transition: all 0.35s ease-in-out;
-webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1);
-webkit-backface-visibility:hidden; backface-visibility:hidden;
}
.index_box_list .image a:hover img {
-webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2);
}
.index_box_list .headline { font-size:36px; margin:0 0 10px 0; font-weight:400; color:#000; }
.index_box_list .desc { font-size:14px; margin:0; line-height:250%; }
.index_box_list .desc a { color: #2D8696 }
.index_content_header3 .desc a { color: #2D8696 }
.index_box_list .link { background:#777; color:#fff; text-decoration:none; display:block; margin:0 auto; width:180px; height:50px; line-height:50px; text-align:center; font-size:14px; position:absolute; right:0; left:0; bottom:0; }
.index_box_list .link:after {
font-family:'design_plus'; content:'\e910'; font-size:17px; color:#fff; display:inline-block; padding-left:10px; position:relative; top:2px;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.index_box_list .link:hover { background:#333; color:#fff;}
/* 特別ページ */
#index_dis_list li { float:left; width:25%; position:relative; overflow:hidden; margin-bottom:-1px;}
#index_dis_list li .image { width:100%; height:auto; display:block; background:#000; }
#index_dis_list li .image img {
width:100%; height:auto; display:block; opacity:1;
-webkit-transition: -webkit-opacity 0.5s; transition: opacity 0.5s;
-webkit-backface-visibility:hidden; backface-visibility:hidden;
}
#index_dis_list li:hover .image img { opacity:0.5; }
#index_dis_list li .caption {
position:absolute; width:100%; padding:0 40px; top:100%; left:50%; text-decoration:none; color:#fff; display:block;
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; opacity:0;
-webkit-transform: translate3d(-50%,0,0); transform: translate3d(-50%,0,0);
-webkit-transition: -webkit-transform 0.5s; transition: transform 0.5s;
}
#index_dis_list li:hover .caption {
opacity:1; top:50%; top:-webkit-calc(50% + 5px); top:-moz-calc(50% + 5px); top:calc(50% + 5px); left:50%;
-webkit-transform: translate3d(-50%,-50%,0); transform: translate3d(-50%,-50%,0);
}
#index_dis_list li .title { font-size:34px; margin:0; line-height:120%; }
#index_dis_list li .desc p { font-size:14px; margin:5px 0 0 0; line-height:200%; }
/* お知らせ */
.index_content_header2 { margin:0 0 50px 0; }
.index_content_header2 .headline { float:left; font-size:30px; margin:10px 20px 0 0; color:#000; }
.index_content_header2 .link a { float:right; background:#ccc; color:#fff; text-decoration:none; display:block; margin:0; width:180px; height:50px; line-height:50px; text-align:center; font-size:14px; }
.index_content_header2 .link a:after {
font-family:'design_plus'; content:'\e910'; font-size:17px; padding-left:10px; color:#fff; display:inline-block; position:relative; top:2px;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
#index_news_list { margin-bottom:25px; }
#index_news_list li {
float:left; width:580px; height:135px; margin:0 40px 40px 0; padding:30px; font-size:14px; background:#fbfbfb; border:1px solid #eee;
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
#index_news_list li:nth-child(even) { margin-right:0; }
#index_news_list li .date { font-family:Arial,sans-serif; float:left; width:95px; line-height:250%; margin:0; font-weight:bold; }
#index_news_list li .title { float:left; width:390px; line-height:230%; margin:0; display:block; }
/* ブログ */
#index_blog_list { font-size:0; }
#index_blog_list li { display:inline-block; vertical-align:top; width:360px; margin:0 60px 60px 0; }
#index_blog_list li:nth-child(3n) { margin-right:0; }
#index_blog_list li li { width:auto; margin:0; font-size:12px; }
#index_blog_list li .image { width:100%; height:auto; display:block; margin:0 0 20px 0; overflow:hidden; }
#index_blog_list li .image img {
width:100%; height:auto; display:block;
-webkit-transition: all 0.35s ease-in-out; -moz-transition: all 0.35s ease-in-out; transition: all 0.35s ease-in-out;
-webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1);
-webkit-backface-visibility:hidden; backface-visibility:hidden;
}
#index_blog_list li .image:hover img {
-webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2);
}
#index_blog_list li .title { line-height:160%; margin:0 0 15px 0; display:block; font-size:16px; }
#index_blog_list li .category { margin:0 15px 0 0; }
#index_blog_list li .category a { display:inline-block; height:30px; line-height:30px; font-size:12px; background:#ccc; color:#fff; padding:0 15px; text-decoration:none; }
#index_blog_list li .date { font-family:Arial,sans-serif; padding:8px 15px 12px 20px; position:relative; font-size:14px; color:#666; }
#index_blog_list li .date:before {
font-family:'design_plus'; content:'\e94e'; font-size:12px; color:#222; display:block; position:absolute; left:0px; top:9px;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
/* 特別ページのスライダー */
#index_dis_slider { width:100%; min-width:1200px; height:auto; }
#index_dis_slider .item { width:100%; position:relative; }
#index_dis_slider .image { width:100%; }
#index_dis_slider .image img { width:100%; height:auto; display:block; }
#index_dis_slider .caption {
position:absolute; padding:0 150px; text-decoration:none; color:#fff; display:block;
top:50%; left:0;
-webkit-transform: translate3d(0,-50%,0); transform: translate3d(0,-50%,0);
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
#index_dis_slider .title { font-size:30px; margin:0 0 5px 0; }
#index_dis_slider .desc { font-size:18px; margin:0 0 15px 0; }
#index_dis_slider .desc p { line-height:250%; }
#index_dis_slider .link { background:#222; color:#fff; text-decoration:none; display:block; width:180px; height:50px; line-height:50px; text-align:center; font-size:14px; position:relative; text-shadow:none; }
#index_dis_slider .link:after {
font-family:'design_plus'; content:'\e910'; font-size:16px; color:#fff; padding-left:10px; display:inline-block; position:relative; top:2px;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
/* スライダーの矢印 */
#single_slider .slick-arrow, #index_dis_slider .slick-arrow {
border:none; height:60px; width:60px; overflow:hidden; text-indent:-400px; position:absolute; z-index:9; cursor:pointer; box-shadow:0 0 3px 0 rgba(0,0,0,0.2);
-webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;
}
#single_slider .slick-prev, #index_dis_slider .slick-prev {
background:rgba(0,0,0,0.5) url(img/common/slider_arrow1.png) no-repeat 23px;
top:50%; left:0;
-webkit-transform: translate3d(0,-50%,0); transform: translate3d(0,-50%,0);
}
#single_slider .slick-next, #index_dis_slider .slick-next {
background:rgba(0,0,0,0.5) url(img/common/slider_arrow2.png) no-repeat 25px 23px;
top:50%; right:0;
-webkit-transform: translate3d(0,-50%,0); transform: translate3d(0,-50%,0);
}
#single_slider .slick-arrow:hover, #index_dis_slider .slick-arrow:hover { background-color:#000; }
/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
//#footer_top { background:#f5f7f6; min-width:1200px; }
#footer_top { background:#ffffff; min-width:1200px; }
#footer_top_inner { width:1200px; margin:0 auto; padding:65px 0 50px; text-align:center; }
/* logo */
#footer_logo { margin:0 0 65px 0; }
#footer_logo .logo { font-size:34px; margin:0 0 20px 0; }
#footer_logo .desc { font-size:12px; }
/* menu list */
#footer_menu { margin:0; }
.footer_menu { display:inline-block; margin:0 10px; width:170px; vertical-align:top; }
.footer_menu li { text-align:left; margin:0 0 10px 0; font-size:12px; line-height:180%; }
.footer_menu li:first-child { margin:0 0 20px 0; }
.footer_menu a { display:block; transition:.3s ease-in-out; }
.footer_menu a:hover { text-decoration:underline !important; }
.footer_menu li:first-child a, .footer_menu li:only-child a { font-size:14px; }
.footer_menu li.no_link a { pointer-events:none; text-decoration:none; color:#222; }
/* フッター最下部 */
#footer_bottom { position:relative; width:1200px; margin:0 auto; padding:20px 0 30px; }
/* SNSボタン */
#footer_social_link { margin:0 auto; text-align:center; }
#footer_social_link li { display:inline-block; margin:0; position:relative; }
#footer_social_link li a {
display:block; text-indent:-200px; overflow:hidden; width:30px; height:30px; position:relative;
-webkit-transition-property:none; -moz-transition-property:none; -o-transition-property:none;
}
#footer_social_link li:before {
font-family:'design_plus'; color:#ccc; font-size:17px; display:block; position:absolute; top:10px; left:9px;
width:17px; height:17px; line-height:17px;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
#footer_social_link li.facebook:before { content:'\e902'; }
#footer_social_link li.twitter:before { content:'\e904'; }
#footer_social_link li.youtube:before { content:'\f167'; }
#footer_social_link li.youtube2:before { content:'\ea9e'; }
#footer_social_link li.github:before { content:'\e90c'; }
#footer_social_link li.rss:before { content:'\e90b'; }
#footer_social_link li.insta:before { content:'\ea92'; top:11px; }
#footer_social_link li.pint:before { content:'\e905'; top:11px; }
#footer_social_link li.flickr:before { content:'\eaa4'; top:11px; }
#footer_social_link li.tumblr:before { content:'\eab9'; top:11px; }
#footer_social_link li.facebook:hover:before { color:#333333; } // { color:#3B5998; }
#footer_social_link li.twitter:hover:before { color:#333333; } // { color:#16b9dc; }
#footer_social_link li.youtube:hover:before { color:#333333; } // { color: red; }
#footer_social_link li.youtube2:hover:before { color:#333333; } // { color: red; }
#footer_social_link li.github:hover:before { color:#333333; }
#footer_social_link li.insta:hover:before { color:#8a3ab9; }
#footer_social_link li.rss:hover:before { color:#ffcc00; }
#footer_social_link li.pint:hover:before { color:#cb2027; }
#footer_social_link li.flickr:hover:before { color:#ff0084; }
#footer_social_link li.tumblr:hover:before { color:#34526f; }
/* メニュー */
#footer_menu_bottom { text-align:center; margin:15px 0 0; }
#footer_menu_bottom li { display:inline-block; font-size:12px; }
#footer_menu_bottom li a { display:block; border-right:1px solid #ccc; padding:0 15px 0 0; margin:0 15px 0 0; }
#footer_menu_bottom li:last-child a { border:none; padding:0; margin:0; }
/* コピーライト */
#copyright { text-align:center; margin:0; padding:0; font-size:12px; background:#000; min-width:1200px; height:60px; line-height:60px; color:#fff; }
#copyright a { color:#fff; }
/* ページ上部へ戻るボタン */
#return_top {
position:fixed; right:0px; bottom:0px; z-index:10;
-webkit-transform: translate3d(0,200%,0); transform: translate3d(0,200%,0);
-webkit-transition: -webkit-transform 0.35s; transition: transform 0.35s;
}
#return_top.active { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
#return_top a {
position:relative; display:block; height:60px; width:60px;
text-decoration:none; background:rgba(0,0,0,0.2);
}
#return_top span { text-indent:100%; white-space:nowrap; overflow:hidden; display:block; }
#return_top a:hover { opacity:1; }
#return_top a:before {
font-family:'design_plus'; color:#fff; font-size:18px; display:block; position:absolute; width:23px; height:23px;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
#return_top a:before { content:'\e911'; top:24px; left:22px; }
/* ローディングアイコン */
#site_wrap { display:none; }
#site_loader_overlay {
position: fixed; background:#fff; background:rgba(255,255,255,1);
top:0px; left:0px; bottom:0px; right:0px;
z-index: 99999; opacity:1;
-webkit-transition: opacity 0.3s; transition: opacity 0.3s;
}
#site_loader_spinner {
width:60px; height:60px; border-radius:100%; margin-top:-30px; margin-left:-30px;
border:4px solid #ccc; border-top-color:#666; box-sizing:border-box;
position:absolute; top:50%; left:50%;
animation:loading 1.2s linear infinite;
-webkit-animation:loading 1.2s linear infinite;
}
@keyframes loading{
0% { transform:rotate(0deg); }
100% { transform:rotate(360deg); }
}
@-webkit-keyframes loading{
0% {-webkit-transform:rotate(0deg); }
100% {-webkit-transform:rotate(360deg); }
}
/**
* スマホ用固定フッターバーの設定
*/
.footer-bar02 {
background: #ffffff;
border-top: 1px solid #ddd;
display: table;
font-size: 12px;
position: fixed;
bottom: 0;
table-layout: fixed;
text-align: center;
width: 100%;
z-index: 9998;
}
.footer-bar02 a {
display: block;
padding: 15px 0;
}
.footer-bar02-item {
display: table-cell;
vertical-align: middle;
}
.footer-bar02-item + .footer-bar02-item {
border-left: 1px solid #ddd;
}
.footer-bar02-item:only-child .footer-bar02-icon {
display: block;
position: relative;
}
.footer-bar02-item:only-child .footer-bar02-icon:before {
position: absolute;
right: 15px;
}
.footer-bar02-icon:before {
display: block;
font-family: "design_plus";
font-size: 16px;
margin-bottom: .5em;
}
.modal-overlay {
background: rgba(0, 0, 0, 0.5);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
}
.modal-content {
margin: auto;
position: fixed;
bottom: 20%;
left: 0;
right: 0;
width: 209px;
z-index: 9999;
}
.modal-close:before {
color: #fff;
font-size: 32px;
position: absolute;
bottom: 20%;
right: 0;
text-align: center;
width: 50px;
}
.share {
text-align: center;
}
.share-button {
display: inline-block;
vertical-align: center;
width: 50px;
height: 50px;
}
.share-button + .share-button {
margin-left: 3px;
}
.share-button a {
display: block;
position: relative;
width: 100%;
height: 100%;
}
.share-button a:before {
font-size: 24px;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 24px;
height: 24px;
}
/* ----------------------------------------------------------------------
サイドコンテンツ
---------------------------------------------------------------------- */
/* 基本設定 */
.side_widget { margin:0 0 60px 0; font-size:12px; position:relative; }
.side_widget:last-child, .side_widget:only-child { margin:0; }
.side_headline { height:45px; line-height:45px; font-size:14px; margin:0 0 20px 0; border-bottom:1px solid #ddd; }
.side_headline span { display:inline-block; background:#222; color:#fff; padding:0 35px; }
.side_widget ul { margin:0; }
.side_widget li ul { margin:10px 0 0 0; }
.side_widget li { line-height:200%; padding:2px 0; margin:0 0 10px 0; }
.side_widget a { }
.side_widget a:hover { }
.side_widget img { height:auto; max-width:100%; }
/* 広告 */
.ml_ad_widget { margin:0 0 60px 0; border:none; padding:0; background:none; }
.ml_ad_widget img { height:auto; max-width:100%; margin:0 auto; display:block; }
/* デザインされた記事一覧1 */
.styled_post_list1 { margin:0; }
.styled_post_list1 li { margin:0 0 20px 0; padding:0 0 20px 0; background:none; border-bottom:1px solid #ddd; }
.styled_post_list1 li:last-child { margin:0; padding:0; border:none; }
.styled_post_list1 ul li { display:inline; line-height:160%; border:none; }
.styled_post_list1 ul li:last-child { border-left:1px solid #ccc; margin:0 0 0 5px; padding:0 0 0 7px; }
.styled_post_list1 ul li:only-child { border:none; margin:0; padding:0; }
.styled_post_list1 .title { font-size:14px; margin:0; padding:0; display:block; font-weight:400; line-height:160%; }
.styled_post_list1 .date { font-family:Arial,sans-serif; margin:0 0 5px 0; position:relative; font-size:12px; color:#666; display:block; }
.styled_post_list1 .date:before {
font-family:'design_plus'; content:'\e94e';
font-size:12px; color:#222; display:block; float:left; margin:0 8px 0 0;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.styled_post_list1 .image { float:left; display:block; margin:0 25px 0 0; overflow:hidden; width:100px; height:100px; }
.styled_post_list1 .image img {
width:100px; height:100px; -webkit-backface-visibility:hidden; backface-visibility:hidden;
-webkit-transition: all 0.35s ease-in-out; -moz-transition: all 0.35s ease-in-out; transition: all 0.35s ease-in-out;
-webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1);
}
.styled_post_list1 .image:hover img {
-webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2);
}
/* 開閉式カテゴリー一覧 */
.tcdw_category_list_widget .side_headline { margin:0; }
.collapse_category_list ul { margin:0; padding:0; }
.collapse_category_list li ul { margin:0; padding:0; }
.collapse_category_list li { margin:0; padding:0; }
.collapse_category_list li li { margin:0; padding:0; }
.collapse_category_list li a {
border-bottom:1px solid #ddd; display:block; padding:12px 10px; margin:0; text-decoration:none; position:relative; color:#333; overflow:hidden;
-webkit-transition-property:none; -moz-transition-property:none; -o-transition-property:none;
}
.collapse_category_list li a .count { float:right; top:0px; position:relative; background:#f2f2f2; padding:0 10px; min-width:15px; text-align:center; font-size:11px; border-radius:2px; }
.collapse_category_list li li a .count { background:#ddd; }
.collapse_category_list li li li a .count { background:#aaa; }
.collapse_category_list .parent_category a.active { margin:0; }
.collapse_category_list .children { display:none; margin-top:-4px; }
.collapse_category_list .children a { padding-left:22px; background-color:#eee; margin:0;}
.collapse_category_list ul .children a { padding-left:33px; background-color:#bbb; color:#fff; }
.collapse_category_list li a:before {
content:''; display:block; position:absolute; left:-7px; top:50%; top:-webkit-calc(50% - 4px); top:calc(50% - 4px); top:calc(50% - 4px);
width: 0; height: 0; border-style: solid; border-width: 4.5px 0 4.5px 6px; border-color: transparent transparent transparent orange;
-webkit-transition: -webkit-left 0.35s; transition: left 0.35s;
}
.collapse_category_list li a:hover:before { left:0px; }
.collapse_category_list li a:hover .count { background-color:orange; color:#fff; }
/* 検索 */
.widget_search label { display:none; }
.widget_search #search-box, .widget_search #s, .side_widget.google_search #s { width:260px; height:40px; margin:0; border:none; background:#f2f2f2; padding:0 10px; }
.widget_search #search-btn input, .widget_search #searchsubmit, .side_widget.google_search #searchsubmit {
border:none; width:40px; height:40px; background:#000 url(img/common/icon_search.png) no-repeat center; cursor:pointer; display:block;
float:right; text-indent:-300%; overflow:hidden;
}
.widget_search #search-btn input:hover, .widget_search #searchsubmit:hover, .side_widget.google_search #searchsubmit:hover { color:#fff; background-color:#666; }
.pc .three_column .widget_search #search-box, .pc .three_column .widget_search #s, .pc .three_column .side_widget.google_search #s { width:176px; }
/* アーカイブ、カテゴリードロップダウンメニュー */
.widget_categories, .tcdw_archive_list_widget { background:#fff; padding:17px 17px 15px; }
.widget_categories .side_headline, .tcdw_archive_list_widget .side_headline { margin:-17px -17px 15px; position:relative; }
.widget_archive .side_headline {}
.widget_archive select, .widget_categories select, .tcdw_archive_list_widget select { border:1px solid #ddd; padding:12px 10px; width:100%; margin:0; font-size:14px; }
.widget_archive label, .widget_categories label { display:none; }
.widget_archive select option, .widget_categories select option, .tcdw_archive_list_widget option { background:#fff; color:#333; }
/* デフォルトの最近の記事 */
.widget_recent_entries li { border-bottom:1px dotted #ccc; padding:0 0 15px 0; }
.widget_recent_entries li:last-child { border:none; padding:0; }
/* アーカイブ、カテゴリードロップダウンメニュー */
.widget_archive, .widget_categories, .tcdw_archive_list_widget { background:#fff; padding:17px 17px 15px; }
.widget_archive { /* border:1px solid #ddd; border-bottom:none; */ padding:17px 0 0; }
.widget_archive ul { margin:0; padding:0; }
.widget_archive ul li {
border:1px solid #ddd; border-top:0; margin:-17px 0 15px; display:block; padding:12px 17px; margin:0; text-decoration:none; position:relative; color:#333; overflow:hidden;
-webkit-transition-property:none; -moz-transition-property:none; -o-transition-property:none;
}
.widget_archive .side_headline, .widget_categories .side_headline, .tcdw_archive_list_widget .side_headline { margin:-17px -17px 15px; position:relative; }
.widget_archive .side_headline { margin:-17px 0 0; }
.widget_archive select, .widget_categories select, .tcd_archive_dropdown select { border:1px solid #ddd; padding:12px 10px; width:100%; margin:0; font-size:14px; }
.widget_archive select { border:1px solid #ddd; border-top:0; padding:12px; }
.widget_archive label, .widget_categories label { display:none; }
.widget_archive select option, .widget_categories select option, .tcd_archive_dropdown option { background:#fff; color:#333; }
/* ----------------------------------------------------------------------
WordPress プリセットスタイル
---------------------------------------------------------------------- */
/* alignment */
.post_content .alignright { float:right; }
.post_content .alignleft { float:left; }
.post_content .aligncenter { display:block; margin-left:auto; margin-right:auto; margin-bottom:7px; }
.post_content blockquote.alignleft, .post_content img.alignleft { margin:7px 24px 7px 0; }
.post_content blockquote.alignright, .post_content img.alignright { margin:7px 0 7px 24px; }
.post_content blockquote.aligncenter, .post_content img.aligncenter, .post_content { margin-top:7px; margin-bottom:7px; }
/* text and headline */
.post_content p { line-height:2.5; margin:0 0 2em 0; }
.post_content h1, .post_content h2, .post_content h3, .post_content h4, .post_content h5, .post_content h6 { clear:both; line-height:1.2; font-weight:600; margin:0 0 10px 0; padding:10px 0 0 0; }
.post_content h1 { font-size:150%; }
.post_content h2 { font-size:140%; }
.post_content h3 { font-size:130%; }
.post_content h4 { font-size:120%; }
.post_content h5 { font-size:110%; }
.post_content h6 { font-size:100%; }
/* list */
.post_content li, .post_content dt, .post_content dd { line-height:2.2; }
.post_content ul, .post_content ol, .post_content dl { margin-bottom:24px; }
.post_content ol { list-style:decimal outside none; margin-left:1.5em; }
.post_content ul { list-style:circle outside none; margin-left:1.3em; }
.post_content li > ul, .post_content li > ol { margin-bottom:0; }
.post_content dt { font-weight:bold; }
.post_content dd { margin-bottom:1em; }
/* table */
.post_content table { margin:0 0 24px 0; }
.post_content td, .post_content th { border:1px solid #bbb; padding:10px 15px 7px; line-height:2.2; background:#fff; }
.post_content th { background:#ddd; font-weight:normal; }
/* block quote */
.post_content blockquote { margin:0 0 25px 0; padding:27px 30px 0; border:1px solid #ccc; box-shadow:0px 4px 0px 0px #f2f2f2; position:relative; }
.post_content blockquote:before { content: '"'; font-style:italic; font-size:30px; font-weight:normal; line-height:40px; width:30px; height:30px; position:absolute; top:5px; left:10px; color:#5cbcd7; }
.post_content blockquote:after { content: '"'; font-style:italic; font-size:30px; font-weight:normal; text-align:left; line-height:60px; width:30px; height:30px; position:absolute; bottom:7px; right:-2px; color:#5cbcd7; }
.post_content blockquote cite { border-top:1px dotted #aaa; display:block; padding:20px 0 0 0; font-style:italic; text-align:right; font-size:90%; }
/* gallery */
.gallery { margin-bottom:20px; }
.gallery a img { border: 0 !important; }
.gallery-item { float:left; margin:0 4px 4px 0; overflow:hidden; position:relative; }
.gallery-columns-1 .gallery-item { max-width:100%; }
.gallery-columns-2 .gallery-item { max-width:48%; max-width:-webkit-calc(50% - 4px); max-width:calc(50% - 4px); }
.gallery-columns-3 .gallery-item { max-width:32%; max-width:-webkit-calc(33.3% - 4px); max-width:calc(33.3% - 4px); }
.gallery-columns-4 .gallery-item { max-width:23%; max-width:-webkit-calc(25% - 4px); max-width:calc(25% - 4px); }
.gallery-columns-5 .gallery-item { max-width:19%; max-width:-webkit-calc(20% - 4px); max-width:calc(20% - 4px); }
.gallery-columns-6 .gallery-item { max-width:15%; max-width:-webkit-calc(16.7% - 4px); max-width:calc(16.7% - 4px); }
.gallery-columns-7 .gallery-item { max-width:13%; max-width:-webkit-calc(14.28% - 4px); max-width:calc(14.28% - 4px); }
.gallery-columns-8 .gallery-item { max-width:11%; max-width:-webkit-calc(12.5% - 4px); max-width:calc(12.5% - 4px); }
.gallery-columns-9 .gallery-item { max-width: 9%; max-width:-webkit-calc(11.1% - 4px); max-width:calc(11.1% - 4px); }
.gallery-columns-10 .gallery-item { max-width: 7%; max-width:-webkit-calc(9.4% - 0px); max-width:calc(9.4% - 0px); }
.gallery-columns-1 .gallery-item:nth-of-type(1n), .gallery-columns-2 .gallery-item:nth-of-type(2n), .gallery-columns-3 .gallery-item:nth-of-type(3n), .gallery-columns-4 .gallery-item:nth-of-type(4n), .gallery-columns-5 .gallery-item:nth-of-type(5n), .gallery-columns-6 .gallery-item:nth-of-type(6n), .gallery-columns-7 .gallery-item:nth-of-type(7n), .gallery-columns-8 .gallery-item:nth-of-type(8n), .gallery-columns-9 .gallery-item:nth-of-type(9n), .gallery-columns-10 .gallery-item:nth-of-type(10n) { margin-right:0; }
.gallery-caption { background-color:rgba(0, 0, 0, 0.7); -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; color:#fff; font-size:12px; line-height:1.5; margin:0; max-height:50%; opacity:0; padding:6px 8px; position:absolute; bottom:0; left:0; text-align:left; width:100%; }
.gallery-caption:before { content: ""; height:100%; min-height:49px; position:absolute; top:0; left:0; width:100%; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption, .gallery-columns-10 .gallery-caption { display: none; }
/* ----------------------------------------------------------------------
ソーシャルボタン
---------------------------------------------------------------------- */
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?evfvw0');
src: url('fonts/icomoon.eot?evfvw0#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?evfvw0') format('truetype'),
url('fonts/icomoon.woff?evfvw0') format('woff'),
url('fonts/icomoon.svg?evfvw0#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-google-plus:before { content: "\e900"; }
.icon-google-plus2:before { content: "\e901"; }
.icon-facebook:before { content: "\e902"; }
.icon-facebook2:before { content: "\e903"; }
.icon-twitter:before { content: "\e904"; }
.icon-pinterest:before { content: "\e905"; }
.icon-rss:before { content: "\e906"; }
.icon-feedly:before { content: "\e907"; }
.icon-hatebu:before { content: "\e908"; }
.icon-line:before { content: "\e909"; }
.icon-pocket:before { content: "\e90a"; }
.icon-rss2:before { content: "\e90b"; }
.icon-twitter2:before { content: "\e90d"; }
.icon-youtube:before { content: "\e90f"; }
#share_top1 ul li a, #share_top2 ul li a, #share_btm1 ul li a, #share_btm2 ul li a { -webkit-transition:all 0.3s; -moz-transition:all 0.3s; -o-transition:all 0.3s; transition:all 0.3s; }
/*--------------------------------
share_top1(Style1)
---------------------------------*/
#share_top1 { width:100%; margin:-10px 0 20px; }
#single_share_bottom #share_top1 { margin-top:0; }
#share_top1 h2 { color:#666666; font-weight:400; }
#share_top1 ul { margin:0; padding:0; list-style:none; }
#share_top1 ul li { display:inline-block; padding:0; text-align:center; }
#share_top1 ul li a { min-width:27px; text-decoration:none; display:inline-block; margin:0 5px 5px 0; font-size:12px; font-weight:400; color: #fff!important; background:#fafafa; border-radius:2px; box-shadow:0 1px 0 rgba(0,0,0,.03); text-shadow:none; text-align:center; line-height:25px; padding:1px 5px 0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; }
#share_top1 ul li a i { position:relative; top:3px; color:#fff; font-size:1.3em; text-shadow:1px 1px 0 rgba(255, 255, 255, .1); }
#share_top1 ul li a .ttl { margin:0 3px 0 2px; text-align:center; line-height:20px; }
#share_top1 ul li a .share-count { display:inline; font-size:9px; color:#fff; padding:0; line-height:25px; margin:0; border-radius:0 1px 1px 0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; }
#share_top1 ul li > a:hover { -webkit-transform:translate3d(0, 1px, 0); transform:translate3d(0, 1px, 0) }
@media screen and (max-width:480px) {
#share_top1 { width:100%; }
#share_top1 ul { margin-bottom:15px; }
#share_top1 ul li a { margin-right:2px; }
#share_top1 ul li a i { left:1px; }
#share_top1 ul li>a span { display:none; }
#share_top1 ul li a .share-count { margin-left:3px; }
}
/*--------------------------------
share_btm1(Style3)
---------------------------------*/
#share_btm1 { margin:-10px 0 30px; }
#share_btm1 .sns { margin:0; text-align:center; }
#share_btm1 ul { margin:0 -3% 3% 0; list-style:none; }
#share_btm1 li { float:left; width:47%; margin:0 3% 1.5% 0; padding:0; cursor:pointer; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; }
.post #share_btm1 ul li { list-style:none; background-image:none; padding:0; }
#share_btm1 ul li a { position:relative; display:block; top:3px; font-size:13px; padding:10px 2px 15px; color:#fff; border-radius:2px; text-align:center; text-decoration:none; vertical-align:middle; }
#share_btm1 ul li a i { position:relative; top:3px; font-size:140%; }
#share_btm1 ul li a .ttl { margin:0 3px 0 4px; display:inline-block; text-align:center; font-size:12px; }
#share_btm1 ul li a .share-count { position:absolute; bottom:-2px; right:8px; font-size:10px; padding:0; line-height:25px; margin:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; }
#share_btm1 ul li a:hover { -webkit-transform: translate3d(0px, 2px, 1px); -moz-transform: translate3d(0px, 2px, 1px); transform: translate3d(0px, 2px, 1px); }
@media only screen and (min-width:480px) {
#share_btm1 { width:100%; margin:0 0 15px; }
#share_btm1 ul { margin-right:-1%; list-style:none; overflow:hidden; }
#share_btm1 li { width:24%; margin:0 1% 2% 0; }
#share_btm1 li a { font-size:12px; padding:10px 2px; }
#share_btm1 li:nth-child(4n) { margin-right:0; }
}
/*------------- share_top1 & share_btm1 button_color -------------*/
/* Twitter */
#share_top1 ul li.twitter a, #share_btm1 ul li.twitter a { color:#fff; background-color:#55acee; }
#share_top1 ul li.twitter a:hover, #share_btm1 ul li.twitter a:hover { background-color:#468ec5; }
/* Facebook */
#share_top1 ul li.facebook a, #share_btm1 ul li.facebook a { background-color:#35629a; }
#share_top1 ul li.facebook a:hover, #share_btm1 ul li.facebook a:hover { background-color:#1f3669; }
/* Google+ */
#share_top1 ul li.googleplus a, #share_btm1 ul li.googleplus a { background-color:#dd4b39;}
#share_top1 ul li.googleplus a:hover, #share_btm1 ul li.googleplus a:hover { background-color:#b94031;}
#share_top1 ul li.googleplus a i { top:4px; }
/* Hatena */
#share_top1 ul li.hatebu>a, #share_btm1 ul li.hatebu a { background-color:#3c7dd1;}
#share_top1 ul li.hatebu>a:hover, #share_btm1 ul li.hatebu a:hover { background-color:#0270ac;}