@charset "utf-8";

/* ==============================================================================

	CommonElements

============================================================================== */
html {
  font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Sans-Serif;
  color: #000;
  word-wrap: break-word;
  height:100%;
  font-size: 62.5%;
}


body {
	margin:0;
	padding:0;
    height:100%;
	font-size:1.6em;
}

a:link { text-decoration:underline; color:#666;}
a:visited { text-decoration:underline; color:#666;}
a:hover { text-decoration:underline; color:#ff8d1e;}
a img:hover{opacity: 0.8;}


.only_pc {
	display:none;
}

.only_sp {
	display: inherit;
}

/* clearfix*/
.clearfix:after {
 content: ".";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}
.clearfix {display: inline-block;}
*html .clearfix {height:1%}
.clearfix {display: block}



#header{
    background-color:#ff8d1e;
}

#header .logo{
    width: 200px;
    padding: 5px;
}

#header .logo img{
    width: 100%;
}

h1{
    background-color: #ddd;
    padding: 5px 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
}

form,
.wrap{
    padding: 20px 10px;
    overflow: hidden;
}

form dt{
    margin: 10px 0 5px;
}

form dt.req::before {
    content: "必須";
    background: url( ../img/req.jpg) no-repeat left center;
    width: 36px;
    height: 24px;
    display: inline-block;
    text-indent: -9999px;
    margin-right: 8px;
}

form dt.opt::before {
    content: "任意";
    background: url("../img/opt.jpg") no-repeat left center;
    width: 40px;
    display: inline-block;
    text-indent: -9999px;
    margin-right: 8px;
}

form dt .sub{
    font-size: 1.2rem;
}


form dd{
    margin:0 0 15px 0;
}

form dd input[type="text"],
form dd input[type="email"],
form dd textarea{
    width: 100%;
}
form dd input[type="file"]{
    max-width: 70%;
}

form dd img{
    width: 90%;
    height: auto;
}

form .border{
    border-bottom: 1px dotted #666;
}


.btnarea{
    text-align: center;
    padding: 20px 0;
}

.submitbtn{
    font-size: 18px;
    font-weight: bold;
    width: 200px;
	color: #ffffff;
	padding: 10px 20px;
	background: -moz-linear-gradient(
		top,
		#a7dd16 0%,
		#7aac08);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#a7dd16),
		to(#7aac08));
    background:-ms-linear-gradient(top, #a7dd16, #7aac08); 
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	border: 1px solid #82bf08;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);

}

.submitbtn:active{
    background: -moz-linear-gradient(
		top,
		#7aac08 0%,
		#a7dd16);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#7aac08),
		to(#a7dd16));
    background:-ms-linear-gradient(top, #7aac08, #a7dd16); 
}

.backbtn{
    font-size: 18px;
    width: 160px;
	color: #555;
	padding: 10px 10px;
    margin-bottom: 20px;
	background: -moz-linear-gradient(
		top,
		#f7f7f7 0%,
		#9f9f9f);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#f7f7f7),
		to(#9f9f9f));
    background:-ms-linear-gradient(top, #f7f7f7, #9f9f9f); 
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	border: 1px solid #999;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 1px rgba(255,255,255,0.7);

}

.backbtn:active{
    background: -moz-linear-gradient(
		top,
		#9f9f9f 0%,
		#f7f7f7);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#9f9f9f),
		to(#f7f7f7));
    background:-ms-linear-gradient(top, #9f9f9f, #f7f7f7); 
}

.error_list{
    padding: 20px 30px;
}

.error_list li{
    list-style: disc;
    color:#D40F13;
}

.thanks{
    text-align: center;
}

.thanks h2{    
    font-size: 1.8rem;
    font-weight: bold;
    color:#ff6600;
    margin-bottom: 15px;
}

.thanks p{
    margin-bottom: 15px;
}

#footer{
    background-color: #666;
    text-align: center;
    color: #fff;
    font-size: 11px;
    padding: 10px 0;
}

p.note {
  font-weight: bold;
  text-align: center;
  color: #FB0004;
}

/* ==============================================================================

	PC表示用スタイル

============================================================================== */

@media print, screen and (min-width: 769px) {

.only_pc {
	display: inherit;
}

.only_sp {
	display: none;
}

#header .logo{
    width: 800px;
    padding: 5px;
    margin: 0 auto;
}

#header .logo img{
    width: 300px;
}

form,
.wrap{
    width: 800px;
    margin: 20px auto;
    padding: 20px 10px;
}

form dt{
    clear: both;
    display: inline-block;
    width: 300px;
    padding: 5px 0;
    vertical-align: top;
}

form dd{
    width: 490px;
    display: inline-block;
    padding: 10px 0 5px;
}

.submitbtn:hover{
    cursor: pointer;
    background: -moz-linear-gradient(
		top,
		#7aac08 0%,
		#a7dd16);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#7aac08),
		to(#a7dd16));
    background:-ms-linear-gradient(top, #7aac08, #a7dd16); 
}

.backbtn:hover{
    cursor: pointer;
    background: -moz-linear-gradient(
		top,
		#9f9f9f 0%,
		#f7f7f7);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#9f9f9f),
		to(#f7f7f7));
    background:-ms-linear-gradient(top, #9f9f9f, #f7f7f7); 
}


.btnarea{
    clear: both;
}

.backbtn {
    margin-right: 20px;
}



} /*min-width: 769px*/


