@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 90px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	box-sizing: border-box;
}
.roboto {
	font-family: "Roboto", sans-serif;
}
.orange {
	color: #f9a11a;
}
.yellow {
	color: #ffff00;
}
.ttl01 {
	text-align: center;
	font-weight: 700;
	font-size: 3.6rem;
	margin-bottom: 40px;
}
.ttl01 .en {
	font-family: "Roboto", sans-serif;
	display: block;
	color: #f9a11a;
	font-size: 3rem;
	margin-bottom: 40px;
	position: relative;
}
.ttl01 .en::after {
	position: absolute;
	display: block;
	content: "●";
	color: #f9a11a;
	bottom: -30px;
	right: 50%;
	font-size: 1.2rem;
	transform: translate(50%,0);
}
.bg01 {
	background: #fff9f0;
}

#worries.bg01 {
	background: linear-gradient(to bottom, #fff9f0 0% 75%, #f9a11a 75% 100%);
}

@media screen and (max-width:768px) {
	#worries.bg01 {
		background: linear-gradient(to bottom, #fff9f0 0% 90%, #f9a11a 90% 100%);
	}
}

.bg02 {
	background: #f3f3f3;
}
.btn_contact a {
	color: #fff;
	background: linear-gradient(to right,#fd1c1c,#fd5454);
	font-weight: 700;
	font-size: 3rem;
	display: block;
	max-width: 400px;
	border-radius: 100px;
	text-align: center;
	line-height: 1.4;
	padding: 10px 0;
	box-shadow: 4px 4px 6px 0px rgba(0,0,0,0.2);
}
.btn_contact a span {
	display: block;
	font-size: 2rem;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		font-size: 2.6rem;
		margin-bottom: 30px;
		line-height: 1.4;
	}
	.ttl01 .en {
		font-size: 2rem;
		margin-bottom: 30px;
		position: relative;
	}
	.ttl01 .en::after {
		bottom: -20px;
		font-size: 1rem;
		transform: translate(50%,0);
	}
	.btn_contact a {
		font-size: 2.2rem;
	}
	.btn_contact a span {
		font-size: 1.6rem;
	}
}


/* header
-------------------------------------------------------*/
#header {
	padding: 5px 20px;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#header .logo {
	margin-right: 40px;
}
#header .logo img {
	max-width: 199px;
}
.header_contact {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
.header_contact li {
	margin-left: 20px;
}
.header_btn {
	color: #fff;
	font-weight: 700;
	min-width: 130px;
	display: block;
	text-align: center;
	border-radius: 100px;
	padding: 12px 10px;
	line-height: 1;
}
.header_btn.btn01 {
	background: linear-gradient(to right,#2e94b9,#39b1dd);
}
.header_btn.btn02 {
	background: linear-gradient(to right,#2fb897,#39ddb5);
}
.header_btn.btn03 {
	background: linear-gradient(to right,#f9a11a,#f7b146);
	width: 200px;
}
.header_btn.btn03 .icon {
	position: relative;
	padding-right: 25px;
}
.header_btn.btn03 .icon::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/icon_contact.png)no-repeat right center/25px 16px;
	width: 25px;
	height: 16px;
	right: -5px;
	top: 50%;
	transform: translate(0,-50%);
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#header {
		padding: 10px;
	}
	#header .logo {
		margin-right: 0;
	}
	#header .logo img {
		max-width: 150px;
	}
}

/* nav_sp
-------------------------------------------------------*/
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 14px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #f9a11a;
		width: 25px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(9px) rotate(45deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-45deg);
	}
	#nav_sp .nav_cont,
	#nav_sp .nav_cont::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp .nav_cont {
		overflow: auto;
		background: #fff9f0;
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 50px 20px;
		box-sizing: border-box;
	}
	#nav_sp .nav_cont.active {
		right: 0;
	}
	#nav_sp .header_btn {
		width: 100%;
		box-sizing: border-box;
		padding: 20px;
		font-size: 1.6rem;
	}
	#nav_sp li:not(:last-child) {
		margin-bottom: 20px;
	}
}


