@charset "utf-8";
@import url("../../../common/css/menu.css");

/*@media only screen and (min-width: 768px){
}
@media only screen and (max-width: 767px){
}*/


/* CSS Document */
/*--------------------------------------------------
リセット
----------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
ul {
    margin: 0;
    padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*--------------------------------------------------
フォント
----------------------------------------------------*/
html{
    font-size: 62.5%;
}
body{
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
	line-height: 1.8;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}
@media screen and (max-width:740px) {
    body{
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
	line-height: 1.6;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
}
}

/*--------------------------------------------------
共通
----------------------------------------------------*/
body a{
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color:#000;
}
body a:hover{
	opacity: 0.7;
}
@media only screen and (min-width: 768px){
    .pc{
        display:block;
    }
    .sp{
        display:none;
    }
} /*PC_end*/

@media screen and (max-width:767px) {
    .pc{
        display:none;
    }
    .sp{
        display:block;
    }
} /*SP_end*/

/*--------------------------------------------------
header
----------------------------------------------------*/
/*PC出の表示*/
.inner {
    width: 1200px;
    margin: 0 auto;
}
/*.inner:after {
    content: "";
    clear: both;
    display: block;
}*/

/* header */
#top_head{/*200918*/
    position: fixed;
    top: 0;
    margin: 0;
    padding: 4px;
    min-width: 100%;/*200918*/
    background-color: #fff;
    z-index: 9999;
    height: 80px;
    box-sizing:border-box;
}
#top_head a,
#top_head {
    color: #000;
    text-decoration: none;
}
#top_head .inner {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
#top_head .logo {
    /*float: left;*/
    width: 225px;
    height: 27px;
}
#top_head .logo img{
    display: block;
    margin: 0 auto;
    width: 100%;
}
#gnav{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
#gnav ul li {
    display:inline-block;
    text-align: center;
}
#gnav ul.menu{
    margin-right: 18px;
}
#gnav ul.menu li{
    padding: 0 14px;
}
#gnav ul.menu li a{
    padding: 0 0 10px;
    font-weight: bold;
    box-sizing: border-box;
    position: relative;
    font-size: 1.4rem;
    transition: all 0.3s ease 0s;
}
#gnav ul.menu li a:hover{
    opacity: 1;
}
#gnav ul.menu li a:after{
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 0%;
    height: 3px;
    background: #0058a4;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#gnav ul.menu li a:hover:after{
    width: 100%;
}
#gnav ul.icon_area li{
    padding-left: 15px;
}
#gnav ul.icon_area li a{
    letter-spacing: 0;
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
}
#gnav ul.icon_area li a:hover{
    color: #0058a4;
    opacity: 1;
}
#gnav ul.icon_area .icon1 a:before{
    content: '';
    background-image: url(../../common/img/header_icon1.png);
    width: 28px;
    height: 28px;
    display: block;
    margin: 0 auto;
}
#gnav ul.icon_area .icon1 a:hover:before{
    content: '';
    background-image: url(../../common/img/header_icon1_hv.png);
    width: 28px;
    height: 28px;
    display: block;
    margin: 0 auto;
}
#gnav ul.icon_area .icon2 a:before{
    content: '';
    background-image: url(../../common/img/header_icon2.png);
    width: 28px;
    height: 22px;
    display: block;
    margin: 0 auto;
}
#gnav ul.icon_area .icon2 a:hover:before{
    content: '';
    background-image: url(../../common/img/header_icon2_hv.png);
    width: 28px;
    height: 22px;
    display: block;
    margin: 0 auto;
}
#gnav ul.icon_area .icon3 a:before{
    content: '';
    background-image: url(../../common/img/header_icon3.png);
    width: 28px;
    height: 28px;
    display: block;
    margin: 0 auto;
}
#gnav ul.icon_area .icon3 a:hover:before{
    content: '';
    background-image: url(../../common/img/header_icon3_hv.png);
    width: 28px;
    height: 28px;
    display: block;
    margin: 0 auto;
}
/* Fixed */
#top_head.fixed {
    margin-top: 0;
    top: 0;
    position: static;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top_head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top_headd.fixed #gnav ul li a {
    color: #333;
    padding: 0 20px;
}

