@charset "UTF-8";



/* -------------------------------------------

header

------------------------------------------- */
header {
	background: #fff;
	box-shadow: 0 0 1rem rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	padding-left: 15rem;
	z-index: 9999;
}
@media screen and (max-width: 768px) {
	header {
		position: static;
		width: 100%;
		box-shadow: none;
		padding-left: 1rem;
		height: 5rem;
	}
}
/* ---- wrap ---- */
header .wrap {
	display: flex;
}
header .wrap > div img {
	width: auto;
	height: 6rem;
}
@media screen and (max-width: 768px) {
	header .wrap > div img {
		height: 5rem;
	}
}
/* ---- h1 ---- */
h1 {
	width: 265px;
	margin-right: 20px;
	max-height: 65px;
}

@media screen and (max-width: 820px) {
	h1 {
		width: 132px;
	}
}

@media screen and (max-width: 768px) {
	h1 {
		width: 10rem;
		margin-right: 5px;
	}
}
/* ---- ul ---- */
header ul {
	display: flex;
	border-top: solid 2px var(--red);
	border-right: solid 2px var(--red);
	border-bottom: solid 2px var(--red);
	align-items: center;
	height: 6rem;
	padding: 0 0.5rem;
}
header ul li {
	width: 16rem;
}
header ul li:nth-child(1) {
	width: 24rem;
}
header ul li:not(:last-child) {
	margin-right: 0.6rem;
}
@media screen and (max-width: 768px) {
	header ul {
		display: flex;
		border: none;
		padding: 0;
		height: 5rem;
	}
	header ul li {
		width: 4.5rem;
	}
	header ul li:nth-child(1) {
		width: 4.5rem;
	}
	header ul li:not(:last-child) {
		margin-right: 0;
	}
	header ul li a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 4.5rem;
		height: 5rem;
	}
	header ul li a img {
		width: 2.5rem;
	}
	header ul li:nth-child(1) a {
		background: var(--blue);
	}
	header ul li:nth-child(2) a {
		border: solid 0.2rem var(--orange);
	}
	header ul li:nth-child(3) a {
		border: solid 0.2rem #06c755;
	}
}



