@charset "utf-8";
/*ヘッダー*/
.toplead {
	width:80%;
	margin:30px auto;
}
#guide {
	border:1px dotted #CCC;
	width:80%;
	margin:30px auto;
	text-align:center;
	padding:20px;
}
#guide h2{
	width:80%;
	margin:15px auto 5px;
	font-size:90%;
	/*border:1px solid #CCC;*/
	border-radius:5px;
	background:rgba(202,242,206,0.5);
	padding:5px 0;
}


section h2.form {
	text-align:center;
	background: -prefix-linear-gradient(bottom, rgba(13,111,171,1),rgba(18,130,183,0.9));
	background: linear-gradient(to bottom, rgba(13,111,171,1),rgba(18,130,183,0.9));
	border-radius:5px;
	width:220px;
	margin:30px auto;
	color:#FFF;
	font-size:140%;
	padding:8px 0;
}
section h3 {
	text-align:center;
	width:80%;
	margin:0 auto 10px;
	background-color:#F0F0F0;
	border-radius:20px;
	font-size:120%;
	padding:5px 0;
}
.thankstext {
	text-align:center;
	margin-bottom:200px;
}
.formbox {
	width:80%;
	margin:0px auto 30px;
}
.disnon {
	display:none;
}

/*フォーム初期化*/
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	/*-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;*/
	font-size:20px;
	font-size:2rem;
	line-height:1.5;
}
input[type="text"],
input[type="email"] {
	border:1px #CCC solid;
	padding:10px;
	width:100%;
}
textarea {
	padding:10px;
	width:100%;
}
label {
	font-weight:normal;
	cursor:pointer;
	display:block;
}
input.p-postal-code{
	width:10em;
}
input.telno{
	width:15em;
}
.formbox dl dd.kakunin {
	border:1px #CCC solid;
	padding:10px;
	
}
input[type="checkbox"] {
}
input[type="submit"] {
	padding:5px;
	border:1px #CCC solid;
	border-radius:10px;
	background-color:#E7E7E7;
	width:50%;
	text-align:center;
	float:left;
}
input[type="reset"],
input[type="button"] {
	padding:5px;
	border:1px #CCC solid;
	border-radius:10px;
	background-color:#E7E7E7;
	width:40%;
	text-align:center;
	float:right;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover{
	background-color:#F90;
}

.formbox ::-webkit-input-placeholder {
  font-size:80%;
  color:#CCC;
}
.formbox ::-moz-placeholder {
  font-size:80%;
  color:#CCC;
}
.formbox :-ms-input-placeholder {
  font-size:80%;
  color:#CCC;
}


.formbox dl dd ul {
	margin-left:10px;
}
.formbox dl dd ul li{
	margin-bottom:5px;
}
.submitarea {
	width:70%;
	margin:20px auto;
	text-align:center;
	overflow:hidden;
}
.formbox dl dt span{
	color:#CC3300;
	font-size:13px;
	font-size:1.3rem;
	padding-left:5px;
	font-weight:bold;
}
.formbox dl dd {
	word-break: break-all;
}
.formbox .asterisk{
	color:#CC3300;
	font-size:13px;
	font-size:1.3rem;
	padding-left:5px;
	font-weight:bold;
}
.entrance ul li {
	margin-bottom:20px;
}


/*商品番号と商品名*/
.formbox dl.readonly dd{
	background-color:#E0E6E7;
}


/*チェックボックス*/
input[type="checkbox"] {
    border: 1px solid #CCCCCC;
    vertical-align: -6px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    width: 22px;
    height: 22px;
    /*Other Browser*/
    background: #e2e2e2;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #ffffff),
        color-stop(1.00, #e2e2e2)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #e2e2e2 100%
    );
}

input[type="checkbox"]:checked {
    /*Other Browser*/
    background: #99cc00;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #C8F4FF),
        color-stop(1.00, #92B6DA)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #C8F4FF 0%,
        #92B6DA 100%
    );
    border: 1px solid #CCCCCC;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    left: 0px;
    top: 13px;
    display: block;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    content: "";
    width: 10px;
    height: 3px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 8px;
    top: 13px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 13px;
    height: 3px;
    background: #ffffff;
    -webkit-transform: rotate(-51deg);
    -webkit-transform-origin: left center;
}


/*ラジオボタン*/
input[type="radio"] {
    border: 1px solid #CCCCCC;
    vertical-align: -6px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 11px;
    border-radius: 11px;
    -webkit-box-sizing: border-box;
    width: 22px;
    height: 22px;
    /*Other Browser*/
    background: #e2e2e2;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #ffffff),
        color-stop(1.00, #e2e2e2)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #e2e2e2 100%
    );
}
input[type="radio"]:checked {
    /*Other Browser*/
    background: #99cc00;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #C8F4FF),
        color-stop(1.00, #92B6DA)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #C8F4FF 0%,
        #92B6DA 100%
    );
    border: 1px solid #CCCCCC;
}
input[type="radio"]:checked:before {
    position: absolute;
    left: 0px;
    top: 13px;
    display: block;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    content: "";
    width: 10px;
    height: 3px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="radio"]:checked:after {
    display: block;
    position: absolute;
    left: 8px;
    top: 13px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 13px;
    height: 3px;
    background: #ffffff;
    -webkit-transform: rotate(-51deg);
    -webkit-transform-origin: left center;
}


#confirm {
	display:none;
}
#confirm .formbox dl dd{
	border:1px #CCC solid;
	font-size:110%;
	width:100%;
	vertical-align:top;
	padding:15px 10px;
	min-height:40px;
}
#confirm .formbox dl dd #name_val,
#confirm .formbox dl dd #postcd_val{
	margin-bottom:10px;
}
.textbox:last-child {
	margin-top:8px;
}


