@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  header
* --------------------------------------------------------------------------------------------------*/
body {
	--header-height: 10rem!important;
}
header#header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	position: fixed;
	height: var(--header-height);
}
#header .header-inner {
	padding: 15px 8px;
}
#header .header-inner .header-contact p:last-of-type {
	margin-left: 10px;
}

#header .header-contact .tel_switch {
	position: relative;
}

#header .header-contact .tel_switch::after {
	background: url("../img/header_tel_text.png") no-repeat;
	background-size: cover;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 66px;
	width: 268px;
	opacity: 0;
	pointer-events: none;
	height: 0;
	transition: 0.3s;
}
#header .header-contact .tel_switch:hover::after {
	opacity: 1;
	height: 119px;
}

/* ----------------------------------------------------------------------------------------------------
*  float
* --------------------------------------------------------------------------------------------------*/

#header .cp_float{
	position:fixed;
	bottom: -5px;
	right: 0px;
}

@media screen and (max-width: 767px) {
	#header .cp_float{
		bottom: 91%;
		right: 0px;
		width: 38%;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/
#footer {
	background-color: #fac850;
}
#footer small {
	display: block;
	padding: 20px 0;
	font-size: 1.2rem;
	text-align: center;
}

.footer-floating {
	display: none;
}


/* ----------------------------------------------------------------------------------------------------
*  main
* --------------------------------------------------------------------------------------------------*/
main {
	padding-top: var(--header-height)!important;
}

.contents-wrap {
	width: 1100px;
	margin: 0 auto;
}

.contents-title {
	margin-bottom: 40px;
	text-align: center;
}
.contents-title span {
	display: block;
	margin-top: 15px;
	font-size: 1.4rem;
}
.contents-sub-title {
	position: relative;
	z-index: 10;
	margin-bottom: 30px;
}
.highlight {
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff00 0%) repeat scroll 0 0;
	font-weight: bold;
}
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .highlight {
		background:rgba(0, 0, 0, 0) linear-gradient(transparent 40%, #ffff00 20%) repeat scroll 0 0;
	}
}

.text-area {
	width: 400px;
}


