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

body {
	color: #333;
	font-size: 18px;
	line-height: 1.8em;
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" ;
    font-weight: 400;
	position: relative
	/*letter-spacing: 1px;*/
}

.clear {
	clear: both;
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
}

.img_responsive {
	display: inline-block;
	max-width: 100%;
}

a:hover img {
	opacity: 0.75;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	
	body {
		font-size: 90%;
		line-height: 1.6em;
	}
}

.f_shueiN {
    font-family: dnp-shuei-mgothic-std,sans-serif;
    font-weight: 400;
    font-style: normal;
}
.f_shueiB {
    font-family: dnp-shuei-mgothic-std,sans-serif;
    font-weight: 600;
    font-style: normal;
}
.color1 {
    color: #ff5f14;
}


/*--------------------------------------------
header
--------------------------------------------*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #FFF;
}

header .inner {
    padding: 1.2em;
}

@media screen and (max-width: 780px) {
    header .flL img{
        width: 250px;
    }
}


#nav-input {
    display: none;
}

.header-nav-list ul {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    padding: 0.5em 0;
}
.header-nav-list ul li{
    text-align: center;
}
.header-nav-list ul li a {
    color: #ff5f14;
    font-weight: 500;
    display: block;
    padding: 0 1em;
    letter-spacing: 1px;
    font-size: 115%;
}
.header-nav-list ul li a span{
    display: block;
    font-size: 85%;
    letter-spacing: 1px;
}


@media screen and (max-width: 780px) {
.header-nav-list ul {
    display: block;
    padding: 2em 0.75em;
}
.header-nav-list ul li {
    width: 100%;
}
.header-nav-list ul li a {
    border-right: none;
    font-size: 100%;
    border: 1px solid #FFF;
    border-radius: 40px;
    padding: 1em 2em;
    margin-bottom: 10px;
    color: #FFF;
    text-align: left;
}
.header-nav-list ul li a span{
    display: inline;
    margin-left: 10px;
}
.header-nav-list ul li:last-child{
    margin-bottom: 0;
}
.header-nav-list ul .menu_tel a {
    border: none;
    margin: 10px;
    padding: 0;
}

  #nav-drawer {
  position: fixed;
  right: 10px;
  top: 10px;
  text-align: right;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  padding: 10px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 5px;
  background: #ff5f14;
  display: block;
  content: '';
  cursor: pointer;
  transition: .5s ease-in-out;/*滑らかに表示*/
}
#nav-open span:before {
  bottom: -8px;
  transition: .5s ease-in-out;/*滑らかに表示*/
}
#nav-open span:after {
  bottom: -16px;
  transition: .5s ease-in-out;/*滑らかに表示*/
}

/*ハンバーガーアイコン（閉じる）*/
#nav-input:checked ~ #nav-open span {
    height: 0;
}
#nav-input:checked ~ #nav-open span:before {
 transform: rotate(-45deg);
 bottom: -12px;
 transition: .5s ease-in-out;/*滑らかに表示*/
}
#nav-input:checked ~ #nav-open span:after {
  transform: rotate(45deg);
  bottom: -12px;
  transition: .5s ease-in-out;/*滑らかに表示*/
}
/*ハンバーガーアイコン（閉じる）*/

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    text-align: left;
  overflow: auto;
  position: fixed;
  top: 75px;
  /*top: 0;*/
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 100%;
  max-width: 100%;/*最大幅（調整してください）*/
 /* height: calc(100% - 40px);*/
 height: auto;
  /*height: 90%;*/
  background: #ffa000;/*背景色*/
  transition: .5s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateY(-140%);
  transform: translateY(-140%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);/*中身を表示（右へスライド）*/
  box-shadow: 0 6px 25px rgba(0,0,0,.15);
}

}


/*--------------------------------------------
inner・section
--------------------------------------------*/
#content {
    margin-top: 160px;
}

.section1100 {
    max-width: 1100px;
    margin: 1em auto 5em;
}

.inner1000 {
	max-width: 1000px;
	margin: 0 auto;
}

.inner1050 {
	max-width: 1050px;
	margin: 0 auto;
}

.col-2 {
    display: flex;
    flex-wrap: wrap;
}
.col-2 li {
    width: calc((100% - 20px) / 2);
}
.col-2 li:nth-child(odd) {
    margin-right: 20px;
}

.col-3 {
    display: flex;
    flex-wrap: wrap;
}
.col-3 li {
    width: calc((100% - 50px) / 3);
    margin-right: 25px;
}
.col-3 li:nth-child(3n) {
    margin-right: 0;
}

.col-5 {
    display: flex;
    flex-wrap: wrap;
}
.col-5 li {
    width: calc((100% - 60px) / 5);
    margin-right: 15px;
}
.col-5 li:nth-child(5n) {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    #content {
        margin-top: 70px;
    }
    
    .inner1000,
	.inner1050 {
		padding: 0 15px 10px;
	}
    
    .col-2,
    .col-3 {
        display: block;
    }
    .col-2 li,
    .col-3 li {
        width: 100%;
    }
}

/*--------------------------------------------
h1_h6
--------------------------------------------*/
.h2_page {
    background: url(../img/bg_service.png) repeat center,#1b6cae;
    font-size: 240%;
    font-weight: 700;
    color: #FFF;
    padding: 2.5em 1em;
    text-align: center;
    letter-spacing: 2px;
}

.h3_page {
    border-bottom: 5px solid #005ba4;
    color: #005ba4;
    padding: 15px 0;
    font-size: 180%;
    margin-bottom: 1em;
    line-height: 1.2em;
}

@media screen and (max-width: 768px) {
    .h2_page {
        background-size: auto 400px;
        font-size: 180%;
        padding: 1.5em 1em;
    }
}



/*--------------------------------------------
footer
--------------------------------------------*/
footer {
	width: 100%;
    background: #ffa000;
    padding: 70px 0 0;
    color: #FFF;
    font-weight: 500;
    font-size: 120%;
    line-height: 1.4em;
    text-align: center;
}
footer .contact {
    margin: 1em auto;
    max-width: 500px;
    font-size: 85%;
}
footer .contact:before {
    content: "お問い合わせ・ご相談はこちら";
    display: block;
    border-bottom: 1px solid #FFF;
    padding: 15px;
    margin-bottom: 10px;
}

.copyright {
    background: #ff5f14;
    text-align: center;
    color: #FFF;
    padding: 1em;
}



.sitemap {
    margin: 2em 0;
    text-align: center;
    line-height: 1.6em;
}
.sitemap li {
    display: inline-block;
}
.sitemap li a {
    display: block;
    padding: 0 1.5em;
    color: #FFF;
    border-right: 1px solid #FFF;
}
.sitemap li a:hover {
    color: #ff5f14;
}
.sitemap li:last-child a {
    border-right: 0;
}

@media screen and (max-width: 780px) {
    footer {
        background-size: auto 30px;
        padding-top: 30px;
    }
    footer .contact {
        font-size: 70%;
    }
    footer .contact:before {
        font-size: 145%;
    }
    .sitemap li a {
        padding: 0 10px;
    }
}


/*--------------------------------------------
pagetop
--------------------------------------------*/

#pagetop{
	position:fixed;
	right: 20px;
	bottom:-35px;
	cursor:pointer;
}

@media screen and (max-width: 768px) {
	#pagetop {
		right: 5px;
	}
	#pagetop img {
		width: 100px;
	}
}