/* visual
-------------------------------------------------------*/
#visual {
	background: url(../img/visual_bg.png)no-repeat center/cover;
	padding: 40px 20px 20px;
}
#visual .visual_top_txt {
	text-align: center;
	margin-bottom: 25px;
}
#visual .visual_top_txt img {
	max-width: 1139px;
}
#visual .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.visual_caution {
	font-size: 1.2rem;
}
#visual .btn_contact a {
	margin: 20px 0 0 auto;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#visual {
		padding: 10px;
	}
	.visual_caution {
		font-size: 1.2rem;
		padding: 0 10px;
	}
	#visual .btn_contact a {
		margin: 10px auto 20px;
	}
}


/* footer
-------------------------------------------------------*/
#footer {
	background: #333333;
	color: #fff;
	font-size: 1.4rem;
}
#footer.area {
	padding: 70px 20px;
}
#footer .txt {
	margin-bottom: 50px;
	line-height: 1.4;
}
#footer .copy {
	font-size: 1rem;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#footer {
		font-size: 1.2rem;
	}
	#footer.area {
		padding: 50px 20px;
		padding-bottom: 100px;
	}
	#footer .txt {
		margin-bottom: 30px;
	}
}


/* worries
-------------------------------------------------------*/
.list_worries {
	display: flex;
	flex-flow: row nowrap;
	align-items:stretch;
	justify-content: space-between;
	max-width: 1000px;
	margin: 20px auto 0;
}
.list_worries li {
	background: #fff;
	border-radius: 20px;
	padding: 40px 20px;
	border-radius: 20px;
	text-align: center;
	width: 30%;
	box-sizing: border-box;
	border: 8px solid #f9a11a;
}
.list_worries li .num {
	margin-top: -80px;
	margin-bottom: 20px;
}
.list_worries li .num img {
	max-width: 68px;
}
.list_worries li .icon {
	margin-bottom: 20px;
}
.list_worries li .icon img {
	max-width: 102px;
}
.list_worries li .ttl {
	font-weight: 700;
	font-size: 2rem;
	display: inline;
	background-image: linear-gradient(transparent 60%, #ffff00 60%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.list_worries {
		flex-flow: column;
		align-items:center;
		justify-content: center;
	}
	.list_worries li {
		padding: 30px 20px;
		border-radius: 20px;
		width: 100%;
		border: 5px solid #f9a11a;
	}
	.list_worries li:not(:last-child) {
		margin-bottom: 40px;
	}
	.list_worries li .num {
		margin-top: -55px;
		margin-bottom: 20px;
	}
	.list_worries li .num img {
		max-width: 50px;
	}
	.list_worries li .ttl {
		font-size: 1.6rem;
	}
	
}


