source for sakino.kelbie.scot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

802 lines
15 KiB

  1. /* ==========================================================================
  2. HTML5 Boilerplate styles - h5bp.com (generated via initializr.com)
  3. ========================================================================== */
  4. html,
  5. button,
  6. input,
  7. select,
  8. textarea {
  9. color: #222;
  10. }
  11. body {
  12. font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Osaka","メイリオ","MS Pゴシック","Helvetica",arial,sans-serif;
  13. font-size: 1em;
  14. line-height: 1.4;
  15. }
  16. /*テキストを選択した時の色*/
  17. ::-moz-selection {
  18. background: #b3d4fc;
  19. text-shadow: none;
  20. }
  21. ::selection {
  22. background: #b3d4fc;
  23. text-shadow: none;
  24. }
  25. hr {
  26. display: block;
  27. margin: 1em 0;
  28. padding: 0;
  29. height: 1px;
  30. border: 0;
  31. border-top: 1px solid #ccc;
  32. }
  33. img {
  34. vertical-align: middle;
  35. }
  36. fieldset {
  37. margin: 0;
  38. padding: 0;
  39. border: 0;
  40. }
  41. textarea {
  42. resize: vertical;
  43. }
  44. .chromeframe {
  45. margin: 0.2em 0;
  46. padding: 0.2em 0;
  47. background: #ccc;
  48. color: #000;
  49. }
  50. /* ==========================================================================
  51. Author's custom styles
  52. ========================================================================== */
  53. .w10{ width: 10%;}
  54. .w20{ width: 20%;}
  55. .w25{ width: 25%;}
  56. .w30{ width: 30%;}
  57. .w33{ width: 33%;}
  58. .w40{ width: 40%;}
  59. .w50{ width: 50%;}
  60. .w60{ width: 60%;}
  61. .w70{ width: 70%;}
  62. .w80{ width: 80%;}
  63. .w90{ width: 90%;}
  64. .w100{ width: 100%;}
  65. img{max-width: 100%; height: auto;}
  66. /* ==========================================================================
  67. Helper classes
  68. ========================================================================== */
  69. .ir {
  70. overflow: hidden;
  71. border: 0;
  72. background-color: transparent;
  73. *text-indent: -9999px;
  74. }
  75. .ir:before {
  76. display: block;
  77. width: 0;
  78. height: 100%;
  79. content: "";
  80. }
  81. .visuallyhidden {
  82. position: absolute;
  83. overflow: hidden;
  84. clip: rect(0 0 0 0);
  85. margin: -1px;
  86. padding: 0;
  87. width: 1px;
  88. height: 1px;
  89. border: 0;
  90. }
  91. .visuallyhidden.focusable:active,
  92. .visuallyhidden.focusable:focus {
  93. position: static;
  94. overflow: visible;
  95. clip: auto;
  96. margin: 0;
  97. width: auto;
  98. height: auto;
  99. }
  100. .invisible {
  101. visibility: hidden;
  102. }
  103. .clearfix:before,
  104. .clearfix:after {
  105. display: table;
  106. content: " ";
  107. }
  108. .clearfix:after {
  109. clear: both;
  110. }
  111. .clearfix {
  112. *zoom: 1;
  113. }
  114. .flr{
  115. float: right;
  116. }
  117. /* ==========================================================================
  118. Print styles
  119. ========================================================================== */
  120. @media print {
  121. * {
  122. background: transparent !important;
  123. box-shadow:none !important;
  124. color: #000 !important; /* Black prints faster: h5bp.com/s */
  125. text-shadow: none !important;
  126. }
  127. a,
  128. a:visited {
  129. text-decoration: underline;
  130. }
  131. a[href]:after {
  132. content: " (" attr(href) ")";
  133. }
  134. abbr[title]:after {
  135. content: " (" attr(title) ")";
  136. }
  137. /*
  138. * Don't show links for images, or javascript/internal links
  139. */
  140. .ir a:after,
  141. a[href^="javascript:"]:after,
  142. a[href^="#"]:after {
  143. content: "";
  144. }
  145. pre,
  146. blockquote {
  147. border: 1px solid #999;
  148. page-break-inside: avoid;
  149. }
  150. thead {
  151. display: table-header-group; /* h5bp.com/t */
  152. }
  153. tr,
  154. img {
  155. page-break-inside: avoid;
  156. }
  157. img {
  158. max-width: 100% !important;
  159. }
  160. @page {
  161. margin: 0.5cm;
  162. }
  163. p,
  164. h2,
  165. h3 {
  166. orphans: 3;
  167. widows: 3;
  168. }
  169. h2,
  170. h3 {
  171. page-break-after: avoid;
  172. }
  173. }
  174. /*utility*/
  175. .txt_small{
  176. font-size: 85%;
  177. }
  178. .txt_normal{
  179. font-size: 100%;
  180. }
  181. .txt_large{
  182. font-size: 120%;
  183. }
  184. .txt_xlarge{
  185. font-size: 150%;
  186. }
  187. .txt_r{
  188. text-align: right;
  189. }
  190. .txt_l{
  191. text-align: left;
  192. }
  193. .txt_c{
  194. text-align: center;
  195. }
  196. .txt_alert{
  197. color: #FF3300;
  198. }
  199. .line_150{
  200. line-height: 150%;
  201. }
  202. .line_180{
  203. line-height: 180%;
  204. }
  205. .line_200{
  206. line-height: 200%;
  207. }
  208. .line_250{
  209. line-height: 250%;
  210. }
  211. .flt{
  212. float: left;
  213. }
  214. .flr{
  215. float: right;
  216. }
  217. .mt10{ margin-top: 10px;}
  218. .mb10{ margin-bottom: 10px;}
  219. .ml10{ margin-left: 10px;}
  220. .mr10{ margin-right: 10px;}
  221. /*table settings*/
  222. table {
  223. background-color: transparent;
  224. border-collapse: collapse;
  225. border-spacing: 0;
  226. max-width: 100%;
  227. font-size: 70%;
  228. }
  229. .table {
  230. background: none repeat scroll 0 0 #FFFFFF;
  231. border-radius: 5px 5px 5px 5px;
  232. width: 100%;
  233. }
  234. .table th, .table td {
  235. border-top: 1px solid #DDDDDD;
  236. line-height: 18px;
  237. padding: 8px;
  238. text-align: left;
  239. vertical-align: top;
  240. }
  241. .table .highlight{
  242. background: #efefef;
  243. }
  244. .table th {
  245. font-weight: bold;
  246. }
  247. .table thead th {
  248. border-bottom: 1px solid #DDDDDD;
  249. vertical-align: bottom;
  250. }
  251. .table thead tr.dcms_table_fold_title th {
  252. background: none repeat scroll 0 0 #EBEBEB;
  253. vertical-align: bottom;
  254. }
  255. .table colgroup + thead tr:first-child th, .table colgroup + thead tr:first-child td, .table thead:first-child tr:first-child th, .table thead:first-child tr:first-child td {
  256. border-top: 0 none;
  257. }
  258. .table tbody + tbody {
  259. border-top: 2px solid #DDDDDD;
  260. }
  261. .table-condensed th, .table-condensed td {
  262. padding: 4px 5px;
  263. }
  264. .table-bordered {
  265. -moz-border-bottom-colors: none;
  266. -moz-border-left-colors: none;
  267. -moz-border-right-colors: none;
  268. -moz-border-top-colors: none;
  269. border-collapse: separate;
  270. border-color: #DDDDDD #DDDDDD #DDDDDD -moz-use-text-color;
  271. border-image: none;
  272. border-radius: 4px 4px 4px 4px;
  273. border-style: solid solid solid none;
  274. border-width: 1px 1px 1px 0;
  275. }
  276. .table-bordered th, .table-bordered td {
  277. border-left: 1px solid #DDDDDD;
  278. }
  279. .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
  280. border-top: 0 none;
  281. }
  282. .table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child {
  283. border-radius: 4px 0 0 0;
  284. }
  285. .table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child {
  286. border-radius: 0 4px 0 0;
  287. }
  288. .table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child {
  289. border-radius: 0 0 0 4px;
  290. }
  291. .table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child {
  292. border-radius: 0 0 4px 0;
  293. }
  294. .table-striped tbody tr:nth-child(2n+1) td, .table-striped tbody tr:nth-child(2n+1) th {
  295. background-color: #F9F9F9;
  296. }
  297. /*subtitles*/
  298. .book_title01{
  299. font-size: 100%;
  300. border-bottom:solid 1px #ccc ;
  301. font-weight: normal;
  302. margin-bottom: 10px;
  303. text-indent: 5px;
  304. }
  305. .book_title01 .small_title{
  306. font-size: 50%;
  307. display: block;
  308. text-indent: 0px;
  309. margin: 0px 5px;
  310. color: #666;
  311. }
  312. .book_title01 strong{
  313. max-height: 7em;
  314. margin: 0px 5px;
  315. overflow: hidden;
  316. display:block;
  317. text-indent:0px;
  318. word-wrap: break-word;
  319. }
  320. .subtitle01{
  321. font-size: 160%;
  322. line-height: 40px;
  323. border-bottom:solid 1px #ccc ;
  324. font-weight: normal;
  325. margin-bottom:0.5em;
  326. text-indent: 5px;
  327. position: relative;
  328. }
  329. .subtitle01_double{
  330. border-bottom: 1px solid #CCCCCC;
  331. font-size: 130%;
  332. font-weight: normal;
  333. margin-bottom: 2.5em;
  334. position: relative;
  335. text-indent: 0;
  336. }
  337. .subtitle02{
  338. border-bottom: 1px solid #CCCCCC;
  339. font-size: 120%;
  340. font-weight: normal;
  341. line-height: 40px;
  342. margin-bottom: 10px;
  343. }
  344. .subtitle03{
  345. border-bottom: 1px solid #CCCCCC;
  346. font-size: 100%;
  347. font-weight: normal;
  348. line-height: 35px;
  349. margin-bottom: 10px;
  350. text-indent: 5px;
  351. }
  352. .subtitle04{
  353. border-bottom: 1px dashed #CCCCCC;
  354. font-size: 120%;
  355. font-weight: bold;
  356. line-height: 30px;
  357. margin-bottom: 10px;
  358. text-indent: 5px;
  359. }
  360. .bold_title01{
  361. font-weight: bold;
  362. }
  363. .side_detail_box01{
  364. font-size: 50%;
  365. position: absolute;
  366. right: 0;
  367. top: 0px;
  368. }
  369. .side_detail_box01 .btn_m{
  370. text-indent: 0px;
  371. padding: 4px 5px;
  372. width: 35px;
  373. }
  374. .subtitle{
  375. font-size: 85%;
  376. color: #666;
  377. margin-left: 5px;
  378. }
  379. .switch_view_title{
  380. float: left;
  381. margin-right: 10px;
  382. }
  383. .copyright_box{
  384. font-size: 85%;
  385. color: #666;
  386. }
  387. /*main_layout*/
  388. .wrapper{
  389. float: left;
  390. width: 100%;
  391. text-align: center;
  392. }
  393. .container{
  394. width: 100%;
  395. margin: 0 auto;
  396. text-align: left;
  397. border-top:solid #666666 3px;
  398. }
  399. .inner {
  400. margin: 0 5px;
  401. content: " ";
  402. }
  403. .inner:after {
  404. clear: both;
  405. }
  406. .inner {
  407. *zoom: 1;
  408. }
  409. .title_box01{
  410. float: left;
  411. width: 100%;
  412. margin-bottom: 10px;
  413. }
  414. .contents{
  415. float: left;
  416. width: 100%;
  417. margin-top: 10px;
  418. min-height: 280px;
  419. }
  420. .pagelist .contents{
  421. margin-top: 0px;
  422. }
  423. .section01{
  424. float: left;
  425. width: 100%;
  426. margin-bottom: 30px;
  427. }
  428. .photobox01{
  429. background: #fff;
  430. margin: 0px;
  431. }
  432. .photobox01 img{
  433. border: solid 1px #ccc;
  434. }
  435. .detailbox01{
  436. float: left;
  437. width: 100%;
  438. }
  439. /*list view*/
  440. .listview01{
  441. list-style-type: none;
  442. }
  443. .listview01 li{
  444. float: left;
  445. width: 100%;
  446. margin-bottom: 20px;
  447. }
  448. .listview01 li img{
  449. max-width: 140px;
  450. }
  451. .list_thum01{
  452. float: left;
  453. width: 140px;
  454. line-height: 170px;
  455. margin-right: 10px;
  456. margin-bottom: 20px;
  457. text-align: center;
  458. }
  459. .list_details{
  460. float: left;
  461. width: 100%;
  462. }
  463. .list_details.notice_text{
  464. font-size: 70%;
  465. color:#666;
  466. text-align: left;
  467. }
  468. .list_txt01{
  469. margin-left: 150px;
  470. background: #E5E5E5;
  471. min-height: 180px;
  472. position: relative;
  473. -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,.5);
  474. -moz-box-shadow: 0px 1px 3px rgba(0,0,0,.5);
  475. box-shadow: 0px 1px 3px rgba(0,0,0,.5);
  476. /*background:url("http://subtlepatterns.com/patterns/tiny_grid.png") #FCFCFC;*/
  477. background:#DDDDDD;
  478. position:relative;
  479. border:1px solid #fff;
  480. }
  481. .list_txt01 .inner{
  482. min-height: 120px;
  483. }
  484. .book_detail .list_txt01 .inner{
  485. min-height: 200px;
  486. }
  487. .list_txt02{
  488. width:100%;
  489. }
  490. .list_txt03{
  491. margin-left: 120px;
  492. }
  493. .side_contents01{
  494. float: left;
  495. width: 230px;
  496. }
  497. .list_details{
  498. font-size: 80%;
  499. text-align: center;
  500. }
  501. .list_details .btn_m{
  502. padding: 4px 8px;
  503. float: left;
  504. width: 100%;
  505. text-align: left;
  506. }
  507. .main_contents{
  508. float: left;
  509. width: 100%;
  510. min-height: 280px;
  511. }
  512. .app_download_box{
  513. background:url("../img/bg_grad01.png") repeat-x top #fff;
  514. clear: both;
  515. border: solid 1px #ccc;
  516. padding: 10px;
  517. margin:10px 5px 0px;
  518. border-radius: 5px;
  519. }
  520. .app_title{
  521. font-size: 80%;
  522. margin-bottom: 0.8em;
  523. }
  524. .app_title img{
  525. width:20px;
  526. height:20px;
  527. padding-right: 5px;
  528. }
  529. .ban_holder01{
  530. list-style: none;
  531. }
  532. .ban_holder01 li{
  533. list-style: none;
  534. width: 48%;
  535. display: inline-block;
  536. margin-bottom: 5px;
  537. }
  538. .footer{
  539. clear: both;
  540. float: left;
  541. width: 100%;
  542. padding-bottom: 10px;
  543. background: #000;
  544. }
  545. .footer_inner{
  546. border-top:solid 1px #ccc;
  547. clear: both;
  548. font-size: 12px;
  549. background: #666666;
  550. }
  551. .footer_inner .copyright{
  552. background-color: #000000;
  553. color: #FFFFFF;
  554. display: inline;
  555. float: left;
  556. margin: 0;
  557. padding: 2px 5px;
  558. text-align: right;
  559. width: 100%;
  560. -moz-box-sizing: border-box;
  561. -webkit-box-sizing: border-box;
  562. }
  563. .switch_view{
  564. list-style-type: none;
  565. }
  566. .small_txt{
  567. font-size: 70%;
  568. }
  569. /*Book open btns toggle*/
  570. .flash_box{
  571. display: none;
  572. }
  573. .pc .flash_box{
  574. display: block;
  575. }
  576. .pc .flashonly_notice{
  577. display: none;
  578. }
  579. .html5_box{
  580. display: block;
  581. }
  582. .appli_box{
  583. display: block;
  584. }
  585. .detail_text01{
  586. padding: 5px;
  587. margin: 0 5px;
  588. clear:both;
  589. background:url("../img/bg_grad01.png") repeat-x top #fff;
  590. -webkit-border-radius: 5px; /* Saf3-4, iOS 1-3.2, Android <e;1.6 */
  591. -moz-border-radius: 5px; /* FF1-3.6 */
  592. border-radius: 5px; /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
  593. /* useful if you don't want a bg color from leaking outside the border: */
  594. -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
  595. border: solid 1px #ccc;
  596. }
  597. .book_data{
  598. float: left;
  599. width: 150px;
  600. font-size: 80%;
  601. color: #888;
  602. }
  603. .book_data dt{
  604. float: left;
  605. margin-right: 10px;
  606. margin-left: 5px;
  607. }
  608. .book_data dd{
  609. float: left;
  610. margin: 0px;
  611. }
  612. .pagelist_link{
  613. float: right;
  614. margin: 0px;
  615. font-size: 80%;
  616. margin-right: 5px;
  617. }
  618. .operating_env{
  619. font-size: 75%;
  620. }
  621. .operating_env dl{
  622. margin-left: 10px;
  623. }
  624. .breadcrumbs{
  625. padding: 5px 5px;
  626. font-size: 70%;
  627. margin-bottom: 10px;
  628. border-bottom: solid 1px #ccc;
  629. background-color: #efefef;
  630. }
  631. .pagelist_wrap{
  632. float: left;
  633. width: 100%;
  634. margin-bottom: 20px;
  635. }
  636. .listbox01_left {
  637. float: left;
  638. height: auto !important;
  639. list-style-type: none;
  640. min-height: 250px;
  641. padding-bottom: 10px;
  642. width: 100%;
  643. margin-top: 20px;
  644. }
  645. .listbox01_left li {
  646. float: left;
  647. list-style-type: none;
  648. padding-bottom: 35px;
  649. text-align: center;
  650. width: 50%;
  651. }
  652. .listbox01_left li img, .listbox01_right li img {
  653. border: 1px solid #CCCCCC;
  654. max-width: 85px;
  655. }
  656. .listbox01_right {
  657. float: left;
  658. height: auto !important;
  659. list-style-type: none;
  660. min-height: 250px;
  661. padding-bottom: 10px;
  662. width: 100%;
  663. margin-top: 20px;
  664. }
  665. .listbox01_right li {
  666. float: right;
  667. list-style-type: none;
  668. padding-bottom: 35px;
  669. text-align: center;
  670. width: 50%;
  671. }
  672. /*page_list*/
  673. .list_pager {
  674. list-style: none outside none;
  675. text-align: center;
  676. font-size: 75%;
  677. }
  678. .list_pager li {
  679. display: inline;
  680. margin-right: 0.5em;
  681. }
  682. a.current {
  683. font-weight: bold;
  684. text-decoration: underline;
  685. }
  686. /*mobile_landscape*/
  687. @media screen and (orientation: portrait) {
  688. .ban_holder01 li {
  689. width: 48%;
  690. }
  691. .icon.arrow {
  692. background-image: url("../img/icon_arrow.png");
  693. float: left;
  694. height: 45px;
  695. margin: 0 10px 0 0;
  696. width: 6px;
  697. }
  698. }
  699. @media screen and (orientation: landscape) {
  700. .ban_holder01 li {
  701. width: 32%;
  702. }
  703. .listbox01_left li{
  704. width: 32%;
  705. }
  706. }