body {
	font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

.u-desktop {
	display: none;
}

/* noto-sans-jp-300 - japanese */

@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	src: url("../fonts/noto-sans-jp-v42-japanese-300.woff2") format("woff2"), url("../fonts/noto-sans-jp-v42-japanese-300.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 300;
}

/* noto-sans-jp-regular - japanese */

@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	src: url("../fonts/noto-sans-jp-v42-japanese-regular.woff2") format("woff2"), url("../fonts/noto-sans-jp-v42-japanese-regular.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
}

/* noto-sans-jp-700 - japanese */

@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	src: url("../fonts/noto-sans-jp-v42-japanese-700.woff2") format("woff2"), url("../fonts/noto-sans-jp-v42-japanese-700.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

/* ホバー */

a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

/* フォームリセット */

textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.site-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}

.c-btn {
	background-color: black;
	color: yellow;
	padding: 10px 40px;
	padding: 0.625rem 2.5rem;
}

.c-cta {
	left: 50%;
	opacity: 0;
	position: fixed;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 100;
}

.c-cta.is-bottom {
	bottom: 20px;
	bottom: 1.25rem;
	opacity: 1;
	top: auto;
	visibility: visible;
}

.c-cta.is-top {
	bottom: auto;
	opacity: 1;
	top: 20px;
	top: 1.25rem;
	visibility: visible;
}

.c-cta__link {
	display: block;
	margin: 20px auto 0;
	margin: 1.25rem auto 0;
	max-width: 500px;
	max-width: 31.25rem;
	width: 100%;
}

.c-cta__img {
	-webkit-animation: popup 3s linear infinite;
	animation: popup 3s linear infinite;
}

.l-footer {
	background: #4f5052;
	padding: 24px 0;
	padding: 1.5rem 0;
	text-align: center;
	width: 100%;
}

.l-footer__item {
	color: #fff;
	font-size: 16px;
	font-size: 1rem;
}

.l-footer__link {
	display: inline-block;
	padding: 12px 20px;
	padding: 0.75rem 1.25rem;
}

.l-footer__slash {
	display: none;
}

.l-footer__copyright {
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1rem;
	margin-top: 30px;
	margin-top: 1.875rem;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 520px;
	max-width: 32.5rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

span.tanksuploadform {
	background: #ff4707;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 14px #999;
	box-shadow: 0 0 14px #999;
	color: #fff;
	display: block;
	font-size: 32px;
	font-size: 2rem;
	margin: 30px auto 100px;
	max-width: 280px;
	padding: 10px 20px;
	text-align: center;
	width: 100%;
}

input#form_submit_button {
	background-color: #006d43;
	border: none;
	border-radius: 50px;
	-webkit-box-shadow: 0 0 20px #aaa;
	box-shadow: 0 0 20px #aaa;
	color: #fff;
	cursor: pointer;
	font-size: 24px;
	font-size: 1.5rem;
	padding: 10px 30px;
	padding: 0.625rem 1.875rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

input#form_submit_button:hover {
	-webkit-box-shadow: 0 0 30px #bbb;
	box-shadow: 0 0 30px #bbb;
	font-size: 26px;
	font-size: 1.625rem;
	margin: -2px -4px;
	padding: 12px 24px;
	padding: 0.75rem 1.5rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

input#required-amount::-moz-placeholder {
	text-align: right;
width: 8rem;
}

input#required-amount,
input#required-amount::-webkit-input-placeholder {
	text-align: right;
width: 8rem;
}

input#required-amount,
input#required-amount::-moz-placeholder {
	text-align: right;
width: 8rem;
}

input#required-amount,
input#required-amount::-ms-input-placeholder {
	text-align: right;
width: 8rem;
}

input#required-amount,
input#required-amount::placeholder {
	text-align: right;
width: 8rem;
}

.page-contact label {
	font-size: 18px;
	margin-right: 10px;
}

.p-thanks {
	padding: 100px 16px 100px;
	padding: 6.25rem 1rem 6.25rem;
}