/* campaign
-------------------------------------------------------*/
#campaign .cam_img {
	margin-bottom: 70px;
}
.list_campaign {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
}
.list_campaign li {
	border: 5px solid #f9a11a;
	border-radius: 20px;
	width: 30%;
}
.list_campaign li .ttl {
	text-align: center;
	color: #fff;
	font-weight: 900;
	font-size: 2.4rem;
	background: #f9a11a;
	padding: 10px;
	border-radius: 15px 15px 0 0;
}
.list_campaign li .txt_box {
	padding: 20px;
	text-align: center;
	font-weight: 700;
}
.list_campaign li .txt_box .ttl_b {
	background: #000;
	color: #fff;
	font-size: 2rem;
	padding: 0 0 5px;
	position: relative;
	margin-bottom: 25px;
}
.list_campaign li .txt_box .ttl_b::after {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #000 transparent transparent transparent;
	border-width: 15px 12px 0px 12px;
	right: 50%;
	bottom: -14px;
	transform: translate(50%,0);
}
.list_campaign li .txt_box .ttl_b .size_l {
	font-size: 2.8rem;
}
.list_campaign li .txt_box .txt {
	margin-bottom: 20px;
	font-size: 2rem;
}
.list_campaign li .txt_box .txt .orange {
	display: block;
	font-size: 3rem;
	font-weight: 900;
}
.list_campaign li .txt_box .txt .size_l {
	font-size: 4rem;
}
.list_campaign li .txt_box dl {
	border: 1px solid #f9a11a;
	border-radius: 5px;
}
.list_campaign li .txt_box dl:not(:last-child){
	margin-bottom: 20px;
}
.list_campaign li .txt_box dl dt{
	background: #f9a11a;
	color: #fff;
	padding: 5px 0;
}
.list_campaign li .txt_box dl dd {
	font-size: 2rem;
	padding: 5px 0;

}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#campaign .cam_img {
		margin-bottom: 40px;
	}
	.list_campaign {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.list_campaign li {
		border: 3px solid #f9a11a;
		width: 100%;
	}
	.list_campaign li:not(:last-child) {
		margin-bottom: 30px;
	}
	.list_campaign li .ttl {
		font-size: 2.2rem;
	}
	.list_campaign li .txt_box .ttl_b {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
	.list_campaign li .txt_box .ttl_b .size_l {
		font-size: 2.4rem;
	}
	.list_campaign li .txt_box .txt {
		font-size: 1.8rem;
	}
	.list_campaign li .txt_box .txt .orange {
		font-size: 2.6rem;
	}
	.list_campaign li .txt_box .txt .size_l {
		font-size: 3rem;
	}
	.list_campaign li .txt_box dl dd {
		font-size: 1.8rem;
		padding: 5px 0;
	}
}

/* btn_area
-------------------------------------------------------*/
.btn_area {
	background: #feeea3;
}
.btn_area.area {
	padding: 30px 20px;
}
.btn_area .btn_contact {
	position: relative;
}
.btn_area .btn_contact a {
	margin: 0 auto;
	padding: 20px 0;
	max-width: 520px;
	font-size: 4rem;
}
.btn_area .btn_contact a span {
	font-size: 2.6rem;
}
.btn_area .btn_contact::before,.btn_area .btn_contact::after {
	position: absolute;
	display: block;
	content: "";
}
.btn_area .btn_contact::before {
	
	background: url(../img/btn_medal.png)no-repeat left center/225px 226px;
	width: 225px;
	height: 226px;
	top: 50%;
	transform: translate(0,-50%);
	left: 6%;
	display: none;
}
.btn_area .btn_contact::after {
	background: url(../img/btn_icon.png)no-repeat left center/198px 173px;
	width: 198px;
	height: 173px;
	right: 9%;
	bottom: -30px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.btn_area.area {
		padding: 30px 20px;
	}
	.btn_area .btn_contact a {
		padding: 10px 0;
		max-width: 100%;
		font-size: 2.4rem;
	}
	.btn_area .btn_contact a span {
		font-size: 1.8rem;
	}
	.btn_area .btn_contact::before {
		background: url(../img/btn_medal.png)no-repeat left center/78px 79px;
		width: 78px;
		height: 79px;
		top: -50px;
		transform: inherit;
		left: -10px;
	}
	.btn_area .btn_contact::after {
		display: none;
	}	
}

/* case
-------------------------------------------------------*/
#case .top_txt {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
}
.list_case {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: center;
}
.list_case li {
	width: 48%;
}
.list_case li:not(:last-child) {
	margin-bottom: 20px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#case .top_txt {
		font-size: 1.6rem;
		margin-bottom: 30px;
	}
	.list_case {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.list_case li {
		width: 100%;
	}
	.list_case li:not(:last-child) {
		margin-bottom: 20px;
	}
	
}

/* banner_area
-------------------------------------------------------*/

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

}

/* features
-------------------------------------------------------*/
.list_features {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
	margin-top: 80px;
}
.list_features li {
	width: 32%;
	border: 5px solid #f9a11a;
	padding: 30px 20px;
	border-radius: 20px;
	box-sizing: border-box;
}
.list_features li .num {
	text-align: center;
	margin-top: -90px;
	margin-bottom: 20px;
}
.list_features li .num img {
	max-width: 99px;
}
.list_features li .img {
	margin-bottom: 20px;
}
.list_features li .ttl {
	margin-bottom: 20px;
	text-align: center;
	font-size: 2.6rem;
	font-weight: 700;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #f9a11a;
}
.list_features li .txt {
	font-weight: 500;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.list_features {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin-top: 50px;
	}
	.list_features li {
		width: 100%;
		padding: 20px;
	}
	.list_features li:not(:last-child) {
		margin-bottom: 40px;
	}
	.list_features li .num {
		margin-top: -50px;
		margin-bottom: 20px;
	}
	.list_features li .num img {
		max-width: 60px;
	}
	.list_features li .img {
		margin-bottom: 20px;
	}
	.list_features li .ttl {
		font-size: 2rem;
	}
}

