@charset "utf-8";
/**************************
reset CSS
*************************/
* { box-sizing: border-box; }
::before,::after { box-sizing: inherit; }
html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ -webkit-tap-highlight-color: transparent; /* 3*/ }
body { margin: 0; }
main { display: block; }
p,table,blockquote,address,pre,iframe,form,figure,dl { margin: 0; }
h1,h2,h3,h4,h5,h6 { font-size: inherit; line-height: inherit; font-weight: inherit; margin: 0; }
ul,ol { margin: 0; padding: 0; list-style: none; }
dt { font-weight: bold; }
dd { margin-left: 0; }
hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ border: 0; border-top: 1px solid; margin: 0; clear: both; }
pre { font-family: monospace, monospace; /* 1 */ font-size: inherit; /* 2 */ }
address { font-style: inherit; }
a { background-color: transparent; text-decoration: none; color: inherit; }
abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ }
b, strong { font-weight: bolder; }
code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: inherit; /* 2 */ }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
img { border-style: none; vertical-align: bottom; }
embed, object, iframe { border: 0; vertical-align: bottom; }
details { display: block; }
summary { display: list-item; }
table { border-collapse: collapse; border-spacing: 0; }
td, th { vertical-align: top; }
th { text-align: left; font-weight: bold; }
template { display: none; }
[hidden] { display: none; }
/**************************
common
**************************/
body {
	position: relative;
	line-height: 1.7;
}
body {
	font-family:”游ゴシック体”, YuGothic, “游ゴシック”, “Yu Gothic”, “メイリオ”, sans-serif;
	font-weight: 500;
	font-feature-settings: “palt” 1;
	-webkit-text-size-adjust: 100%;
}
img {
	height: auto;
}
.content .ttl-sec {
	position: relative;
	line-height: 1.2;
	padding: 30px 10px;
	background: #22a098;
	color: #fff;
	font-size: 1.7rem;
	font-weight: bold;
	text-align: center;
}
.box-sec {
	padding: 20px 10px;
}
/**************************
header
**************************/
.wrap-header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1130px;
	margin: 0 auto;
	padding: 10px;
}
.logo-header {
	margin: 0;
}
.c-btn__header {
	width: 6rem;
	margin-right: 3rem;
}
.c-btn__header-link {
	display: block;
	filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 1px 4px);
}
.c-btn__header-link:hover {
	position: relative;
	top: 2px;
	filter: none;
}
.c-btn__header-img {
	width: 100%;
	height: auto;
}
@media screen and (min-width: 768px) {
	.wrap-header {
		padding: 20px;
	}
	.logo-header {
		width: 180px;
	}
	.c-btn__header {
		width: 20rem;
		margin-right: 0;
	}
}
@media screen and (min-width: 1020px) {
	.wrap-header {
		padding: 20px 0;
	}
}
/***************************
hamburger
***************************/
#nav-drawer {
	position: fixed;
	top: -10px;
	right: 0;
	padding: 20px 10px 20px 10px;
	background: rgba( 255, 255, 255, 0.8 );
	z-index: 9999;
}
.nav-unshown {
	display: none;
}
#nav-open {
	display: inline-block;
	width: 34px;
	height: 22px;
	vertical-align: middle;
}
#nav-open .bar,
#nav-open .bar::before,
#nav-open .bar::after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 34px;/*長さ*/
	border-radius: 3px;
	background: #22a098;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open .txt {
	display: block;
	margin: 20px 0 0 0;
	color: #22a098;
	font-size: .8rem;
}
#nav-open span::before {
	bottom: -8px;
}
#nav-open span::after {
	bottom: -16px;
}
#nav-close {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	right: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;/*最前面に*/
	width: 60%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅（調整してください）*/
	height: 100%;
	background: #22a098;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(105%);
	transform: translateX(105%);/*左に隠しておく*/
}
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: .5;
}
#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.list-nav {
	line-height: 1;
	margin: 40px 10px 40px 30px;
	border-left: 2px solid #fff;
}
.list-nav li {
	position: relative;
	margin: 0 0 40px;
	padding: 0 0 0 20px;
}
.list-nav li::before {
	position: absolute;
	top: 50%;
	left: -11px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: #fff;
	border-radius: 50%;
	content: '';
}
.list-nav a {
	color: #fff;
}
.list-nav a:hover {
	text-decoration: underline;
}
/***************************
hero
***************************/
.area-limit {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	padding: 0 10px 10px;
}
.block-limit {
	padding: 4px;
	background: #ddd;
	font-size: .8rem;
	text-align: center;
}
.block-limit .s-bold {
	margin: 0 4px;
	font-size: 1.1rem;
	font-weight: bold;
}
.block-limit .s-small {
	font-size: .6rem;
}
.img-hero {
	padding: 16px 10px 0;
}
.img-hero img {
	width: 100%;
}
@media screen and (min-width: 768px) {
	.wrap-hero {
		margin: 0 auto;
		border: 1px solid #ddd;
		background-color: #fff;
		background-size: 40px 40px;
		background-image:
		 linear-gradient(rgba(215,204,200,.6) 1%, rgba(215,204,200,.6) 1%, transparent 1%,
			transparent 99%, rgba(215,204,200,.6) 99%, rgba(215,204,200,.6) 100%),
		 linear-gradient(90deg, rgba(215,204,200,.6) 1%, rgba(215,204,200,.6) 1%, transparent 1%,
			transparent 99%, rgba(215,204,200,.6) 99%, rgba(215,204,200,.6) 100%),
		 linear-gradient(transparent, transparent 25%, rgba(215,204,200,.4) 25%, rgba(215,204,200,.4) 26%, transparent 26%,
			transparent 50%, rgba(215,204,200,.4) 50%, rgba(215,204,200,.4) 51%, transparent 51%,
			transparent 75%, rgba(215,204,200,.4) 75%, rgba(215,204,200,.4) 76%, transparent 76%, transparent 100%),
		 linear-gradient(90deg, transparent, transparent 25%, rgba(215,204,200,.4) 25%, rgba(215,204,200,.4) 26%, transparent 26%,
			transparent 50%, rgba(215,204,200,.4) 50%, rgba(215,204,200,.4) 51%, transparent 51%,
			transparent 75%, rgba(215,204,200,.4) 75%, rgba(215,204,200,.4) 76%, transparent 76%, transparent 100%);
	}
	.hero {
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 1150px;
		margin: 0 auto;
		padding: 20px 10px;
	}
	.area-mv {
		width: 55%;
		padding: 0;
	}
	.img-hero {
		width: 100%;
		margin: -18px 0 10px;
		padding: 0;
	}
	.img-benefit {
		width: 100%;
	}
	.img-herottl {
		width: 100%;
		margin: 0 0 20px;
	}
	.wrap-block-limit {
		padding: 20px 10px;
		background: #fff;
		border: 1px solid #ddd;
	}
	.block-limit {
		display: flex;
		justify-content: center;
		line-height: 1.2;
		margin: 0 auto 10px;
		background: #fff;
		color: #22a098;
	}
	.block-limit .limit {
		align-items: center;
	}
	.block-limit .date {
		margin: 0 6px;
		font-size: 1.5rem;
	}
	.block-limit .sml {
		align-self: center;
	}
	.block-timer {
		display: flex;
	}
	.block-timer .last {
		width: 60px;
		padding: 10px 0;
		background: #252525;
		color: #fff;
		text-align: center;
		align-self: stretch;
	}
	.block-timer .timer {
		width: calc(100% - 60px);
		padding: 10px;
		background: #efefef;
		font-size: 1.2rem;
		text-align: center;
	}
}
@media screen and (min-width: 1000px) {
	.wrap-hero {
		padding: 20px 0;
	}
}
/*************************
area-form
**************************/
.area-form {
	width: calc(100% - 20px);
	margin: 0 auto 2rem;
	border: 2px solid #22a098;
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	background: #f5f5f5;
}
.ttl-form {
	background: #22a098;
	text-align: center;
}
.ttl-form-img {
	width: 100%;
	max-width: 256px;
	padding: 5px 10px 3px;
}
.ttl-form-img-pc {
	display: none;
}
.inner-form {
	padding: 1rem;
}
.p-form__txt {
	line-height: 1.5;
	margin-bottom: .5rem;
	font-size: 4vw;
	text-align: center;
}
.p-form__question {
	margin-bottom: 1rem;
	color: #22a098;
	font-size: 5vw;
	font-weight: bold;
	letter-spacing: -1px;
	text-align: center;
}
.p-form__img {
	display: none;
}
@media screen and (min-width: 768px){
	.area-form {
		width: 40%;
		margin: 0;
	}
	.ttl-form {
		padding: 0 0 4px;
	}
	.ttl-form-img {
		display: none;
	}
	.ttl-form-img-pc {
		display: inline-block;
		margin: -10px auto 0;
	}
	.inner-form {
		padding: 2rem 1rem;
	}
	.p-form__txt {
		margin-top: 1rem;
		margin-bottom: 0;
		font-size: 1rem;
	}
	.p-form__question {
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 1025px){
	.inner-form {
		padding: 2rem;
	}
	.p-form__txt {
		margin-top: 2rem;
	}
	.p-form__img {
		display: block;
		width: 70%;
		margin: 1rem auto 0;
	}

}




/************************
c-cta
************************/
.c-cta {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem 1rem;
}
.c-cta__last {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem 4rem;
}
.c-cta__flow {
	width: 100%;
	padding: 0 1rem 1rem;
	text-align: center;
}
.c-cta__inner {
	width: 100%;
	margin: 0 auto;
	padding: 1rem 1rem 1.5rem;
	border: 8px solid #22a098;
	border-radius: 6px;
	background-size: 40px 40px;
	background-image: linear-gradient(rgba(215,204,200,.4) 1%, rgba(215,204,200,.4) 1%, transparent 1%, transparent 99%, rgba(215,204,200,.4) 99%, rgba(215,204,200,.4) 100%), linear-gradient(90deg, rgba(215,204,200,.4) 1%, rgba(215,204,200,.4) 1%, transparent 1%, transparent 99%, rgba(215,204,200,.4) 99%, rgba(215,204,200,.4) 100%), linear-gradient(transparent, transparent 25%, rgba(215,204,200,.4) 25%, rgba(215,204,200,.4) 26%, transparent 26%, transparent 50%, rgba(215,204,200,.4) 50%, rgba(215,204,200,.2) 51%, transparent 51%, transparent 75%, rgba(215,204,200,.2) 75%, rgba(215,204,200,.2) 76%, transparent 76%, transparent 100%), linear-gradient(90deg, transparent, transparent 25%, rgba(215,204,200,.2) 25%, rgba(215,204,200,.2) 26%, transparent 26%, transparent 50%, rgba(215,204,200,.2) 50%, rgba(215,204,200,.2) 51%, transparent 51%, transparent 75%, rgba(215,204,200,.2) 75%, rgba(215,204,200,.2) 76%, transparent 76%, transparent 100%);
}
.c-cta__img {
	display: block;
	width: 100%;
	margin: 0 auto 1rem;
}
.c-cta__flow-txt {
	display: inline-block;
	position: relative;
	padding: 0 1rem;
	text-align: center;
	font-weight: bold;
}
.c-cta__flow-txt::before {
	position: absolute;
	bottom: 6px;
	left: 0;
	width: 2px;
	height: 1.2rem;
	background: #22a098;
	transform: rotate(-25deg);
	content: '';
}
.c-cta__flow-txt::after {
	position: absolute;
	bottom: 6px;
	right: 0;
	width: 2px;
	height: 1.2rem;
	background: #22a098;
	transform: rotate(25deg);
	content: '';
}
.c-cta__flow-txt__big {
	color: #22a098;
	font-size: 1.2rem;
	font-weight: bold;
}
.c-cta__btn {
	display: block;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 4px 6px);
	transition: .6s all;
}
.c-cta__btn:hover {
	position: relative;
	top: 2px;
	filter: none;
}
.c-cta__btn-img {
	width: 100%;
}
@media screen and (min-width: 768px){
	.c-cta__inner {
		display: flex;
		align-items: center;
		justify-content: space-around;
		padding: 2rem;
	}
	.c-cta__flow {
		padding: 0 0 2rem;
	}
	.c-cta__inner .c-cta__picture {
		width: 50%;
		padding-right: 1rem;
	}
	.c-cta__btn {
		width: 50%;
	}
}
/**************************
sec-target
**************************/
.sec-target {
	background: #f2fffe;
}
.balloon {
	position: absolute;
	top: -10px;
	left: 50%;
	line-height: 1;
	margin: 0 0 0 -76px;
	padding: 4px 20px;
	border-radius: 30px;
	border: 2px solid #22a098;
	background: #fff;
	color: #333333;
	font-size: .9rem;
}
.img-target {
	width: 100%;
}
.txt-target {
	margin: 30px auto;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.balloon {
		font-size: 1.5rem;
	}
	.ttl-sec {
		font-size: 2.25rem;
	}
	.block-img-target {
		display: flex;
	}
	.img-target {
		width: 24%;
	}
	.txt-target {
		font-size: 1.125rem;
	}
	.wrap-sec {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
	}
}
/***************************
cv-sml
***************************/
.cv-sml {
	padding: 60px 10px;
}
.wrap-cv-sml {
	padding: 10px;
	border: 8px solid #22a098;
}
.wrap-cv-sml img {
	width: 100%;
}
.ttl-cv-sml {
	margin: 0 0 10px;
}
.btn-cv-sml {
	margin: 0 0 20px;
}
.btn-cv-sml img {
	border-radius: 11px;
	box-shadow:0px 0px 9px 2px #ababab;
	transition: .6s all ease;
}
.btn-cv-sml a:hover {
	box-shadow: none;
	opacity: .6;
	cursor: pointer;
}
.btn-cv-sml.qualvaBtn:hover img {
	box-shadow: none;
	opacity: .6;
	cursor: pointer;
}
@media screen and (min-width: 768px) {
	.wrap-cv-sml {
		display: flex;
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		padding: 30px 0;
	}
	.block-cv-sml {
		width: 50%;
		padding: 0 20px 0 40px;
	}
	.block-cv-sml:nth-child(2) {
		padding: 0 40px 0 20px;
	}
	.btn-cv-sml-pc .free {
		display: block;
		padding: 0;
		background: #da0013;
		color: #fff;
		font-size: 1.25rem;
		text-align: center;
	}
	.btn-cv-sml-pc .num-tel {
		display: block;
		padding: 0 0 0 50px;
		background: url(/lp/kyufukin/img/ico-tel.png) 0 19px no-repeat;
		background-size: 40px 40px;
		color: #da0013;
		font-size: 3.4rem;
	}
	.btn-cv-sml-pc .time {
		font-size: 1.25rem;
	}
}
/**************************
sec-voice
**************************/
.sec-voice {
	background: #f2fffe;
}
.wrap-voice {
	padding: 20px 10px;
}
.box-voice {
	margin: 0 0 20px;
	padding: 20px 10px;
	background: #fff;
}
.ttl-box-voice {
	padding: 0 0 20px;
	border-bottom: 1px solid #c8c8c8;
}
.ttl-box-voice img {
	width: 100%;
}
.txt-box-voice {
	padding: 10px 0 20px;
}
.txt-box-voice p {
	margin: 0 0 1rem;
	text-align: justify;
}
.txt-box-voice p:last-child {
	margin: 0;
}
.markar {
	background: linear-gradient(transparent 60%, #ffcc00 0%);
}
.caution-voice {
	margin: 20px auto;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.wrap-voice {
		display: flex;
		flex-wrap: wrap;
		padding: 20px;
	}
	.box-voice {
		width: calc(50% - 10px);
		margin: 0 10px 30px 0;
	}
	.box-voice:nth-child(2n) {
		margin: 0 0 30px 10px;
	}
}
@media screen and (min-width: 1020px) {
	.wrap-voice {
		padding: 20px 0;
	}
	.box-voice {
		width: calc(50% - 20px);
		margin: 0 20px 30px 0;
	}
	.box-voice:nth-child(2n) {
		margin: 0 0 30px 20px;
	}
}
/**************************
sec-trouble
***************************/
.wrap-trouble {
	position: relative;
	background: #8582b5;
	text-align: center;
}
.img-trouble {
	width: 100%;
	max-width: 748px;
	margin: 0 auto;
}
.wrap-trouble::after {
	position: absolute;
	bottom: -29px;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 30px 0 30px;
	border-color: #8582b5 transparent transparent transparent;
	content: '';
	margin-left: -30px;
}
.area-relief {
	padding: 10px;
	background: #f0f2e0;
}
.wrap-relief img {
	width: 100%;
}
.box-relief {
	padding: 20px;
	background: #fff;
	font-size: 5vw;
}
.bold-relief {
	color: #22a098;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.wrap-trouble {
		padding: 70px 0;
	}
	.area-relief {
		padding: 0;
	}
	.wrap-relief {
		padding: 70px 0 0;
	}
}
/***********************
point
***********************/
.sec-point {
	background: #22a098;
}
.sec-area-point {
	background: #f2fffe;
}
.area-point-ttl {
	padding: 30px 10px;
}
.ttl-box-point img {
	width: 100%;
	max-width: 550px;
	margin: 0 auto 20px;
}
.list-point li {
	margin: 0 0 10px;
	background: #fff;
}
.list-point li a {
	display: block;
	padding: 10px;
}
.ico-point {
	display: block;
	margin-right: 5px;
	padding: 4px 10px;
	border-radius: 20px;
	background: #fc0;
	font-size: .63rem;
	text-align: center;
}
@media screen and (min-width: 375px) {
	.ico-point {
		display: inline-block;
	}
}
.area-point {
	padding: 30px 10px;

}
.box-point {
	margin: 0 0 20px;
	padding: 20px 0 0 0;
	box-shadow: 0px 0px 4px 3px #ddd;
	background: #fff;
}
.ico-box-point {
	display: block;
	margin: 0 auto 20px;
	width: 100%;
	max-width: 110px;
}
.ttl-box-point {
	display: block;
	padding: 0 20px;
	width: 100%;
	text-align: center;
}
.wrap-img-box-point {
	width: 100%;
}
.img-box-point {
	width: 100%;
}
.box-point3 {
	background: url(/lp/kyufukin/img/bg-point03.jpg) left 0 bottom 0 no-repeat;
	background-size: cover;
}
.box-point3-results {
	padding: 0 10px 10px;
}
.wrap-box-point3 {
	padding: 10px;
	background: hsla( 0, 0%, 0%, 0.6);
}
.group-point3 {
	margin: 0;
}
.group-point3 .ttl {
	padding: 0 10px;
	background: #fff;
	font-size: .9rem;
	vertical-align: middle;
}
.group-point3 .num {
	color: #fc0;
	font-size: 8vw;
	font-weight: bold;
	vertical-align: middle;
}
.group-point3 .unit {
	padding: 0 0 0 4px;
	color: #fc0;
	vertical-align: middle;
}
.sml-ttl-performance {
	display: block;
	margin: 0 auto;
	color: #fff;
	text-align: center;
}
@media screen and (min-width: 376px) {
	.group-point3 {
		text-align: center;
	}
}
@media screen and (min-width: 768px) {
	.ttl-box-point .only-pc {
		display: block;
		margin: 0 auto;
		max-width: 630px;
		padding: 60px 0;
	}
	.list-point {
		display: flex;
		flex-wrap: wrap;
	}
	.list-point li {
		display: flex;
		width: calc(50% - 5px);
		margin: 0 5px 10px 0;
		padding: 20px 10px;
	}
	.list-point li:nth-child(2n) {
		margin: 0 0 10px 5px;
	}
	.ico-point {
		font-size: .875rem;
	}
	.list-point li a {
		font-size: 1.3rem;
	}
	.wrap-img-box-point {
		display: inline-block;
		position: relative;
		width: 50%;
	}
	.box-point:nth-child(2n) .wrap-img-box-point::after {
		left: -1px;
		background: -moz-linear-gradient(right, #fff, transparent);
		background: -webkit-linear-gradient(right, #fff, transparent);
		background: linear-gradient(to right, #fff, transparent);
	}
	.group-point3 {
		text-align: left;
	}
	.wrap-box-point3 {
		margin: 20px;
	}
	.box-point {
		display: flex;
		flex-direction: row-reverse;
		padding: 0;
		background: #fff;
	}
	.box-point:nth-child(2n) {
		flex-direction: row;
	}
	.box-point3 {
		background: url(/lp/kyufukin/img/bg-point03-pc.jpg) 0 0 no-repeat;
		background-size: cover;
	}
	.box-point3-results {
		width: calc(50% - 20px);
		padding: 0;
	}
	.block-txt-point {
		width: 50%;
		padding: 30px 20px;
	}
	.ico-box-point {
		margin: 0 auto 10px;
	}
	.group-point3 .ttl {
		font-size: 1.1875rem;
	}
	.group-point3 .num {
		font-size: 5vw;
	}
	.group-point3 .unit {
		font-size: 1.3125rem;
	}
	.sml-ttl-performance {
		font-size: .75rem;
	}
}
@media screen and (min-width: 1000px) {
	.group-point3 .num {
		font-size: 3rem;
	}
}
/********************
area-flow
*********************/
.wrap-box-flow {
	padding: 40px 10px;
}
.box-flow {
	position: relative;
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
	border: 4px solid #22a098;
}
.box-flow::after {
	display: inline-block;
	position: absolute;
	bottom: -34px;
	left: 50%;
	width: 26px;
	height: 30px;
	margin-left: -13px;
	background-image: url(/lp/kyufukin/img/ico-arrow-flow.png);
	background-size: contain;
	content: "";
}
.box-flow:last-child::after {
	background: none;
}
.box-flow img {
	width: 100%;
}
.flow001 {
	position: relative;
}
.box-flow img.ttl-flow001 {
	position: relative;
	top: -14px;
	left: -5px;
	width: calc(100% + 10px);
	margin: 0 0 10px;
}
.flow001 .btn-cv-sml {
	position: relative;
	top: 0;
	padding: 0 10px;
}
.ttl-box-flow {
	width: calc(100% - 20px);
	margin: 0 auto;
	padding: 10px 0 10px;
	border-bottom: 2px solid #22a098;
	font-size: 1.5625rem;
	font-weight: bold;
}
.ttl-box-flow .num {
	margin: 0 10px 0 0;
	padding: 0 10px;
	background: #22a098;
	color: #fff;
	font-size: 1.4rem;
}
.box-flow p {
	padding: 10px;
}
@media screen and (min-width: 768px) {
	.box-flow img.ttl-flow001 {
		left: 50%;
		width: 710px;
		margin-left: -355px;
	}
	.box-flow .btn-cv-sml .only-pc {
		width: 100%;
		max-width: 815px;
		margin: 0 auto 50px;
		box-shadow: none;
	}
	.flow002,
	.flow003,
	.flow004,
	.flow005 {
		display: flex;
	}
	.box-flow img.img-flow-pc {
		width: 50%;
		max-width: 460px;
		height: 100%;
	}
	.block-box-flow {
		width: 50%;
		padding: 40px 30px;
	}
}
/************************
sec-fee
**************************/
.sec-fee {
	background: #f2fffe;
}
.wrap-fee {
	padding: 40px 10px;
}
.sec-fee {
	text-align: center;
}
.sec-fee img {
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
}
.img-fee001 {
	display: block;
	padding: 0 10px 40px;
}
.box-fee002 {
	margin: 0 0 20px;
	padding: 10px;
	border: 2px solid #22a098;
	background: #fff;
}
.box-fee003 {
	border: 1px solid #22a098;
	background: #fff;
}
.ttl-box-fee003 {
	padding: 4px 0;
	background: #22a098;
	color: #fff;
	text-align: center;
}
.wrap-box-fee003 {
	padding: 10px;
}
.wrap-box-fee003 p {
	margin: 10px 0;
	padding: 0 0 0 1em;
	font-size: .625rem;
	text-align: left;
	text-indent: -1em;
}
.wrap-box-fee003 p::before {
	content: '※';
}
.txt-last-cv p {
	padding: 40px 10px 0 10px;
	font-size: 1.25rem;
	text-align: center;
}
.txt-bold {
	color: #22a098;
}
.img-last-cv {
	display: block;
	width: calc(100% - 2rem);
	margin: 1rem auto;
}
.last-cv-sml {
	padding: 0 10px 20px;
}
@media screen and (min-width: 768px) {
	.box-img-fee {
		display: flex;
	}
	.sec-fee .img-fee001 {
		width: 40%;
		height: 100%;
		padding: 20px;
	}
	.box-fee002 {
		display: flex;
		align-items: center;
		width: 50%;
		padding: 20px;
	}
	.ttl-box-fee003 {
		font-size: 1.75rem;
	}
	.wrap-box-fee003 {
		padding: 30px;
	}
	.wrap-box-fee003 p {
		margin: 30px 0 0;
		font-size: 1rem;
	}
	.txt-last-cv {
		display: flex;
	}
	.txt-last-cv p {
		padding: 80px 20px 0;
	}
	.img-last-cv {
		width: 50%;
		height: 100%;
		padding: 40px 0 0;
	}
}
/**************************
gototop
**************************/
.gototop {
	padding: 20px 0;
	background: #68390e;
	color: #fff;
	text-align: center;
}
.gototop a {
	display: block;
}
.txt-gototop {
	padding: 0 30px;
	background: url(/lp/kyufukin/img/ico-arrow-top.png) right 0 bottom 0 no-repeat;
	background-size: 14px 14px;
}
@media screen and (min-width: 768px) {
	.gototop {
		padding: 10px 0;
	}
}
/**************************
wrap-footer
**************************/
footer {
	background: #000;
	color: #fff;
	font-size: .625em;
}
.wrap-footer {
	margin: 0 auto;
	padding: 1rem 1rem 100px;
}
.c-copyright__logo {
	display: block;
	width: 260px;
	margin-bottom: 1rem;
}
.c-copyright__logo img {
	width: 100%;
}
.c-copyright__txt-lawyers-association {
	margin-bottom: 1em;
}
.c-copyright__txt-announcement {
	display: none;
}
.c-area__performance {
	margin-bottom: 1em;
}
.c-copyright__txt-privacypolicy {
	margin-bottom: 1em;
}
.c-copyright__txt-privacypolicy a:hover {
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	footer {
		padding-bottom: 80px;
	}
	.wrap-footer {
		padding: 10px;
	}
	address {
		text-align: right;
	}
}
/**************************
floating-footer
**************************/
.floating {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	max-height: 100px;
	background: rgba(255, 255, 255, 0.4);
}
.floating a {
	display: block;
	text-decoration: none;
	opacity: 1;
	transition: .6s all ease;
}
.floating a:hover {
	opacity: .6;
}



.floating-footer {
}
.floating-footer img {
	display: block;
	width: calc(100% - 10px);
	max-width: 400px;
	margin: 0 auto;
}
.reflection-img{
	overflow: hidden;
}
.reflection {
	position: absolute;
	top: -180px;
	left: 0;
	height: 100%;
	width: 30px;
	background-color: #fff;
	opacity: 0;
	filter: blur(0.5px);
		transform: rotate(45deg);
		animation: reflection 1.5s ease-in-out infinite;
}
@keyframes reflection {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
	0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
	0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@media screen and (min-width: 768px) {
	.floating-footer { 
		display: none;
	}
}



/**************************
responsive
**************************/
.only-320 {
	display: block;
}
.only-sp {
	display: block;
}
.only-pc {
	display: none;
}
@media screen and (min-width: 375px) {
	.only-320 {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	.only-sp {
		display: none;
	}
	.only-pc {
		display: block;
	}
}


/*************************
フォーム上注意書き2026/3/27追加
**************************/
.c-form-notice{
	margin: 0 auto 1rem;
	padding: 0.75rem;
	border-radius: 4px;
}
.c-form-notice--bg{
	background: #fff;
}
.c-form-notice__ttl{
	text-align: center;
	font-size: 0.875rem;
	margin: 0 0 0.5rem;
	color: #4f4f4f;
}
.c-form-notice__txt{
	font-size: 0.875rem;
	line-height: 1.7;
	color: #4f4f4f;
}