@charset "UTF-8";
@media only screen and (max-width: 980px) {
  body {
    background-image: none;
    position: static;
    overflow-y: scroll;
  }
  body.fixed{
    position: fixed;
    overflow-y: hidden;
    z-index: -1;
  }
  #wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  #cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #main {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    float: none;
  }
  #side {
    display: none;
  }
  #header {
    width: 95%;
    margin: 0 auto;
  }
  /* header */
  h1 {
    text-align: left;
    line-height: 1.5;
  }
  .head_wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .head_l {
    width: calc(50% - 15px);
    max-width: 378px;
    position: relative;
  }
  .head_icon{
    position: relative;
    left: 0;
    margin: 0 12px;
  }
  .head_icon-img img{
    width: 5vw;
    max-width: 40px;
    height: auto;
  }
  .head_r {
    width: calc(50% - 22px);
    max-width: 402px;
    position: relative;
  }
  .head_r img{
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* スマホメニュー */
  #navi {
    display: none;
  }
  #sp_head {
    display: block;
    margin-top: 12px;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to bottom, #45494d 0%, #020202 100%);
  }
  .nav_sp-conts {
    width: calc(100% / 3);
    text-align: center;
    border-right: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav_sp-conts:last-of-type {
    border-right: none;
  }
  .h_h1-t {
    margin-bottom: 12px;
  }
  /* ハンバーガーメニュー */
  .sp_hummenu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .hum_menu_obtn {
    background: none;
    padding: 0;
    border: none;
    width: 100%;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .hum_menu_obtn p {
    line-height: 0;
  }
  .hum_menu_obtn_bar {
    position: relative;
    width: 100%;
    border-top: 3px solid #fff;
    padding: 5px 0px 0;
  }
  .hum_menu_obtn_bar:before,
  .hum_menu_obtn_bar:after {
    content: "";
    display: block;
    border-top: 3px solid #fff;
    padding: 5px 0 0;
  }
  .hum_menu_obtn span {
    position: relative;
    width: 100%;
    display: block;
    top: 0;
    line-height: 1;
    color: #fff;
  }
  .hum_menu_nav {
    background: #f8f2e6;
    height: 100%;
    right: 100%;
    position: fixed;
    top: 0;
    transition-duration: 0.3s;
    transition-property: right;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 250px;
    color: #000;
  }
  .hum_menu_nav.clicked {
    right: calc(100% - 250px);
    overflow: scroll;
    z-index: 100000;
  }
  .hum_menu_nav_close {
    position: fixed;
    right: 70px;
    top: 0;
    z-index: 9999;
    opacity: 0;
  }
  .hum_menu_nav_close.active{
    opacity: 1;
  }
  .hum_menu_cbtn {
    background: rgba(64, 166, 41, 0);
    border: none;
    color: #fff;
    padding: 0;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: block;
    position: fixed;
    top: 25px;
    right: 20px;
  }
  .hum_menu_cbtn_bar {
    position: relative;
    top: 0;
    width: 100%;
    padding: 5px 0 0;
  }
  .hum_menu_cbtn_bar:before,
  .hum_menu_cbtn_bar:after {
    content: "";
    display: block;
    border-top: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 3px;
  }
  .hum_menu_cbtn_bar:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
    margin-bottom: 15px;
  }
  .hum_menu_nav_menu {
    margin-top: 0;
  }
  .hum_menu_nav_menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hum_menu_nav_menu-list li {
    color: #000;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 1.5;
    font-size: 0.85em;
    font-weight: bold;
    position: relative;
    text-align: center;
  }
  .hum_menu_nav_menu-list li:nth-child(2n+1) {
    width: 100%;
    border-bottom: 1px solid #000;
  }
  .hum_menu_nav_menu-list li a {
    padding: 16px 0;
    display: block;
    color: #333;
    text-decoration: none;
  }
  .hum_menu_nav_menu-list li a:after {
    content: "";
    position: absolute;
    right: 15px;
    width: 8px;
    height: 8px;
    margin-top: 3px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: transform 0.3s linear 0s;
    transition: transform 0.3s linear 0s;
  }
  .hum_menu_nav_menu-list li a.more_on:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .hum_menu_nav_menu-list li.sp_nav_more_wrap a {
    padding: 16px 0;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more {
    border-top: none;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li {
    text-align: right;
    padding: 10px 15px 0;
    font-size: 1.05em;
    border-bottom: none;
    background: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li:last-child {
    border-bottom: none;
    padding-bottom: 10px;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li:after {
    content: none;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li a {
    padding: 5px 0;
    text-align: center;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li a:after {
    content: none;
  }
  .sp_nav_more_o {
    display: none;
    width: calc(200% + 2px);
  }
  .sp_nav_more_r {
    position: relative;
    left: -100%;
    width: 200%;
  }
  .hum_open_bg_display {
    transition: all 0.25s linear 0s;
  }
  .hum_open_bg_display.active {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
  }
  /* ここまで */
  .hum_menu_obtn,
  .sp_tel,
  .sp_contact {
    min-height: 80px;
  }
  .sp_tel p,
  .sp_contact p {
    line-height: 0;
  }
  .hum_menu_obtn p,
  .sp_tel a,
  .sp_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: all 0.25s linear 0s;
  }
  .hum_menu_obtn p img,
  .sp_tel a img,
  .sp_contact a img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .nav_side #side {
    display: block;
    margin: 24px auto 0;
    padding-bottom: 0;
  }
  #nav_side-btn {
    display: block;
    box-shadow: none;
    border: none;
    background: linear-gradient(to bottom, #45494d 0%, #020202 100%);
    color: #fff;
    padding: 8px 40px 8px 60px;
    box-sizing: border-box;
    border-radius: 100px;
    font-size: 1em;
    font-weight: bold;
    margin: 16px auto 32px;
    position: relative;
  }
  #nav_side-btn:before {
    content: "";
    width: 3px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 41px;
    bottom: 15px;
    transform: rotate(-45deg);
  }
  #nav_side-btn:after {
    content: "";
    width: 3px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 47px;
    bottom: 15px;
    transform: rotate(45deg);
  }
  #nav_side-btn.on:before {
    transform: rotate(-315deg);
  }
  #nav_side-btn.on:after {
    transform: rotate(315deg);
  }
  #sp_head.on {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    margin-top: 0;
  }
  #sp_head.on .hum_menu_obtn p,
  #sp_head.on .sp_tel a,
  #sp_head.on .sp_contact a {
    max-height: 70px;
  }
  #sp_head.on .hum_menu_obtn p img,
  #sp_head.on .sp_tel a img,
  #sp_head.on .sp_contact a img {
    max-height: 45px;
  }
  .nav_side {
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
  }
  #footer {
    width: 100%;
    max-width: 840px;
  }
  /* top */
  #main-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
  }
  #main-image img {
    max-width: 100%;
    height: auto;
  }
  #main-image img:first-of-type {
    width: 45%;
  }
  #main-image img:last-of-type {
    width: 55%;
  }
  /* 下層ページ */
  .second #main-image {
    width: 100%;
    height: auto !important;
    display: block;
  }
  .second #main-image img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    display: block;
  }
  .second #cont {
    padding-top: 32px;
    background-size: 26% auto;
  }
}

