@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--main: #fb4f13;
}

html {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

@media screen and (min-width:968px) {

	/* PC 769px以上 */
	html {
		font-size: 18px;
	}
}

@media screen and (max-width:480px) {

	/* スマートフォン 480px以下 */
	html {
		font-size: 14px;
	}
}

h2 {
	font-size: 1.65rem;
}

p {
	font-size: 1rem;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-feature-settings: "palt"1;
	font-feature-settings: "palt"1;
	font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	min-height: 100vh;
	word-wrap: break-word;
	z-index: 0;
	letter-spacing: .04em;
	line-height: 1.75;
	overflow: hidden;
}


article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
}

a,
a::after,
a::before {
	color: inherit;
	outline: none;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
}

video {
	max-width: 100%;
	height: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
}


blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

input,
textarea,
select {
	max-width: 100%;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/*-----------------------
/*clearfix
---------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

/* For IE 6/7 only */
.cf {
	*zoom: 1;
}




/*ローディング*/
.c-loading {
	background: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	visibility: visible;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all 0.3s ease 0s;
}

[data-loading=true] .c-loading {
	visibility: hidden;
}

.c-loading__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/*ラジオボタン*/
.c-radio,
[type=radio] {
	display: none
}

.c-radio + span,
[type=radio] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 1em 0 1.4em;
	position: relative
}

.c-radio + span::before,
[type=radio] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 50%;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em
}

.c-radio + span::after,
[type=radio] + span::after {
	-webkit-transform: translateY(-50%);
	background: #616161;
	border: 1px solid #9e9e9e;
	border-radius: 50%;
	box-shadow: 0 0 0 .1em #fff inset;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease 0s;
	width: 1em
}

.c-radio:checked + span::before,
:checked[type=radio] + span::before {
	border: 1px solid #9e9e9e
}

.c-radio:checked + span::after,
:checked[type=radio] + span::after {
	opacity: 1
}

/*チェックボックス*/
.c-checkbox,
[type=checkbox] {
	display: none
}

.c-checkbox + span,
[type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 1em 0 1.4em;
	position: relative
}

.c-checkbox + span::before,
[type=checkbox] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 2px;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em
}

.c-checkbox + span::after,
[type=checkbox] + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #616161;
	border-left: 3px solid #616161;
	content: "";
	display: block;
	height: .6em;
	left: 0;
	margin-top: -.2em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s ease 0s;
	width: 1em
}

.c-checkbox:checked + span::before,
:checked[type=checkbox] + span::before {
	border: 1px solid #9e9e9e
}

.c-checkbox:checked + span::after,
:checked[type=checkbox] + span::after {
	opacity: 1
}

/*セレクトボックス*/
.c-select,
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url(./img/arrow-bottom-w.png);
	background-position: center right .2em;
	background-repeat: no-repeat;
	background-size: 16px auto;
	border: 1px solid #bdbdbd;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1em;
	padding: .4em 2.4em .4em .8em;
	width: auto
}

.c-select::-ms-expand,
select::-ms-expand {
	display: none
}

.c-select:focus,
select:focus {
	border: 1px solid #9e9e9e;
	box-shadow: none;
	outline: 0
}

.c-select[multiple],
select[multiple] {
	background-image: none;
	height: 100px;
	padding: 0
}

.c-select[multiple] option,
select[multiple] option {
	padding: .4em 1.2em .4em .4em
}

/*アコーディオン*/
.c-accordion__title {
	cursor: pointer;
	padding: .4em .8em
}

.c-accordion__content {
	display: none;
	padding: .4em .8em
}

.c-accordion__title--arrow {
	padding-right: 2.4em;
	position: relative
}

.c-accordion__title--arrow::after {
	-webkit-transform: translateY(-50%);
	background: transparent url(./img/arrow-bottom-w.png) no-repeat top center/cover;
	content: "";
	height: .8em;
	position: absolute;
	right: .4em;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s ease 0s;
	width: .8em
}

.is-checked .c-accordion__title--arrow::after {
	-webkit-transform: translateY(-50%) rotateX(180deg);
	transform: translateY(-50%) rotateX(180deg)
}

.c-floating {
	bottom: 1em;
	opacity: 0;
	position: fixed;
	right: 1em;
	transition: all .3s ease 0s;
	visibility: hidden;
}

[data-scroll=true] .c-floating {
	opacity: 1;
	visibility: visible;
}