/* step
-------------------------------------------------------*/
.list_step {
	max-width: 800px;
	margin: 0 auto;
}


.list_step li.cont {
	background: #fff;
	border-radius: 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	padding: 20px 30px;
	box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.2);
}
.list_step li .in {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.list_step li:not(:last-child) {
	margin-bottom: 20px;
}
.list_step li.arrow {
	text-align: center;
}
.list_step li.arrow img {
	max-width: 48px;
}
.list_step li .img {
	text-align: center;
	margin-right: 20px;
}
.list_step li .img img {
	width: 120px;
}
.list_step li .img dl {

}
.list_step li dt {
	display: inline-block;
	background: #f9a11a;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	width: 150px;
	padding: 3px;
	border-radius: 50px;
	text-align: center;
	margin-bottom: 10px;
}
.list_step li .txt {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.2;
	margin-right: 10px;
}
.list_step li .txt_s {
	font-size: 2rem;
}
.list_step li .txt_ss {
	font-size: 1.4rem;
	display: block;
	font-weight: 500;
}
.list_step .kome {
	font-size: 1.2rem;
	vertical-align: top;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.list_step li.cont {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 20px 20px 20px 10px;
	}
	.list_step li.cont.row .in:not(:last-child) {
		margin-bottom: 20px;
	}
	.list_step li.arrow img {
		max-width: 30px;
	}
	.list_step li .img {
		margin-right: 10px;
	}
	.list_step li .img img {
		width: 100px;
	}
	.list_step li dt {
		font-size: 1.6rem;
		width: 100px;
	}
	.list_step li .txt {
		font-size: 2rem;
	}
	.list_step li .txt_s {
		font-size: 1.6rem;
	}
	.list_step li .txt_ss {
		font-size: 1.2rem;
	}
}

/* price
-------------------------------------------------------*/
#price {
	text-align: center;
}
.price_table {
	margin-bottom: 20px;
}
.price_table img {
	max-width: 840px;
}
#price .price_ttl {
	text-align: center;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.4;
}
#price .price_ttl .bg_yellow {
	background:linear-gradient(transparent 70%, #ffff00 70%);
}
#price .img {
	max-width: 900px;
	margin: 0 auto;
	margin-top: -20px;
	margin-bottom: 100px;
}
@meedia screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.price_table {
		margin-bottom: 10px;
	}
	#price .price_ttl {
		text-align: center;
		font-size: 2rem;
		font-weight: 700;
		line-height: 1.4;
	}
	#price .img {
		margin-top: 10px;
		margin-bottom: 30px;
	}	
}

/* faq
-------------------------------------------------------*/
#faq .inner {
	max-width: 900px;
}
#faq dl:not(:last-child) {
	margin-bottom: 40px;
}
#faq dl dt {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#faq dl dd {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#faq dl .icon {
max-width: 57px;
margin-right: 20px;
}
#faq dl dt {
	border-bottom: 1px solid #f9a11a;
	padding-bottom: 20px;
	margin-bottom: 0px;
}
#faq dl dt .txt {
	font-size: 2.6rem;
	font-weight: 700;
	padding-top: 5px;
}
#faq dl dd .txt {
	font-size: 1.8rem;
	padding-top: 15px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#faq dl:not(:last-child) {
		margin-bottom: 40px;
	}
	#faq dl .icon {
	max-width: 40px;
	margin-right: 20px;
	}
	#faq dl dt {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	#faq dl dt .txt {
		font-size: 2rem;
		padding-top: 0;
	}
	#faq dl dd .txt {
		font-size: 1.6rem;
		padding-top: 5px;
	}
	
}

