@charset "utf-8";

/*
  960 Grid System ~ Core CSS.
  Learn more ~ http://960.gs/

  Licensed under GPL and MIT.
*/

/*
ルール
大まかな骨格となるテキスト・レイアウトに関して記述する
スタイルには基本的にクラスを使用しIDは使用しない
IEは8以上に対応する
※grid,clearfix 以外の記述は、元のフレームワークファイルから削除しています

目次
Reset
Basic HTML
Headings
Spacing
Layout
Grid
Clear Floated Elements
decoration
*/

/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,
em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,
main,mark,menu,meter,nav,object,ol,output,p,pre,progress,q,rp,rt,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,
table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}
html,body {
  height: 100%;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
/*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
*/
  display: block;
}
b,strong {
/*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
*/
  font-weight: bold;
}
img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
/*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
  -ms-interpolation-mode: bicubic;
}
ol,ul {
  list-style: none;
}
li {
/*
  For IE6 + IE7:

  "display: list-item" keeps bullets from
  disappearing if hasLayout is triggered.
*/
  display: list-item;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,td,caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}
q {
  quotes: none;
}
q:before,q:after {
  content: "";
  content: none;
}
sub,sup,small {
  font-size: 75%;
}
sub,sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg {
/*
  For IE9. Without, occasionally draws shapes
  outside the boundaries of <svg> rectangle.
*/
  overflow: hidden;
}
/*
  For smartphone
  form button style reset
*/
input[type="button"],input[type="submit"] {
    -webkit-appearance: none;
}
/* Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
  font: 62.5%/1.6 'Lucida Grande', Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #222;
/*
  font-size: 100% ≒ 10px 
*/
}
input,textarea,select,option {
  font-family:'Lucida Grande', Meiryo,'Hiragino Kaku Gothic ProN',  sans-serif;
}
code {
  font-family: "DejaVu Sans Mono", Menlo, Consolas, monospace;
}
hr {
  border: 0 solid #ccc;
  border-top-width: 1px;
  clear: both;
  height: 0;
}
a {
    color: /*#007cb3*/#005b83;
    text-decoration: none;
-webkit-transition:color 0.25s ease-out;
   -moz-transition:color 0.25s ease-out;
     -o-transition:color 0.25s ease-out;
        transition:color 0.25s ease-out;
}
a:hover { color: #ff3c91; }
a img {
-webkit-transition:opacity 0.25s ease-out;
   -moz-transition:opacity 0.25s ease-out;
     -o-transition:opacity 0.25s ease-out;
        transition:opacity 0.25s ease-out;
}
a:hover img {
    opacity: 0.75;
}
/*
table {
    width: 100%;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}
tr {    
    background-color:#eeeeee;
}
tr:nth-child(even) {
    background-color:#f5f5f5;
}
td,
th {
    padding: 7px 10px;
    border-bottom: 1px solid #ffffff;
    vertical-align: middle;
    font-size: 120%;
}
th { font-weight: bold; }*/
table { 
    width: 100%;
    border: none;
    border-bottom: 1px dotted #ddd;
    margin-bottom: .5em;
}
tr {
    background: none;
    border-top: 1px dotted #ddd;
}
th {
    width: 130px;
    padding: 4px 5px;
    text-align: center;
    border: none;
    font-weight: bold;
}
td {
    padding: 4px 5px 4px 1em;
    border: none;
}
input[type="text"],
input[type="password"],
textarea {
    border: 1px solid #CCCCCC;
    outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    border: 1px solid #ff3c91;
}

/* Headings
----------------------------------------------------------------------------------------------------*/

h1 {
    padding-right: 20px;  
    font-weight: normal;
    font-size: 110%;
    color: #666666;
}
h2 {
    padding: .1em 0 .1em .75em;
    border-left: 3px solid #ff3c91;
    color: #FFF;
    background: #222;
    font-size: 240%;
    font-weight: normal;
}
h3 {
    margin-bottom: .5em;
    font-size: 180%;
    color: #333333;
}
h4 {
    margin-bottom: 10px;
    padding: 5px 0;
    border-top: 2px solid #ff3c91;
    border-bottom: 1px dotted #999999;
    font-size: 150%;
}
h5 {
    margin-bottom: 5px;
    font-size: 150%;    
}

/* Spacing
----------------------------------------------------------------------------------------------------*/
ol {
  list-style: decimal;
}
ul {
  list-style: disc;
}
li {
  margin-left: 1.75em;
}
p,dl,hr,h6,ol,ul,table,address,fieldset,figure {
  margin-bottom: 1em;
}
pre {
    font-size: 100%;
    font-family:'Lucida Grande', Meiryo,'Hiragino Kaku Gothic ProN',  sans-serif;
	white-space: -moz-pre-wrap; /* Mozilla */
    white-space: -pre-wrap;     /* Opera 4-6 */
    white-space: -o-pre-wrap;   /* Opera 7 */
    white-space: pre-wrap;      /* CSS3 */
    word-wrap: break-word;      /* IE 5.5+ */
}

/* Layout
----------------------------------------------------------------------------------------------------*/
body {
  min-width: 980px;
}
.container {
  margin: 0 auto;
}
.header {
  display: table;
  width: 100%;
  height: 130px;
  background: #FFF;
}
.header .inner {
  padding: 15px 20px;
}
.gnav {
  height: 40px;
  padding: 0 20px;
  overflow: hidden;
  background: #222;
}
.wrap {
  display: table;
  width: 100%;
}
.contents,
.second-column,
.third-column  { 
  display: table-cell;
  vertical-align: top;
}
.main { display: table-cell; }
.contents,
.main { width: 100%; }
.contents {
  padding: 20px 20px 20px 0;
}
.contents {
  padding-bottom: 40px;
}
.main {
  padding: 0;
}
.second-column {
  padding: 20px;
}
.third-column {
  padding: 0 0 0 20px;
}
.second-column .inner,
.third-column .inner {
  width: 160px;
}
.footer {
  background: #ff3c91;
}

/* Grid >> 16 Columns
----------------------------------------------------------------------------------------------------*/

.container .grid_1 {
  width: 40px;
}
.container .grid_2 {
  width: 100px;
}
.container .grid_3 {
  width: 160px;
}
.container .grid_4 {
  width: 220px;
}
.container .grid_5 {
  width: 280px;
}
.container .grid_6 {
  width: 340px;
}
.container .grid_7 {
  width: 400px;
}
.container .grid_8 {
  width: 460px;
}
.container .grid_9 {
  width: 520px;
}
.container .grid_10 {
  width: 580px;
}
.container .grid_11 {
  width: 640px;
}
.container .grid_12 {
  width: 700px;
}
.container .grid_13 {
  width: 760px;
}
.container .grid_14 {
  width: 820px;
}
.container .grid_15 {
  width: 880px;
}
.container .grid_16 {
  width: 940px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}
.clearfix:after,
.container:after {
  clear: both;
}
/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/
.clearfix,
.container {
  zoom: 1;
}
/* スマホのリンク長押し時のポップアップブロック用 */
.sp-callout-block{-webkit-touch-callout:none; -webkit-user-select:none;}
.select-block{
	user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;
}

/* Decoration
----------------------------------------------------------------------------------------------------*/
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-vivid { color: #ff3c91; }
.text-green { color: #00c98f;}
.note {
    font-weight: normal;
    font-size: 83%;
}
.text-large {
	font-size: 115%;
}
.text-block {
    font-size: 130%;
    margin-bottom: 3em;
}
.text-border {
	border-bottom: 2px solid #ff3c91;
}
.text-block .text-block{
    font-size: 110%;
}
.text-block td,
.text-block th {
    font-size: 100%;
}
.text-block h4 {
    border-top: none;
    padding: 3px 0;
    font-size: 120%;
    color: #333333;
}
.text-indent {
    padding: 0 1em;     
}
.relative { position: relative; }
.img-right {
    float: right;
    margin: 0 0 1em 1em;
}
