@charset "UTF-8";


:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover {
    color: var(--linkhover-color);
}




/* フォーム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 16px;}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 150px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #0FA0CE;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 500; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* リスト
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle outside; margin-left: 10px; }
ol {
  list-style: decimal outside; margin-left: 10px; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* コード
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* テーブル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
	border-collapse: collapse; }
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* スペース
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 1rem; }


/* 全幅
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.full-width {
  width: 100%;
  box-sizing: border-box; }
.max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.pull-right {
  float: right; }
.pull-left {
  float: left; }


/* 罫線
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}



/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #000;
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    background:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin:0;
	padding:0;
}

/* グリッド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}
/* ブロックを縦に表示 */
.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

/*.col {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}*/
/* 768px以上の表示 */
@media ( min-width : 768px ) {
.row {
    display: flex;
    flex-direction: row;
    padding: 0;
}
.col {
    margin-left: 4%;
}

.col:first-child {
    margin-left: 0;
}

.row .col.span-1 {
    flex: 0 0 4.66666666667%;
    max-width: 4.66666666667%;
}
.row .col.span-2 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
}
.row .col.span-3 {
    flex: 0 0 22%;
    max-width: 22%;
}
.row .col.span-4 {
    flex: 0 0 30.6666666667%;
    max-width: 30.6666666667%;
}
.row .col.span-5 {
    flex: 0 0 39.3333333333%;
    max-width: 39.3333333333%;
}
.row .col.span-6 {
    flex: 0 0 48%;
    max-width: 48%;
}
.row .col.span-7 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
}
.row .col.span-8 {
    flex: 0 0 65.3333333333%;
    max-width: 65.3333333333%;
}
.row .col.span-9 {
    flex: 0 0 74.0%;
    max-width: 74.0%;
}
.row .col.span-10 {
    flex: 0 0 82.6666666667%;
    max-width: 82.6666666667%;
}
.row .col.span-11 {
    flex: 0 0 91.3333333333%;
    max-width: 91.3333333333%;
}
.row .col.span-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* オフセット */
.row .col.offset-1 {
    margin-left: 8.66666666667%;
}
.row .col.offset-2 {
    margin-left: 17.3333333333%;
}
.row .col.offset-3 {
    margin-left: 26%;
}
.row .col.offset-4 {
    margin-left: 34.6666666667%;
}
.row .col.offset-5 {
    margin-left: 43.333333333%;
}
.row .col.offset-6 {
    margin-left: 52%;
}
.row .col.offset-7 {
    margin-left: 60.6666666667%;
}
.row .col.offset-8 {
    margin-left: 69.3333333333%;
}
.row .col.offset-9 {
    margin-left: 78.0%;
}
.row .col.offset-10 {
    margin-left: 86.6666666667%;
}
.row .col.offset-11 {
    margin-left: 95.3333333333%;
}
}