/* -------------------------------------------

cv-1

------------------------------------------- */
.cv-1 {
	border: solid 3px var(--red);
	padding: 10px;
}
@media screen and (max-width: 768px) {
	.cv-1 {
		padding: 1rem 1rem;
	}
}
/* ---- div ---- */
.cv-1 > div {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 5px;
}
.cv-1 > div span {
	background: var(--red);
	border-radius: 10rem;
	color: #fff;
	font-size: 26px;
	padding: 0 2.2rem 0.2rem 3rem;
	margin-right: 15px;
}
@media screen and (max-width: 768px) {
	.cv-1 > div {
		font-size: 1.5rem;
	}
	.cv-1 > div span {
		font-size: 1.5rem;
		margin-right: 1rem;
		padding: 0 1.2rem 0.2rem 2rem;
	}
}
/* ---- ul ---- */
.cv-1 ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.cv-1 ul li {
	width: 280px;
}
.cv-1 ul li:not(:last-child) {
	margin-right: 8px;
}
.cv-1 ul li:first-child {
	width: 410px;
}
@media screen and (max-width: 768px) {
	.cv-1 ul {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.cv-1 ul li {
		width: 49%;
	}
	.cv-1 ul li:not(:last-child) {
		margin-right: 0;
	}
	.cv-1 ul li:first-child {
		width: 100%;
		margin-bottom: calc(2% + 8px);
	}
	.cv-1 ul li:first-child a {
		box-shadow: 0 8px 0 #337796;
	}
}



/* -------------------------------------------

cv-2

------------------------------------------- */
.cv-2 {
	border-left: solid 3px var(--red);
	border-right: solid 3px var(--red);
	border-bottom: solid 3px var(--red);
}
@media screen and (max-width: 768px) {
	.cv-2 {
		border: none;
	}
	.cv-2.adjust {
		position: relative;
		z-index: 10;
		margin-top: -40px;
	}
}
/* ---- wrap-1 ---- */
.cv-2 .wrap-1 {
	background: var(--red);
	color: #fff;
	display: flex;
	align-items: center;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: calc((100% - 960px) / 2);
}
.cv-2 .wrap-1 > div {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-weight: bold;
}
.cv-2 .wrap-1 > div span {
	background: #fff;
	border-radius: 10rem;
	color: #000;
	font-size: 26px;
	padding: 0 2.2rem 0.2rem 3rem;
	margin-right: 15px;
}
/* ---- wrap-2 ---- */
.cv-2 .wrap-2 {
	display: flex;
	align-items: flex-end;
	width: 960px;
	margin: -50px auto 0 auto;
	padding-bottom: 1rem;
}
.cv-2 .wrap-2 > ul {
	width: 70%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cv-2 .wrap-2 > ul li {
	width: 49%;
}
.cv-2 .wrap-2 > ul li:first-child {
	width: 100%;
	margin-bottom: 2%;
}
.cv-2 .wrap-2 > figure {
	width: 30%;
	padding-left: 10px;
	position: relative;
}
@media screen and (max-width: 768px) {
	.cv-2 .wrap-2 {
		border-left: solid 3px var(--red);
		border-right: solid 3px var(--red);
		border-bottom: solid 3px var(--red);
	}
	.cv-2 .wrap-2 {
		display: block;
		width: auto;
		margin: 0;
		padding: 1rem;
	}
	.cv-2 .wrap-2 > ul {
		width: 100%;
	}
	.cv-2 .wrap-2 > ul li {
		width: 49%;
	}
	.cv-2 .wrap-2 > ul li:first-child {
		width: 100%;
		margin-bottom: calc(2% + 8px);
	}
	.cv-2 ul li:first-child a {
		box-shadow: 0 8px 0 #337796;
	}
}


/* -------------------------------------------

cp

------------------------------------------- */
.cp {
	padding: 70px 0;
}
.cp p {
	width: 800px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.cp {
		padding: 30px 10px 10px 10px;
	}
	.cp p {
		width: auto;
		margin: 0 auto;
	}
}



/* -------------------------------------------

service

------------------------------------------- */
/* ---- wrap-1 ---- */
.service .wrap-1 {
	background: #e6f6ff;
	padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
	.service .wrap-1 {
		padding-bottom: 100px;
	}
}
.service .ttl-wrap {
	background: url(../img/triangel.png) no-repeat center bottom;
	background-size: 100% auto;
	padding: 120px 0 70px 0;
	margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.service .ttl-wrap {
		background: url(../img/triangel-sp.png) no-repeat center bottom;
		background-size: 100% auto;
		padding: 70px 0 40px 0;
		margin-bottom: 30px;
	}
}
/* ---- ul ---- */
.service .wrap-1 ul {
	width: 1100px;
	margin: 0 auto;
}
.service .wrap-1 ul li:not(:last-child) {
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.service .wrap-1 ul {
		width: auto;
		padding: 0 10px;
	}
	.service .wrap-1 ul li:not(:last-child) {
		margin-bottom: 30px;
	}
}
/* ---- wrap-2 ---- */
.service .wrap-2 {
	padding-bottom: 120px;
	background: url(../img/service-bg-1.jpg) no-repeat center / cover;
}
.service .wrap-2 h3 {
	width: 1100px;
	margin: 0 auto 0 auto;
	position: relative;
	top: -40px
}
.service .wrap-2 ul {
	width: 1020px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.service .wrap-2 ul li {
	width: 31%;
}
.service .wrap-2 ul li figcaption {
	color: #fff;
	background: #333;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	padding: 5px 0;
}
@media screen and (max-width: 768px) {
	.service .wrap-2 {
		padding-bottom: 70px;
	}
	.service .wrap-2 h3 {
		width: 100%;
		top: -55px;
		margin-bottom: -20px;
		padding: 0 10px;
	}
	.service .wrap-2 ul {
		width: 100%;
		padding: 0 10px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.service .wrap-2 ul li {
		width: 49%;
	}
	.service .wrap-2 ul li:first-child {
		margin-right: 2%;
	}
	.service .wrap-2 ul li:last-child {
		margin-top: 2%;
	}
	.service .wrap-2 ul li figcaption {
		font-size: 18px;
		padding: 3px 0;
	}
}



/* -------------------------------------------

product

------------------------------------------- */
.product {
	background: url(../img/product-bg-1.jpg) no-repeat center / cover;
	padding: 120px 0;
}
@media screen and (max-width: 768px) {
	.product {
		padding: 70px 20px;
	}
}
/* ---- h2 ---- */
.product h2 {
	width: 700px;
	margin: 0 auto 30px auto;
	background: var(--red);
	color: #fff;
	font-size: 26px;
	border-radius: 10rem;
	text-align: center;
	padding: 5px 0 6px 0;
}
@media screen and (max-width: 768px) {
	.product h2 {
		width: 100%;
		font-size: 2.4rem;
	}
}
/* ---- p ---- */
.product h2 + p {
	text-align: center;
	font-size: 26px;
	line-height: 1.6;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	.product h2 + p {
		font-size: 16px;
		text-align: left;
	}
}
/* ---- figure ---- */
.product figure {
	width: 960px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.product figure {
		width: 100%;
	}
}



/* -------------------------------------------

reason

------------------------------------------- */
.reason {
	padding: 120px 0;
	background: url(../img/reason-bg-1.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
	.reason {
		padding: 70px 20px;
		background: url(../img/reason-bg-1-sp.jpg) no-repeat center / cover;
	}
}
/* ---- ul ---- */
.reason ul {
	width: 1100px;
	margin: 0 auto;
}
.reason ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.reason ul li:nth-child(even) {
	flex-direction: row-reverse;
}
.reason ul li:not(:last-child) {
	margin-bottom: 40px;
}
.reason ul li > figure {
	width: 380px;
}
.reason ul li > div {
	width: 680px;
	display: flex;
	align-items: center;
}
.reason .num {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 900;
	font-weight: bold;
	font-size: 40px;
	line-height: 1;
	font-family: var(--font);
	background: var(--bg-grd);
	padding-top: 6px;
}
.reason .num i {
	font-size: 15px;
}
.reason ul li > div dl {
	width: calc(100% - 100px);
	padding-left: 15px;
}
.reason ul li > div dl dt {
	color: var(--blue);
	font-weight: bold;
	font-size: 30px;
}
@media screen and (max-width: 768px) {
	.reason ul {
		width: 100%;
	}
	.reason ul li {
		display: block;
	}
	.reason ul li:not(:last-child) {
		margin-bottom: 55px;
	}
	.reason ul li > figure {
		width: 100%;
		margin-bottom: 15px;
	}
	.reason ul li > div {
		width: 100%;
		align-items: flex-start;
	}
	.reason .num {
		width: 60px;
		height: 60px;
		font-size: 25px;
	}
	.reason .num i {
		font-size: 10px;
	}
	.reason ul li > div dl {
		width: calc(100% - 60px);
		padding-left: 15px;
	}
	.reason ul li > div dl dt {
		font-size: 2.4rem;
		line-height: 1.4;
		margin-bottom: 1rem;
	}
	.reason ul li > div dl dd {
		font-size: 16px;
	}
}



/* -------------------------------------------

works

------------------------------------------- */
.works {
	background: #f2f2f2;
	padding: 120px 0;
}
@media screen and (max-width: 768px) {
	.works {
		padding: 70px 20px;
	}
}
/* wrap */
.works .wrap {
	width: 960px;
	margin: 0 auto;
	position: relative;
}
@media screen and (max-width: 768px) {
	.works .wrap {
		width: 100%;
		padding-bottom: 7rem;
	}
}
/* ---- swiper ---- */
.swiper-slide {
	background: #fff;
	padding: 80px 50px 50px 50px;
}
@media screen and (max-width: 768px) {
	.swiper-slide {
		background: #fff;
		padding: 5rem 1.5rem 3rem 1.5rem;
	}
}
.img-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: url(../img/arrow-red.png) no-repeat center;
	background-size: 2rem;
}
.img-wrap > * {
	width: 45%;
	position: relative;
}
.img-wrap figcaption {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 1;
}
.img-wrap figcaption span:nth-child(1) {
	font-family: var(--font);
	font-size: 30px;
	font-weight: bold;
	color: #999;
}
.img-wrap .after figcaption span:nth-child(1) {
	font-size: 40px;
	color: var(--red);
}
.img-wrap .before figcaption {
	top: -35px
}
.img-wrap .after figcaption {
	top: -40px
}
@media screen and (max-width: 768px) {
	.img-wrap {
		background-size: 0.8rem;
	}
	.img-wrap > * {
		width: 47%;
	}
	.img-wrap figcaption span:nth-child(1) {
		font-size: 1.5rem;
	}
	.img-wrap .after figcaption span:nth-child(1) {
		font-size: 1.5rem;
	}
	.img-wrap figcaption span:nth-child(2) {
		font-size: 1rem;
		padding-left: 0.5rem;
	}
	.img-wrap .before figcaption {
		top: -2.5rem
	}
	.img-wrap .after figcaption {
		top: -2.5rem
	}
}
/* dl */
.swiper-slide > dl:nth-of-type(1) {
	display: flex;
	margin: 30px 0;
	align-items: center;
}
.swiper-slide > dl:nth-of-type(1) dt {
	width: 220px;
	height: 57px;
	padding-bottom: 2px;
	border: solid 2px var(--red);
	border-radius: 10rem;
	font-size: 26px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-slide > dl:nth-of-type(1) dd {
	font-size: 26px;
	width: calc(100% - 220px);
	padding-left: 20px;
	line-height: 1.4;
}
.swiper-slide > dl:nth-of-type(2) dt {
	color: var(--red);
	font-weight: bold;
	font-size: 26px;
	background: url(../img/arrow-red.png) no-repeat center left;
	background-size: 15px auto;
	padding-left: 30px;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.swiper-slide {
		height: 54rem !important;
	}
	.swiper-slide > dl:nth-of-type(1) {
		margin: 2rem 0;
		align-items: flex-start;
	}
	.swiper-slide > dl:nth-of-type(1) dt {
		width: 12rem;
		height: 4rem;
		font-size: 1.8rem;
	}
	.swiper-slide > dl:nth-of-type(1) dd {
		font-size: 1.6rem;
		width: calc(100% - 12rem);
		padding-left: 1.5rem;
	}
	.swiper-slide > dl:nth-of-type(2) dt {
		color: var(--red);
		font-weight: bold;
		font-size: 1.8rem;
		background: url(../img/arrow-red.png) no-repeat center left;
		background-size: 1.5rem auto;
		padding-left: 2.5rem;
	}
}
/* prev / next */
.swiper-button-prev,
.swiper-button-next {
    width: 60px;
    height: 214px;
    top: calc(50% - 107px);
    position: absolute;
    z-index: 999;
    transition: all .3s;
}	
.swiper-button-prev {
    background: url(../img/prev.png) no-repeat center;
    background-size: 100% auto;
    left: -30px;
}	
.swiper-button-next  {
    background: url(../img/next.png) no-repeat;
    background-size: 100% auto;
    right: -30px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    cursor: pointer;
    opacity: 0.5;
}
.swiper-pagination {
	bottom: -3rem !important;
}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #000;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background:var(--red) !important;
}
@media screen and (max-width: 768px) {
	.swiper-pagination {
		bottom: 1rem !important;
	}
	.swiper-button-prev,
	.swiper-button-next {
		width: 5rem;
		height: 5rem;
		top: auto;
		bottom: 0;
	}	
	.swiper-button-prev {
		background: url(../img/prev-sp.png) no-repeat center;
		background-size: 100% auto;
		left: 0;
	}	
	.swiper-button-next  {
		background: url(../img/next-sp.png) no-repeat;
		background-size: 100% auto;
		right: 0;
	}
}



/* -------------------------------------------

area

------------------------------------------- */
.area {
	padding: 120px 0;
	background: url(../img/area-bg-1.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
	.area {
		padding: 70px 20px;
	}
}
/* ---- wrap ---- */
.area .wrap {
	width: 960px;
	margin: 0 auto 70px auto;
	display: flex;
	align-items: center;
}
.area .wrap > figure {
	width: 500px;
}
.area .wrap > div {
	width: 460px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.area .wrap > div > div {
	font-weight: bold;
	font-size: 30px;
}
.area .wrap > div > p {
	font-size: 14px;
}
.area > section {
	width: 960px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.area .wrap {
		width: 100%;
		margin: 0 auto 55px auto;
		display: block;
	}
	.area .wrap > figure {
		width: 100%;
		margin-bottom: 30px;
	}
	.area .wrap > div {
		width: 100%;
	}
	.area .wrap > div > div {
		font-weight: bold;
		font-size: 2rem;
		margin-bottom: 1rem;
	}
	.area .wrap > div > p {
		font-size: 1.4rem;
		line-height: 1.7;
	}
	.area > section {
		width: 100%;
	}
}
/* ---- area-toggle ---- */
.area-toggle {
	background: var(--bg-grd);
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	position: relative;
	display: flex;
	align-items: center;
	height: 70px;
	padding-left: 30px;
	transition: ease-in-out .3s;
}
@media screen and (max-width: 768px) {
	.area-toggle {
		font-size: 2rem;
		height: 5.6rem;
		padding-left: 2rem;
	}
}
.area-toggle:hover {
	cursor: pointer;
	opacity: 0.6	;
}
.area-toggle i {
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 15px
}
@media screen and (max-width: 768px) {
	.area-toggle i {
		width: 3.6rem;
		height: 3.6rem;
		position: absolute;
		right: 1.5rem;
		top: 1rem
	}
}
.area-toggle i::before,
.area-toggle i::after {
	content: "";
	background: #fff;
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	transition: ease-in-out .3s;
}
.area-toggle i::before {
	width: 100%;
	height: 2px;
}
.area-toggle i::after {
	width: 2px;
	height: 100%;
}
.area-toggle.open i::after {
	transform: translate(-50%,-50%) rotate(90deg);
}
/* ---- area-contents ---- */
.area-contents {
	padding: 30px 30px 0 30px;
}
.area-contents dt {
	font-weight: bold;
}
.area-contents dt::before {
	content: "■";
	color: var(--blue);
}
.area-contents dd:not(:last-of-type) {
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.area-contents {
		padding: 2rem 0 0 0;
	}
	.area-contents dd:not(:last-of-type) {
		margin-bottom: 3rem;
	}
}



/* -------------------------------------------

estimate

------------------------------------------- */
#estimate {
	display: block;
}
.estimate {
	padding: 120px 0;
	background: #f2f2f2;
}
@media screen and (max-width: 768px) {
	.estimate {
		padding: 70px 10px;
	}
}
input:focus {
	font-size: 16px;
}
::placeholder {
	font-weight: 500;
	color: #ccc;
}
/* ---- wrap ---- */
.estimate .wrap {
	background: #fff;
	width: 1080px;
	margin: 0 auto;
	padding: 60px 60px;
}
@media screen and (max-width: 768px) {
	.estimate .wrap {
		width: 100%;
		padding: 3rem 2rem;
	}
}
/* ---- form ---- */
form label {
	font-size: 20px;
	font-weight: bold;
	width: 40%;
}
form > div {
	display: flex;
	align-items: center;
	border-bottom: solid 1px #ccc;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
form > div > div {
	width: 60%;
}
form label i {
	display: block;
	font-size: 12px;
	font-weight: normal;
}
@media screen and (max-width: 768px) {
	form label {
		font-size: 1.8rem;
		width: 100%;
	}
	form > div {
		display: block;
		align-items: center;
		border-bottom: solid 1px #ccc;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	form > div > div {
		width: 100%;
		margin-top: 1.5rem;
	}
	form label i {
		font-size: 1.2rem;
	}
}
.CMS-FORM-INPUT,
.CMS-FORM-EMAIL,
input[type="text"],
input[type="number"],
input[type="email"],
textarea {
	width: 100%;
	border: solid 1px #ccc;
	padding: 20px;
	line-height: normal;
	font-size: 1.6rem;
	resize: none;
}
textarea {
	height: 200px;
}
@media screen and (max-width: 768px) {
	.CMS-FORM-INPUT,
	.CMS-FORM-EMAIL,
	input[type="text"],
	input[type="number"],
	input[type="email"],
	textarea {
		font-size: 1.6rem;
	}
	input[type=text],
	textarea {
		padding: 1.5rem;
	}
	textarea {
		height: 20rem;
	}
}
.privacy-wrap {
	display: flex;
	justify-content: center;
	border-bottom: none ;
}
.privacy-wrap label {
	margin-left: 10px;
	font-size: 18px;
	font-weight: normal;
}
@media screen and (max-width: 768px) {
	.privacy-wrap {
		margin: 0;
	}
	.privacy-wrap label {
		font-size: 1.8rem;
	}
}
.privacy-wrap label a {
	text-decoration: underline;
	margin-right: 5px;
}

/* select */
select {
    border: solid 1px #ccc;
    appearance: none;
    border-radius: 0;
    padding: 20px 4rem 20px 20px;
    font-size: 1.4rem;
    position: relative;
    background: #fff;
    color: #000;
	width: 100%;
	font-size: 1.6rem;
	line-height: normal;
}
@media screen and (max-width: 768px) {
	select {
		padding: 1.5rem 4rem 1.5rem 1.5rem;
		font-size: 1.6rem;
	}
}
.select-wrap {
    position: relative;
	width: 100%;
}
.select-wrap::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: solid 0.15rem #333;
    border-bottom: solid 0.15rem #333;
    transform: rotate(45deg);
    position: absolute;
    right: 1.2rem;
    top: calc(50% - 0.6rem);
    z-index: 10;
}

/* submit */
.submit-wrap {
	border-bottom: none;
	margin: 0;
	padding: 0;
}
.submit-wrap button {
    border-radius: 0;
    -webkit-appearance: button;
    appearance: button;
    border: none;
	width: 470px;
	height: 80px;
	background: url(../img/arrow-wh.png) no-repeat center right 30px;
	background-size: 15px auto;
	color: #fff;
	background-color: var(--orange);
	border-radius: 10px;
	margin: 0 auto;
	font-size: 30px;
	font-weight: bold;
	box-shadow: 0 5px 0 #ca6c28;
	transition: ease-in-out .3s;
	cursor: pointer;
}
.submit-wrap button:hover {
	opacity: 0.5;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.submit-wrap button {
		width: 100%;
		height: 6rem;
		background: url(../img/arrow-wh.png) no-repeat center right 20px;
		background-size: 1.2rem auto;
		background-color: var(--orange);
		font-size: 2rem;
	}
}
.submit-wrap button::-webkit-search-decoration {
    display: none;
}
/* checkbox */
.checkbox-wrap label {
	font-size: 18px;
	font-weight: normal;
}
@media screen and (max-width: 768px) {
	.checkbox-wrap label {
		font-size: 1.8rem;
	}
}
input[type="checkbox"] {
    border-radius: 0.3rem;
    background: #fff;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
	border: solid 1px #ccc;
    vertical-align: -5px;
}
input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
}
.his {
	background: var(--red);
	color: #fff;
	display: inline-block;
	padding: 0 6px;
	font-weight: normal;
	font-size: 16px;
	margin-left: 5px;
}
@media screen and (max-width: 768px) {
	.his {
		font-size: 1.2rem;
	}	
}
.invalid-feedback {
	display: none;
	margin-top: 0.5em;
	font-weight: 700;
	color: #ff0000;
}
.repair-wrap {
	margin: 0;
	padding: 0;
	border-bottom: none;
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}
.repair-wrap button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
	background-color: transparent;
	text-decoration: underline;
	font-size: inherit;
	cursor: pointer;
}
body.thanx {
	background: #f2f2f2;
}
.thanx h2 {
	line-height: 1.4;
}
.thanx p {
	text-align: center;
}
.thanx .link-top {
	margin-top: 2em;
	text-align: center;
}
.thanx .link-top a {
	text-decoration: underline;
}

/* -------------------------------------------

footer

------------------------------------------- */
footer ul {
	background: #fff;
	padding: 30px 0;
	display: flex;
	justify-content: center;
}
footer ul li:not(:last-child) {
	margin-right: 100px;
}
@media screen and (max-width: 768px) {
	footer ul li:not(:last-child) {
		margin-right: 30px;
	}
}
footer ul a {
	text-decoration: underline;
}
footer small {
	display: block;
	background: var(--blue);
	color: #fff;
	font-size: 12px;
	padding: 10px 0;
	text-align: center;
}


.sp-fixed-foot {
	overflow: hidden;
	display: flex;
	position: fixed;
	z-index: 10;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}
@media screen and (min-width: 769px) {
	.sp-fixed-foot {
		display: none;
	}
}
.sp-fixed-foot-active .sp-fixed-foot {
	transform: translateY(0);
}
.sp-fixed-foot a {
	display: block;
	position: relative;
}
.sp-fixed-foot::after {
  position: absolute;
  content: "";
	display: block;
	top: -100%;
	left: 0;
	width: 50px;
	height: 200%;
	transform: rotate(45deg);
	background-color: #fff;
	animation: reflection 3s ease-in-out infinite;
	opacity: 0;
	pointer-events: none;
}
@keyframes reflection {
  0% {
      transform: scale(0) rotate(45deg);
      opacity: 0;
  }
  80% {
      transform: scale(0) rotate(45deg);
      opacity: 0.5;
  }
  81% {
      transform: scale(4) rotate(45deg);
      opacity: 0.98;
  }
	100% {
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

#page-top {
	display: none;
}

@media screen and (max-width: 768px) {
	#page-top {
		bottom: 9rem;
	}
	footer small {
		padding-bottom: 9rem;
	}
}

.confirm_img img {
	width: 100px;
	height: 100px;
}