@charset "utf-8";
/* CSS Document */

html {
    max-width: 100%;
    overflow-x: hidden;/*横スクロール禁止*/
    overflow-y: auto;
	box-sizing: border-box;
	font-family: sans-serif;
}

*focus,
focus{
    outline:-webkit-focus-ring-color none;
    outline-color:-webkit-focus-ring-color transparent;
    outline-style:-webkit-focus-ring-color none;
	outline:none;
    outline-color: transparent;
    outline-style: none;
}

a:hover{
    transition: 0.4s ease-in-out;
    color: #2784d8;
	opacity:.7;
}

/*Google Material Icons IE11でみれるようにする*/
body {
    text-rendering: optimizeLegibility;
    font-kerning: normal;               
    font-variant-ligatures: common-ligatures contextual;
    font-feature-settings: "kern", "liga", "clig", "calt";
}

body, section, div, h1, h2, h3, h4, h5, h6, p, address, dl, dt, dd, ul, ol, li, img, pre {
	font-size:98.5%;
	margin:0;
	padding:0;
	line-height: 1.7em;
	letter-spacing: 0.1em;
}

body, div, section, article, table, p, span,figure{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	font-family:"Noto Sans JP", helvetica, arial, 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
	/*background-color:#fff;*/
    color: #3B4043;
	word-wrap:break-word;/* 必要に応じて単語の途中で改行する ie firefox対応 */
	overflow-wrap:break-word;/* 必要に応じて単語の途中で改行する */
	/*▼▼SPの際挿入iPhone用(Google Chrome、Safari)▼▼*/
	-webkit-text-size-adjust:100%;
	/*▼▼SPの際挿入Androind用(IE)▼▼*/
	-ms-text-size-adjust:100%;
	-moz-text-size-adjust:100%;
	text-size-adjust:100%;/* スマホの縦向き横向きの文字サイズが自動調整になっているのを固定させる */
	overflow-x : hidden;/*横スクロール禁止*/
	overflow-y : auto;
}

a {
	-webkit-box-shadow:none;
	box-shadow:none;
	color: #0050a8;
}

.imgWrap,
.imgWrap img{
	width: 100%;
}


/*** Toggle Button
-------------------------------------------***/
#menu-toggle {
	cursor:pointer;
    margin: auto;
	height: 60px;
	width: 60px;
	background: rgba(34,100,157,.7);
	padding-top: 16px;
}

.menu-toggle-bar {
    position: relative;
    width:30px;
    height: 28px;
    box-sizing: border-box;
    position: relative;
	margin: auto;
	padding: 10px 0;
}

#menu-toggle span {
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0;
}

#menu-toggle.open span{
    width: 38px;
}

.open .menu-toggle-bar{
    position: relative;
    top: 1px;
	left: -4px;
}

#menu-toggle span:nth-child(1) {
    top: 0px;
}

#menu-toggle span:nth-child(2) {
    top: 11px;
}

#menu-toggle span:nth-child(3) {
    top: 22px;
}

#menu-toggle.open{
    top: 4px;
}

.toggleMenu{
    line-height: normal;
    font-size: 80%;
    letter-spacing: normal;
    margin-top: 3px;
    color: #fff;
}

.openL span{
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
	-webkit-transition: all .4s;
	transition: all .4s;
}

.open span:nth-child(1) {
	top: 11px!important;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}

.open span:nth-child(2) {
	width: 0;
	left: 50%;
	display: none;
}

.open span:nth-child(3) {
	top: 11px!important;
	-webkit-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

.slideMenu.slide{
    display: block;
    top: 0;
}

.slideMenu {
    display: none;
    width: 100%;
    z-index: 999;
    -webkit-transition: all .4s;
    transition: all .4s;
}

/* Toggle Button end
-------------------------------------------*/

/*pageUpボタン設置
-------------------------------------------*/
#back_to_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
    color: #fff;
    z-index: 99;
    text-align: center;
    opacity: .7;  
}

#back_to_top a{
	color: #53a9f3;
}

#back_to_top:hover{
	opacity: .6;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

button:focus, input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus{
	outline:none;
}

#back_to_top .material-icons{
    font-size: 4rem;
}