/* 見出し
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;}

h2 { font-size: 3.0rem; line-height: 1.25; letter-spacing: -.1rem; font-weight:bold;}
h3 { font-size: 2.8rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* PC表示 */
@media (min-width: 550px) {
/*h1 { font-size: 3.0rem; }*/
  h2 { font-size: 2.8rem; }
  h3 { font-size: 2.5rem; }
  h4 { font-size: 2.0rem; }
  h5 { font-size: 1.8rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }
span.ib{
display:inline-block;
}

/* リンク
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #0080ff; }
a:hover {
  color: #0FA0CE; }


/* ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }


.header-btn{
  max-width: 300px;
  width: 30%;
}
.mitumori{
margin:0px auto 0!important;
color:#555;
text-align:center;
font-size:0.8em;
}
.header-btn a {
  margin: 0 auto;
  padding:0.3em;

  color: #fff;
  font-size: 18px;
  font-weight:bold;
  background-color: #EC1C24;
border:3px solid #EC1C24;
  transition: 0.3s;
text-align:center;
border-radius: 5px;
}
.header-btn a::after {
}
.header-btn a:hover {
  text-decoration: none;
  background-color: #fff;
border:3px solid #EC1C24;
color: #EC1C24;
}

.siryo_dl_btn,.inquily_btn{
margin:0 auto;
max-width: 600px;
width: 70%;
margin-bottom:3em;
}
.siryo_dl_btn a{
margin: 0 auto;
padding:1.5em;
font-size: 22px;
font-weight:bold;
border:5px solid #EC1C24;
color: #EC1C24;
transition: 0.3s;
text-align:center;
border-radius: 10px;
}
.siryo_dl_btn a::after {
}
.siryo_dl_btn a:hover {
  text-decoration: none;
  background-color: #EC1C24;
border:5px solid #EC1C24;
  color: #fff;
}

.inquily_btn a {
  margin: 0 auto;
  padding:1.5em;
  color: #fff;
  font-size: 22px;
  font-weight:bold;
  background-color: #EC1C24;
border:5px solid #EC1C24;
  transition: 0.3s;
text-align:center;
border-radius: 10px;
}
.inquily_btn a::after {
}
.inquily_btn a:hover {
  text-decoration: none;
  background-color: #fff;
border:5px solid #EC1C24;
color: #EC1C24;
}




/*共通
-------------------------------------*/
.midashi-bottom {
text-align: center;
padding: 0 20px;
}



/*ヘッダー
-------------------------------------*/

header{
z-index: 1;
position: fixed;	/* 要素の位置を固定する */
top: 0; /* 基準の位置を画面の一番下に指定する */
center: 0; /* 基準の位置を画面の一番右に指定する */
width:100%; /* 幅を指定する */
background-color:#fff;
}

.header {
	display: flex;
 justify-content: space-between;
    flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-box {
	margin:;
}
h1 {
font-size: 1em;
line-height: 1.2;
letter-spacing: -.1rem;
text-align:center;
margin:0.5em auto 0;
}

.contact-button {
	padding: 1rem;
	border: 2px solid var(--base-color);
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
font-size:0.6em;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);
}
nav a {
    padding: 0.5rem;
}
/* PC表示 */


/*メイン画像
-------------------------------------*/
.mainimg {
margin:170px auto 0;
text-align:center;
}
.mainimg img {
  width: 100%;
  max-width: 1600px;
  height: 330px;
  object-fit: cover;
}


/*メインコンテンツ
-------------------------------------*/
main {
    margin: 2rem 0 0 0;
}
section {
    position: relative;
	margin: 5rem 0;
	padding: 3rem 0;
}
.gray-back {
	background-color: var(--back-color);
}
.a_link{
  position: absolute;
  margin-top: -200px;
}
/*キャッチコピー
-------------------------------------*/
.catch p{
width:60%;
text-align: center;
font-size:1.2em;
margin:0 auto;
}
.catch p span{
font-size:1.4em;
border-bottom:2px solid #333;
}


.under {
    border-bottom: 0.4rem solid #ec1c24;
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}
.catch p span.ib{
display:inline-block;
font-size:1em;
border-bottom:none;
}

/*過去の事例
-------------------------------------*/
.kako{
display:flex;
justify-content: space-around;
}
.kako p{
text-align:left;
}
.kako img{
margin-right: 20px;
}

/*セキュリティ対策は?
-------------------------------------*/
.security{
display:flex;
justify-content: space-around;
}
.security p{
text-align:left;
}
.security img{
margin-right: 20px;
}


/*こんなお悩み、問題はありませんか
-------------------------------------*/
.nayami{
width:80%;
max-width:1000px;
}

.nayami ul li{
list-style: none;
background: #DCDBDB url(../images/collect_businesscard_img/icon_check.png) 10px top no-repeat;
text-align: left;
font-size: 2rem;
padding: 20px 20px 20px 60px;
margin-bottom: 20px;
}
.nayami ul li span{
color: #8D5C29;
font-size: 2.4rem;
border-bottom: 4px solid #F5EC40;
}
.nayami p{
float: left;
}
.nayami .n01,.nayami .n02,.nayami .n03{
padding-bottom:0;
}
.nayami .n01 img,.nayami .n02 img,.nayami .n03 img{
margin-top: -30px;
margin-left: 20px;
}
.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}