.p-thanks__content {
	margin-inline: auto;
	max-width: 520px;
	max-width: 32.5rem;
	width: 100%;
}

.p-top img,
.p-top source,
.p-top picture {
	margin-inline: auto;
	display: block;
	width: 100%;
}

.p-top {
	margin-inline: auto;
	max-width: 520px;
	max-width: 32.5rem;
	width: 100%;
}

.p-fv {
	padding: 60px 0 0;
	padding: 3.75rem 0 0;
	width: 100%;
}

.p-fv_img1 {
	width: 100%;
}

.p-s1 {
	padding: 50px 0 40px;
	padding: 3.125rem 0 2.5rem;
}

.p-s1_img2 img {
	margin-top: 80px;
	margin-top: 5rem;
	width: 80%;
}

.p-s1_img3 {
	margin-top: 60px;
	margin-top: 3.75rem;
}

.p-s1_img4 img {
	margin-top: 20px;
	margin-top: 1.25rem;
	width: 90%;
}

picture.p-s1_img6,
picture.p-s1_img6 img {
	margin-inline: calc(50% - 50vw);
	margin-top: 20px;
	margin-top: 1.25rem;
	width: 100vw;
}

.p-s1_img7 img {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-s2 {
	background: url(../images/s2_bg-sp.jpg) no-repeat center center/cover;
	padding: 20px 0 115px;
	padding: 1.25rem 0 7.1875rem;
	position: relative;
}

.p-s2_img1 {
	margin-top: 60px;
	margin-top: 3.75rem;
}

.p-s2_img2 {
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-s3 {
	padding: 70px 0 90px;
	padding: 4.375rem 0 5.625rem;
}

.p-s3_img1 {
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-s3_img2 img {
	margin-left: -15px;
	margin-left: -0.9375rem;
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-s3_img3 img {
	margin-left: -15px;
	margin-left: -0.9375rem;
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-s3_img4 img {
	margin-left: -15px;
	margin-left: -0.9375rem;
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-s4 {
	background: url(../images/s4_bg-sp.jpg) no-repeat center center/cover;
	padding: 0 0 82px;
	padding: 0 0 5.125rem;
}

.p-s4_img1 {
	padding-top: 90px;
	padding-top: 5.625rem;
}

.p-s5 {
	padding: 0 0 60px;
	padding: 0 0 3.75rem;
}

.p-s5_img1 {
	margin-top: 60px;
	margin-top: 3.75rem;
}

.p-s5_img2 {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-s6_img1 {
	text-align: left;
}

.p-s6_img1 img {
	margin-inline: 0;
	display: block;
	margin-right: auto;
	width: 50%;
}

.p-s6_img1-2 {
	margin-inline: 0 !important;
	width: -moz-fit-content !important;
	width: -webkit-fit-content !important;
	width: fit-content !important;
}

.p-s6_img1-2 img {
	display: inline-block;
	margin-right: 6px;
	margin-right: 0.375rem;
	max-width: 50px;
	max-width: 3.125rem;
	width: 100% !important;
}

.u-anime-fadeup {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	opacity: 0;
}

.u-anime-fadeup.is-active {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: fadeup;
	animation-name: fadeup;
	opacity: 1;
}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.1111111111vw;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:hover {
	opacity: 0.8;
}

.c-cta__link {
	max-width: 58.125rem;
}

.l-footer__list {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 0.5rem;
}

.l-footer__item {
	font-size: 1.5rem;
}

.l-footer__link {
	padding: 0.5rem 0.75rem;
}

.l-footer__slash {
	background: #fff;
	display: block;
	height: 1.5rem;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	width: 0.1875rem;
}

.l-footer__copyright {
	font-size: 1.5rem;
	margin-top: 0;
}

.l-inner {
	max-width: 1540px;
	padding-left: 50px;
	padding-right: 50px;
}

input#form_submit_button {
	font-size: 2rem;
	padding: 1rem 2.625rem;
}

input#form_submit_button:hover {
	padding: 1rem 2rem;
}

.p-thanks {
	padding: 9.375rem 1.25rem 12.5rem;
}

.p-thanks__content {
	max-width: 50rem;
}

.p-top {
	max-width: 90rem;
}

.p-fv {
	padding: 11.25rem 0 0;
}

.p-s1 {
	padding: 9.375rem 0 7.5rem;
}

.p-s1_img2 img {
	margin-top: 15rem;
}

.p-s1_img3 {
	margin-top: 11.25rem;
}

.p-s1_img4 img {
	margin-top: 3.75rem;
}

picture.p-s1_img6,
picture.p-s1_img6 img {
	margin-top: 3.75rem;
	max-width: 90rem;
}

.p-s1_img7 img {
	margin-top: 7.5rem;
}

.p-s2 {
	background: url(../images/s2_bg.jpg) no-repeat center center/cover;
	padding: 3.75rem 0 28.125rem;
}

.p-s2_img1 {
	margin-top: 11.25rem;
}

.p-s2_img2 {
	margin-top: 3.75rem;
}

.p-s3 {
	padding: 13.125rem 0 16.875rem;
}

.p-s3_img1 {
	margin-top: 3.75rem;
}

.p-s3_img2 img {
	margin-top: 7.5rem;
}

.p-s3_img3 img {
	margin-top: 7.5rem;
}

.p-s3_img4 img {
	margin-top: 7.5rem;
}

.p-s4 {
	background: url(../images/s4_bg.jpg) no-repeat center center/cover;
	padding: 0 0 15.375rem;
}

.p-s4_img1 {
	padding-top: 16.875rem;
}

.p-s5 {
	padding: 0 0 6.25rem;
}

.p-s5_img1 {
	margin-top: 11.25rem;
}

.p-s5_img2 {
	margin-top: 7.5rem;
}

.p-s6_img1 img {
	max-width: 21.875rem;
	width: 100%;
}

.p-s6_img1-2 img {
	max-width: 5rem;
}

}

@media only screen and (min-width: 769px) and (max-width: 1400px) {

.info .btn {
	margin-top: 0;
}

}

@media screen and (min-width: 769px), print {

.banner {
	padding: 20px;
	position: relative;
}

.banner > picture img {
	height: auto;
	width: 100%;
}

.banner__ct {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.banner__ct .banner__wrapper h3 {
	color: #fff;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 5.3rem;
	line-height: 66px;
	text-shadow: 0 0 6px rgba(112, 44, 14, .6), 0 0 30px rgba(112, 44, 14, .7);
}

.banner__ct .banner__wrapper h3 span {
	display: inline-block;
	position: relative;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.banner__ct .banner__wrapper h3 span::after {
	background: #fefb12;
	bottom: 0px;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	width: 100%;
}

.banner__ct .banner__wrapper > span {
	color: #fff;
	display: block;
	font-family: "Noto Sans CJK JP Medium";
	font-size: 1.4rem;
	line-height: 1;
	padding: 10px 25px;
	text-shadow: 0 5px 30px rgba(100, 72, 0, .5);
}

.banner__ct .banner__wrapper ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
	margin-top: 15px;
}

.banner__ct .banner__wrapper ul li {
	background: #fff;
	padding: 19px 23px 28px 90px;
	position: relative;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.banner__ct .banner__wrapper ul li::before {
	background: url("../images/mvPoint.png") 0 0 no-repeat;
	background-size: contain;
	content: "";
	height: 60px;
	left: 0;
	position: absolute;
	top: 0;
	width: 60px;
}

.banner__ct .banner__wrapper ul li::after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.banner__ct .banner__wrapper ul li.icPhone::after {
	background: url("../images/mvIcon_phone.png") 0 0 no-repeat;
	background-size: contain;
	height: 52px;
	left: 32px;
	width: 45px;
}

.banner__ct .banner__wrapper ul li.icCard::after {
	background: url("../images/mvIcon_card.png") 0 0 no-repeat;
	background-size: contain;
	height: 35px;
	left: 21px;
	width: 62px;
}

.banner__ct .banner__wrapper ul li.icArr::after {
	background: url("../images/mvIcon_arr.png") 0 0 no-repeat;
	background-size: contain;
	height: 51px;
	left: 36px;
	width: 31px;
}

.banner__ct .banner__wrapper ul li:not(:last-child) {
	margin-right: 12px;
}

.banner__ct .banner__wrapper ul li span {
	display: inline-block;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 2.4rem;
	line-height: 1;
	position: relative;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.banner__ct .banner__wrapper ul li span:not(:first-child) {
	margin-top: 3px;
}

.banner__ct .banner__wrapper ul li span::after {
	background: #fefb12;
	bottom: 0;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.banner__ct .banner__wrapper .text01 {
	background: url("../images/bgText01.png") 0 0 no-repeat;
	background-size: cover;
	display: inline-block;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 31px;
	height: 69px;
	line-height: 1;
	padding-top: 10px;
	text-align: center;
	white-space: nowrap;
	width: 776px;
}

.banner__ct .banner__wrapper .text02 {
	background: url("../images/bgText02.png") 0 0 no-repeat;
	background-size: cover;
	color: #fff;
	display: inline-block;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 31px;
	height: 69px;
	line-height: 1;
	padding-top: 10px;
	text-align: center;
	white-space: nowrap;
	width: 776px;
}

.info {
	padding-bottom: 80px;
	position: relative;
}

.info:after {
	border-left: 33px solid transparent;
	border-right: 33px solid transparent;
	border-top: 27px solid #fff;
	bottom: -27px;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
}

.info .row {
	max-width: 1366px;
}

.info .btn {
	margin-bottom: 108px;
	margin-top: -74px;
}

.contact_form {
	margin-top: 80px;
	padding-bottom: 80px;
}

.contact_form_step {
	border: 6px solid #efefef;
	padding: 30px 0 30px;
}

.contact_form_step ul {
	counter-reset: li;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.contact_form_step ul li {
	color: #cecece;
	counter-increment: li;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 1.6rem;
	line-height: 1;
	position: relative;
}

.contact_form_step ul li.active {
	color: #000;
}

.contact_form_step ul li.active::before {
	border-color: #ffa800;
	color: #ffa800;
}

.contact_form_step ul li:not(:last-child)::after {
	background: url("../images/arrow_step.png") 0 0 no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 5px;
	margin: 0 32px;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
	width: 100px;
}

.contact_form_step ul li::before {
	border-bottom: 1px solid #cecece;
	content: counter(li, decimal-leading-zero);
	display: inline-block;
	display: inline-block;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 1.6rem;
	line-height: 1;
	margin-right: 10px;
	padding: 0 0 6px 0;
}

.contact_form_note {
	font-size: 1.6rem;
	line-height: 26px;
	margin-top: 35px;
	text-align: center;
}

.contact_form_main {
	margin-top: 35px;
	padding: 0 67px 120px;
}

.contact_form_row {
	border-bottom: 1px solid #eee;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.contact_form_row:first-child {
	border-top: 1px solid #eee;
}

.contact_form_row ._left {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 28px;
	margin-right: 36px;
	padding: 30px 0;
	white-space: nowrap;
	width: 25%;
}

.contact_form_row ._left.required {
	position: relative;
}

.contact_form_row ._left.required::after {
	background: url("../images/req.png") 0 0 no-repeat;
	background-size: contain;
	content: "";
	height: 24px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 44px;
}

.contact_form_row ._right {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 20px 0;
	width: 75%;
}
input#required-amount {
	width:8rem;
}
input#required-amount,
.contact_form_row ._right select,
.contact_form_row ._right input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #eaf5f1;
	border: 2px solid #d6e6ef;
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: "Noto Sans CJK JP Medium";
	font-size: 1.6rem;
	height: 58px;
	line-height: 28px;
	padding: 0 10px;
}

.contact_form_row ._right textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #eaf5f1;
	border: 2px solid #d6e6ef;
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: "Noto Sans CJK JP Medium";
	font-size: 1.6rem;
	height: 150px;
	line-height: 28px;
}

.contact_form_row ._right .half {
	width: 390px;
}

.contact_form_row ._right .full {
	width: 100%;
}

.contact_form_row ._right .bt a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #333333;
	border-radius: 3px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.2rem;
	height: 30px;
	width: 110px;
}

.contact_form_row ._right .bt a::before {
	background: url("../images/control_right.png") 0 0 no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 8px;
	margin: 0 8px 0 12px;
	width: 6px;
}

.contact_form_row .right02 {
	font-size: 1.6rem;
}

.contact_form_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 60px;
}

.contact_form_btn button {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: -webkit-gradient(linear, left bottom, left top, from(#ff810a), to(#ff6731));
	background: linear-gradient(0deg, #ff810a 0%, #ff6731 100%);
	border: 0;
	border-radius: 35px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 1.8rem;
	height: 70px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
	outline: none;
	text-align: center;
	width: 380px;
}

.contact_content {
	margin-top: 80px;
}

.contact_content p {
	font-size: 1.5rem;
	line-height: 1.5;
}

.contact_content h3 {
	color: #000;
	font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "游ゴシック体", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 25px;
	padding-bottom: 21px;
	position: relative;
}

.contact_content h3::before,
.contact_content h3::after {
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
}

.contact_content h3::before {
	background: #eee;
	height: 2px;
	width: 100%;
	z-index: -2;
}

.contact_content h3::after {
	background: #ff7c08;
	height: 2px;
	width: 367px;
	z-index: -1;
}

.contact_form_row ._right02 {
	font-size: 1.6rem;
	padding: 20px 0;
}

.contact_form_row ._right03 {
	padding: 20px 0;
}

.contact_content {
	padding: 0 67px;
}

}

@media (min-width: 1440px) {

html {
	font-size: 16px;
}

}

@media (min-width: 1441px) {

picture.p-s1_img6,
picture.p-s1_img6 img {
	margin-inline: auto;
	width: 100%;
}

}

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

.contact_content {
	margin-top: 12.5vw;
	padding: 0 6.25vw;
}

.contact_content h3 {
	color: #000;
	font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "游ゴシック体", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 5.625vw;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 3.125vw;
	padding-bottom: 2.1875vw;
	position: relative;
}

.contact_content h3::before,
.contact_content h3::after {
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
}

.contact_content h3::before {
	background: #eee;
	height: 2px;
	width: 100%;
	z-index: -2;
}

.contact_content h3::after {
	background: #ff7c08;
	height: 2px;
	width: 13.59375vw;
	z-index: -1;
}

.contact_content p {
	font-size: 3.75vw;
	line-height: 1.5;
}

.contact_content article {
	margin-top: 11.71875vw;
}

.contact_content article h4 {
	font-family: "Noto Sans CJK JP Bold";
	font-size: 4.375vw;
	line-height: 5.9375vw;
	margin-bottom: 1.5625vw;
	padding: 0 0 0 4.6875vw;
	position: relative;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.contact_content article h4::before {
	background: #ff7c08;
	content: "";
	height: 0.46875vw;
	left: 0;
	position: absolute;
	top: 2.57812vw;
	width: 3.4375vw;
}

.contact_form {
	margin-top: 12.5vw;
	padding-bottom: 12.5vw;
}

.contact_form_step {
	border: 0.9375vw solid #efefef;
	padding: 2.65625vw;
}

.contact_form_step ul {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	counter-reset: li;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.contact_form_step ul li {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #cecece;
	counter-increment: li;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 2.8125vw;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 3.75vw;
	position: relative;
	text-align: center;
}

.contact_form_step ul li.active {
	color: #000;
}

.contact_form_step ul li.active::before {
	border-color: #ffa800;
	color: #ffa800;
}

.contact_form_step ul li:not(:last-child) {
	margin-right: 3.125vw;
	padding-right: 12.5vw;
}

.contact_form_step ul li:not(:last-child)::after {
	background: url("../images/arrow_step_sp.png") right center no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 0.78125vw;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6.25vw;
}

.contact_form_step ul li::before {
	border-bottom: 1px solid #cecece;
	content: counter(li, decimal-leading-zero);
	display: inline-block;
	display: inline-block;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 2.8125vw;
	line-height: 3.75vw;
	margin-bottom: 1.5625vw;
	padding: 0 0 0.9375vw 0;
}

.contact_form_note {
	font-size: 3.125vw;
	line-height: 1.5;
	margin-top: 5.46875vw;
	padding: 0 3.125vw;
}

.contact_form_main {
	margin-top: 5.46875vw;
	padding: 0 3.125vw 10vw;
}

.contact_form_row {
	border-bottom: 1px solid #eee;
	padding: 4.6875vw 0 5vw;
	position: relative;
}

.contact_form_row:first-child {
	border-top: 1px solid #eee;
}

.contact_form_row ._left {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 3.75vw;
	font-weight: bold;
	line-height: 1.5;
	padding-left: 2.34375vw;
	white-space: nowrap;
	width: 100%;
}

.contact_form_row ._left.required {
	position: relative;
}

.contact_form_row ._left.required::after {
	background: url("../images/req.png") 0 0 no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 5vw;
	margin-left: 4.6875vw;
	width: 9.21875vw;
}

.contact_form_row ._right {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 1.25vw;
	width: 100%;
}

.contact_form_row ._right02,
.contact_form_row ._right03 {
	margin-top: 1.25vw;
}
input#required-amount {
	width:8rem;
}
input#required-amount,
.contact_form_row ._right select,
.contact_form_row ._right input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #eaf5f1;
	border: 2px solid #d6e6ef;
	border-radius: 0.46875vw;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: "Noto Sans CJK JP Medium";
	font-size: 3.75vw;
	height: 10.625vw;
	line-height: 1.5;
	padding: 0 10px;
}

.contact_form_row ._right textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #eaf5f1;
	border: 2px solid #d6e6ef;
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: "Noto Sans CJK JP Medium";
	font-size: 3.75vw;
	height: 31.25vw;
	line-height: 1.5;
}

.contact_form_row ._right .half {
	width: 75vw;
}

.contact_form_row ._right.display_block {
	display: block;
}

.contact_form_row ._right .full,
.contact_form_row ._right .full_sp {
	width: 100%;
}

.contact_form_row ._right .bt {
	position: absolute;
	right: 0;
	top: 4.6875vw;
	width: 22.65625vw;
}

.contact_form_row ._right .bt a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #333333;
	border-radius: 3px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 2.8125vw;
	height: 5vw;
	width: 22.65625vw;
}

.contact_form_row ._right .bt a::before {
	background: url("../images/control_right.png") 0 0 no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.25vw;
	margin: 0 1.40625vw 0 1.40625vw;
	width: 0.9375vw;
}

.contact_form_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 9.375vw;
}

.contact_form_btn button {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: -webkit-gradient(linear, left bottom, left top, from(#ff810a), to(#ff6731));
	background: linear-gradient(0deg, #ff810a 0%, #ff6731 100%);
	border: 0;
	border-radius: 7.8125vw;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Noto Sans CJK JP Bold";
	font-size: 3.75vw;
	height: 15.625vw;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
	text-align: center;
	width: 75vw;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@-webkit-keyframes popup {

0% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

5% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

10% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

15% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

20% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

50% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

55% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

60% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

65% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

70% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

}

@keyframes popup {

0% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

5% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

10% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

15% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

20% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

50% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

55% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

60% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

65% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

70% {
	-webkit-transform: scale(1);
	transform: scale(1);
}

}

@-webkit-keyframes fadeup {

from {
	opacity: 0;
	-webkit-transform: translateY(10%);
	transform: translateY(10%);
	visibility: hidden;
}

to {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
}

}

@keyframes fadeup {

from {
	opacity: 0;
	-webkit-transform: translateY(10%);
	transform: translateY(10%);
	visibility: hidden;
}

to {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
}

}


/*# sourceMappingURL=style.css.map */