/* Toggle Button */
#toggle {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    background: #0058a4;
    box-sizing: border-box;
    padding: 16px 15px 10px;
}

#toggle div{
    position: relative;
}
#toggle span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#toggle span:nth-child(1) {
    top: 0;
}
#toggle span:nth-child(2){
    top: 11px;
}
#toggle span:nth-child(3){
    top: 22px;
}

#top_head #gnav ul.menu li ul{
    display: none;
}
#top_head #gnav ul.menu li:hover ul{
    display: block;
}
/*SPでの表示*/
@media only screen and (max-width: 767px){
    #gnav ul.menu{
    margin-right: 0px;
}
 #top_head,
    .inner {
        width: 100%;
        padding: 0;
        height: 60px;
    }
    #top_head .inner{
        height: 60px;
    }
    #top_head .logo {
        width: 150px;
        height: auto;
    }
    #top_head .logo img{
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    #top_head {
        top: 0;
        position: fixed;
        margin-top: 0;
        z-index: 5;
        background: #fff;
    }
    /* Fixed reset */
    #top_head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #m_head {
        background: #fff;
        width: 100%;
        height: 60px;
        z-index: 999;
        position: relative;
    }
    #top_head.fixed .logo,
    #top_head .logo {
        position: absolute;
        left: 13px;
        top: 20px;
        color: #333;
        font-size: 26px;
    }
    #gnav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #fff;
        width: 100%;
        text-align: center;
        /*padding: 10px 0;*/
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        display: block;
        padding: 15px;
        box-sizing: border-box;
    }
    #gnav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #gnav ul li {
        display:block;
        position: static;
    }
    #top_head #gnav ul li a,
    #top_head.fixed #gnav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #toggle,#toggle2 {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #gnav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }

    /*▼ Searchボタン*/
    #top_head .slide-btn {
    display: block;
    width: 60px;
    text-align: center;
    border: none;
    color: #aaa;
    cursor: pointer;
    height: 60px;
    position: absolute;
    right: 60px;
    box-sizing: border-box;
    border: 2px solid #0058a4;
    }

     #top_head .slide-btn img{
         display: block;
         width: 50%;
         margin:14px auto 0;
    }
    #top_head .slide-btn:first-letter {
    font-weight: bold;
    margin-right: 2px;
    }

    #top_head .slide-contents {
    width: 100%;
    margin: 0 0 1.6em 0;
    display: none;
    position: absolute;
    top: 60px;
    background: #fff;
            /*padding: 20px 15px;*/
    box-sizing: border-box;
    }
     #top_head .slide-contents form#form1{
           display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    align-content: space-between;
    justify-content: space-between;
             border: solid 2px #0058a4;
         box-sizing: border-box;
    }
    #top_head .slide-contents form#form1 input{
        font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
        padding: 8px;
        box-sizing: border-box;
    }
    #top_head .slide-contents form#form1 input:focus {
  outline:none;
}
    #top_head .slide-contents form#form1 input#sbox{
        height: 40px;
        width: 70%;
        box-sizing: border-box;
        border: none;
    }
    #top_head .slide-contents form#form1 input#sbtn{
        height: 40px;
        width: 40px;
        box-sizing: border-box;
        border: none;
        background: #0058a4;
    }
    #gnav ul.icon_area li{
        display: inline-block;
    }
    #gnav ul.menu li{
        background: #0058a4;
        margin-top: 10px;
    }
    #gnav ul.menu li a{
        color:#0058a4;
    }
    #gnav ul.menu li.contact{
        background: #fff;
        border: 2px solid #0058a4;
    }
    #gnav ul.menu li.contact a{
        color: #0058a4!important;
    }
    #gnav ul.menu li.contact a:hover{
        border: none;
    }
    #gnav .lg{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    #gnav .lg li{
        display:-webkit-box;
        background: #333;
        margin: 10px;
        width: 30%;
        box-sizing: border-box;
    }
}/*SP_end*/



