/*!
 * ress.css • v2.0.4
 * MIT License
 * github.com/filipelinhares/ress
 */

/* # =================================================================
   # Global selectors
   # ================================================================= */

   html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
    word-break: normal;
    -moz-tab-size: 4;
    tab-size: 4;
    font-size: 62.5%;
  }
  
  *,
  ::before,
  ::after {
    background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
    box-sizing: inherit;
  }
  
  ::before,
  ::after {
    text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
    vertical-align: inherit;
  }
  
  * {
    padding: 0; /* Reset `padding` and `margin` of all elements */
    margin: 0;
  }
  
  /* # =================================================================
     # General elements
     # ================================================================= */
  
  hr {
    overflow: visible; /* Show the overflow in Edge and IE */
    height: 0; /* Add the correct box sizing in Firefox */
  }
  
  details,
  main {
    display: block; /* Render the `main` element consistently in IE. */
  }
  
  summary {
    display: list-item; /* Add the correct display in all browsers */
  }
  
  small {
    font-size: 80%; /* Set font-size to 80% in `small` elements */
  }
  
  [hidden] {
    display: none; /* Add the correct display in IE */
  }
  
  abbr[title] {
    border-bottom: none; /* Remove the bottom border in Chrome 57 */
    /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
    text-decoration: underline;
    text-decoration: underline dotted;
  }
  
  a {
    background-color: transparent; /* Remove the gray background on active links in IE 10 */
  }
  
  a:active,
  a:hover {
    outline-width: 0; /* Remove the outline when hovering in all browsers */
  }
  
  code,
  kbd,
  pre,
  samp {
    /*font-family: monospace, monospace;*/ /* Specify the font family of code elements */
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans","Meiryo", "メイリオ", "Lucida Grande", sans-serif;
  }
  
  pre {
    font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  b,
  strong {
    font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
  }
  
  /* https://gist.github.com/unruthless/413930 */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* # =================================================================
     # Forms
     # ================================================================= */
  
  input {
    border-radius: 0;
  }
  
  /* Replace pointer cursor in disabled elements */
  [disabled] {
    cursor: default;
  }
  
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
  }
  
  [type="search"] {
    -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
    outline-offset: -2px; /* Correct the outline style in Safari */
  }
  
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
  }
  
  textarea {
    overflow: auto; /* Internet Explorer 11+ */
    resize: vertical; /* Specify textarea resizability */
  }
  
  button,
  input,
  optgroup,
  select,
  textarea {
    font: inherit; /* Specify font inheritance of form elements */
  }
  
  optgroup {
    font-weight: bold; /* Restore the font weight unset by the previous rule */
  }
  
  button {
    overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
  }
  
  button,
  select {
    text-transform: none; /* Firefox 40+, Internet Explorer 11- */
  }
  
  /* Apply cursor pointer to button elements */
  button,
  [type="button"],
  [type="reset"],
  [type="submit"],
  [role="button"] {
    cursor: pointer;
    color: inherit;
  }
  
  /* Remove inner padding and border in Firefox 4+ */
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /* Replace focus style removed in the border reset above */
  button:-moz-focusring,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
  }
  
  button,
  html [type="button"], /* Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4 */
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
  }
  
  /* Remove the default button styling in all browsers */
  button,
  input,
  select,
  textarea {
    background-color: transparent;
    border-style: none;
  }
  button:hover{
      opacity:0.6;
  }
  
  /* Style select like a standard input */
  select {
    /*-moz-appearance: none; /* Firefox 36+ */
    /*-webkit-appearance: none; /* Chrome 41+ */
  }
  
  select::-ms-expand {
    /*display: none; /* Internet Explorer 11+ */
  }
  
  select::-ms-value {
    color: currentColor; /* Internet Explorer 11+ */
  }
  
  legend {
    border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
    color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
    display: table; /* Correct the text wrapping in Edge and IE */
    max-width: 100%; /* Correct the text wrapping in Edge and IE */
    white-space: normal; /* Correct the text wrapping in Edge and IE */
    max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
  }
  
  ::-webkit-file-upload-button {
    /* Correct the inability to style clickable types in iOS and Safari */
    -webkit-appearance: button;
    color: inherit;
    font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
  }
  
  /* # =================================================================
     # Specify media element style
     # ================================================================= */
  
  img {
    border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
  }
  
  /* Add the correct vertical alignment in Chrome, Firefox, and Opera */
  progress {
    vertical-align: baseline;
  }
  
  svg:not([fill]) {
    fill: currentColor;
  }
  
  /* # =================================================================
     # Accessibility
     # ================================================================= */
  
  /* Hide content from screens but not screenreaders */
  @media screen {
    [hidden~="screen"] {
      display: inherit;
    }
    [hidden~="screen"]:not(:active):not(:focus):not(:target) {
      position: absolute !important;
      clip: rect(0 0 0 0) !important;
    }
  }
  
  /* Specify the progress cursor of updating elements */
  [aria-busy="true"] {
    cursor: progress;
  }
  
  /* Specify the pointer cursor of trigger elements */
  [aria-controls] {
    cursor: pointer;
  }
  
  /* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
  [aria-disabled] {
    cursor: default;
  }
  
  /* mg -----------------------------------------------------
  ----------------------------------------------------------- */
  
  .mt5 { margin-top: 5px; }
  .mt10 { margin-top: 10px; }
  .mt15 { margin-top: 15px; }
  .mt20 { margin-top: 20px; }
  .mt25 { margin-top: 25px; }
  .mt30 { margin-top: 30px; }
  .mt35 { margin-top: 35px; }
  .mt40 { margin-top: 40px; }
  .mt45 { margin-top: 45px; }
  .mt50 { margin-top: 50px; }
  .mt55 { margin-top: 55px; }
  .mt60 { margin-top: 60px; }
  .mt65 { margin-top: 65px; }
  .mt70 { margin-top: 70px; }
  .mt75 { margin-top: 75px; }
  .mt80 { margin-top: 80px; }
  .mt85 { margin-top: 85px; }
  .mt90 { margin-top: 90px; }
  .mt95 { margin-top: 95px; }
  .mt100 { margin-top: 100px; }
  .mt110 { margin-top: 110px; }
  .mt120 { margin-top: 120px; }
  .mt130 { margin-top: 130px; }
  
  .mb5 { margin-bottom: 5px; }
  .mb10 { margin-bottom: 10px; }
  .mb15 { margin-bottom: 15px; }
  .mb20 { margin-bottom: 20px; }
  .mb25 { margin-bottom: 25px; }
  .mb30 { margin-bottom: 30px; }
  .mb35 { margin-bottom: 35px; }
  .mb40 { margin-bottom: 40px; }
  .mb45 { margin-bottom: 45px; }
  .mb50 { margin-bottom: 50px; }
  .mb55 { margin-bottom: 55px; }
  .mb60 { margin-bottom: 60px; }
  .mb65 { margin-bottom: 65px; }
  .mb70 { margin-bottom: 70px; }
  .mb75 { margin-bottom: 75px; }
  .mb80 { margin-bottom: 80px; }
  .mb85 { margin-bottom: 85px; }
  .mb90 { margin-bottom: 90px; }
  .mb95 { margin-bottom: 95px; }
  .mb100 { margin-bottom: 100px; }
  
  .ml5 { margin-left: 5px; }
  .ml10 { margin-left: 10px; }
  .ml15 { margin-left: 15px; }
  .ml20 { margin-left: 20px; }
  .ml25 { margin-left: 25px; }
  .ml30 { margin-left: 30px; }
  .ml35 { margin-left: 35px; }
  .ml40 { margin-left: 40px; }
  .ml45 { margin-left: 45px; }
  .ml50 { margin-left: 50px; }
  .ml55 { margin-left: 55px; }
  .ml60 { margin-left: 60px; }
  .ml65 { margin-left: 65px; }
  .ml70 { margin-left: 70px; }
  .ml75 { margin-left: 75px; }
  .ml80 { margin-left: 80px; }
  .ml85 { margin-left: 85px; }
  .ml90 { margin-left: 90px; }
  .ml95 { margin-left: 95px; }
  .ml100 { margin-left: 100px; }
  
  .mr5 { margin-right: 5px; }
  .mr10 { margin-right: 10px; }
  .mr15 { margin-right: 15px; }
  .mr20 { margin-right: 20px; }
  .mr25 { margin-right: 25px; }
  .mr30 { margin-right: 30px; }
  .mr35 { margin-right: 35px; }
  .mr40 { margin-right: 40px; }
  .mr45 { margin-right: 45px; }
  .mr50 { margin-right: 50px; }
  .mr55 { margin-right: 55px; }
  .mr60 { margin-right: 60px; }
  .mr65 { margin-right: 65px; }
  .mr70 { margin-right: 70px; }
  .mr75 { margin-right: 75px; }
  .mr80 { margin-right: 80px; }
  .mr85 { margin-right: 85px; }
  .mr90 { margin-right: 90px; }
  .mr95 { margin-right: 95px; }
  .mr100 { margin-right: 100px; }
  
  
  
  /* pd -----------------------------------------------------
  ----------------------------------------------------------- */
  
  .pt5 { padding-top: 5px; }
  .pt10 { padding-top: 10px; }
  .pt15 { padding-top: 15px; }
  .pt20 { padding-top: 20px; }
  .pt25 { padding-top: 25px; }
  .pt30 { padding-top: 30px; }
  .pt35 { padding-top: 35px; }
  .pt40 { padding-top: 40px; }
  .pt45 { padding-top: 45px; }
  .pt50 { padding-top: 50px; }
  .pt55 { padding-top: 55px; }
  .pt60 { padding-top: 60px; }
  .pt65 { padding-top: 65px; }
  .pt70 { padding-top: 70px; }
  .pt75 { padding-top: 75px; }
  .pt80 { padding-top: 80px; }
  .pt85 { padding-top: 85px; }
  .pt90 { padding-top: 90px; }
  .pt95 { padding-top: 95px; }
  .pt100 { padding-top: 100px; }
  
  .pb5 { padding-bottom: 5px; }
  .pb10 { padding-bottom: 10px; }
  .pb15 { padding-bottom: 15px; }
  .pb20 { padding-bottom: 20px; }
  .pb25 { padding-bottom: 25px; }
  .pb30 { padding-bottom: 30px; }
  .pb35 { padding-bottom: 35px; }
  .pb40 { padding-bottom: 40px; }
  .pb45 { padding-bottom: 45px; }
  .pb50 { padding-bottom: 50px; }
  .pb55 { padding-bottom: 55px; }
  .pb60 { padding-bottom: 60px; }
  .pb65 { padding-bottom: 65px; }
  .pb70 { padding-bottom: 70px; }
  .pb75 { padding-bottom: 75px; }
  .pb80 { padding-bottom: 80px; }
  .pb85 { padding-bottom: 85px; }
  .pb90 { padding-bottom: 90px; }
  .pb95 { padding-bottom: 95px; }
  .pb100 { padding-bottom: 100px; }
  
  .pl5 { padding-left: 5px; }
  .pl10 { padding-left: 10px; }
  .pl15 { padding-left: 15px; }
  .pl20 { padding-left: 20px; }
  .pl25 { padding-left: 25px; }
  .pl30 { padding-left: 30px; }
  .pl35 { padding-left: 35px; }
  .pl40 { padding-left: 40px; }
  .pl45 { padding-left: 45px; }
  .pl50 { padding-left: 50px; }
  .pl55 { padding-left: 55px; }
  .pl60 { padding-left: 60px; }
  .pl65 { padding-left: 65px; }
  .pl70 { padding-left: 70px; }
  .pl75 { padding-left: 75px; }
  .pl80 { padding-left: 80px; }
  .pl85 { padding-left: 85px; }
  .pl90 { padding-left: 90px; }
  .pl95 { padding-left: 95px; }
  .pl100 { padding-left: 100px; }
  
  .pr5 { padding-right: 5px; }
  .pr10 { padding-right: 10px; }
  .pr15 { padding-right: 15px; }
  .pr20 { padding-right: 20px; }
  .pr25 { padding-right: 25px; }
  .pr30 { padding-right: 30px; }
  .pr35 { padding-right: 35px; }
  .pr40 { padding-right: 40px; }
  .pr45 { padding-right: 45px; }
  .pr50 { padding-right: 50px; }
  .pr55 { padding-right: 55px; }
  .pr60 { padding-right: 60px; }
  .pr65 { padding-right: 65px; }
  .pr70 { padding-right: 70px; }
  .pr75 { padding-right: 75px; }
  .pr80 { padding-right: 80px; }
  .pr85 { padding-right: 85px; }
  .pr90 { padding-right: 90px; }
  .pr95 { padding-right: 95px; }
  .pr100 { padding-right: 100px; }
  
  
  
  /* text----------------------------------------------------
  ----------------------------------------------------------- */
  
  .tal { text-align: left; }
  .tar { text-align: right; }
  .tac { text-align: center; }
  
  .vat { vertical-align: top; }
  .vam { vertical-align: middle; }
  .vab { vertical-align: bottom; }
  
  .fw_n { font-weight: normal;}
  .fw_b { font-weight: bold;}
  
  .td_u { text-decoration: underline;}
  .td_n { text-decoration: none;}
  
  .fs7 { font-size: 7pt; }
  .fs8 { font-size: 8pt; }
  .fs9 { font-size: 9pt; }
  .fs10 { font-size: 10pt; }
  .fs11 { font-size: 11pt; }
  .fs12 { font-size: 12pt; }
  .fs13 { font-size: 13pt; }
  .fs14 { font-size: 14pt; }
  .fs15 { font-size: 15pt; }
  .fs16 { font-size: 16pt; }
  .fs17 { font-size: 17pt; }
  .fs18 { font-size: 18pt; }
  .fs19 { font-size: 19pt; }
  .fs20 { font-size: 20pt; }
  .fs21 { font-size: 21pt; }
  .fs25 { font-size: 25pt; }
  .fs26 { font-size: 26pt; }
  .fs27 { font-size: 27pt; }
  .fs28 { font-size: 28pt; }
  .fs29 { font-size: 29pt; }
  .fs30 { font-size: 30pt; }
  
  
  /* width----------------------------------------------------
  ----------------------------------------------------------- */
  
  .wd10 { width: 10%; }
  .wd15 { width: 15%; }
  .wd20 { width: 20%; }
  .wd25 { width: 25%; }
  .wd30 { width: 30%; }
  .wd35 { width: 35%; }
  .wd40 { width: 40%; }
  .wd45 { width: 45%; }
  .wd50 { width: 50%; }
  .wd55 { width: 55%; }
  .wd60 { width: 60%; }
  .wd65 { width: 65%; }
  .wd70 { width: 70%; }
  .wd75 { width: 75%; }
  .wd80 { width: 80%; }
  .wd85 { width: 85%; }
  .wd90 { width: 90%; }
  .wd95 { width: 95%; }
  .wd100 { width: 100%; }
  
  .wd-half{width: 49%;}
  .wd-tri { width: 33%;}
  .wd-quart { width: 24%;}
  
  
  /* Tools----------------------------------------------------
  ----------------------------------------------------------- */
  
  .fl_l    { display: inline; float: left;}
  .fl_r    { display: inline; float: right;}
  .flImg_l { display: inline; float: left; margin-right: 20px;}
  .flImg_r { display: inline; float: right; margin-left: 20px;}
  .ft_box  { overflow: hidden; *zoom: 1;}
  .clear_box { clear:  both;}
  .block { display: block;}
  .hide{ display: none;}



  /* list-Number ----------------------------------------------------
  ----------------------------------------------------------- */
  .nmb_trp10 {
    text-align: right !important;
    padding-right: 10px !important;
  }
  .nmb_trp20 {
    text-align: right !important;
    padding-right: 20px !important;
  }
  .nmb_trp30 {
    text-align: right !important;
    padding-right: 30px !important;
  }
  .nmb_trp40 {
    text-align: right !important;
    padding-right: 40px !important;
  }