



/* 共通 ************************/
section h2 {
	margin: 0;
}
.wrapper {
	width: 100%;
	max-width: 1106px;
}








/* 入力ページ ************************/
section.form_intro div.cont {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
section.form_intro div.cont > img {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
section.form_intro div.cont h3 {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	line-height: 36px;
	background-color: #EA3323;
	padding: 0 0 0 20px;
	height: 60px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border: none;
}
section.form_intro div.cont h3::before {
	position: relative;
	display: inline-block;
	content: '1';
	color: #EA3323;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	width: 36px;
	height: 36px;
	background-color: #fff;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: top;
}
section.form_intro div.cont h3:nth-of-type(2):before {
	content: '2';
}
section.form_intro div.cont h3 span {
	font-size: 18px;
	font-weight: bold;
	color: #FFE500;
	margin-left: 20px;
}
section.form_intro div.cont > p {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	text-align: center;
}
section.form_intro div.cont > div {
	width: 450px;
	margin: 20px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
section.form_intro div.cont > div > img {
	width: 213px;
	height: auto;
	margin: unset;
}
section.form_intro div.cont > div ul {
	width: 217px;
}
section.form_intro div.cont > div ul li {
	font-size: 21px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
}
section.form_intro div.cont > div ul li::before {
	position: relative;
	display: inline-block;
	content: '';
	width: 16px;
	height: 16px;
	background-color: #000000;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: baseline;
}
section.form_intro div.cont > a {
	display: block;
	width: 340px;
	margin: 20px auto 60px;
	font-size: 18px;
	font-weight: bold;
	color: #DD0004;
	text-align: center;
	border: 1px solid #DD0005;
	border-radius: 24px;
	padding: 10px 0;
}
section.form_intro div.cont > a::after {
	position: relative;
	display: inline-block;
	content: '\f35d';
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
	margin-left: 5px;
}
/*hover*/
section.form_intro div.cont > a:hover {
	color: #fff;
	background-color: #DD0004;
}
/*ポップアップ*/
.popup1 {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}
.popup1.is-show {
	opacity: 1;
	visibility: visible;
}
.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	z-index: 1;
	cursor: pointer;
}
.popup1 > div.pc {
	width: 90%;
	max-width: 960px;
	height: 100%;
	max-height: 758px;
	overflow-y: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 2;
}
.popup1 > div > img {
	width: 100%;
	height: auto;
}
.close-btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
}
.close-btn img {
	width: 100%;
	height: auto;
}
/*撮影方法を閉じる*/
.close-btn2 {
	text-align: center;
	margin-top: -78px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.close-btn2 img {
	width: 300px;
	height: 48px;
	cursor: pointer;
}
.close-btn img:hover,
.close-btn2 img:hover {
	opacity: 0.8;
}
/*フォーム*/
div.inquiry_form table {
	width: 640px;
	margin: 0 auto 100px;
}
div.inquiry_form table th,
div.inquiry_form table td {
	width: 100%;
	display: block;
}
div.inquiry_form table th {
	background-color: transparent !important;
	border: none !important;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	text-align: left;
	line-height: 22px;
	padding: 10px 0 !important;
}
/*必須*/
.require {
    display: inline-block;
    padding: 5px 10px;
    line-height: 1.0;
    background: #DB0010;
    color: #fff;
    border-radius: 4px;
    margin-right: 10px;
	margin-left: 0;
    font-size: 12px;
}
/*任意*/
.require.non {
    background-color: #707070;
}
div.inquiry_form table td {
	border: none !important;
	padding: 0 0 0 0;
}
div.inquiry_form input[type="text"] {
    width: 100%;
    border-radius: 4px;
    padding: 24px 4px;
}
div.inquiry_form textarea {
    width: 100%;
    border-radius: 4px;
    padding: 12px 4px;
}
div.inquiry_form input[type="file"] {
	border: none;
}








/* 確認ページ ************************/
.textArea {
	max-width: 720px;
}
.inquiry_form table.confirm {
	width: 100%;
	max-width: 640px;
	margin: 0 auto 60px;
}
.inquiry_form table.confirm tr th {
	margin-top: 30px;
}
.inquiry_form table.confirm tr:first-of-type th {
	margin-top: 0px;
}
.inquiry_form table.confirm tr td {
	width: calc(100% - 10px);
	min-height: 44px !important;
	line-height: 1.6;
	padding: 5px 5px;
	border: 1px solid #ccc !important;
	border-radius: 5px;
}
/*修正ボタン*/
div.form_button > a {
	display: block;
	width: 150px;
	margin: 0 auto 20px;
}
div.form_button > a img {
	width: 100%;
	height: auto;
}
/*修正ボタン*/
div.form_button > a {
	display: block;
	width: 150px;
	margin: 0 auto 20px;
}
div.form_button > a img {
	width: 100%;
	height: auto;
}
/*送信ボタン*/
div.form_button form [type="image"]:hover {
	opacity: 0.8;
}






/* 完了ページ ************************/
div.textArea div.richtext {
	margin-top: 40px;
}
a.backtolp {
	width: max-content;
	display: block;
	margin: 60px auto 0;
	font-size: 18px;
	font-weight: bold;
	color: #ff0000;
	text-align: center;
}
a.backtolp::before {
	position: relative;
	display: inline-block;
	content: '\f137';
	font-size: 20px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
a.backtolp:hover {
	color: black;
}







/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 736px) {
*{}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/







/* 共通 ************************/
section h2 {
    font-size: min(6vw, 32px);
	line-height: 1.4;
}
section h2 b {
	display: inline-block;
}
.wrapper {
	width: 90%;
	max-width: 1106px;
}
.footerBox {
	margin-bottom: 0;
}








/* 入力ページ ************************/
section.form_intro{
	margin-bottom: 30px;
}
section.form_intro div.cont {
	width: 90%;
}
section.form_intro div.cont h3 {
	font-size: min(4.5vw, 20px);
	line-height: 22px;
	height: 50px;
	padding: 0 0 0 15px;
}
section.form_intro div.cont h3::before {
	font-size: 22px;
	width: 24px;
	height: 24px;
	line-height: 22px;
}
section.form_intro div.cont h3 span {
	font-size: min(4vw, 18px);
	margin-left: 10px;
}
section.form_intro div.cont > img {
	margin-top: 30px;
}
section.form_intro div.cont > p {
	font-size: 16px;
	text-align: left;
}
section.form_intro div.cont > div {
	width: 100%;
	max-width: 450px;
}
section.form_intro div.cont > div > img {
	width: 45%;
	/* height: max-content; */
	height: auto;
}
section.form_intro div.cont > div ul {
	width: calc(55% - 10px);
}
section.form_intro div.cont > div ul li {
	font-size: min(4.5vw, 20px);
	margin-bottom: 5px;
}
section.form_intro div.cont > div ul li::before {
	width: 12px;
	height: 12px;
	margin-right: 5px;
}
section.form_intro div.cont > a {
	width: 90%;
	max-width: 340px;
	margin: 20px auto 40px;
}
/*ポップアップ*/
.popup1 > div.sp {
	width: 90%;
	max-width: 100%;
	max-height: 100%;
	overflow-y: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 2;
}
/*撮影方法を閉じる*/
.close-btn2 {
	margin-top: -57px;
}
.close-btn2 img {
	width: 260px;
	height: 42px;
	max-width: unset;
}


/*フォーム*/
div.inquiry_form table {
	width: 100%;
	margin: 0 auto 60px;
}
div.inquiry_form input[type="file"] {
	width: 100%;
}








/* 確認ページ ************************/
section.form_intro {
	margin-bottom: 30px;
}
section.form_intro .h2_wrap {
	margin-bottom: 0px;
}
.inquiry_form table.confirm tr th {
	margin-top: 10px;
}









/* SP固定メニュー ************************/
footer#floatArea.active {
	display: none;
}









/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/