/*pageUpボタン設置　終了
-------------------------------------------*/

/* Googleマップをレスポンシブに対応
---------------------------------------------------- */
.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/* Googleマップをレスポンシブに対応 end
---------------------------------------------------- */

/* お問い合わせ　フォーム
---------------------------------------------------- */
#formWrap{
	width:100%;
	margin:30px auto 0;
	color:#555;
	line-height:120%;
	font-size:90%;
}

table.formTable{
	border-collapse:collapse;
    width: 100%;
}

.required{
    border-radius: 3px;
    background-color: #22649D;
    color: #fff;
    font-weight: normal;
    padding: 1px 3px 2px;
    margin-left: 15px;
    font-size: .7rem;
    letter-spacing: normal;
}

table.formTable td,
table.formTable th{
    display: block;
    width: 100%;
	padding:10px;
    box-sizing: border-box;
}

table.formTable td,{
    border:1px solid #22649D;
}
table.formTable th{
	font-weight:normal;
	background:#b7d9f6;
	text-align:left;
    color: #22649D;
    font-weight: bold;
}

input[type="text"], textarea {
    width:calc( 100% - 14px );
}

input[type="text"].contact_zip,
input[type="text"].shimei{
    width:140px;
    display: inline-block;
}

.add_input{
    margin-bottom: 10px;
}

input[type="text"].shimei:first-child{
    margin-right: 10px;
}

.js-button{
    display: table;
    margin-top: 10px;
}

.js-button p{
    display: inline-block;
    padding: 5px 7px;
    border-radius: 3px;
    border: 1px solid #22649D;
    color: #22649D;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

.js-button p::before{
    content: "arrow_forward";
    font-family: 'Material Icons';
    font-size: 1.2rem;
    vertical-align: bottom;
    padding-right: 3px;
    color: #22649D;
    transition: 0.4s ease-in-out;
}

.js-button:hover{
    cursor: pointer;
    color: #fff;
}

.js-button:hover p::before {
    color: #fff;
}

.js-button:hover p {
    display: inline-block;
    color: #fff;
    background-color: #22649D;
}

input[type="submit"],
input[type="reset"],
input[type="button"]{
    background-color: #22649D;
    color: #fff;
    font-weight: bold;
    border: 1px solid #22649D;
    display: block;
    padding: 15px 15px 19px;
    width: 100%;
    transition: 0.4s ease-in-out;
}

.gotopBTN a{
    background-color: #22649D;
    color: #fff;
    font-weight: bold;
    border: 1px solid #22649D;
    display: block;
    padding: 15px 15px 19px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.gotopBTN a:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover{
    border: 1px solid #22649D;
    background-color: #fff;
    color: #22649D;
    font-weight: normal;
}

.gotopBTN{
    box-sizing: border-box;
    max-width: 250px;
    margin-top: 50px;
}

input[type="submit"]{
    margin-bottom: 10px;
}

.chuui{
    line-height: 1rem;
    margin-top: 10px;
}

.privacy_box{
    width: 100%;
    height: 300px;
    overflow-y:scroll;
    overflow-x: hidden;
    margin-top: 30px;
    border: 1px solid #22649D;
    padding: 10px;
    box-sizing: border-box;
}

.contBTNwrap{
    margin-top: 50px;
    text-align: center;
}

input{
    font-family:"Noto Sans JP", helvetica, arial, 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
    font-size: .95rem;
    line-height: .95rem;
}

input[type="submit"],
input[type="reset"],
input[type="button"]{
    cursor: pointer;
}

.error_messe{
    color: #db0000;
}

.errorWrap{
    margin-top: 30px;
}

.contentWrap #formWrap{
    margin-top: 0;
}

.contentWrap #formWrap .kakuninText{
    margin-bottom: 40px;
}

.btnLine{
    background-color: #fff;
    height: 2px;
    position: absolute;
    top: 64%;
    width: 0%;
}

.priTit{
    font-weight: bold;
}

.privacy_box > p{
    margin-bottom: 1.5rem;
}

.priUl > li{
    margin-bottom: 1.5rem;
}