.c-icon,
.c-icon-arrow-bottom,
.c-icon-arrow-left,
.c-icon-arrow-right,
.c-icon-arrow-top,
.c-icon-check,
.c-icon-circle,
.c-icon-cross,
.c-icon-glass,
.c-icon-hamburger,
.c-icon-rhombus,
.c-icon-square,
.c-icon-triangle {
	display: inline-block;
	font-size: 50px;
	height: 50px;
	overflow: hidden;
	position: relative;
	width: 50px;
}

.c-icon-arrow-top > span {
	-webkit-transform: rotate(-45deg);
	border-right: 0.16em solid #757575;
	border-top: 0.16em solid #757575;
	display: block;
	height: 56%;
	left: 50%;
	margin: -14% 0 0 -28%;
	position: absolute;
	top: 50%;
	transform: rotate(-45deg);
	width: 56%;
}

/*-----------------------
layout レイアウト
-----------------------*/
.l-inner {
	width: 1180px;
	margin: 0 auto;
}

.l-row {
	display: flex;
	flex-wrap: wrap;
}


/*-----------------------
Utility
-----------------------*/
.sp {
	display: none;
}

@media screen and (max-width:968px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}
}

.bold {
	font-weight: bold;
}

.text-left {
	text-align: left
}

.text-center {
	text-align: center
}

.text-right {
	text-align: right
}

.txt-or {
	color: var(--main);
}

.fs-s {
	font-size: 80%
}

.fs-l {
	font-size: 140%
}

.fukidashi {
	text-align: center;
}

.fukidashi span {
	color: #fff;
	padding: 10px 30px;
	border-radius: 3em;
	background: var(--main);
	display: inline-block;
	font-weight: bold;
	position: relative
}

.fukidashi span:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid var(--main);
}

.main-ttl {
	font-size: 52px;
	text-align: center;
	margin: 36px auto 72px;
	position: relative;
}

/*-----------------------
header
-----------------------*/
header {
	position: absolute;
	z-index: 2;
	top: 20px;
	left: 0;
	width: 100%;
	transition: 0.3s;
}

.scroll-nav header {
	position: fixed;
	background: #fcf9f5;
	top: 0;
	left: 0;
	z-index: 3;
	padding: 10px;
	transition: 0.3s;
}

header .inner {
	justify-content: space-between;
	width: 1280px;
	margin: 0 auto;
}


.logo-area {
	width: 432px;
	align-items: center;
}

.logo-area .logo {
	max-width: 220px;
	margin-right: 8px
}

.logo-area p {
	font-size: 12px
}

.cta-area {
	width: calc(100% - 432px);
	justify-content: flex-end;
	align-items: center;
}
header .cta-area{
	align-items: flex-end
}
header .ctabtn {
	margin-right: 10px;
}
header .ctabtn._form,
header .ctabtn._line{
	max-width: 140px;
}
header .ctabtn._estimate2{
	max-width: 228px;
}
header .ctabtn._phone{
	max-width: 200px;
}
header .ctabtn._form,
header .ctabtn._line,
header .ctabtn._estimate2{
	display: none;
	filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
}

.scroll-nav header .ctabtn._form,
.scroll-nav header .ctabtn._line,
.scroll-nav header .ctabtn._estimate2{
	display: block;
}
footer .ctabtn._phone {
    text-align: center;
    margin-bottom: 40px;
}

/*-----------------------
mv
-----------------------*/

#mv {
	background-image: url(../images/bg-wh.svg), url(../images/bg-home.svg), url(../images/bg1.gif);
	background-repeat: no-repeat, no-repeat, repeat;
	background-size: contain, cover, auto;
	background-position: bottom, 0 200px, bottom;
	padding: 130px 0 200px;
}

.main-copy {
	text-align: center;
	font-size: 52px;
	margin-bottom: 10px;
	line-height: 1.4
}

#mv .inner {
	max-width: 1480px;
	margin: 0 auto;
	width: 100%;
	padding: 0 3%;
	align-items: center;
}

@media screen and (max-width:1180px) {
	#mv .inner {
		width: 1180px;
	}
}

.mv_l {
	width: 55%;
	margin-top: -20px
}

.mv_r {
	width: 45%;
	margin-bottom: -20px;
	margin-top: -100px
}

.mv-l_img {
	margin-bottom: 20px;
	text-align: center;
}