/*資料ダウンロード
-------------------------------------*/
p.siryo_box{
margin:0 auto 2em;
width:60%;
text-align: center;
}



/*ナビットならではの特長・メリット
-------------------------------------*/
.green-back{
background-color:#F0F7E5;
}
.tokucho{
}
.tokucho table{
width:80%;
margin:0 auto;
border-collapse: separate;
border-spacing: 0px 16px;
}
.tokucho th{
width:300px;
font-size:1.4em;
font-weight:bold;
text-align:center;
color:#fff;
background-color:#605E74;
padding-left: 12px;
padding-right: 12px;
margin-bottom:1em;
}
.tokucho td{
background-color:#fff;
padding:1em;
}




/*ご依頼いただいているお仕事の参考例
-------------------------------------*/
.jirei-table{
width:80%;
margin:0 auto 0;
}
.jirei-table table.jirei{
width:100%;
margin:3em auto 0;
}
table.jirei th{
background-color:#605E74;
color:#fff;
text-align:center;
}

table.jirei td{
text-align:center;
border-bottom:2px solid #605E74;
}
td.jirei_01{
}
td.jirei_02{
}
td.jirei_03{
}
td.jirei_04{
text-align: left !important;
}
td.jirei_05{
text-align:right!important;
padding-right:1em!important;
}
.zeibetu{
text-align:right;
}
.jissekishousai{
text-align:center;
margin: 2em auto;
width:70%;
padding:1em 0 0 0;
  border: 2px solid #ccc; /* 枠線の色・太さ・スタイル */
  border-radius: 8px;      /* 角を少し丸める（任意） */
  background-color: #f9f9f9; /* 背景色（任意） */
}
.jissekishousai h3{
font-size:1.2em;
font-weight:bold;
text-align:center;
}
.jissekishousai ul {
  list-style: none;
  padding-left: 0;
  display: inline-block; /* 中央寄せのため */
  text-align: left;      /* 左揃えを維持 */
}
.jissekishousai ul li{
font-size:1.5em;
font-weight:bold;
margin-bottom: 0.5em;
padding:5px 2em;
}
.jissekishousai ul li a{
text-decoration: underline;
color: #333;
transition: color 0.3s; /* スムーズな色変化（任意） */
}
.jissekishousai ul li a:hover {
  color: #00f; /* ホバー時の青 */
}










/*採用事例（お客様の声）
-------------------------------------*/
.customers_voice{
display:flex;
flex-direction:column;
}
.client1{
display:flex;
flex-direction: row;
justify-content:center;
margin:4em 0 0 0;
}
.client2{
display:flex;
flex-direction:row-reverse;
justify-content:center;
margin:4em 0 0 0;
}
.clientimg,.clientimg img{
width:240px!important;
}
.clientimg{
margin:0 1em 0;
padding-top:10px;
}
.clientvoice{
text-align:left;
/*max-width:700px;*/
}
.clientvoice{
margin:0 1em 0;
}
.clientvoice p.shamei{
color: #8CC43B;
font-size:0.8em;
text-align:left;
margin:0 0 0 0;
}
.clientvoice p.irainaiyo{
line-height:1.2em;
color: #8CC43B;
text-align:left;
font-size:1.5em;
font-weight:bold;
margin:0 0 0 0;
max-width:700px;
}
.clientvoice p.honbun{
color:#333;
text-align:left;
margin:0 0 0 0;
max-width:700px;
}

/*よくあるご質問
-------------------------------------*/

.faq{
width:80%;
margin:0 auto;
}
.qanda{
margin:3em;
}
span.qanda_q {
color:#F6921E;
font-weight:bold;
}
span.qanda_a {
color:#0071BB;
font-weight:bold;
}

/*問い合わせボタン
-------------------------------------*/
.pc_tel{
margin:0 auto;
text-align:center;
}



/*フッター
-------------------------------------*/
footer {
    background-color: #605E74;
    padding: 2rem 0;
color:#fff;
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}
footer a{
color:#fff;
}
#lp_pankuzu {

