@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
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;
    color: color: rgb(105, 104, 104);
	position:relative !important;
	width:100% !important;
	overflow-x: hidden !important;
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none !important;
    color: rgb(105, 104, 104) !important;
	
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==============================
ここから
============================== */
img {
	vertical-align: bottom;
}
.mb {
    display: none;
}
/* ==============================
トップ
============================== */
.top {
    width: 100%;
}
.top-flex {
    display: flex;
    justify-content: space-between;
}
.logo {
    width: 20%;
    margin-top: 1.6rem;
    margin-left: 2rem;
}
.top-flex2 {
    display: flex;
    justify-content: end;
}
.top-tel {
    width: 50%;
    margin-top: 2.5rem;
}
.top-cta {
    width: 50%;
    padding: 1rem;
}
/* ==============================
CTAエリア
============================== */
.cta-area {
    width: 100%;
    background-color: #ffc414;
}
.cta-in {
    width: 80%;
    margin: auto;
    padding: 2rem 0;
}
.cta3 {
    background-color: #fff;
    width: 100%;
}
.cta3-in {
	width:40%;
	margin:auto;
}
/* ==============================
CTAエリア2
============================== */
.cta-in2 {
    width: 80%;
    margin: auto;
    padding: 2rem 0;
	margin-top: -5rem;
}
/* ==============================
背景ドット
============================== */
.dot {
	width: 100%;
    background-image: url(../image/dot.png);
    background-repeat: repeat;
    background-attachment: fixed;
}
/* ==============================
回収までの流れ
============================== */
.step {
    position: relative;
}
.step-tel {
    position: absolute;
    top: 46%;
    left: 9%;
    width: 42%;
}
.step-cta {
    position: absolute;
    top: 45%;
    right: 9%;
    width: 24%;
}
/* ==============================
背景ストライプ
============================== */
.koe {
	width: 100%;
    background-image: url(../image/stripe.png);
    background-repeat: repeat;
    background-attachment: fixed;
}
/* ==============================
お問い合わせフォーム
============================== */
.contact-area {
    width: 100%;
    background-color: #fff;
}
.hp-form {
    width: 90%;
    margin: auto;
}
.hp-form table {
    width: 100%;
}
.trtr {
    width: 100%;
}
.thth,.thth2 p {
    display: flex;
    justify-content: space-between;
    width: 90%;
	font-weight:bold;
	margin-bottom:2rem;
}
.thth span,.thth2 span {
    color: #e30e03;
    font-weight: bold;
}
.tdtd input,.tdtd textarea {
    width: 100%;
	border: 2px solid black;
    border-radius: 6px;
    background-color: #efefef;
}
.thth2 {
    position: relative;
}
.p {
    position: absolute;
    top: 50%;
    font-weight: bold;
}
.hp-form-btn {
    text-align: center;
}
.hp-form-btn input {
    width: 30%;
    margin: auto;
    padding: 2rem 0;
    margin-top: 2rem;
    margin-left: 3rem;
	border: 2px solid black;
	font-weight: bold;
    font-size: 1.5rem;
	box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 50%), inset 0px -3px 6px -2px rgb(0 0 0 / 30%);
    background: linear-gradient(#ffc414, #fdf0c8);
}
.thth p {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
/* ==============================
ラストフッター
============================== */
#company {
    width: 100%;
    background-color: #20c000;
	padding: 1rem 0;
	font-size: 0.8rem;
}
#company table {
    width: 60;
    width: 30%;
    margin: auto;
}
#company th {
    padding-top: 0.7rem;
	font-weight:bold;
}
#company td {
	font-weight:bold;
}
small {
	text-align:center;
	display: flow-root;
    padding-top:1rem;
	font-weight:bold;
}
#company p {
	position:absolute;
	z-index:-1;
}
/* ==============================
ポップアップ
============================== */
.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.bg_onetime_popup.js_active {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 45%;
    min-width: 500px;
    background-color: #fff;
    cursor: pointer;
}

.onetime_popup_title {
    position: relative;
    padding:0 2rem;
    margin: 0px;
    background-color: #fff;
    text-align: center;
}
.onetime_popup_title h2 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2.5rem;
    margin-bottom: 1rem;
	padding-top:2rem;
}
.onetime_popup_title p {
	width: 90%;
    margin: auto;
    text-align: left;
    line-height: 1.6rem;
}
.onetime_popup_title dl {
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 2rem;
}
.onetime_popup_title dt {
    font-weight: bold;
    margin-bottom: 1rem;
}
.onetime_popup_title dd {
    margin-bottom: 1rem;
}
.onetime_popup_title::before,
.onetime_popup_title::after {
    position: absolute;
    top: 4rem;
    right: 3rem;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background-color: #5c5858;
    content: "";
}
.onetime_popup_title::before {
    transform: rotate(45deg);
}
.onetime_popup_title::after {
    transform: rotate(-45deg);
}
/* ==============================
プライバシーポリシー
============================== */
.privacy-area {
    width:100%;
/* 	overflow: scroll; */
    height: 150px;
	overflow-x: hidden !important;
	border: 3px solid #ebebeb;
    background-color: #fafafa;
	margin-top:2rem;
}
.privacy-area h3 {
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem;
}
.privacy-area h4 {
    font-weight: bold;
    padding: 1.5rem 0 0.5rem 0;
}
.privacy-area p {
    line-height: 1.5rem;
}
.doui {
    text-align: center;
    margin-top: 1.5rem;
}
.new-btn {
    text-align: center;
    margin-top: 1rem;
    margin-left: -1rem;
}