.ctabtn-area2 {
	justify-content: center;
}

.ctabtn-area2 > div {
	margin: 0 4px;
	width: 46%;
}

/*-----------------------
reason
-----------------------*/
#reason {
	margin-top: -160px
}

.reasonlist {
	justify-content: space-between;
	margin-bottom: 80px
}

.reasonlist li:nth-child(-n+3) {
	width: calc(100% / 3 - 40px);
	margin-bottom: 80px
}

.reasonlist li:nth-child(n+4) {
	width: calc(100% / 5 - 20px);

}

.reasonlist li .img {
	position: relative;
	margin-bottom: 16px
}

.reasonlist li .img > img {
	border-radius: 10px
}

.reasonlist li .img .num {
	position: absolute;
	top: -30px;
	left: 10px
}

.reasonlist li strong {
	background: #fffc06;
}

/*-----------------------
hikaku
-----------------------*/
#hikaku {
	background: url(../images/bg1.gif);
	padding: 100px 0;
}

#hikaku .fukidashi {
	margin-bottom: 40px
}

#hikaku .main-ttl {
	background: linear-gradient(transparent 60%, #fcdb93 60%);
	display: inline;
}

.hikakubox {
	background: #fff9eb;
	padding: 40px;
	text-align: center;
	margin: 50px auto 80px;
	border-radius: 50px;
	border: 4px solid var(--main);
	display: table;
	position: relative
}

.hikakubox:before,
.hikakubox:after {
	position: absolute;
	content: '';
	left: 50%;
	transform: translateX(-50%);
	bottom: -2em;
	border-top: 2em solid var(--main);
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
}

.hikakubox:after {
	bottom: calc(7px - 2em);
	border-top: solid 2em #fff9eb;
}

.line-ttl {
	position: relative;
	text-align: center;
	font-weight: bold;
	line-height: 1.3;
	font-size: 42px
}

.line-ttl span {
	font-size: 60px;
}

.txt-dot span {
	position: relative;
	display: inline-block;
}

.txt-dot span::before {
	background: var(--main);
	border-radius: 10px;
	content: "";
	height: 10px;
	width: 10px;
	position: absolute;
	top: -9px;
	left: 0.4em;
}

.line-ttl:before,
.line-ttl:after {
	position: relative;
	display: inline-block;
	content: "";
	background: var(--main);
	width: 4px;
	height: 2em;
	margin: 0 .75em;
	margin-top: -.2em;
	vertical-align: middle;
}

.line-ttl:before {
	transform: rotate(-45deg);
}

.line-ttl:after {
	transform: rotate(45deg);
}

.himitsu {
	justify-content: center;
	align-items: end;
	margin-bottom: 30px
}

.himitsu > div {
	width: 48%;
	margin: 0 1%
}

/*-----------------------
message
-----------------------*/
#message {
	padding: 80px 0;
	background: #fff9eb
}

#message > .l-inner > div {
	width: 50%;
}

#message .img img {
	border-radius: 10px
}

#message .txt {
	background: url(../images/miyagi.png)no-repeat;
	background-position: top right;
	padding: 50px 0 0 3%
}

#message .ttl {
	font-size: 32px;
	line-height: 1.4;
	margin-bottom: 1.65em
}

#message .message-txt {
	line-height: 2.2;
	margin-bottom: 1em
}

/*-----------------------
flow
-----------------------*/

#flow {
	background: url(../images/bg2.gif);
	padding: 100px 0;
}

.flow-list {
	max-width: 880px;
	margin: 0 auto;
}

.flow-list li {
	background: #fff9eb;
	padding: 16px 24px;
	border-radius: 10px;
	margin-bottom: 10px;
	align-items: center;
	position: relative;
}

.flow-list li .num {
	margin-top: 10px;
	margin-bottom: -10px;
	position: relative;
	z-index: 1
}

.bottom-line {
	position: absolute;
	bottom: -24px;
	left: 58px;
	width: 2px;
	height: 40px;
	background: var(--main);
	z-index: 1;
}

.flow-list li .num {
	width: 90px;
}

.flow-list li .num span {
	color: var(--main);
	position: relative;
	font-size: 50px;
	text-align: center;
	letter-spacing: -2px;
	font-weight: 700;
}

.flow-list li .num :before {
	content: 'STEP';
	position: absolute;
	top: -26px;
	left: 8px;
	font-size: 16px;
	letter-spacing: 1px
}