/* voltage
-------------------------------------------------------*/
#voltage.area {
	padding: 70px 20px;
}
#voltage .top_ttl {
	text-align: center;
	color: #fff;
	font-size: 3rem;
	background: #f9a11a;
	padding: 10px;
	margin-bottom: 30px;
}
.list_voltage {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-around;
}
.list_voltage li {
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	width: 48%;
	box-sizing: border-box;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}
.list_voltage li dl {
	margin-right: 20px;
	width: 50%;
}
.list_voltage li dt {
	color: #fff;
	font-size: 2rem;
	background: #f9a11a;
	font-weight: 700;
	text-align: center;
	border-radius: 5px;
	padding: 5px;
	margin-bottom: 10px;
}
.list_voltage li .img {
	width: 50%;
}
.list_voltage li dd {
	font-size: 1.8rem;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#voltage.area {
		padding: 50px 20px;
	}
	#voltage .top_ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.list_voltage {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.list_voltage li {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		width: 100%;
	}
	.list_voltage li:not(:last-child) {
		margin-bottom: 20px;
	}
	.list_voltage li dl {
		margin-right: 0;
		width: 100%;
		margin-bottom: 20px;
	}
	.list_voltage li dt {
		font-size: 1.8rem;
	}
	.list_voltage li .img {
		width: 100%;
		text-align: center;
	}
	.list_voltage li .img img {
		width: 80%;
	}
	.list_voltage li dd {
		font-size: 1.6rem;
		text-align: center;
	}
	
}


/* contact
-------------------------------------------------------*/
#contact .inner {
	max-width: 780px;
}
#contact .top_txt {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 30px;
}
#contact .table_temp {
	width: 100%;
}
#contact.contact_after .inner {
	padding: 0;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	width: 220px;
	text-align: left;
	font-size: 1.8rem;
}
#contact tr th.top {
	vertical-align: top;
	padding-top: 40px;
}
#contact tr td.short input {
	width: 160px;
}
#contact tr th b {
	display: block;
	position: relative;
	font-weight: 500;
}
#contact tr.hissu th b::after {
	color: #fff;
	font-weight: 500;
	font-size: 1.2rem;
	width: 50px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "必須";
	background: #fd2525;
	border-radius: 3px;
}
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
	background: #f3f3f3;
	border: 1px solid #c4c4c4;
	border-radius: 3px;
}
#contact input[type="text"],
#contact select {
	height: 50px;
}
#contact textarea {
	min-height: 170px;
	resize: vertical;
}
#contact .radio_area label,
#contact .check_area label {
	display: inline-block;
	margin: 5px 5px 5px 0;
	line-height: 1.3;
}
#contact .txt_form {
	text-align: center;
	line-height: 1.4;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 340px;
	height: 63px;
	border: none;
	border-radius: 100px;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 2rem;
	color: #fff;
	line-height: 1;
    text-align: center;
	font-weight: 700;
}
#contact .form_btn01 {
	background: #f9a11a;
}
#contact .form_btn02 {
	background: #333;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#contact .top_txt {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact tr th {
		width: 100%;
		font-size: 100%;
	}
	#contact tr th.top {
		vertical-align: top;
		padding-top: 15px;
	}
	#contact tr td {
		padding-top: 0;
	}
	#contact tr.hissu th b::after,
	#contact tr.nini th b::after {
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
}


.caution {
	font-size: 70%;
}


.fix_contact {
	display: none;
}

@media screen and (max-width:768px) {
	.fix_contact {
	  display: block;
	  width: 100%;
	  position: fixed;
	  left: 0;
	  bottom: -100px; /* 初期は非表示（下に隠す） */
	  opacity: 0;
	  transition: bottom 0.4s ease, opacity 0.4s ease;
	  z-index: 8;
	}
  
	.fix_contact.show {
	  bottom: 0;       /* 表示位置に移動 */
	  opacity: 1;
	}
  
	.fix_contact .btn_contact a {
	  width: 100%;
	  max-width: 100%;
	  border-radius: 0;
	}
  }
  