@charset "utf-8";


/*==============================
 フォーム
==============================*/
#form .block {
	width: 90%;
	max-width: 960px;
	display: block;
	margin: 40px auto;
	box-sizing: border-box;
}
@media screen and (max-width: 960px) {
#form .block {
	margin: 20px auto;
}
}
#form .formBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: stretch;
		align-items: flex-start;
		flex-wrap: wrap;
	box-sizing: border-box;
}
#form .text,
#form .error {
	width: 100%;
	display: block;
	padding: 20px 0;
	font-size: 1.2em;
	line-height: 2em;
    text-align: center;
}
#form .error {
    text-align: center;
    color: red;
}
#form .red {
    color: red;
}
#form .thanks {
	width: 100%;
	display: block;
	margin-top: 40px;
	font-size: 1.8em;
	line-height: 1.2em;
    text-align: center;
}
@media screen and (max-width: 767px) {
#form .text,
#form .error {
	padding: 10px 0;
	font-size: 1em;
	line-height: 1.6em;
    text-align: justify;
}
#form .thanks {
	margin-top: 20px;
	font-size: 1.4em;
}
}
#form dl {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 15px 0;
	border-top: solid 1px #CCC;
}
@media screen and (max-width: 767px) {
#form dl {
	padding: 10px 0;
}
}
#form dl a {
	text-decoration: underline;
}
#form dl dt {
	position: relative;
	width: 28%;
    min-height: 50px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 5px 40px 5px 1%;
	font-size: 1.2em;
	line-height: 1.6em;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
#form dl dt {
	width: 100%;
    min-height: 0;
	font-size: 1em;
	line-height: 1.6em;
}
}
#form dl dt .note,
#form dl dd .note {
	width: 100%;
    display: block;
    margin-top: 5px;
	font-size: 0.8em;
	line-height: 1.4em;
}
#form dl dd {
	position: relative;
    width: 70%;
    min-height: 40px;
    display: flex;
		justify-content:flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    margin-left: auto;
    padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.6em;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
#form dl dd {
    width: 100%;
    margin: 0;
    padding: 5px 0 5px 44px;
	font-size: 1em;
}
}
#form dl dd .must {
	position: absolute;
	width: 36px;
	height: 24px;
	top: 12px;
	left: -46px;
	font-size: 0.8em;
	line-height: 24px;
	text-align: center;
	color: red;
	border: solid 1px red;
}
@media screen and (max-width: 767px) {
#form dl dd .must {
	width: 36px;
	height: 24px;
	top: 12px;
	left: 0;
}
}
#form dl dd .error {
	margin-left: 5px;
	font-size: 1em;
	line-height: 1.2em;
	color: red;
}
#form dl dd input.ip01,
#form dl dd input.ip02,
#form dl dd input.ip03,
#form dl dd input.ip04,
#form dl dd input.ip05,
#form dl dd input.ip_tel {
	height: 40px;
	padding: 5px;
    border: solid 1px #999;
	box-sizing: border-box;
}
#form dl dd input.ip01 {
	width: 50%;
}
#form dl dd input.ip02 {
	width: 75%;
}
#form dl dd input.ip03 {
	width: 10%;
}
#form dl dd input.ip04 {
	width: 15%;
}
#form dl dd input.ip05 {
	width: 8%;
}
#form dl dd input.ip_tel {
	width: 25%;
}
@media screen and (max-width: 767px) {
#form dl dd input.ip01,
#form dl dd input.ip02 {
	width: 100%;
}
#form dl dd input.ip03 {
	width: 20%;
}
#form dl dd input.ip04 {
	width: 25%;
}
#form dl dd input.ip05 {
	width: 15%;
}
#form dl dd input.ip_tel {
	width: 20%;
}
}
#form dl dd textarea {
	width: 100%;
	margin: 5px 0 -5px;
	padding: 5px;
    border: solid 1px #999;
	box-sizing: border-box;
}
#form dl dd select {
	height: 40px;
    border: solid 1px #999;
    box-sizing: border-box;
}
#form dl dd span {
    width: 100%;
    margin: 0;
	padding: 0;
}
@media screen and (max-width: 767px) {
#form dl dd span {
    width: 100%;
}
}
#form dl dd label {
    display: block;
    padding: 10px 0;
}
#form dl dd label input[type=radio],
#form dl dd label input[type=checkbox] {
    display: inline-block;
	margin: 0 5px 0 0;
	vertical-align: baseline;
}
#form .btnBlock {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}
#form .btnSend,
#form .submitback,
#form .btnSend2,
#form .submitback2 {
	display: inline-block;
	margin: 0 10px;
}
#form .btnSend input[type=submit],
#form .submitback input,
#form .btnSend2 input[type=submit],
#form .submitback2 input {
	display: block;
	padding: 20px 40px;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	border: none;
	border-radius: 10px;
	background: #756456;
}
#form .btnSend2 input[type=submit],
#form .submitback2 input {
	background: #756456;
}
#form a.btnHome {
	width: 240px;
	display: block;
	margin: 20px auto;
	padding: 20px 40px;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	border: none;
	border-radius: 10px;
	background: #756456;
}
@media screen and (max-width: 767px) {
#form .btnSend input[type=submit],
#form .submitback input,
#form .btnSend2 input[type=submit],
#form .submitback2 input {
	padding: 20px;
	font-size: 1.2em;
}
#form a.btnHome {
	width: 80%;
	margin: 20px auto;
	font-size: 1.2em;
}
}

/*プライバシーポリシー*/
#form .privacyArea {
	width: 100%;
	clear: both;
	overflow: auto;
	margin: 0 auto;
	padding: 40px 4% 20px;
	border: solid 5px #EEE;
	box-sizing: border-box;
}
#form .privacyArea .title {
	width: 100%;
	clear: both;
	margin: 0 auto;
	font-size: 1.6em;
	line-height: 1.2em;
	text-align: center;
}
#form .privacyArea .text {
	width: 100%;
	padding: 20px 0;
	font-size: 1.2em;
	line-height: 1.6em;
    text-align: justify;
}
#form .privacyArea hr {
	width: 100%;
	height: 1px;
	margin-bottom: 20px;
	border: none;
	background: #CCC;
}
#form .privacyArea ol {
	width: 94%;
	clear: both;
	margin: 0 auto 20px;
}
#form .privacyArea ol li {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
    text-align: justify;
	list-style: decimal outside;
}
@media screen and (max-width:767px) {
#form .privacyArea {
	padding: 20px 5%;
	border: solid 4px #EEE;
}
#form .privacyArea .title {
	margin-bottom: 10px;
	font-size: 1em;
}
#form .privacyArea p {
	font-size: 0.8em;
}
#form .privacyArea p a {
	font-size: 1em;
}
}