/*--------------------------------------------------
footer
----------------------------------------------------*/
footer{
    background: #474747;
    padding: 40px 0;
    box-sizing: border-box;
    position: relative;
}
footer .inner{
    width: 1100px;
    margin: 0 auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
footer .inner .right{
    text-align: right;
    color:#fff;
}

footer .inner .right p.copy{
    font-size: 1.2rem;
    color:#d3d3d3;
    font-weight: 500;
    margin-top: 25px;
}
footer .inner a{
    color: #fff;
}
footer .inner ul li{
    display: inline-block;
}
footer .inner ul.menu1 li{
    border-left: 1px solid #fff;
}
footer .inner ul.menu1 li a{
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0 18px 0 20px;
    display: block;
}
footer .inner ul.menu2{
    margin-top: 25px;
}
footer .inner ul.menu2 li a{
    color:#d3d3d3;
    font-size: 1.4rem;
    font-weight: 500;
    padding-right: 20px;
}
footer .pagetop img{
    margin: 0 auto;
    display: block;
    position: absolute;
    right: 30px;
    bottom: 20px;
    cursor: pointer;
}
footer .pagetop img:hover{
    opacity: 0.7;
}
/*SPでの表示*/
@media only screen and (max-width: 767px){
    footer{
    background: #474747;
    padding: 0 0 30px 0;
    box-sizing: border-box;
}
    footer .inner{
    width: 100%;
    margin: 0 auto;
    display: block;
    height: 100%;
}
    footer .inner ul.menu2{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0px;
}
    footer .inner ul.menu2 li{
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
    footer .inner ul.menu2 li:nth-child(2),
    footer .inner ul.menu2 li:nth-child(4) {
         border-right: 0px solid #fff;
    }
    footer .inner .right{
        text-align: center;
        margin-top: 40px;
    }
    footer .inner ul.menu2 li a{
        padding: 0px;
        width: 100%;
        height: 100%;
        display: block;
        padding: 15px;
        box-sizing: border-box;
    }
    footer .pagetop {
        background: #0058a4;
        width: 100%;
        height: 50px;
        padding: 15px 0 15px;
        box-sizing: border-box;
    }
    footer .pagetop img{
    margin: 0 auto;
    display: block;
    position: static;
    right: 0;
    bottom: 0;
    cursor: pointer;
}
}






/*▼200925追記*/

/*SPでの表示*/
@media only screen and (max-width: 767px){
    #top_head .gsc-control-cse{
    background: #f7f4e7!important;
    width: auto!important;
    }
    #top_head .gsc-search-button-v2{
    background: #0058a4!important;
    height: 36px;
    width: 47px;
    }
    #gnav .sr{
        display: none;
    }
}






/*--------------------------------------------------
プリント時の設定-201116
----------------------------------------------------*/
@media print {
    #gnav dl.menu > div > dd.on {
    display: none;
    }
    #gnav dl.menu > div > dd {
    display: none;
    }
    body {
    min-width: 100%;
    width: 100%;
    margin: 0 auto;
    }
    .search_ggl{
    display: none;
    }
    #top_head .slide-btn{
        display: none;
    }
    footer,
    footer .inner{
        width: 100%;
        margin: 0 auto;
    }
    footer .inner {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    body main .main_contents{
        width: 90%;
        margin: 0 auto 0 20px;
    }
    #company main .main_inner .btn_flex li {
    width: 33.3333%;
    margin-top: 60px;
}
    .sp{
        display: none;
    }
    #gnav dl.menu {
    margin-right: 50px;
    display: flex;
    justify-content: space-between;
}
    #top_head .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    }
    .inner {
    width: 100%;
    margin: 0 auto;
}
    #gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
}















