.priUl p:not(.priTit),
.priUlin{
    padding-left: 1rem;
}

.priUlin li,
.priUlin02 li,
.priUlin03 li{
    list-style: decimal;
    list-style-position: inside;
    text-indent: -1.25em;
    padding-left: 1.25rem;
}

.priUlin,
.priUlin02,
.priUlin03{
    margin-top: .5rem;
    margin-bottom: .5rem;
}

#privacypolicy{
    padding-top: 20px;
}





/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (min-width:710px) {
    table.formTable td,
    table.formTable th{
        display: table-cell;
        width:auto;
    }
    
    table.formTable {
        margin-top:5px;
    }
    
    input[type="text"], textarea {
        padding:5px;
        font-size:110%;
    }
    
    input[type="submit"], input[type="reset"], input[type="button"] {
        display:block;
        width:100%;
    }
    
    input[type="submit"], input[type="reset"],input[type="button"]{
        max-width: 200px;
        display: inline-block;
    }
    
    input[type="submit"]{
        margin-right: 20px;
    }
    
    table.formTable th{
        background-color: transparent;
        text-align: right;
        vertical-align:top;
        padding: 10px 20px 10px 10px;
    }
    
    .chuui{
        margin-top: 50px;
    }
    
    #formWrap{
        margin-top: 80px;
    }
    
    .add_input {
        margin-bottom: 30px;
    }
}

/* お問い合わせ　フォーム end
---------------------------------------------------- */



.padShow{
    display: none;
}

header{
	position: relative;
}

.main-naviOuter{
	position: absolute;
	top: 0;
	z-index: 9;
	width: 100%;
}

.main-naviOuter .fl-side{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 60px;
    background-color: rgba(255,255,255,1);
}

.pc-main-navi{
	display: none;
}

