body {
  /* 画像ファイルの指定 */
  background-image: url(top_m.jpg);
   
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
   
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
   
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #464646;
}


body {
    font-family: "ヒラギノ角ゴ","YuGothic","Yu Gothic","Meiryo","sans-serif";
    color: #555;
    font-size: 16px;
}

a:hover {
    color: #5486AF;
    text-decoration: underline;
}
a:hover img {
    opacity: .8;
}
.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
}
textarea, input {
    border: none;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 15px 20px;
}
dt {
    font-weight: normal;
}
p {
    line-height: 1.5;
}
.title-h1 {
    font-size: 25px;
}
.width-900 {
    max-width: 900px;
    margin: 0 auto;
}
.icon-map {
    position: relative;
    padding-left: 1.6em;
}
.icon-map:before {
    content: "";
    position: absolute;
    width: 1.6em;
    height: 1.6em;
    background-image: url(../img/common/icon_map.svg);
    background-repeat: no-repeat;
    background-position: center left;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
@media (max-width: 599px) {
    body {
        font-size: 14px;
    }
    textarea, input {
        font-size: 16px;
    }
}

/* ==========================
    header
========================== */
header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0 10px;
    align-items: flex-end;
}
header .logo {
    flex: 0 0 290px;
}
header .menu {
    display: flex;
    margin-top: 15px;
    justify-content: flex-end;
    flex: 1 0 auto;
}
header .menu a {
    padding: 0 0 0 20px;
    background-image: url(../img/common/icon_menu.svg);
    background-repeat: no-repeat;
    background-position: center left;
}
header .menu .-current a {
    color: #5486AF;
    background-image: url(../img/common/icon_menu_current.svg);
    cursor: default;
}
header .menu .-current a:hover {
    text-decoration: none;
}
header .menu > li {
    margin-left: 15px;
}
@media (max-width: 599px) {
    header {
        padding-top: 20px;
    }
}

/* ==========================
    news
========================== */
#news {
    display: flex;
    margin: 10px 0;
    font-size: 14px;
}
#news .title {
    color: #5486AF;
    font-weight: bold;
    padding: 0 10px;
}
#news .link {
    color: #888;
    text-decoration: underline;
}

/* ==========================
    contents
========================== */
#contents {
    border-top: 1px dotted #B5B5B5;
    padding: 20px 10px 0;
}


@media (max-width: 599px) {
    #contents {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ==========================
    footer
========================== */
footer .address{
	margin-right: 20px;
}
footer .link{
	margin-right: 20px;
}
footer .contact {
    font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro";
    text-align: center;
    margin: 10px 0 30px;
}
footer .contact-box {
    display: inline-block;
    border: 1px dotted #B5B5B5;
    padding: 10px 20px;
    letter-spacing: .3em;
}
footer .contact-tel {
    font-size: 1.3em;
    margin: 5px 0;
}
footer .fax{
	font-size: 1.3em;
	margin: 5px 0;
}
footer .info{
	font-size: 15px;
	color: #008080;
	margin: 5px 0;
}
footer .contact-title {
    margin-bottom: 15px;
}
footer .copyright {
    font-size: 9px;
    color: #9FA0A0;
    padding: 10px 0;
}
@media (max-width: 599px) {
    footer .contact {
        margin: 20px 0;
    }
    footer .contact-box {
        display: block;
    }
}