@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    color: #111111;
    background-color: #eeeeee;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Osaka, "ＭＳ Ｐゴシック", sans-serif;
    word-wrap: break-word;
    font-size: 86%;
    line-height: 1.4em;
}

img {
    vertical-align: top;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

a img {
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    transition: 0.2s linear;
}

a:hover img {
    filter: brightness(120%);
}

/*
ヘッダー
-------------------------------------------*/
header {
    width: 100%;
    background-color: #f08200
}

.logo-area {
    text-align: center;
    height: 100px;
    padding: 16px 0;
}

.breadcrumb {
	background-color: #ea5404;
	font-size: 14px;
	line-height: 30px;
	color: #EEE;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}

/*
メインコンテンツ
-------------------------------------------*/
.content {
    width: 100%;
    background-color: #F6F6F6;
    color: #111;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cont_wrap {
    max-width: 1200px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.txt-area {
    margin-bottom: 30px;
}

/*
フォーム
-------------------------------------------*/
h2 {
    color: #ffffff;
    background: #f08200;
    border-left: 8px solid #ea5404;
    margin-bottom: 20px;
    padding: 12px;
}

table {
    border-collapse: collapse;
}

p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 60px auto 40px;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: none;
}

input[type="text"],
textarea {
    background: #f8f8f8;
    display: block;
    font-size: 16px;
    padding: 12px 15px;
    width: 480px;
    transition: 0.8s;
    border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
    background: #e9f5fb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
    display: inline-block;
    width: 100%;
    height: 200px;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
}

::-webkit-input-placeholder {
    color: #ccc;
    opacity: 1;
}

::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}

.form-table {
    width: 100%;
}

.form-table th,
.form-table td {
    border-bottom: 1px solid #eeeeee;
    padding: 20px;
}

.form-table th {
    background: #f08200;
    color: #ffffff;
    padding-left: 50px;
    position: relative;
    text-align: left;
    width: 300px;
    font-weight: normal;
}

.form-table td {
    background: #ffffff;
}

@media screen and (max-width:640px) {
    .form-table th,
    .form-table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
}

/*
フッター
-------------------------------------------*/
footer {
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 10px;
}

footer .cont_wrap {
    font-size: 14px;
}

address {
    background-color: #f08200;
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    /* letter-spacing: 1px; */
}
