@charset "utf-8";

.clearfix:after{
    display: block;
    content: ".";
    width: 0;
    height: 0;
    font-size: 0;
    visibility: hidden;
    clear: both;
/*    border: 1px solid red;*/
}

/* 一般設定 */
html , body{
    height: 100%;
    -webkit-text-size-adjust: 100%;
    color: #333;
}

h1{}

h2{
    font-size: 2.6em;
    margin-top: 60px;
}

h2 ~ h3{
    margin-top: 60px;
}

h3{
    font-size: 1.9em;
    color: #333;
}

h3 ~ h3{
    margin-top: 80px;
}

h4{
    font-size: 1.6em;
}

h3 + h4{
    margin-top: 10px;
}

h3 + p{
    margin-top: 20px;
}

h4 ~ h4{
    margin-top: 60px;
}

p{
    font-size: 1.6em;
}

p + p{
    margin-top: 20px;
}

b{
    font-weight: bold;
}

hr{
    border: 1px dotted #ccc;
    margin: 60px auto 60px;
}

ul li{
    font-size: 1.6em;
}

table tr th{
    font-size: 1.6em;
}

table tr td{
    font-size: 1.6em;
    padding: 10px;
    border: 1px solid #CCC;
}

a{
    text-decoration: none;
    color: #999;
}

a:hover{
    color: #333;
}

/* ラッパー */
#wrap{
    width: 100%;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    position: relative;
}

/* ヘッダー */
#head-wrap{
    width: 100%;
    height: 145px;
    background-color: #F39800;
}

#header{
    width: 980px;
    height: 100px;
    margin: 0 auto 0;
}

/* ナビゲーション */
#navi-wrap{
    width: 100%;
    height: 45px;
    background-color: #F39800;
}

#global-navi{
    width: 980px;
    height: 45px;
    margin: 0 auto 0;
    background-color: #F39800;
}

/* ページが増えたら削除 */
#head-wrap, #header, #navi-wrap, #global-navi{
    display: none;
}


#global-navi ul{
    margin: 0;
    padding: 0;
}

#global-navi ul li{
    float: left;
/*    width: 125px;*/
    width: 12.5%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #333;
    position: relative;
}

#global-navi ul li a{
    text-decoration: none;
    display: block;
/*    width: 125px;*/
    width: 100%;
    height: 100%;
    color: #333;

}

#global-navi ul li a:hover{
    color: #333;
    border-bottom: 3px solid #333;
}

/* サブメニュー */
#global-navi ul li ul{
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 2;
/*    display: none;*/
}

#global-navi ul li:hover ul{
/*    display: block;*/
}

#global-navi ul li ul li{
    width: 100%;
    height: 0;

    font-size: 1em;
    overflow: hidden;
    transition: 0.3s;
}

#global-navi ul li:hover ul li{
    overflow: visible;
    height: 45px;
}


/* コンテンツ */
#content{
    width: 980px;
    height: auto;
    margin: 0 auto 0;
    padding: 0 10px 160px 10px;
    background-color: transparent;
}

/* フッター */
#foot-wrap{
    width: 100%;
    height: 120px;
    background-color: #F39800;
    position: absolute;
    bottom: 0;
}

#footer{
    width: 980px;
    height: 100px;
    margin: 0 auto 0;
    background-color: #F39800;
}

#footer ul{
    width: 960px;
    margin: 10px auto 0;
    padding-left: 40px;
}

#footer ul li{
    display: inline-block;
    font-size: 1.2em;
    text-align: center;
    color: #333;
    font-weight: bold;
    margin: 0 10px 0;
}

#footer ul li a{
    text-decoration: none;
    color: #333;
}

#footer ul li a:hover{
    text-decoration: underline;
    color: #333;
}

#footer p.copy{
    color: #333;
    font-size: 1.2em;
    padding: 10px 0 0 0;
    text-align: center;
}

#footer p.company-logo{
    text-align: center;
    margin-top: 10px; /* p + p を調整 */
}

/* 各ページ共通レイアウト */
#header h1.lt{
    float: left;
    padding: 20px 0 0 10px;
}

#header h1.rt{
    float: right;
    padding: 30px 10px 0 0;
}

.cols1{
    width: 100%;
    margin-top: 30px;
}

.cols2{
    width: 48.95833%;
    float: left;
    margin-right: 20px;
/*    background-color: #CCC;*/
}

.cols2 + .cols2{
    margin-right: 0;
}