.anchor-margin {
	margin-top: -90px;
	padding-top: 90px;
}

@media only screen and (max-width: 840px) {
  img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  #header {
    height: 12.5vw;
    max-height: 107px;
    position: relative;
    padding-top: 6px;
  }
  h1 {
    text-align: left;
    line-height: 1.5;
  }
  .head_wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .head_l {
    width: calc(50% - 8px);
    max-width: 378px;
    position: relative;
  }
  .head_icon{
    position: relative;
    left: 0;
    margin: 0 12px;
  }
  .head_icon-img img{
    width: 5vw;
    max-width: 40px;
    height: auto;
  }
  .head_r {
    width: calc(50% - 8px);
    max-width: 402px;
    position: relative;
  }
  p.h-affiliation {
    top: 12px;
  }
  p.h-affiliation {
    left: 30.5vw;
  }
  p.h-affiliation img {
    width: 17vw;
    max-width: 151px;
    height: 2.5vw;
    max-height: 23px;
  }
  p.member {
    left: 6vw;
  }
  p.member img {
    width: 21vw;
    max-width: 151px;
  }
  p.number {
    left: 0.5vw;
  }
  p.number img {
    width: 29vw;
    max-width: 219px;
  }
  /* common */
  .tam h3 {
    background: #e8e4d9;
    position: relative;
    padding: 15px 8px 2px 34px;
    font-weight: bold;
  }
  .tam h3:before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    top: 0;
    background: #ff961b;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ff961b 0%, #f87f12 90%, #f06507 99%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ff961b 0%, #f87f12 90%, #f06507 99%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ff961b 0%, #f87f12 90%, #f06507 99%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .tam h3:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    border: 6px solid #fe941a;
    position: absolute;
    left: 8px;
    top: 14px;
  }
  .tam h3 img {
    display: none;
  }
  .tam-inner {
    display: flex;
    flex-direction: column;
  }
  .tam-inner p.img-r {
    float: none;
    margin: 0;
  }
  .tam-inner p.img-r iframe {
    width: 100%;
  }
}

