@charset "UTF-8";

/*パンくずリスト*/
#bg-palegreen {
    height: 35px;
    background: #f0fff0;
}

.breadcrumb {
    height: 30px;
    padding: 6px 0 0 0;
    margin:0 auto;;
    width: 831px;
}

.breadcrumb li{
    display:inline;/*横に並ぶように*/
    list-style: none;
    font-weight: normal;
}

.breadcrumb li:after {/* >を表示*/
    content: '>';
    padding: 0 3px;
    color: #555;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb #home span {
    color: #006837;
}

.breadcrumb li a {
    text-decoration: none;
    color: #000;/*色*/
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

/*メイン*/
article h1,
article section h2 {
    width: 831px;
    background: #ED5A24;
    border-radius: 6px;
    font-size: 2.7rem;
    font-family: sans-serif;
    font-weight: normal;
    color: #fff;
    padding: 5px 0 2px 12px;
    margin: 60px auto 0 auto;
    box-sizing: border-box;
}

.center-position {
    width: 831px;
    margin: 30px auto 60px auto;
    box-sizing: border-box;
}

#concept-image {
    width: 100%;
}

#concept {
    font-size: 1.8rem;
    color: #7F270B;
    margin-top: 20px;
}

h3 {
    font-size: 2rem;
    font-weight: normal;
}

.color-table {
    border-collapse: collapse;
    margin-top: 10px;
    width: 100%;
}

.color-table tr th,
.color-table tr td {
    font-size: 1.4rem;
    padding: 1em;
    border: solid 2px #ccc;
}

.color-table tr th {
    background-color: #eee;
    text-align: center;
    font-weight: normal;
}

.color-table tr td {
    padding-left: 5%;
}

.color-table tr td ul {
    list-style-type: none;
}

.text-wrap_box {
    display: flex;
    flex-wrap: wrap;
}

.text-wrap_item {
    display: block;
}

.normal-form {
    background-color: #eee;
    margin-top: 40px;
}

.normal-form table {
    width: 100%;
    border-collapse: collapse;
}

.normal-form table tr th,
.normal-form table tr td {
    padding: 1em;
    border: 2px solid #fff;
}

.normal-form table tr th {
    text-align: center;
    font-weight: normal;
    font-size: 1.4rem;
}

.normal-form table tr td {
    padding-left: 2em;
}

label {
    margin-right: 3em;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"] {
    width: 50%;
}

input[type="radio"] {
    margin-right: 5px;
}

input {
    font-size: 1em;
    padding: 5px;
}

textarea {
    width: 90%;
    font-size: 1em;
    padding: 5px;
}

#flat-btn {
    display: block;
    width: 150px;
    height: 35px;
    background-color: #0071B8;
    color: #fff;
    border-radius: 6px;
    margin: 20px auto 0 auto;
    cursor: pointer;
}
#flat-btn:hover {
    opacity: 0.7;
}