.flow-list li .txt {
	width: calc(100% - 100px);
	align-items: center;
}

.flow-list li dt {
	padding: 10px;
	width: 240px;
	text-align: center;
	font-weight: 600;
	font-size: 20px;
}

.flow-list li dd {
	width: calc(100% - 240px);
	padding: 10px 10px 10px 30px;
	border-left: 4px dotted var(--main);
}

.flow-list li dd a {
	color: var(--main);
	text-decoration: underline;
	font-weight: 700
}

/*-----------------------
work
-----------------------*/
#work {
	padding: 0 0 80px;
}

#work .main-ttl:after {
	content: '';
	width: 100px;
	height: 8px;
	background: #ededed;
	border-radius: 10px;
	position: absolute;
	bottom: -30px;
	left: calc(50% - 50px);
}

.worl-list {
	justify-content: space-between;
	column-gap: 8px;
	grid-row-gap: 10px
}

.worl-list li {
	width: calc(100% / 3 - 8px)
}

/*-----------------------
bnr
-----------------------*/
#bnr {
	background: url(../images/bg3.gif);
	padding: 100px 0;
}

#bnr .fukidashi span {
	background: #fff;
	color: var(--main);
}

#bnr .fukidashi span:before {
	border-top: 15px solid #fff;
}

#bnr .main-ttl {
	color: #fff;
}

.tokuten {
	background: #fff;
	border: 3px solid #000;
	border-radius: 10px;
	padding: 40px;
	max-width: 1005px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
}

.tokuten .txt {
	font-size: 32px;
}

.tokuten .txt .txt-line {
	background: #fffc06;
}

/*-----------------------
service
-----------------------*/
#service {
	background: url(../images/bg1.gif);
	padding: 100px 0;
	font-family: serif;
}

#service .main-ttl {
	margin-bottom: 40px
}

#service .read {
	text-align: center;
	margin-bottom: 2em
}

.service-list {
	border: 1px solid #000;
	border-radius: 10px;
	background: #fff;
}

.service-list > div {
	width: 50%;
	align-items: center;
}

.service-list > div > div {
	width: 50%;
}

.service-list .txt {
	padding: 0 10px
}

.service-list .txt p {
	font-size: 32px;
}

.service-list ._fuyouhin,
.service-list ._fuyouhin .img img {
	border-radius: 10px 0 0px 10px;
}

/*-----------------------
form
-----------------------*/
#form {
	background: #fcf9f5;
	padding: 100px 0;
}

#form .main-ttl:after {
	content: '';
	width: 100px;
	height: 8px;
	background: #ededed;
	border-radius: 10px;
	position: absolute;
	bottom: -30px;
	left: calc(50% - 50px);
}

.contact-form {
	justify-content: center;
	max-width: 880px;
	margin: 0 auto;
}

.contact-form dt {
	width: 220px;
	text-align: center;
}

.contact-form dt sup {
	background: #ff0000;
	color: #fff;
	font-size: 13px;
	border-radius: 5px;
	padding: 4px 8px;
	font-weight: 700;
	line-height: 1;
	display: inline-block;
}

.contact-form dd {
	width: calc(100% - 220px);
	margin-bottom: 15px
}

.contact-form dd span {
	font-size: 14px;
	line-height: 1.4;
	display: inline-block;
	margin: 10px 0 0;
}

.contact-form dd input,
.contact-form dd textarea {
	width: 100%;
	padding: 16px;
	border-radius: 10px;
	font-size: 18px;
	border: 1px solid #bdbdbd;
	background: #fff;
}

input[type="submit"] {
	background: #5babc3;
	color: #fff;
	padding: 1em 4em;
	font-size: 18px;
	font-weight: 700
}

input[type="reset"] {
	color: #000;
	font-size: 18px;
	font-weight: 700
}

footer {
	background: url(../images/bg1.gif);
	padding: 60px 0 30px;
}

.footer-logo {
	width: 255px;
	margin: 0 auto 20px;
}

footer .addr {
	text-align: center;
	margin-bottom: 3em;
	font-size: 14px
}

footer .cta-area {
	justify-content: center;
	width: 100%;
	margin-bottom: 50px;
	align-items: flex-end
}

footer .ctabtn {
	margin: 0 10px
}

footer .link {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2em
}

footer small {
	margin: 0 auto;
	font-size: 10px;
	display: block;
	text-align: center;
}