/* ----------------------------------------------------------------------------------------------------
*  main-visual
* --------------------------------------------------------------------------------------------------*/
.main-visual {
	background-image: url("../img/mainvisual_bg_02.png") ,
		url("../img/mainvisual_bg_01.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: right top, left top;
	background-size: 100% auto, 100% auto;
}
.main-visual .column {
	width: 950px;
	margin: 0 auto;
	padding: 110px 0 0;
}


/* ----------------------------------------------------------------------------------------------------
*  banner-area
* --------------------------------------------------------------------------------------------------*/
.banner-area {
	background-color: #fedd78;
	padding: 35px 0;
}

.banner-area .cpbnr {
	text-align: center;
	margin-bottom:0px;
}

.banner-area p {
	width: 1100px;
	margin: 0 auto 40px;
	padding: 25px 0;
	font-size: 2.0rem;
	line-height: 1.3;
	background-color: #fff;
	color: red;
	text-align: center;
}

.contact-area .cpbnr {
	text-align: center;
	margin-top: -30px;
	margin-bottom: 40px;
}
.reflection {
	width: 1100px;
	height: 280px;
	position: relative;
	overflow: hidden;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}
.reflection::after {
	content: "";
	display: block;
	width: 30px;
	height: 100%;
	position: absolute;
	top: -180px;
	left: 0;
	background-color: #FFF;
	opacity: 0;
	transform: rotate(45deg);
	animation: reflect 2s ease-in-out infinite;
	-webkit-transform: rotate(45deg);
	-webkit-animation: reflect 2s ease-in-out infinite;
}
@keyframes reflect {
	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 reflect {
	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; }
}

@media screen and (max-width: 767px) {
	.contact-area .cpbnr {
		margin-top: 0px;
		margin-bottom: 20px;
	}

	.banner-area p {
		width: auto;
		margin: 0 auto 20px;
		padding: 5% ;
		font-size: 1.5rem;

	}

	.reflection {
		width: 630px;
		height: auto;
		position: relative;
		overflow: hidden;
		text-align: center;
		width: 100%;
		margin: auto;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  モーダルCSS
* --------------------------------------------------------------------------------------------------*/
.modalArea {
	display: none;
	position: fixed;
	z-index: 100; /*サイトによってここの数値は調整 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modalArea h1{
	font-weight: bold;
	color: #00C88C;
}
.modalArea p{
	font-size: 1.4rem;
}
.modalArea .small{
	margin-top: 5px;
	font-size: 1.0rem;
	line-height: 1.5;
}


.modalBg {
	width: 100%;
	height: 100%;
	background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	width: 70%;
	max-width: 500px;
	padding: 30px 30px;
	background-color: #fff;
}

.closeModal {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	cursor: pointer;
}

/* ----------------------------------------------------------------------------------------------------
*  performance-area
* --------------------------------------------------------------------------------------------------*/
.performance-area {
	padding: 80px 0 80px;
	background: url("../img/de.png");
}
.pm-contents {
	overflow: hidden;
	width: 980px;
	margin: -30px auto auto;
	text-align: center;
}
.pm{
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
	.performance-area {
		padding: 40px 0 40px;
	}
	.pm-contents {
		text-align: center;
		margin: auto;
		width: 95%;
	}
	.contents-title{
		width: 90%;
		text-align: center;
		margin: auto;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  about-area
* --------------------------------------------------------------------------------------------------*/
.about-area {
	background: #fac850 url("../img/about_bg.png") center bottom no-repeat;
	background-size: contain;
	padding: 80px 0 15vw;
}
.movie {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
	margin-bottom: -180px;
}

.movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 680px;
	height: 349px;
	margin: 0 auto 0;
}


/* ----------------------------------------------------------------------------------------------------
*  strategy-area
* --------------------------------------------------------------------------------------------------*/
.strategy-area {
	padding: 120px 0 0;
}
.strategy-area .contents-wrap {
	margin-bottom: 120px;
}
.strategy-area .contents-wrap .text-area p a {
	color: #ff280a;
	text-decoration: underline;
}
.strategy-area .contents-wrap .parts-list h4 {
	margin-top: 10px;
}
.strategy-area .contents-wrap .parts-list ul {
	padding-top: 10px;
}
.strategy-area .contents-wrap .parts-list ul li {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.strategy-area .contents-wrap .parts-list ul li p {
	margin-left: 15px;
	font-size: 1.6rem;
	line-height: 1.5em;
}
.strategy-area .contents-wrap.is-photo {
	margin-top: -170px;
	margin-bottom: 0;
}
.voice img{
	margin-top: 40px;
}
.voice2 img{
	margin-top: 10px;
}
.suppliers{
	width: 980px;
	text-align: center;
	margin: 40px auto 0;
}


/* ----------------------------------------------------------------------------------------------------
*  flow-area
* --------------------------------------------------------------------------------------------------*/
.flow-area {
	background: url("../img/flow_bg.jpg") center bottom no-repeat;
	background-size: contain;
	padding: 120px 0 120px;
}
.flow-area .flow-list .flow-item {
	position: relative;
}
.flow-area .flow-list .flow-item .flow-item-inner {
	background-color: #fac850;
	padding: 20px;
	border-radius: 5px;
	min-height: 450px;
}
.flow-area .flow-list .flow-item:after {
	position: absolute;
	content: "";
	background: url("../img/flow_icon_arrow.png") center center no-repeat;
	width: 23px;
	height: 41px;
	top: 50%;
	right: -30px;
	transform: translateY(-50%) translateX(0);
	-webkit-transform: translateY(-50%) translateX(0);
	z-index: 99;
}
.flow-area .flow-list .flow-item:last-of-type:after {
	content: none;
}
.flow-area .flow-list .flow-item p {
	width: 200px;
	margin-top: 10px;
	font-size: 14px;
}


/* ----------------------------------------------------------------------------------------------------
*  step01-area
* --------------------------------------------------------------------------------------------------*/
.step01-area {
	background-color: #fac850;
	padding: 120px 0 120px;
}
.step01-area .type-contents {
	width: 28%;
	padding: 20px;
}
.step01-area .type-contents .contents-sub-title,
.step01-area .type-contents .text-area {
	width: auto;
	margin-bottom: 20px;
	font-weight: bold;
}
.step01-area .type-contents .tab {
	margin-bottom: 20px;
}
.step01-area .type-contents .tab li {
	width: 49%;
}
.step01-area .type-contents .tab li a {
	display: block;
	background-color: #fff;
	padding: 5px 0;
	color: #fac850;
	text-align: center;
	font-weight: bold;
	border-radius: 50px;
}
.designim{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.designim::after{
	content:"";
	display:block;
	width: 32%;
	height:0;
}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .step01-area .type-contents .tab li a {
		padding: 7px 0 3px;
	}
}

.step01-area .type-contents .tab li a:hover,
.step01-area .type-contents .tab li.active a {
	background-color: #ff280a;
	color: #fff;
}
.step01-area .type-contents .tab-contents {
	display: none;
}
.step01-area .type-contents .tab-contents.active {
	display: block;
}
.step01-area .type-contents .tab-contents figure {
	height: 550px;
	overflow-y: scroll;
	margin-bottom: 15px;
}

.step01-area .type-contents .tab-contents figure::-webkit-scrollbar {
	width: 10px;
}
.step01-area .type-contents .tab-contents figure::-webkit-scrollbar-track {
	background: #ffd78b;
	border-left: solid 1px #ffd78b;
}
.step01-area .type-contents .tab-contents figure::-webkit-scrollbar-thumb {
	background: #000;
	box-shadow: inset 0 0 0 3px #ffd78b;
}

.step01-area .LP-list-box {
	background-color: #fff;
	margin-top: 65px;
	padding: 15px 35px;
	border-radius: 10px;
	box-sizing: border-box;
}
.step01-area .LP-list-box .accordion-title {
	position: relative;
	font-size: 1.4rem;
	padding-left: 25px;
	cursor: pointer;
}
.step01-area .LP-list-box .accordion-title:before {
	content: "";
	position: absolute;
	left: 0;
	top: 44%;
	transform: translateY(-20%) translateX(0);
	-webkit-transform: translateY(-20%) translateX(0);
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 10px solid #000;
	transition: all 0.2s ease-in-out;
}
.step01-area .LP-list-box .accordion-title.open:before {
	top: 1%;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .step01-area .LP-list-box .accordion-title:before  {
		top: 42%;
	}
	*::-ms-backdrop, .step01-area .LP-list-box .accordion-title.open:before {
		top: -1%;
	}
}
.step01-area .LP-list-box .accordion-content {
	display: none;
}
.step01-area .LP-list-box .accordion-content dl {
	padding: 5px 0 20px;
}
.step01-area .LP-list-box .accordion-content dl dt {
	float: left;
	padding: 7px 10px;
	font-weight: bold;
	line-height: 2.25rem;
}
.step01-area .LP-list-box .accordion-content dl dd {
	border-bottom: 1px solid #b3b3b3;
	padding: 7px 5px 7px 270px;
	font-size: 1.4rem;
	line-height: 2.25rem;
	word-break: break-all;
	overflow-wrap: break-word;
}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .step01-area .LP-list-box .accordion-content dl dt {
		padding: 10px 10px 3px;
	}
	*::-ms-backdrop, .step01-area .LP-list-box .accordion-content dl dd {
		padding: 10px 5px 3px 270px;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  step02-area
* --------------------------------------------------------------------------------------------------*/
.step02-area {
	background-color: #fedd78;
	background-image: url("../img/step02_bg_01.png") ,
		url("../img/step02_bg_02.png");
	background-repeat: no-repeat, repeat-x;
	background-position: center bottom, center bottom;
	background-size: auto auto, auto auto;
	padding: 120px 0 200px;
}
.step02-area .text-area {
	width: 480px;
}


/* ----------------------------------------------------------------------------------------------------
*  example-area
* --------------------------------------------------------------------------------------------------*/
.example-area {
	background: url("../img/example_bg.jpg") left bottom no-repeat;
	padding: 120px 0 330px;
}
.example-area .example-list li {
	width: 340px;
	margin-bottom: 60px;
}
.example-area .example-list li figure {
	margin-bottom: 20px;
}
.example-area .example-list li p {
	font-size: 1.4rem;
}

.example-area .service-box {
	background-color: #fac850;
	padding: 55px 60px 65px;
	border-radius: 10px;
}
.example-area .service-box .contents-sub-title {
	margin-bottom: 35px;
}
.example-area .service-box .service-list {
	margin-bottom: 40px;
}
.example-area .service-box .service-list li {
	position: relative;
	background-color: #fff;
	width: 320px;
	margin-bottom: 10px;
	padding: .75rem .5rem .75rem 4rem;
	font-size: 1.4rem;
	font-weight: bold;
	border-radius: 50px;
	box-sizing: border-box;
}
.example-area .service-box .note{
	margin-bottom: 0px;
}
.example-area .service-box .rednote{
	color:#FF0000;
	margin-top: 10px;
	margin-bottom: 0px;
	line-height: 1.3;
}
.example-area .service-box .mainte .plan01,
.example-area .service-box .mainte .plan02,
.example-area .service-box .mainte .plan03{
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 10px;
}
.example-area .service-box .mainte .planttl{
	font-size: 2rem;
	font-weight: bold;
	color: #FF280A;
}
.example-area .service-box .mainte .min{
	font-size: 1.3rem;
	font-weight: bold;
}
.example-area .service-box .mainte p{
	font-size:1.4rem;
	line-height: 1.7;
}
.example-area .service-box .mainte .contents{
	margin-top: 5px;
}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .example-area .service-box .service-list li {
		padding: 1rem .5rem .5rem 4rem;
	}
}

.example-area .service-box .service-list li:before {
	position: absolute;
	content: url("../img/service_list_icon.png");
	width: 27px;
	height: 27px;
	top: .6rem;
	left: .5rem;
}
.example-area .service-box .service-option-list {
	margin-bottom: 10px;
	flex-wrap: wrap;

}
.example-area .service-box .service-option-list li {
	margin-bottom: 8px;

}
.example-area .service-box .note {
	font-size: 1.2rem;
	line-height: 1.75rem;
}
.example-area .service-box .mainte span{
	font-size: 1.8rem;
	padding-bottom: 20px;
}


/* ----------------------------------------------------------------------------------------------------
*  faq-area
* --------------------------------------------------------------------------------------------------*/
.faq-area {
	background-color: #fac850;
	padding: 120px 0 50px;
}
.faq-area ul .question,
.faq-area ul .answer {
	position: relative;
	margin-bottom: 30px;
	padding: 1.5rem .5rem 1.5rem 7rem;
	box-sizing: border-box;
}
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .faq-area ul .question {
		padding: 2rem .5rem 1rem 7rem;
	}
	*::-ms-backdrop, .faq-area ul .answer {
		padding: 2rem .5rem 1rem 7rem;
	}
}

.faq-area ul .question {
	background-color: #fff;
	margin-bottom: 15px;
	border-radius: 50px;
}
.faq-area ul .question:before,
.faq-area ul .answer:before {
	position: absolute;
	content: '';
	background: url("../img/faq_icon_q.png");
	width: 51px;
	height: 51px;
	top: .6rem;
	left: .5rem;
}
.faq-area ul .answer:before {
	background: url("../img/faq_icon_a.png");
}
.faq-area ul li a {
	color: #ff280a;
	text-decoration: underline;
}
.faq-area ul li a:hover {
	text-decoration: none;
}


/* ----------------------------------------------------------------------------------------------------
*  contact-area
* --------------------------------------------------------------------------------------------------*/
.contact-area {
	background-image: url("../img/contact_bg_03.png") ,
		url("../img/contact_bg_02.png") ,
		url("../img/contact_bg_01.png");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: center bottom, left bottom, right top;
	background-size: auto auto, auto auto, auto auto;
	padding: 120px 0 200px;
}
.contact-area .contact-title {
	background-color: #fac850;
	padding: 1rem 0;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .contact-area .contact-title {
		padding: 1.25rem 0 .75rem;
	}
}
.contact-area .contact-form {
	width: 700px;
	box-shadow: 0 0 6px 3px rgba(0, 0, 0, .1);
	border-radius: 10px;
	overflow: hidden;
}
.contact-area .contact-form form{
	background-color: rgba(255, 255, 255, .8);
	padding: 20px 40px 30px;
}
.contact-area .contact-form .form-wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #000;
}
.contact-area .contact-form .form-wrap .form-inner {
	width: 100%;
}
.formErrorContent{
	box-sizing: border-box;
}
.contact-area .contact-form .form-wrap.check-wrap,
.contact-area .contact-form .form-wrap.comment-wrap {
	align-items: flex-start;
}
.contact-area .contact-form .form-wrap .form-contents-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 225px;
	min-width: 225px;
	margin-right: 10px;
	font-size: 1.4rem;
}
.contact-area .contact-form .form-wrap .form-contents-title span {
	font-size: 1.4rem;
}
.contact-area .contact-form .form-wrap .form-contents-title .required {
	display: block;
	background-color: #ff280a;
	padding: 2px 5px;
	color: #fff;
	font-size: 10px;
	line-height: 1.25rem;
}
.boxscl2 {
	width: 660px;
	height: 130px;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
	overflow-y: scroll;
}
.boxscl2 p{
	font-size:1.2rem;
	line-height: 1.4;  
} 
.boxscl2ttl p{
	margin-top: 20px;
	font-size:1.4rem;
	font-weight: bold;
} 

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .contact-area .contact-form .form-wrap .form-contents-title .required {
		margin-bottom: 5px;
		padding: 3px 5px 1px;
	}
}


.contact-area .contact-form input[type="checkbox"] {
	width: 1px;
	visibility: hidden;
	margin-left: -1px;
}
.contact-area .contact-form input[type="radio"] {
	width: 1px;
	visibility: hidden;
	margin-left: -1px;
}
.contact-area .contact-form .chack-list label span {
	position: relative;
	padding-left: 2rem;
	cursor: pointer;
}
.contact-area .contact-form .chack-list label span:before,
.contact-area .contact-form .chack-list label span:after {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0);
	-webkit-transform: translateY(-50%) translateX(0);
	width: 1.25rem;
	height: 1.25rem;
	content: '';
	border: 1px solid #ccc;
	background: #ffffff;
}
.contact-area .contact-form .chack-list label span.mwform-radio-field-text:before,
.contact-area .contact-form .chack-list label span.mwform-radio-field-text:after {
	border-radius: 50%;
}
body .mw_wp_form .vertical-item + .vertical-item {margin:0;}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .contact-area .contact-form .chack-list label span:before {
		top: 40%;
	}
	*::-ms-backdrop, .contact-area .contact-form .chack-list label span:after {
		top: 40%;
	}
}