.slideMenu{
    width: 100%;
    z-index: 999;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.site-branding{
	width: 220px;
	padding-left: 15px;
}

.site-branding img{
	width: 100%;
}

.sp-main-navi ul li{
	border-bottom: #0050a8 solid 1px;
    background-color: rgba(255,255,255,.8);
}

.sp-main-navi li:first-child {
    border-top: #0050a8 solid 1px;
}

.sp-main-navi li a {
    font-weight: 600;
    font-size: .975rem;
    display: block;
    padding: 10px 15px;
    color: #3B4043;
    transition: 0.4s ease-in-out;
}

.sp-main-navi li a:hover{
    color: #22649D;
    opacity: 1;
}

.headerImgWrap{
	height: 290px;
	width: 100%;
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: 50%;
	z-index: 1;
}

.kasouHD.headerImgWrap{
    height: 250px;
}

.headerImgWrap.top{
	background-image: url("../img/top_header.png");
	display: table;
}

.headerImgWrap.processing{
	background-image: url("../img/hd_processing.png");
}

.headerImgWrap.overseas{
	background-image: url("../img/hd_overseas.png");
}

.headerImgWrap.about{
	background-image: url("../img/hd_about.png");
}

.headerImgWrap.contact{
	background-image: url("../img/hd_contact.png");
}

.headerImgWrap.product{
	background-image: url("../img/hd_product.png");
}

.headerImgWrap.privacy,
.headerImgWrap.sitemap{
	background-image: url("../img/hd_privacy.png");
}

.catchcopy{
	color: #fff;
	font-size: 2rem;
	text-align: center;
	right: 0;
	line-height: 1.5;
	text-shadow: 0 0 10px #333;
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: .1rem;
}

.catchcopyWrap .h2-s{
	color: #fff;
	text-align: center;
	right: 0;
	font-size: 1rem;
	line-height: 1.5;
	text-shadow: 0 0 10px #333;
    margin-bottom: 20px;
}

.catchcopyWrap{
	display: table-cell;
    vertical-align: middle;
    height: 400px;
    padding-top: 60px;
}

.hdTit{
	color: #fff;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	text-shadow: 0 0 10px #333;
}

.kasou{
	position: absolute;
	top: 60px;
	height : calc(100% - 60px) ;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footerWrap{
	background: #ECEFF1;
    padding-top: 40px;
    margin-top: 60px;
}

.footer-s{
	font-size: .9rem;
	font-weight: 300;
}

.footer-m{
	font-size: 1rem;
	font-weight: 600;
}

.footerAdd{
    width: 240px;
    margin: auto;
}

.footerAdd p{
	line-height: 1.6;
	color: #3B4043;
    display: inline-block;
}

.footer-navi{
	margin: 40px auto 0;
}

.footerNV li a,
.footerNV03 li a{
	color: #fff;
}

.footerNV > li > a,
.footerNV02 > li > a{
	display: block;
	text-align: center;
	padding: 10px;
	background: #22649D;
	color: #fff;
}

.footerNV > li > a{
    border-bottom: 1px solid #ECEFF1;
}

.footerNV ul,
.footerNV02{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background: #4178a7;
}

.footerNV ul li{
	width : 100%;
	border-bottom: 1px solid #ECEFF1;
}

.footerNV02 > li{
	border-bottom: 1px solid #818181;
}

.footerNV02 li{
	width : calc(50% - 1px) ;
	border-bottom: 1px solid #ECEFF1;
}

.footerNV02 li:nth-child(2n+1),
.footerNV02 li:first-child{
	border-right: 1px solid #ECEFF1;
}

.footerNV ul li a{
	display: inline-block;
	padding: 10px;
	width: 100%;	
	text-align: left;
    box-sizing: border-box;
    letter-spacing: normal;
}

.site-copy{
	height: 60px;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.site-copy p{
	color: #22649D;
	font-size: .75rem;
	text-align: center;
	letter-spacing: .05rem;
}

.footerLwrap{
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

.footerNV03{
	display: none;
}

.footerLogoWrap{
    text-align: center;
    margin-bottom: 10px;
}

.footerLogoWrap a:hover{
	opacity: 1;
}

.contentWrap{
	padding: 70px 0 0;
}

.cont02-img{
	background-image:url("../img/processing.png");
	height: 280px;
}

.cont03-img{
	background-image:url("../img/reason.png");
	height: 280px;
}

.contentWrap h2{
	font-size: 1.7rem;
	color: #0F57BE;
	text-align: center;
	line-height: 3rem;
}

.conTit{
	margin-bottom: 30px;
}

.pc-main-navi li a:hover{
	opacity: 1;
}

.companyWrap .contentWrap h2 {
    font-size: 1.8rem;
	letter-spacing: normal;
	line-height: 1.4;
}

.itemWrap{
    background-color: #ECEFF1;
    padding: 25px;
    transition: 0.4s ease-in-out;
}

.itemBTN{
    border: 1px solid #22649D;
    padding: 10px;
    text-align: center;
    transition: 0.4s ease-in-out;
}

.itemBTN p{
    font-size: 1rem;
    color: #22649D;
    transition: 0.4s ease-in-out;
}

.itemBTNname{
    font-size: 1.125rem;
    text-align: center;
    font-weight: bold;
    margin: 20px auto;
    color: #3B4043;
    line-height: 1.5rem;
}

.itemOuter{
    margin-top: 50px;
}

.itemOuter a,
.topBNwrap a{
    display: block;
    margin-bottom: 30px;
}

.topBNwrap a:hover{
    opacity: 1;
}

.topBNwrap .imgWrap{
    display: table;
    position: relative;
}

.topBNwrap .imgWrap img{
    border: 1px solid #fff;
}

.topBNwrap .imgWrap img:hover{
   border-color: #22649D;
}

.topBNname{
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    font-size: 2.1rem;
    height: 40px;
    font-weight: 100;
    line-height: 2rem;
    filter: drop-shadow(0px 0px 2px rgba(34,100,157,0.6));
}

.topBNname::before {
    content:url("../img/arrow-right.svg");
    padding-right: 10px;
    font-size: 2rem;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .prodBwrap > a:hover .prodBNin::before,
    .prodBwrap > a.currentBN .prodBNin::before{
        content:url("../img/arrow-right02_w.png");
    }
    
    .prodBwrap > a .prodBNin::before{
        content:url("../img/arrow-right02_b.png");
    }

    .topBNname::before{
        content:url("../img/arrow-right.png");
    }
}

.topBNouter{
    margin-bottom: 100px;
    margin-top: 70px;
}

.dexImg{
    margin: 30px 0 0;
}

.aboutTB{
    width: 100%;
}

.aboutTB td,
.aboutTB th{
    display: block;
    width: 100%;
    padding: 10px 0;
}

.aboutTB th{
    background-color: #22649D;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #22649D;
}

.grayBK{
    background-color: #ECEFF1;
}

.contentWrap.grayBK{
    padding: 50px 0 30px;
    margin-top: 80px;
}

.tokuBox{
    border: 1px solid #22649D;
    padding: 10px 20px 20px;
    margin-bottom: 20px;
}

.tokuchouWrap{
    margin: 40px 0 80px;
}

.tokuBox h3{
    font-size: 1.4rem;
    color: #0F57BE;
    text-align: center;
    line-height: 2rem;
    margin: 15px 0 20px;
}

.tokuUL li{
    line-height: 1.3rem;
    margin-bottom: 1rem;
}

.tokuUL li.textC{
    text-align: center;
}

.blText{
    font-weight: bold;
    color: #22649D;
}

.hdTit.prodhdTit{
    font-size: 1.7rem;
}

.prodBwrap > a{
    border: 1px solid #22649D;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 15px 15px 0;
}

.prodBN p{
    color: #22649D;
    font-weight: bold;
    font-size: 1.075rem;
    line-height: 1.5rem;
    letter-spacing: normal;
    transition: 0.4s ease-in-out;
}

.prodBNin::before{
    content: "arrow_forward_ios";
    font-family: 'Material Icons';
    font-size: 1.5rem;
    vertical-align: bottom;
    padding-right: 5px;
    color: #22649D;
    padding-left: 10px;
    transition: 0.4s ease-in-out;
}

.prodBNin{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
     -ms-flex-pack: start;
    justify-content: flex-start;
}

.productCon .itemBTNname{
    margin-bottom: 0;
    margin-top: 15px;
    color: #22649D;
}

.productCon .hitetsu .itemBTNname{
    font-size: .85rem;
    letter-spacing: normal;
}

.productCon .itemOuter{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.productCon .itemOuter > a{
    width: calc(50% - 7.5px);
    margin-bottom: 15px;
}

.productCon .itemWrap{
    padding: 15px 15px 20px;
    border: 1px solid #B0BEC5;
    transition: 0.4s ease-in-out;
    width: 100%;
}

.productCon .itemOuter > a:nth-child(odd){
    margin-right: 15px;
}

.productCon a:hover .itemWrap{
    border-color: #22649D;
}

.productSec{
    margin-bottom: 100px;
}

.prodBwrap > a.currentBN{
    background-color: #22649D;
}

a.currentBN .prodBN p,
a.currentBN .prodBNin::before{
    color: #fff;
}


/**
 * 14.1 - >= 567px
 */

@media screen and (min-width: 35.43em) {
    .gmap {
        padding-bottom: 50%;
    }

}



/**
 * 8.2 - >= 710px
 */
@media screen and (min-width: 44.375em) {
    .itemOuter{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    
    .itemOuter a{
        width: 32%;
        transition: 0.4s ease-in-out;
    }
    
    .itemOuter a:not(:nth-child(3n)){
        margin-right: 2%;
    }
    
    .itemWrap{
        height: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    
    .itemOuter a:hover{
        opacity: 1;
    }
    
    .itemOuter a:hover .itemWrap{
        background-color: #d8ecfd;
    }
    
    .itemOuter a:hover .itemBTN{
        background-color: #22649D;
    }
    
    .itemOuter a:hover .itemBTN p{
        color: #fff;
    }
    
    .topBNwrap{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    
    .topBNwrap a{
        width: 49%;
    }
    
    .prodBwrap{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    
    .prodBwrap > a{
        width: calc(50% - 25px);;
    }
    
    .prodBwrap > a:hover{
        background-color: #22649D;
        opacity: 1;
    }
    
    a:hover .prodBN p,
    a:hover .prodBNin::before{
        color: #fff;
    }
    
    .productCon .itemOuter > a{
        width: 32%;
        margin-bottom: 14px;
    }
    
    .productCon .itemWrap{
        padding: 20px;
    }
    
    .productCon .itemOuter > a:nth-child(odd) {
        margin-right: 0;
    }
    
    .productCon .itemOuter > a:not(:nth-child(3n)){
        margin-right: 2%;
    }
    
    .productCon .hitetsu .itemBTNname{
        font-size: .9rem;
    }
    
    
}


/**
 * 8.3 - >= 768px
 */
@media screen and (min-width: 48em){
	body, section, div, h1, h2, h3, h4, h5, h6, p, address, dl, dt, dd, ul, ol, li, img, pre {
	   font-size:100%;
    }
	
	.padShow{
        display: block;
    }
	
	.padonlyShow,
	.padonlyShow02{
		display: block;
	}
    
    .spShow{
        display: none;
    }
	
	.headerImgWrap.top{
		background-position: center;
	}
	
	.footer-m{
		letter-spacing: .03rem;
		font-size: 1rem;
	}
	
	.footerLwrap{
		padding: 0;
		margin: 0;
		max-width: 360px;
		width: 35%;
	}
	
	.footerNV > li > a,
	.footerNV02 > li > a {
		display: block;
		text-align: left;
		padding: 0;
		background: transparent;
	}
	
	.footerNV ul,
	.footerNV02 {
		display:block;
		background: transparent;
		
	}
	
	.footerNV ul li a{
		text-align: left;
	}
	
	.footerNV ul li {
		width: auto;
		border-bottom: none;
		list-style: disc inside;
		color: #fff;
		padding-left: .5rem;
	}

	.footerNV02{
		display: none;
	}
	
	.footerNV ul li:nth-child(2n+1),
	.footerNV ul li:first-child,
	.footerNV02 li:nth-child(2n+1),
	.footerNV02 li:first-child{
		border: none;
	}
	
	.footerNV02 li {
		width: auto;
		border-bottom: none;
	}
	
	.footer-navi{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin: 0;
		max-width: 540px;
		width: 61%;
        min-width: 460px;
	}
	
	.footerNV03{
		display: inline-block;
	}
	
	.footerNV ul li a{
		padding: 0;
		display: inline;
	}
	
	.footer-navi ul li{
		font-weight: normal;
		letter-spacing: normal;
		line-height: 2.2;
	}
	
	.footer-navi ul li a{
		font-size: .9rem;
        font-weight: bold;
        color: #22649D;
	}
    
    .footer-navi ul li > ul a{
        font-weight:normal;    
    }
    
    .footerNV ul li{
        list-style: none;
    }
    
    .footerNV ul li::before{
        content: "―";
        color: #22649D;
        font-weight: bold;
    }
	
	.footer-bottomWrap{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 30px 0;
	}
	
	.footerAdd p{
		font-size: .94rem;
	}
	
	.dexcTxt{
		text-align: center;
        margin: 0 10%;
	}
	
	.catchcopyWrap .h2-s{
		line-height: 2;
	}
	
	.footer-s{
		font-size: .9rem;
	}
	
	.footer-bottomOuter{
		padding: 0 15px;
	}

	.headerImgWrap {
		height: 320px;
	}
    
    .kasouHD.headerImgWrap{
        height: 350px;
    }
	
	.companyWrap .contentWrap h2 {
        font-size: 1.9rem;
        letter-spacing: .1rem;
    }
    
    .companyWrap .contentWrap {
        padding-bottom: 80px;
    }

	.footerNV > li > a,
    .footerNV02 > li > a,
    .footerNV li a, .footerNV03 li a{
        
    }
	
    .footerAdd{
        margin-left: 0;
    }
    
    .footerLogoWrap{
        text-align: left;
    }
	
    .footerAdd p{
        letter-spacing: normal;
    }
    
    .site-copy{
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    
    .site-copy p{
        font-size: .85rem;
    }
    
    .priBTN::before{
        content: "arrow_forward";
        font-family: 'Material Icons';
        font-size: 1.2rem;
        vertical-align: bottom;
        padding-right: 3px;
        color: #22649D;
    }
    
    .aboutTB{
        max-width: 700px;
        border-collapse: separate;
        border-spacing: 30px 0px;
        margin: auto;
    }

    .aboutTB td,
    .aboutTB th{
        display: table-cell;
        padding: 10px;
        width: inherit;
        background-color: transparent;
    }

    .aboutTB th{
        color: #22649D;
        font-weight: bold;
        border-bottom: 1px solid #22649D;
        text-align: left;
        width: 55px;
    }

    .aboutTB td{
        border-bottom: 1px solid #3B4043;
    }
    
    .contentWrap.grayBK{
        padding-bottom: 80px;
    }
    
    .tokuchouWrap{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 60px;
        margin-bottom: 100px;
    }
    
    .tokuBox{
        width: 48.5%;
        padding: 20px 40px 20px;
    }
    
    
	

	
}

/**
 * 8.4 - >= 810px
 */
@media screen and (min-width: 51.25em) {
    .padonlyShow{
		display: none;
	}
    
    .productCon .itemOuter > a {
        width: 31.75%;
        margin-bottom: 20px;
    }
    
}


/**
 * 8.5 - >= 880px
 */
@media screen and (min-width: 55em) {	
	.padonlyShow02{
		display: none;
	}
    
    .footer-navi ul li a{
        font-size: 1rem;
    }
	

}


/**
 * 8.6 - >= 910px
 */

@media screen and (min-width: 56.875em) {	
	.contentWrap h2{
		font-size: 1.9rem;
		line-height: 4rem;
	}
	
	.headerImgWrap {
		height: 320px;
	}
	
    .prodBwrap > a{
        width: calc(33% - 25px);;
    }
	
    .productCon .itemOuter > a {
        width: 23.5%;
    }
    
	.productCon .itemOuter a:not(:nth-child(3n)) {
        margin-right: 0;
    }
    
    .productCon .itemOuter a:not(:nth-child(4n)) {
        margin-right: 2%;
    }
	
	

}


/**
 * 8.7 - >= 985px
 */
@media screen and (min-width: 61.5625em) {
    #menu-toggle{
        display: none;
	}
    
    .main-naviOuter{
        max-width: 1000px;
        left: 0;
        right: 0;
        margin: auto;
        top: 50px;
        width: 100%;
    }
	
	.main-naviOuter .fl-side {
		height: 80px;
	}
    
    .mainNV.fl-side{
        height: 40px;
        padding-right: 20px;
    }
    
	.pc-main-navi{
		display:block;
	}
	
	.pc-main-navi li a{
		font-size: 1rem;
		color: #323232;
		letter-spacing: normal;
		font-weight: bold;
	}
	
	.pc-main-navi li{
		margin-right: 15px;
	}
	
	.pc-main-navi li:last-child{
		margin-right: 0;
	}
	
	.main-naviWrap{
		padding-right: 0;
	}
	
	.pc-main-navi li.current{
		border-bottom: 3px solid #22649D;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: calc(100% - 6px);
		padding-top: 3px;
	}
	
	.contentWrap {
		padding: 90px 0 0;
	}

	.site-branding{
		width: 220px;
        padding-left: 20px;
	}
    
    .headerImgWrap {
		height: 500px;
	}
    
    .pc-main-navi li {
		margin-right: 35px;
	}
    
    .catchcopy {
		font-size: 2.3rem;
        letter-spacing: .3rem;
        font-weight: bold;
        line-height: 1.5;
        margin-top: 35px;
	}
	
	.catchcopyWrap .h2-s {
		font-size: 1.13rem;
        letter-spacing: .3rem;
	}
    
    .catchcopyWrap{
        padding-top: 80px;
        height: 500px;
    }
    
    .footerAdd p{
        font-size: 1rem;
        letter-spacing: .1rem;
    }
    
    .footerAdd{
        width: 270px;
    }
    
    .kasou {
        top: 130px;
        height: calc(100% - 130px);
    }


}


/**
 * 8.8 - >= 1100px
 */
@media screen and (min-width: 68.75em) {	
	.sp-main-navi li a{
        padding-bottom: 13px;
        padding-top: 13px;
    }

	
}


/**
 * 8.0 - Print
 */

@media print {
	
}



