@charset "UTF-8";

@media screen and (min-width:769px){
.confirm,.complete{
	margin:0 auto 80px;
	max-width: 680px;
	width: 95%;
}
.confirm h4{
	margin:0 auto 30px;
	width: 100%;
}
.confirm .error_messe{
	margin: 0 auto 10px;
	width: 100%;
}
.complete .announce .title{
	font-size:22px;
	padding: 0 0 20px 0;
}
.complete .connect{
	margin: 30px auto;
}
.complete .connect .title{
	border:1px solid #ccc;
	margin: 0 0 20px;
}
main{
	margin: 0 auto 20px;
    padding: 120px 0 0;
    max-width: 1200px;
    width: 95%;
}
main h2{
	background: url(/images/bg_p04.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 50px;
    text-align: left;
    margin:0 auto 30px;
    padding: 90px 0 90px 60px;    
    width: calc(100% - 60px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
main h2 span{
	font-size: 20px;
    padding: 0 0 0 20px;
}
main p{
	text-align: center;
	padding: 0 0 30px;
}
section#form{
	margin: 0 auto 80px;
    padding: 0 0 0;
    max-width: 1200px;
    width: 95%;	
}
section#form .formwrap dl,
.confirm dl{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 0;
	padding: 0;
	width: 100%;
}
section#form .formwrap dl.underline{
	margin: 0 auto 20px;
}
section#form .formwrap dl dt{
	border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background: #eee;
    padding: 20px 20px;
    width: calc(25% - 42px);
    position: relative;
}
section#form .formwrap dl dd{
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	padding: 20px 20px;
	width: calc(75% - 41px);
}
section#form .formwrap dl.underline dt,
section#form .formwrap dl.underline dd{
	border-bottom: 1px solid #ccc;
}
.confirm dl dt{
	width: calc(40% - 42px);
}
.confirm dl dd{
	width: calc(60% - 41px);
}
.confirm dl dt,.confirm dl dd{
	border-bottom: 1px solid #ccc;
	padding: 20px 20px;
}
section#form .formwrap dl dt .must{
	position: absolute;
    top: 20px;
    right: 30px;
    background: #bb0404;
    color: #fff;
    width: 50px;
    height: 22px;
    font-size: 14px;
    text-align: center;
}
/*==========================================================
プライバシーポリシー共通
==========================================================*/
section#form #privacy{
	margin: 0 auto 30px;
	padding: 0;
}
section#form #privacy p{
	margin: 0 auto;
}
section#form #privacy .pv {
	text-align: left;
	margin: 0px;
	padding: 20px;
	border: 1px solid #CCC;
}
section#form #privacy .pv dl {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	font-size: 15px;
}
section#form #privacy .pv dl .title {
	font-size: 16px;
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
section#form #privacy .pv dl dt {
	font-weight: bold;
}
section#form #privacy .pvbox {
	display: none;
}
section#form #privacy .open {
	text-align: center;
	margin-bottom: 20px;
	cursor: pointer;
	font-size: 110%;
}
section#form #privacy .open span {
	color: #06C;
	text-decoration: underline;
}
section#form #privacy .pvbox .pv dl dd {
	line-height: 1.5em;
}
section#form #submit{
	margin:0 auto 30px;
	padding: 0;
	width: 100%;
}
section#form textarea,
section#form input[type=text],
section#form input[type=tel]{
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 0;
    padding: 10px;
    width: 90%;
}
section#form input#zip{
	margin: 0 0 15px;
	width: fit-content;
	min-width:unset;
}
section#form input[type=text],
section#form input[type=tel]{
	width: 58%;
	min-width: 500px;
}
section#form #submit input[type=submit],
.confirm input[type=submit]{
	background:#000;
	color:#fff;
	border:none;
	border-radius:8px;
	display: block;
	margin: 0 auto;
	padding: 5px 15px;
}
.confirm input[type=submit]{
	margin: 30px auto 0;
}
.confirm input[type=button]{
	background:#ccc;
	color:#000;
	border:none;
	border-radius:8px;
	display: block;
	margin: 30px auto 0;
	padding: 5px 15px;
}
/*=======================
チェック・セレクトボックス設定 　共通
========================*/
input[type=radio], input[type=checkbox] {
  display: none;
}
.form-area label {
	cursor: pointer;
	margin-right: 15px;
}
::-webkit-input-placeholder {
 color: #ACACAC;
font-size: 14px;
}
.radio, .checkbox {
	box-sizing: border-box;
    display: inline-block;
    border-radius: 8px;
    background-color: #eee;
    cursor: pointer;
    vertical-align: middle;
    margin: 0 0 0 0;
    padding: 15px 25px 15px 50px;
    width: 30%;
    position: relative;
    transition: background-color 0.2s linear;
}
.radio:hover, .checkbox:hover {
  background-color: #FFD1D9;
}
.radio:hover:after, .checkbox:hover:after {
	border-color: #FF6600;
}
.radio:after, .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}
.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}
.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #FF3808;
	border-bottom: 3px solid #FF3808;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
}
@media screen and (max-width:768px){
.confirm,.complete{
	margin:0 auto 80px;
	width: 95%;
}
.confirm h4{
	margin:0 auto 30px;
	width: 100%;
}
.confirm .error_messe{
	margin: 0 auto 10px;
	width: 100%;
}
.complete .announce .title{
	font-size:22px;
	padding: 0 0 10px 0;
}
.complete .announce .text br{
	display: none;
}
.complete .connect{
	margin: 30px auto;
}
.complete .connect .title{
	border:1px solid #ccc;
	margin: 0 0 20px;
}

main{
	margin: 0 auto 20px;
    padding: 30px 0 0;
    width: 95%;
}
main h2{
	background: url(/images/bg_p04.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 50px;
    text-align: left;
    margin: 0 auto 30px;
    padding: 90px 0 90px 30px;
    width: calc(100% - 30px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
main h2 span{
	font-size: 20px;
    padding: 0 0 0 20px;
}
main p{
	text-align: center;
	padding: 0 0 30px;
}
section#form{
	margin: 0 auto 80px;
    padding: 0 0 0;
    width: 95%;	
}
section#form .formwrap dl{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 0;
	padding: 0;
	width: 100%;
}
section#form .formwrap dl.underline{
	margin: 0 auto 20px;
}
section#form .formwrap dl dt{
	border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background: #eee;
    padding: 20px 20px;
    width: calc(100% - 42px);
    position: relative;
}
section#form .formwrap dl dd{
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 20px 20px;
	width: calc(100% - 42px);
}
section#form .formwrap dl.underline dd{
	border-bottom: 1px solid #ccc;
}
section#form .formwrap dl dt .must{
	position: absolute;
    top: 20px;
    right: 30px;
    background: #bb0404;
    color: #fff;
    width: 50px;
    height: 22px;
    font-size: 14px;
    text-align: center;
}
/*==========================================================
プライバシーポリシー共通
==========================================================*/
section#form #privacy{
	margin: 0 auto 30px;
	padding: 0;
}
section#form #privacy .pv {
	text-align: left;
	margin: 0px;
	padding: 20px;
	border: 1px solid #CCC;
}
section#form #privacy .pv dl {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	font-size: 15px;
}
section#form #privacy .pv dl .title {
	font-size: 16px;
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
section#form #privacy .pv dl dt {
	font-weight: bold;
}
section#form #privacy .pvbox {
	display: none;
}
section#form #privacy .open {
	margin: 0 auto 20px;
	cursor: pointer;
}
section#form #privacy .open span {
	color: #06C;
	text-decoration: underline;
}
section#form #privacy .pvbox .pv dl dd {
	line-height: 1.5em;
}
section#form #submit{
	margin:0 auto 30px;
	padding: 0;
	width: 100%;
}
section#form textarea,
section#form input[type=text],
section#form input[type=tel]{
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 0;
    padding: 10px;
    width: calc(100% - 20px);
}
section#form input#zip{
	margin: 0 0 15px;
	width: fit-content;
}
section#form #submit input[type=submit],
.confirm input[type=submit]{
	background:#000;
	color:#fff;
	border:none;
	border-radius:8px;
	display: block;
	margin: 0 auto;
	padding: 10px 35px;
}
.confirm input[type=button]{
	background:#ccc;
	color:#000;
	border:none;
	border-radius:8px;
	display: block;
	margin: 50px auto 0;
	padding: 10px 35px;
}
/*=======================
チェック・セレクトボックス設定 　共通
========================*/
input[type=radio], input[type=checkbox] {
  display: none;
}
.form-area label {
	cursor: pointer;
	margin-right: 15px;
}
::-webkit-input-placeholder {
 color: #ACACAC;
font-size: 14px;
}
.radio, .checkbox {
	box-sizing: border-box;
    display: inline-block;
    border-radius: 8px;
    background-color: #eee;
    cursor: pointer;
    vertical-align: middle;
    margin: 0 0 10px;
    padding: 15px 25px 15px 50px;
    width: calc(100% - 75px);
    position: relative;
    transition: background-color 0.2s linear;
}
.radio:hover, .checkbox:hover {
  background-color: #FFD1D9;
}
.radio:hover:after, .checkbox:hover:after {
	border-color: #FF6600;
}
.radio:after, .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}
.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}
.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #FF3808;
	border-bottom: 3px solid #FF3808;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
}