.contact-area .contact-form .chack-list label span:after {
	z-index: 0;
	border: none;
}
.contact-area .contact-form .chack-list label input[type='checkbox']:checked + span::before {
	border: 1px solid #000;
	background: #000;
}
.contact-area .contact-form .chack-list label input[type='radio']:checked + span::before {
	border: 1px solid #000;
	background: #FF0000;
	background: #000;
}
.contact-area .contact-form input[type=text],
.contact-area .contact-form select {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.contact-area .contact-form select {
	min-height: 41px;
}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .contact-area .contact-form select {
		padding: 10px;
	}
}

.contact-area .contact-form .post-number-wrap .form-inner {
	width: 190px;
}

.contact-area .contact-form .select-wrap {
	position: relative;
	width: 190px;
}
.contact-area .contact-form .select-wrap:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(0);
	-webkit-transform: translateY(-50%) translateX(0);
	right: 3px;
	bottom: 0;
	width: 32px;
	height: 32px;
	background: #fac850;
	border-radius: 3px;
	pointer-events: none;
}
.contact-area .contact-form .select-wrap:after {
	position: absolute;
	top: 53%;
	transform: translateY(-50%) translateX(0);
	-webkit-transform: translateY(-50%) translateX(0);
	right: 0.7em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #fff;
	pointer-events: none;
}
.contact-area .contact-form textarea {
	width: 100%;
	height: 100px;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: vertical;
}
.contact-area .contact-form .disclaimer {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 8px 10px;
	height: 150px;
	overflow-y:scroll;
	width: 100%;
}
.contact-area .contact-form .disclaimer h2, .contact-area .contact-form .disclaimer h3 {
	font-size: 1.3rem;
}
.contact-area .contact-form .disclaimer p {
	font-size: 1.3rem;
	margin-bottom: 20px;
}
.contact-area .contact-form .disclaimer ul, .contact-area .contact-form .disclaimer ol {
	margin-bottom: 20px;
}
.contact-area .contact-form .disclaimer li {
	font-size: 1.3rem;
	line-height: 1.4;
	margin-bottom: 10px;
}
.contact-area .contact-form .privacy_check {
	margin: 20px 0;
}
.contact-area .contact-form .privacy_check label {
	display: block;
	font-size: 1.4rem;
	line-height: 1.8rem;
}
.contact-area .contact-form .privacy_check.chack-list label span {
	display: inline-block;
}
.contact-area .contact-form .privacy_check.chack-list p{
	margin-bottom:1.4rem;
}
.contact-area .contact-form .privacy_check.chack-list label span:before, .contact-area .contact-form .privacy_check.chack-list label span:after {
	top:0;
	transform:translatey(10%);
}
.contact-area .contact-form .privacy_check input[type= checkbox] {
	position: absolute;
}
.chack-list > div:first-of-type .mwform-checkbox-field-text {display:none;}
.chack-list > div:first-of-type input {display:none;}

