@charset "utf-8";
/* CSS Document */
body{
font: 13px/1.6 "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;
margin:0;
color:#313131;
margin-left: 5%;
padding-top: 50px;
}

img{
outline:none;
border-style:none;
}

a{
    color:steelblue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
}
a:visited{
    color:slategray;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
}
a:hover {
    color: #c71585;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
}

:root {
--hlc: #c71585; /* high light color */
}

.iro{
font-size: 100%;
color: var(--hlc);
}


/**** logo ****/
h2{
    font-family: Verdana,Arial,sans-serif;
    color:#444;
    float: left;
    letter-spacing:9px;
    line-height:20px;
    font-weight:900;
}
.main{
    display:block;
    font-size:35px;
    line-height:35px;
    font-weight:300;
    letter-spacing:10px;
}
.subs{
    display:block; 
    font-size:15px;
    letter-spacing:40px;
}

/*****HEADER***** */
header{
    display: block; 
    width:100%;
/*    overflow: hidden; */
    background-color: white;
    position: fixed;
    top:0 ; 
    z-index: 10000;
}
header h1{
    font-size:130%;
    color:#313131;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border:1px solid #313131;
    border-radius: 5px;
    letter-spacing: 3px;
    font-weight:400;
    float: left;
}
header p{
    font-size:100%;
    color:#313131;
    float: left;
}


#container {
  padding-top: 150px;
}
/*****BRANDING*****/
#branding{
    display: block;
    width: 60%;
    margin-left: 20%;
    overflow: hidden;
    background-color: #313131;
    margin-bottom: 20px;
    letter-spacing: 10px;
    line-height: 300px;
}
#branding p{
    color: #fff;
    font-size: 120%;
    padding-left: 3%;
}

/*****NAV*****/
nav{
    position: fixed;
    width:100%;
    top:0;
    z-index: 10000;
    padding-top:40px;
    padding-left:300px;
}
nav a{
    margin-left:15px;
    letter-spacing: 2px;
}
/*nav{
    width: 100%;
    border-top:    0px solid #313131;
    border-bottom: 0px solid #313131;
    margin-bottom: 0px;
    margin-left: -5%;
    overflow: hidden;
}*/
nav ul{
    width: 90%;
    margin-left: 2%;
}
nav li{
    width: calc(15% - 2px);
    font-size: 110%;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 20px;
    border-left: 1px solid #313131;
    color: #313131;
    cursor: pointer;
    text-align: center;
    float: left;
}
nav li:last-child{
    border-right: 1px solid #313131;
}

nav li:hover{
    background-color: #ababab;
    transition: background-color 0.5s ease-out;
    color: #fff;
}

/*****SECTION***** (HI) */
section{
    display: block;
    width: 90%;
/*    margin: 20px auto; */
    overflow: hidden;
    padding-bottom: 30px;
    margin-top: -80px;
    padding-top: 70px;
}
section h1{
    font-size: 150%;
    letter-spacing: 3px;
    border-bottom-style: dotted;
    border-bottom: 0.5px lightgray; 
    padding: 0px;
    font-family: Verdana,Arial,sans-serif; 
    font-weight:300;
}

/*****ARTICLE***** (HI)not used /
article{
/*    width: calc(90% - 15px); */
    width: calc(100% - 75px);
    padding: 1%;
    margin-bottom: 30px;
    letter-spacing: 1px;
    background-color: white;
    overflow: hidden;
    float: left;
}
article:nth-child(2n){
/*    margin-left: 30px;  */
    margin-left: 0px;
}
article .date{
    font-size: 60%;
    color: #313131;
    border: 1px solid #313131;
    padding-top:3px;
    padding-bottom: 3px;
    padding-right: 6px;
    padding-left: 6px;
    letter-spacing: 5px;
    float: left;
}
article h1{
    width: 100%;
    font-size: 120%;
    color: #313131;
    letter-spacing: 4px;
    padding-bottom:2px;
    padding-top: 10px;
    border-bottom: 1px solid #bababa;
/*    margin-bottom: 15px; */
    float: left;
}
/*article h1{
    font-size:130%;
    color:#313131;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border:1px solid #313131;
    border-radius: 5px;
    letter-spacing: 3px;
    font-weight:400;
    float: left;
}*/

article p{
    font-size: 100%;
    color: #313131;
    letter-spacing: 0px;
    line-height: 200%;
    margin-bottom: 10px;
    float: left;
}
article .btn{
    color: #fff;
    font-size: 9pt;    
    border: 1px solid #313131;
    background-color: #313131;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 5px;
    letter-spacing: 5px;
    text-decoration: none;
    overflow: hidden;
    float: right;
}
article .btn:hover{
    background-color: #fff;
    border: 1px solid #313131;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    color: #313131;
    overflow: hidden;
}

footer{
    font-size: 80%;
    width: 100%;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 10px;
    background-color: white;
}
footer address{
    color: #313131;
    letter-spacing: 5px;
}
.btn {
   font-size: 9pt;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.btn-primary {
   font-size: 9pt;
  background: #fff; /*白*/
  color: steelblue; /**/
  border: 1.5px solid steelblue; /**/
  border-radius: 8px;
  margin: 2px;
  padding:2px;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
  box-shadow: none;
  background: steelblue; !important; /**/
  border: 1.5px solid steelblue; /**/
  color: #ffffff; !important;
}



/* icon (icomoon free) */
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?tmiey7');
  src:  url('fonts/icomoon.eot?tmiey7#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?tmiey7') format('truetype'),
    url('fonts/icomoon.woff?tmiey7') format('woff'),
    url('fonts/icomoon.svg?tmiey7#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: steelblue;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home3:before {
  content: "\e902";
}
.icon-quill:before {
  content: "\e907";
}
.icon-pen:before {
  content: "\e908";
}
.icon-folder:before {
  content: "\e92f";
}
.icon-folder-open:before {
  content: "\e930";
}
.icon-folder-download:before {
  content: "\e933";
}
.icon-phone:before {
  content: "\e942";
}
.icon-envelop:before {
  content: "\e945";
}
.icon-mug:before {
  content: "\e9a2";
}
.icon-mail4:before {
  content: "\ea86";
}
.icon-tux:before {
  content: "\eabd";
  color: var(--hlc);
}
.icon-appleinc:before {
  content: "\eabe";
  color: var(--hlc);
}
.icon-windows8:before {
  content: "\eac2";
  color: var(--hlc);
}
.icon-file-pdf:before {
  content: "\eadf";
  font-size: 150%;
}

/* for sanka DD */
dd {
  width: 70%;
    font-size: 1.3em;
  line-height: 1.6em;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #999;
}

/* table */
table { border: 1px dotted #999;
        border-collapse: collapse;
        font-style:normal;
}

td,th{ border:1px dotted #999;
       font-size:10pt;
        padding: 3pt;
}

/* hover text */
.tooltip { /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: pointer;
  padding: 0 5px;
  font-size: 1em;
  color: steelblue;
}
.tip_right { /* ツールチップのスタイル */
  width: 500px; /* 横幅 */
  position: absolute;
  top: 50%;
  left: 80%; /* Y軸の位置 */
  transform: translate^(-50%);
  margin-bottom: 8px; /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666;
  font-size: 0.8em;
  color: #fff;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}
.tooltip:hover .tip_right { /* マウスオーバー時のスタイル */
  right: 100%; /* Y軸の位置 */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}