::-webkit-input-placeholder {
  font-size:80%;
}
::-moz-placeholder {
  font-size:80%;
}
:-ms-input-placeholder {
  font-size:80%;
}

#thanks h2.form {
	margin-top:50px;
}


@media print, screen and (min-width:768px) {
	
.formbox dl {
	display:table;
	border-collapse:separate;
	border-spacing: 10px 0;
	margin:10px 0;
	width:100%;
}
.formbox dl dt{
	display:table-cell;
	width:30%;
	vertical-align:top;
	background-color:#E0E6E7;
	padding:10px;
}
.formbox dl dd{
	display:table-cell;
	width:70%;
}
.formbox dd.textareabox {
	border:1px #CCC solid;
}
.formbox dd.checkboxbox,
.formbox dd.radiobox {
	padding:5px;
}

}

@media only screen and (max-width:767px) {
#guide {
	border:1px dotted #CCC;
	width:95%;
	margin:30px auto;
	text-align:center;
	padding:15px;
}
#guide h2{
	width:100%;
	margin:15px auto 5px;
	font-size:90%;
	border-radius:5px;
	background:rgba(202,242,206,0.5);
	padding:5px 0;
}
#guide p{
	text-align:left;
	padding:0 10px;
}
#guide p.small{
	text-align:center;
}


section h3 {
	text-align:center;
	width:100%;
	margin:0 auto;
	background-color:#F0F0F0;
	border-radius:20px;
	font-size:100%;
	padding:5px 0;
}

.formbox {
	width:100%;
	margin:30px auto;
}
input[type="text"],
input[type="tel"],
input[type="Email"],
textarea {
	border:1px #CCC solid;
	padding:10px;
}
input.telno{
	width:100%;
}
.formbox dl dd ul.withinputbox li input.inputcheck{
	width:45%;
	margin-left:5px;
}
.formbox dl {
	margin:10px 0;
	width:100%;
}
.formbox dl dt{
	vertical-align:top;
	background-color:#E0E6E7;
	padding:5px 10px;
	margin-bottom:5px;
	font-size:1.2rem;
}
.formbox dl dd{
	width:100%;
	overflow:scroll;
	overflow:visible;
	
}

#confirm .formbox dl dd{
	border:1px #CCC solid;
	font-size:110%;
	width:100%;
	vertical-align:top;
	padding:10px;
	min-height:40px;
}

.formbox ::-webkit-input-placeholder {
  font-size:70%;
  color:#CCC;
}
.formbox ::-moz-placeholder {
  font-size:70%;
  color:#CCC;
}
.formbox :-ms-input-placeholder {
  font-size:70%;
  color:#CCC;
}
.formbox .selectbox li {
	text-indent:-25px;
	margin-left:25px;
}
.submitarea {
	width:85%;
	margin:30px auto;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	font-size:100%;
}
}
/*-----各種アプリ-----------------------*/
#contact_nav {
	background: none;
}