.contact-area .contact-form .submit-button {
	margin-top: 0;
}
.contact-area .contact-form .submit-button input.btn_submit {
	display: block;
	background: url(../img/contact_button_form.png) no-repeat top center;
	width: 421px;
	height: 79px;
	margin: 0 auto;
	border: none;
	text-indent: -9999px;
	cursor: pointer;
}
.contact-area .contact-form .submit-button input.btn_submit:hover {
	background: url(../img/contact_button_form.png) no-repeat bottom center;
}

.contact-area .contact-about {
	width: 320px;
}
.contact-area .contact-about .contact-title  {
	margin-bottom: 20px;
	border-radius: 10px;
}
.contact-area .contact-about .telnavi {
	width: 100%;
}
.contact-area .contact-about .tel_number {
	line-height: 1.8em;
}
.contact-area .contact-about .tel_number figcaption {
	font-size: 1.4rem;
}
.contact-area .contact-about .company-about {
	margin: 25px 0 30px;
	padding: 30px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.contact-area .contact-about .company-about .company-logo {
	margin-bottom: 10px;
}
.contact-area .contact-about .company-about .text-area {
	width: auto;
	margin-bottom: 20px;
	font-size: 1.4rem;
	line-height: 2.5rem;
}
.contact-area .contact-about .note {
	font-size: 1.2rem;
}
.contact-area .contact-about .contact-banner-list li a {
	transition: 0.3s;
}
.contact-area .contact-about a:hover {
	opacity: 0.7;
}

/* -------------------------------------------------------------------------------------------------
*  confirm
* -----------------------------------------------------------------------------------------------*/

.confirm p.confirm_lead, .finish p.finish_lead {
	margin-bottom: 20px;
	font-weight: bold;
	text-align: center;	
}
.finish p.finish_lead a {
	text-decoration: underline;
}
.finish p.finish_lead a:hover {
	text-decoration: none;
}

.confirm .contact-area .contact-form {
	margin: 0 auto;
}
.confirm .form-wrap .chack-list,
.confirm .form-wrap p {
	font-size: 1.4rem;
}
.confirm .privacy_check p {
	font-size: 1.4rem;
}
.confirm .submit-button {
	display: flex;
	justify-content: center;
}
.confirm .submit-button .btn {
	background: #ff280a;
	border-radius:100px;
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 2%;
	padding: 15px 35px;
}
.confirm .submit-button .btn:hover {
	opacity: 0.7;
	cursor:pointer;
}

.confirm .submit-button .btn.back {
	background: #000;
}

.ie .confirm .submit-button .btn {
	padding-bottom: 10px;
}

/* ----------------------------------------------------------------------------------------------------
*  SP
* --------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	body {
		position:relative!important;
		--header-height: 7.2rem!important;
		overflow:visible!important;
	}

	/* -------------------------------------------------------------------------------------------------
	*  header
	* -----------------------------------------------------------------------------------------------*/
	#header .header-inner {
		width: 95%;
	}
	.logo{
		width:180px ;
	}


	/* -------------------------------------------------------------------------------------------------
	*  footer
	* -----------------------------------------------------------------------------------------------*/
	#footer {
		padding-bottom: 17vw;
	}
	.footer-floating {
		display: block;
		position: fixed;
		bottom: 0;
		padding: 0 5%;
		z-index: 10;
	}
	.footer-floating p {
		margin: 0 1%;
	}



	/* ----------------------------------------------------------------------------------------------------
	*  main
	* --------------------------------------------------------------------------------------------------*/
	.contents-wrap {
		width: 100%;
	}
	.contents-title,
	.contents-sub-title {
		margin-bottom: 2rem;
	}
	.text-area {
		width: 100%;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  main-visual
	* --------------------------------------------------------------------------------------------------*/
	.main-visual {
		background-image: url(../img/sp/mainvisual_bg_02.png),
			url(../img/sp/mainvisual_bg_01.jpg);
		background-repeat: no-repeat, no-repeat;
		background-position: right top, left bottom;
		background-size: 100% auto, 100% auto;
	}
	.main-visual .column {
		width: 100%;
	}
	.main-visual .column .order2 {
		margin-top: -3.5rem;
	}
	.main-visual .column figure {
		margin-top: 1.5rem;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  banner-area
	* --------------------------------------------------------------------------------------------------*/
	.banner-area {
		padding: 2rem 5%;
	}
	.banner-area a {
		display: block;
		margin-bottom: 1rem;
		line-height: 1;
	}
	.banner-area a:last-of-type {
		margin-bottom: 0;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  about-area
	* --------------------------------------------------------------------------------------------------*/
	.about-area {
		background: #fac850 url("../img/sp/about_bg.png") center bottom no-repeat;
		background-size: contain;
		padding: 5rem 5% 40vw;
	}
	.about-area .text-area,
	.about-area figure {
		margin-bottom: 2rem;
	}
	.movie {
		position: relative;
		padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
		height: 0;
		overflow: hidden;
		margin-bottom: 40px;
	}

	.movie iframe {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		margin: 0 auto 0;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  strategy-area
	* --------------------------------------------------------------------------------------------------*/
	.strategy-area {
		padding: 5rem 0 2rem;
	}
	.strategy-area .contents-wrap {
		margin-bottom: 4rem;
		padding: 0 5%;
		box-sizing: border-box;
	}
	.strategy-area .text-area,
	.strategy-area figure {
		margin-bottom: 2rem;
	}
	.strategy-area .parts-list {
		margin-bottom: 3rem;
	}
	.strategy-area .contents-wrap.is-photo {
		margin-top: -16vw;
		margin-bottom: 0;
	}
	.strategy-area .contents-wrap.is-photo .text-area {
		margin-bottom: 0;
	}
	.voice img{
		margin-top: 10px;
	}
	.voice2 img{
		margin-top: 5px;
	}
	.suppliers{
		width: auto;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  flow-area
	* --------------------------------------------------------------------------------------------------*/
	.flow-area {
		background: url("../img/sp/flow_bg.jpg") center bottom no-repeat;
		background-size: contain;
		padding: 5rem 0 40vw;
	}
	.flow-area .contents-title {
		padding: 0 5%;
	}
	.flow-area .flow-list .flow-item {
		padding: 0 4vw;
	}
	.flow-area .slick-dots {
		bottom: -50px;
	}
	.flow-area .slick-dots li,
	.flow-area .slick-dots li button {
		width: 30px;
		height: 30px;
	}
	.flow-area .slick-dots li button:before {
		width: 30px;
		height: 30px;
		content: '';
		background-color: #e6e6e6;
		opacity: 1.0;
		border-radius: 50px;
	}
	.flow-area .slick-dots li.slick-active button:before {
		background-color: #fac850;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  step01-area
	* --------------------------------------------------------------------------------------------------*/
	.step01-area {
		padding: 5rem 5%;
	}
	.step01-area .type-contents {
		padding: 0 2%;
	}
	.step01-area .type-contents .contents-sub-title,
	.step01-area .type-contents .text-area {
		width: auto;
		margin-bottom: 20px;
		font-weight: bold;
	}
	.step01-area .type-contents .contents-sub-title img {
		display: inline-block;
	}
	.step01-area .type-contents .contents-sub-title img.pc {
		display: none;
	}
	.step01-area .type-contents .tab-contents figure {
		height: 500px;
		overflow-y: scroll;
		margin-bottom: 15px;
	}
	.step01-area .slick-dots {
		bottom: -50px;
	}
	.step01-area .slick-dots li,
	.step01-area .slick-dots li button {
		width: 30px;
		height: 30px;
	}
	.step01-area .slick-dots li button:before {
		width: 20px;
		height: 20px;
		content: '';
		background-color: #e6e6e6;
		opacity: 1.0;
		border-radius: 50px;
	}
	.step01-area .slick-dots li.slick-active button:before {
		background-color: #000;
	}
	.step01-area .slick-prev,
	.step01-area .slick-next {
		width: 40px;
		height: 85px;
		top: 63%;
		z-index: 99;
		overflow: hidden;
	}
	.step01-area .slick-prev {
		left: -15px;
	}
	.step01-area .slick-next {
		right: -15px;
	}
	.step01-area .slick-prev:before,
	.step01-area .slick-next:before {
		position: absolute;
		left: 0;
		top: 0;
		content: '';
		width: 0;
		height: 0;
		border: 30px solid transparent;
		font-size: 0;
		opacity: 1;
	}
	.step01-area .slick-prev:before {
		left: -25px;
		border-right: 30px solid #000;
	}
	.step01-area .slick-next:before {
		border-left: 30px solid #000;
	}
	.step01-area .LP-list-box .accordion-title.open:before {
		top: -13%;
	}
	.step01-area .LP-list-box .accordion-content dl dt {
		float: none;
		padding: 7px 0 0;
	}
	.step01-area .LP-list-box .accordion-content dl dd {
		padding-left: 0;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  step02-area
	* --------------------------------------------------------------------------------------------------*/
	.step02-area {
		padding: 5rem 5% 65vw;
		background: #fedd78 url("../img/sp/step02_bg_01_sp.png") center bottom no-repeat;
		background-size: contain;
	}
	.step02-area .text-area {
		width: 100%;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  example-area
	* --------------------------------------------------------------------------------------------------*/
	.example-area {
		padding: 5rem 5% 65vw;
		background: url("../img/sp/example_bg.png") left 0 bottom -1px no-repeat;
		background-size: contain;
	}
	.example-area .text-area {
		width: 100%;
	}
	.example-area .example-list {
		margin-bottom: 2rem;
	}
	.example-area .example-list li {
		width: 48%;
		margin-bottom: 2rem;
	}
	.example-area .service-box {
		padding: 5rem 5% 3rem;
	}
	.example-area .service-box .service-list-wrap {
		margin-bottom: 40px;
	}
	.example-area .service-box .service-list {
		width: 100%;
		margin-bottom: 0;
	}
	.example-area .service-box .service-list li {
		width: 100%;
		border-radius: 18px;
	}
	.example-area .service-box .contents-sub-title {
		margin-bottom: 1.5rem;
	}
	.example-area .service-box .service-option-list {
		margin-bottom: 4rem;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	.example-area .service-box .service-option-list li {
		display: inline-block;
		width: 200px;
	}
	.example-area .service-box .service-option-list::-webkit-scrollbar {
		width: 15px;
	}
	.example-area .service-box .service-option-list::-webkit-scrollbar-track {
		background: #ffd78b;
		border-left: solid 1px #ffd78b;
	}
	.example-area .service-box .service-option-list::-webkit-scrollbar-thumb {
		background: #000;
		box-shadow: inset 0 0 0 3px #ffd78b;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  faq-area
	* --------------------------------------------------------------------------------------------------*/
	.faq-area {
		padding: 5rem 5% 2rem;
	}
	.faq-area ul .question {
		border-radius: 28px;
	}
	.faq-area ul .question:before,
	.faq-area ul .answer:before {
		background-size: 44px auto;
		width: 44px;
		height: 44px;
	}


	/* ----------------------------------------------------------------------------------------------------
	*  contact-area
	* --------------------------------------------------------------------------------------------------*/
	.contact-area {
		background-image: url("../img/sp/contact_bg_03.png") ,
			url("../img/sp/contact_bg_02.png") ,
			url("../img/sp/contact_bg_01.png");
		background-repeat: no-repeat, no-repeat, no-repeat;
		background-position: center bottom, left bottom, right top;
		background-size: 100% auto, contain, contain;
		padding: 5rem 5% 25vw;
	}
	.contact-area .contact-form {
		width: 100%;
		margin-bottom: 3rem;
	}
	.contact-area .contact-form form{
		padding: 20px 40px 20px;
	}
	.contact-area .contact-form .form-wrap {
		display: block;
		width: 100%;
		min-width: auto;
		margin-right: 0;
		padding-bottom: 0;
		border: none;
	}
	.contact-area .contact-form .form-wrap.check-wrap {
		padding-bottom: 10px;
		border-bottom: 1px solid #ccc;
	}
	.contact-area .contact-form .form-wrap .form-contents-title {
		justify-content: flex-start;
	}
	.contact-area .contact-form .form-wrap .form-contents-title .required {
		margin-left: 1rem;
	}
	.contact-area .contact-form .post-number-wrap .form-inner,
	.contact-area .contact-form .select-wrap {
		width: 100%;
	}
	.contact-area .contact-form .select-wrap:after {
		right: 1.3rem;
	}
	.contact-area .contact-form  .privacy_check .chack-list label span:before, .contact-area .contact-form .privacy_check .chack-list label span:after {
		top: 12px;
	}
	.contact-area .contact-form .submit-button input.btn_submit {
		background: url(../img/sp/contact_button_form.png) no-repeat 0 0;
		background-size: 100% auto;
		width:100%;
		height: 14vw;
	}
	.contact-area .contact-form .submit-button input.btn_submit:hover {
		background: url(../img/sp/contact_button_form.png) no-repeat 0 0;
		background-size: 100% auto;
	}
	.contact-area .contact-about {
		width: 100%;
	}
	.contact-area .contact-about .company-about {
		margin: 1rem 0 2rem;
		padding: 2rem 0;
	}
	.contact-area .contact-about .company-about .text-area {
		margin-bottom: 2rem;
		padding-bottom: 2rem;
		border-bottom: 1px solid #ccc;
	}
	.contact-area .contact-about .contact-banner-list li {
		width: 48%;
		margin-bottom: 10px;
		font-size: 0;
	}
	.contact-area .contact-about .contact-banner-list li:nth-of-type(n+3) {
		margin-bottom: 0;
	}
	.contact-area .contact-about .contact-banner-list li a,
	.contact-area .contact-about .contact-banner-list li a img {
		width: 100%;
	}
	.contact-area .contact-about .company-about .company-logo {
		text-align: center;
	}
	.boxscl2 {
		width: auto;
		margin-bottom: 40px;
	}
	.boxscl2ttl p{
		margin-top: 0;
		margin-bottom: 5px;
		font-weight: bold;
	} 
	/* ----------------------------------------------------------------------------------------------------
	*  contfirm
	* --------------------------------------------------------------------------------------------------*/
	.confirm p.confirm_lead, .finish p.finish_lead {
		font-size: 1.4rem;
	}
	.confirm .contact-area {
		padding-top: 80px;
	}
	.finish .contact-area {
		padding: 120px 0;
	}
	.confirm .contact-area .contact-form .form-wrap .form-contents-title {
		font-weight: bold;
	}
	.confirm .submit-button {
		display: block;
	}
	.confirm .submit-button .btn {
		width: 100%;
	}
	.confirm .submit-button .btn + .btn {
		margin-top: 10px;
	}

}