@media only screen and (max-width: 660px) {
  /* header */
  #header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 23vw;
    max-height: 90px;
    margin-bottom: 8px;
  }
  .head_wrap {
    position: relative;
    margin-top: -6px;
  }
  .head_l {
    width: calc(95% - 8vw);
    margin: 0 auto 0 0;
  }
  .head_icon{
    position: absolute;
    right: 0;
    left: auto;
  }
  .head_icon img{
    width: 8vw;
    max-width: 40px;
    height: auto;
  }
  .head_r {
    display: none;
  }
  .hum_menu_obtn,
  .sp_tel,
  .sp_contact {
    min-height: 64px;
  }
  .hum_menu_obtn p img,
  .sp_tel a img,
  .sp_contact a img {
    max-height: 36px;
  }
  #sp_head.on .hum_menu_obtn p img,
  #sp_head.on .sp_tel a img,
  #sp_head.on .sp_contact a img {
    max-height: 36px;
  }
  #sp_head {
    margin-top: 4px;
  }
  .img-l img,
  .img-r img {
    width: auto;
    max-width: 170px;
  }
  p.h-affiliation {
    left: 46.5vw;
  }
  p.h-affiliation img {
    width: 36vw;
    max-width: 151px;
    height: auto;
    max-height: 23px;
  }
  p.member {
    left: 6vw;
    top: 20px;
  }
  p.member img {
    width: 39vw;
    max-width: 162px;
  }
  p.number {
    left: 0.5vw;
  }
  p.number img {
    width: 45vw;
    max-width: 219px;
  }
  .side_menuconts-ttl{
    text-align: left;
  }
  .side_menuconts ul li{
    text-align: left;
  }
  /* top */
  .top #main-image {
    display: block;
  }
  .top-read {
    background-image: none;
    position: relative;
  }
  .top-read:after {
    content: "";
    display: block;
    width: 192px;
    height: 106px;
    background: url(../images/top/img01.jpg) no-repeat;
    opacity: 0.2;
    position: absolute;
    right: 0;
    bottom: 160vw;
  }
  .top-read p.half {
    width: 100%;
  }
  h2.toph2{
    line-height: 1.5;
    padding-bottom: 4px !important;
  }
  /* footer */
  #footer-wrap {
    margin-bottom: 18vw;
  }
  .f-logo,
  .f-inner {
    width: 95%;
    margin: 0 auto;
  }
  .f-logo {
    text-align: center;
  }
  .f-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .f-link {
    float: none;
    margin: 0 auto 16px;
  }
  .f-tel {
    float: none;
    text-align: center;
  }
  /* ページ下部ボタン */
  .sp_btm {
    display: block;
    position: fixed;
    bottom: -100px;
    z-index: 9998;
    left: 0;
    right: 0;
    line-height: 0;
    transition: all 0.1s linear 0s;
  }
  .sp_btm-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    background: rgba(253, 253, 253, 0.7);
  }
  .sp_btm-btn {
    margin-right: 8px;
  }
  .sp_btm-btn:last-of-type {
    margin-right: 0;
  }
  .sp_btm img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .sp_btm.on {
    bottom: 0;
  }
  /* 下層ページ */
  .second #main-image {
    width: 100%;
    height: auto;
  }
  .second #main-image img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .section h2,
  .section20 h2 {
    position: relative;
    padding-left: 26px;
    background-image: none;
    font-size: 20px;
  }
  .section h2:before,
  .section20 h2:before {
    content: "";
    display: block;
    width: 16px;
    height: calc(100% - 4px);
    background: #fc8a25;
    /* Old browsers */
    background: -moz-linear-gradient(top, #fc8a25 0%, #fcb02d 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #fc8a25 0%, #fcb02d 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #fc8a25 0%, #fcb02d 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc8a25', endColorstr='#fcb02d',GradientType=0 );
    /* IE6-9 */
    position: absolute;
    left: 0;
    top: 0;
  }
  .top .section20 h2 {
    padding: 0;
  }
  .top .section20 h2::before {
    content: none;
  }
  /* 債権回収に関わる調査 */
  .f18b ul {
    display: flex;
    flex-direction: column;
  }
  .f18b ul li {
    width: 100%;
  }
  .f18b ul li:last-of-type {
    margin-bottom: 0;
  }
  /* 素行・行動調査 */
  .read {
    font-size: 20px;
  }
  h3.tmp {
    padding-top: 10px;
  }
  h3.tmp span {
    display: block;
  }
  /* 調査料金・お見積もりについて */
  .yakusoku h3 {
    font-size: 20px;
    min-height: 41px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .yakusoku h3 span {
    margin-top: 0;
    font-size: 17px;
    width: 22px;
    height: 18px;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .yakusoku p {
    margin-left: 0;
  }
  /* お得な料金・セットプラン */
  ul.plan-list {
    font-size: 18px;
    padding: 8px;
  }
  /* 料金相場 */
  table.marketprice_tbl01 tbody tr:first-of-type td:first-of-type{
    width: 18%;
  }
  /* ご依頼の流れ */
  .flow-inner {
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 50px;
    margin-bottom: 16px;
  }
  .flow-inner-no {
    padding-left: 0;
  }
  /* よくある質問 */
  .qa p {
    background-position-x: 0;
    padding-left: 28px;
  }
  /* 安さの秘密 */
  h3.sec01,
  h3.sec02,
  h3.sec03 {
    box-sizing: border-box;
    padding: 12px 8px 12px 72px;
    font-size: 18px;
    line-height: 1.35;
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
  }
  h3.sec01 {
    background: #fcac2c;
  }
  h3.sec01::before {
    content: "";
    display: block;
    width: 61px;
    height: 61px;
    background: url("../secret/images/icon_part01.png") no-repeat left top;
    background-size: 100% auto;
    position: absolute;
    left: 4px;
    top: 4px;
  }
  h3.sec02 {
    background: #abd115;
  }
  h3.sec02::before {
    content: "";
    display: block;
    width: 61px;
    height: 61px;
    background: url("../secret/images/icon_part02.png") no-repeat left top;
    background-size: 100% auto;
    position: absolute;
    left: 4px;
    top: 4px;
  }
  h3.sec03 {
    background: #6ebddb;
  }
  h3.sec03::before {
    content: "";
    display: block;
    width: 61px;
    height: 61px;
    background: url("../secret/images/icon_part03.png") no-repeat left top;
    background-size: 100% auto;
    position: absolute;
    left: 4px;
    top: 4px;
  }
  /* お問い合わせ */
  .contact-form {
    display: block;
  }
  .contact-form tbody {
    display: block;
  }
  .contact-form tbody tr {
    display: flex;
    flex-direction: column;
  }
  .contact-form tbody tr th,
  .contact-form tbody tr td {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-size: 15px;
  }
  .contact-form tbody tr th {
    padding: 4px 8px;
  }
  .contact-form tbody tr td input,
  .contact-form tbody tr td select,
  .contact-form tbody tr td textarea {
    font-size: 17px;
    box-sizing: border-box;
  }
  .contact-form tbody tr td input {
    max-width: 100%;
  }
  .contact-form tbody tr td textarea {
    width: 100%;
    min-height: 200px;
  }

  .form_input01,
  .form_input03,
  .form_tel,
  .form_mail{
    width: 100%;
    max-width: 100%;
  }

  .wpcf7-list-item.first{
    margin-left: 0;
  }

  .form_input02{
    width: 3em;
    max-width: 100%;
  }

  .form_textarea{
    width: 100%;
    min-height: 250px;
    display: block;
  }
}