.thanks_page {
	background-image:url(../images/bg1.gif);
    background-repeat:repeat;
    background-size:auto;
}

.thanks_page .ttl {
	text-align: center;
	margin: 0 auto 1em;
	font-size: 27px;
}

.thanks_page header {
	position: initial;
	z-index: 2;
	top: 20px;
	left: 0;
	width: 100%;
	transition: 0.3s;
	padding: 18px;
	background: #fff9eb;
}
.thanks_contents {
	align-items: center;
	justify-content: space-between;
	margin-top: 100px
}

.thanks_contents .img {
	width: 40%
}

.thanks_message {
	justify-content: center;
	align-items: center;
	background: #fff;
	padding: 60px 30px;
	width: 55%;
	border-radius: 10px
}

.thanks_message p {
	margin-bottom: 2em
}

.thanks_message a {
	text-align: left;
	margin: 0 auto 0 0;
	padding: .6em;
	border: 1px solid #000;
}

@media screen and (max-width:968px) {

	#mv .inner,
	.l-inner,
	header .inner,
	.mv_l,
	#message > .l-inner > div,
	.flow-list li dt,
	.flow-list li dd,
	.logo-area,
	.service-list > div,
	.contact-form dd,
	.contact-form dt {
		width: 100%;
	}

	#reason,
	.l-inner {
		padding-right: 5%;
		padding-left: 5%;
	}

	.main-copy {
		font-size: 28px
	}

	#message .ttl,
	.main-ttl,
	.line-ttl {
		font-size: 23px;
	}

	.line-ttl span {
		font-size: 36px
	}

	.main-ttl {
		margin: 28px auto 22px;
		font-weight: 700
	}

	.reasonlist {
		margin-bottom: 40px
	}

	#hikaku .l-inner {
		padding-right: 0;
		padding-left: 0;
	}

	#hikaku,
	#message,
	#flow,
	#bnr,
	#service,
	#form {
		padding: 40px 0;
	}
	#work{
		padding: 0 ;
	}
	header {
		position: initial;
		padding: 10px;
		background: #fcf9f5
	}

	.logo-area p {
		font-size: 12px;
		margin-top: 9px;
	}

	.logo-area .logo {
		max-width: 140px;
	}

	#mv {
		padding-top: 30px;
		padding-bottom: 50px;
		background-size: contain, 100%, auto;
		background-position: bottom, bottom, bottom;
	}

	.mv_l {
		margin-top: 0;
	}

	.mv_r {
		margin-top: 0;
		width: 100%
	}

	#reason {
		margin-top: 30px;
	}

	#reason .main-ttl {
		font-size: 22px;
		margin-bottom: 70px
	}

	.reasonlist li:nth-child(-n+3),
	.reasonlist li:nth-child(n+4) {
		width: 49%;
		margin: 0 auto 30px
	}

	.reasonlist li .img > img {
		aspect-ratio: 1.3/1;
		object-fit: cover;
	}

	.reasonlist li .img .num {
		position: absolute;
		top: -12px;
		left: 10px;
		width: 58px;
	}

	.hikakubox {
		padding: 10px;
		text-align: center;
		margin: 20px auto 30px;
		border-radius: 10px;
	}

	.flow-list li .num {
		width: 45px;
	}

	.flow-list li {
		padding-right: 8px;
		padding-left: 8px;
		padding-bottom: 18px
	}

	.flow-list li .num span {
		font-size: 30px
	}

	.flow-list li .txt {
		width: calc(100% - 45px);
	}

	.bottom-line {
		left: 50%
	}

	.flow-list li dt {
		padding: 0 0 0 10px;
		text-align: left;
		font-size: 18px
	}

	.flow-list li dd {
		border-left: none;
		padding-left: 10px;
		padding-top: 16px;
		padding-top: 5px
	}

	.flow-list li .num :before {
		font-size: 10px;
		top: -16px;
		left: 6px;
	}

	#message .ttl {
		margin-bottom: .8em
	}

	.line-ttl {
		text-align: center;
		line-height: 1.7;
		letter-spacing: 2px
	}

	.line-ttl:before,
	.line-ttl:after {
		display: none;
	}

	.txt-dot span::before {
		top: -2px
	}

	.himitsu {
		align-items: center;
		flex-direction: column;
		margin-bottom: 60px
	}

	.himitsu:last-child {
		margin-bottom: 0;
	}

	.himitsu > div {
		width: 90%;
	}

	.himitsu .other {
		margin-bottom: 30px;
		position: relative;
	}

	.himitsu .other:after {
		content: '';
		width: 0;
		height: 0;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 18px solid var(--main);
		position: absolute;
		bottom: -24px;
		left: calc(50% - 20px);
	}

	#message > .l-inner > div.img {
		width: 70%;
		margin: 0 auto
	}

	#message .txt {

		background-position: top 120px right;
		background-size: 70%;
	}

	.worl-list li {
		width: 100%;
		margin: 0 auto 20px;
		text-align: center;
	}
	#work .l-inner{
		padding: 0
	}
	#work .main-ttl,
	#form .main-ttl {
		margin-bottom: 60px
	}

	.tokuten {
		justify-content: center;
	}

	.tokuten .txt {
		font-size: 16px
	}

	.service-list > div > div.img {
		width: 40%;
	}

	.service-list > div > div.txt {
		width: 60%;
	}

	.service-list .txt span {
		width: 30px
	}

	.service-list .txt p {
		font-size: 21px;
	}

	.service-list ._fuyouhin {
		border-bottom: 1px solid #000
	}

	.service-list ._fuyouhin .img img {
		border-radius: 11px 0 0px 0;
	}

	.service-list ._kottou .img img {
		border-radius: 0 0 0 11px;
	}

	.ctabtn-area2 > div {
		margin: 0 4px 10px;
		width: 73%;
		max-width: 320px;
	}

	.contact-form dt {
		text-align: left;
	}

	.contact-form dd span {
		font-size: 12px;

	}

	.reasonlist li strong {
		background: #fffecf;
	}

	footer {
		padding-bottom: 160px
	}

	.footer-logo {
		width: 170px;
	}

	footer .ctabtn {
		margin: 0 4px 10px;
		width: 73%;
		max-width: 320px;
	}

	footer .ctabtn._form {
		margin-bottom: 40px
	}

	header .cta-area {
		display: none
	}

	.scroll-nav header {
		position: absolute;
	}

	.floating-cta {
		opacity: 0;
		visibility: hidden;
		position: fixed;
		bottom: 10px;
		width: 96%;
		left: 2%;
		background: #fcf9f5;
		text-align: center;
		border-radius: 10px;
		z-index: 100;
		transition: 0.3s;
	}

	.scroll-nav .floating-cta {
		opacity: 1;
		visibility: visible;
	}

	.floating-cta .ttl {
		background: var(--main);
		border-radius: 10px 10px 0 0;
		color: #fff;
		font-weight: 700;
	}

	.floating-cta .btn {
		justify-content: center;
		margin: 8px 0.5%;
	}

	.floating-cta .btn a {
		margin: 0 1%;
		padding: 5px;
		color: #fff;
		border-radius: 3em;
		font-weight: 700;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.floating-cta .btn a img {
		width: 22px;
		margin-right: 2px
	}

	.floating-cta .btn a._line {
		background: #39c755;
		width: 25%;
	}

	.floating-cta .btn a._form {
		background: #5babc3;
		width: 25%;
	}
.floating-cta .btn a._estimate {
		background: #f88613;
	width: 40%;
	line-height: 1.3;
	text-align: left
	}
	.floating-cta__phone {
		width: 96%;
		margin: 8px auto;
	}

	.floating-cta__phone a {
		padding: 8px;
		border: 2px solid #b3b3b3;
		font-size: 15px;
		font-weight: 800;
		width: 100%;
		border-radius: 10px;
		background: #fff;
	}

	.floating-cta__phone a span {
		font-size: 10px;
	}
.thanks_page {
	background-image:url(../images/bg-home.svg), url(../images/bg1.gif);
    background-repeat: no-repeat, repeat;
    background-size: 100%, auto;
    background-position: bottom;
}
	.thanks_contents {
		flex-direction: column;

	}

	.thanks_message {
		width: 100%;
		margin-bottom: 20px
	}

	.thanks_contents .img {
		order: 2;
		width: 100%;
	}

	.thanks_contents {
		padding-bottom: 0;
		margin-top: 50px
	}

	.thanks_message a {
		margin: 0 auto;
	}
	.thanks_page .ttl{
		font-size: 20px
	}
	.ctabtn._phone{
		text-align: center;
	}
	.fukidashi span{
		font-size: 20px
	}
	
}