@charset "utf-8";

/*!
 * 牧野工房 Reset CSS
 *
 * Copyright (c) 2011 Skill Partners Inc. All Rights Reserved.
 *
 * @version : 1.2
 * @author  : http://www.makinokobo.com - kobo@makinokobo.com
 */


/**
 * Browser Style Reset
 *
 * ブラウザスタイルをリセットする。
 * フォントサイズは body要素直下の div#documentを10pxにセットし、
 * 移行の設定は相対でem指定する。
 * これにより、IE6でもブラウザ機能の文字サイズ変更が可能。
 */

body,div,
h1,h2,h3,h4,h5,h6,
dl,dt,dd,ul,ol,li,
p,blockquote,pre,code,
form,fieldset,legend,
table,thead,tbody,tfoot,tr,th,td {margin: 0; padding: 0;}

/*html,body {background: #FFF; color: #000;}*/

body {font:13px/1 "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif; -webkit-text-size-adjust:none; -ms-text-size-adjust: 100%;}
* html body {font-size: small;}
*:first-child+html body {font-size: small;}
head~/* */body {font-size: small;}
html:not(:target) body {font-size: 13px;}

#document {font-size: 77%;} /* 10px */

img {border: 0; vertical-align: bottom;}

h1,h2,h3,h4,h5,h6 {clear: both; font-size: 100%; font-weight: normal;}

ul,dl,ol {text-indent: 0;}
li {list-style: none; list-style-position:outside;}

address,caption,cite,code,dfn,em,strong,th,var {font-style: normal; font-weight: normal;}

sup {vertical-align: text-top; line-height: 1;}
sub {vertical-align: text-bottom; line-height: 1;}

input,textarea,select {font-family: inherit; font-size: inherit; font-weight:inherit;}
* html input,* html textarea,* html select {font-size: 100%;}
*:first-child+html+input,*:first-child html+textarea,*:first-child+html select {font-size: 100%;}
head~/* */body input, head~/* */body textarea, head~/* */body select {font-size: 100%;}
html:not(:target) body input, html:not(:target) body textarea, html:not(:target) body select {font-size: inherit;}

table {border-collapse: collapse; border-spacing: 0; font-size: inherit;}
th,td {text-align: left; vertical-align: top;}
caption {text-align: left;}

pre,code,kbd,samp,tt {font-family: monospace;}

input,select,textarea {font-size: 100%; font-family: Verdana, Helvetica, sans-serif;}
input,select {vertical-align: middle;}


/**
 * Utillity Class
 *
 * !important設定により、どこでも使える微調整用のclass群。
 * CSS設計時には使用せず、主に運用や修正フェーズで、
 * 共通設定されたCSSを書き換えるより個別に設定したほうがよいと判断される場合に使用する。
 *
 * Prefix: ".imp-"
 */


.imp-fz-LLL { font-size:   2em !important; }
.imp-fz-LL  { font-size: 1.8em !important; }
.imp-fz-L   { font-size: 1.6em !important; }
.imp-fz-M   { font-size: 1.4em !important; }
.imp-fz-S   { font-size: 1.2em !important; } 
.imp-fz-SS  { font-size:   1em !important; }
.imp-fz-SSS { font-size: 0.8em !important; }


.imp-al-right  { text-align: right  !important;}
.imp-al-center { text-align: center !important;}
.imp-al-left   { text-align: left   !important;}

.imp-va-top    { vertical-align: top    !important;}
.imp-va-middle { vertical-align: middle !important;}
.imp-va-bottom { vertical-align: bottom !important;}


.imp-fw-bold   { font-weight: bold   !important;}
.imp-fw-normal { font-weight: normal !important;}

.imp-fs-italic { font-style: italic !important;}
.imp-fs-none   { font-style: none   !important;}


.imp-fl-left  { float: left  !important;}
.imp-fl-right { float: right !important;}

.imp-fl-imgLeft  { float: left  !important; margin-right: 10px !important;}
.imp-fl-imgRight { float: right !important; margin-left:  10px !important;}

.imp-clear { clear: both !important;}
.imp-clearfix:after { content: "."; display: block; clear: both; height: 0; visibility: hidden; font-size: 0; }


.imp-w-auto   { width: auto !important;}
.imp-w-100per { width: 100% !important;}


.imp-tbl-fixed { table-layout: fixed !important;}


.imp-whs-nowrap { white-space: nowrap !important;}
.imp-whs-normal { white-space: normal !important;}


.imp-bd-none  { border:        none !important;}
.imp-bdt-none { border-top:    none !important;}
.imp-bdl-none { border-left:   none !important;}
.imp-bdr-none { border-right:  none !important;}
.imp-bdb-none { border-bottom: none !important;}


/*
 * Release Notes:
 *
 * 2011-08-06 - oosugi@skillpartners.co.jp
 *              imt系の接頭辞を"imp-"に変更
 *
 * 2011-08-05 - oosugi@skillpartners.co.jp
 *              imt系のスタイル追加
 *
 * 2011-08-01 - oosugi@skillpartners.co.jp
 *              スマートフォンで見たときに自動でフォントサイズが調整されるのを無効に
 */