display:flex;
justify-content: center;
  text-align: center;
  font-size: 0.8em;
  margin: 20px auto;
}

#lp_com_info{
text-align:center;
}

.copyright {
    text-align: center;
    padding: 1rem 0;
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}


@media screen and (min-width: 768px){
.spnone { display: none; }
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
display: block !important;
background-color:#f7f7f7;
}
#navi ul li{
width:50px;
padding:0.5em;
margin:0;
}
#navi ul li a{
color:#555;
font-size: 1.4rem;
line-height:1.2em;
}

.sp_tel{
    display: none !important;
}

}





/* スマホ表示 */
@media screen and (max-width: 768px){
.pcnone { display: none; }
.header {
flex-direction: column;
margin:10px 0 10px;
padding:0;
}
.header #open,#close  {
position: absolute;
top: 20px;
right: 12px;
}

h2,h3,h4{
font-size:1em!important;
}
#header_title{
width:100px!important;
}
.pc_header_tel{
display:none;
}
.header-btn{
width:80%!important;
margin:10px auto;
}
/*スマホ版メイン画像
-------------------------------------*/
.mainimg {
width: 100%;
}
.mainimg img {
width: 100%!important;
height: 160px!important;
object-fit: cover!important;
}


/*スマホ版ナビボタン
-------------------------------------*/
nav ul {
flex-direction: column;
}
#navi ul li{
font-size:1em;
}
#navi ul li a{
color:#555;
}
.header li {
padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
display: none;
}

.catch p{
width:90%!important;
font-size:1em!important;
}
section{
margin: 2rem 0!important;
}
.nayami img{
display: none;
}

/* ↓追加分 */
.kako,.security,.tokucho {
display: block;
}
.tokucho img{ width: 100%; height: auto; }
/* ↑追加分 */

p.siryo_box{
width:90%!important;
font-size:0.8em!important;
}
.siryo_dl_btn{
width:90%!important;
}
.tokucho .span-4 p{
width:90%!important;
}
.tokucho .span-4 .column{
margin:1em 0!important;
}
.tokucho .span-4 .column dl{
display: block;
width:90%!important;
}
.tokucho .span-4 .column dl dd img{
display: block;
width:90%!important;
}
.tokucho .span-4 .column img{
display: none;
}
.jirei-table{
width:100%!important;
}
.jissekishousai{
width:95%;
margin:0 auto;
}
.jissekishousai ul li{
padding:1em;
}








table.jirei{
width:100%!important;
margin:0 auto!important;
font-size:0.8em;
}
.client1,.client2{
margin-top:3em;
display:flex;
flex-direction:column;
txt-align:center;
}
.clientimg,
.clientvoice{
margin:0 auto;
txt-align:center;
}

.faq{
width:90%!important;
margin:0 auto!important;
padding:0!important;
}
.qanda{
width:100%!important;
margin:0 auto 3em!important;
padding:0!important;
}

.inquily_btn{
width:90%!important;
}
.pc_tel{
display: none;
}
section#8 container{
margin:0 auto!important;
padding:0!important;
}
.copyright{
font-size:0.8em;
}
.sp_tel{
    margin:0 auto;
text-align:center;
}
.sp_tel img{
width:70%;

}


/*スマホ版ナビットならではの特長・メリット
-------------------------------------*/
.tokucho table{
width:90%;
margin:0 auto;
}
.tokucho th{
display:block;
width:100%;
margin:0 auto 0;
}
.tokucho td{
display:block;
width:100%;
margin:0 auto 1em;
}


}/*スマホ版ここまで -------------------------------------*/





/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){

/*ヘッダー
-------------------------------------*/
.header-box { display: none; }

/*お問い合わせ
-------------------------------------*/
.table th { width: 100%; display: block; }
.table td { display: block; }
}






/*　印刷用設定内容
-------------------------------------*/
@media print{
header{ position:relative; }
.column{ overflow:hidden; }
.sp_tel{ display:none; }
.pc_tel{ display: block; }
}
