/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::after, *::before {
  content: '';
}

body {
  font-size: 100%;
  font-family: "PT Sans", sans-serif;
  color: #333333;
}


a {
  color: #f05451;
  text-decoration: none;
}

p {
  margin-top:20px;
  font-size:12px;
  line-height:130%;
}

/* -------------------------------- 

Main components 

-------------------------------- */
header {
  position: relative;
  line-height: 180px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


  .clear{
  clear:both;
  margin:0;
  padding:0;
  }

@media only screen and (min-width: 768px) {
  header {
    line-height: 225px;
  }
  header h1 img {
    width: 52%;
    height: auto;
  }
}

.img_resize{
  width: 100%;
  height: auto;
  max-width:960px;
}



  .image_center{
  position:absolute;
  top:-30px;
  left:-50px;
  margin:0;
  padding:0;
  }



/* メールフォームCSS */

/* テーブル */
table.form {
	border: 1px solid #7777bb;
	border-collapse: collapse;
	margin-top: 1em;
}
table.form th, table.form td {
	text-align: left;
	vertical-align: top;
	border: none;
	padding: 8px;
	font-weight: normal;
}
table.form th {
	white-space: nowrap;
	background: #fff;
}
table.form td {
	background: #fff;
}

input.mail_form {
    width:170px;
}

textarea.message_form {
    width:170px;
}

/* タイトル装飾 */
strong.ttl {
	text-align: left;
	border-left: solid 4px #cc0000;
	display: block;
	padding: 2px 5px;
	margin-top: 2em;
}

/* メッセージ */
p.msg {
	color: #dd0000;
	margin: 2em;
}
span.msg {
	color: #dd0000;
}

/* 戻りボタン */
form.back {
	margin-top: 2em;
}

@media only screen and (min-width: 768px) {
input.mail_form {
    width:420px;
}
textarea.message_form {
    width:420px;
}

}

