@charset "utf-8";

/* reset.css */
body,
h1,
h2,
section,
table,
ul,
p {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    vertical-align: bottom;
}

nav ul li a {
    text-decoration: none;
    color: black;
}

body {
    font-family: "メイリオ" sans-serif;
    font-size: 14px;
    color: gray;
}

#wrap {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
}

header {
    background-image: url(../images/bk.gif);
    background-repeat: no-repeat;
    background-position: right top;
    padding-top: 35px;
}

nav ul {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

nav ul li {
    width: 130px;
    height: 28px;
}

nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: transparent;
    font-size: 0;
    line-height: 0;
    background-image: url(../images/navi_home.gif);
}

nav ul li:nth-child(2) a {
    background-image: url(../images/navi_menu.gif);
}

nav ul li:nth-child(3) a {
    background-image: url(../images/navi_about.gif);
}

nav ul li a:hover {
    background-image: url(../images/navi_home_on.gif);
}

nav ul li:nth-child(2) a:hover {
    background-image: url(../images/navi_menu_on.gif);
}

nav ul li:nth-child(3) a:hover {
    background-image: url(../images/navi_about_on.gif);
}

header div {
    margin-bottom: 10px;
}

h1 {
    margin-bottom: 10px;
}

main p {
    margin-bottom: 10px;
}

p span {
    color: #FF367F;
}

h2 {
    background-image: url(../images/h2_title.gif);
    margin-bottom: 10px;
    text-indent: 1em;
    color: #800000;
}

table {
    border-collapse: collapse;
    margin-bottom: 10px;
}

table th {
    color: #008000;
    text-align: left;
    background-color: #DDDDDD;
}

table th,
td {
    border: solid 1px gray;
    padding: 10px 40px 10px 10px;
}

.blog {
    margin-bottom: 10px;
}

footer {
    background-color: #CEF9DC;
    text-align: center;
    line-height: 3;
    padding: 20px 0;
}

footer a {
    display: block;
}

address {
    font-style: normal;
}

footer small {
    color: gray;
}

/* lunch */

h3 {
    background-image: url(../images/icon.gif);
    background-position: left;
    background-repeat: no-repeat;
    text-indent: 1.5em;
    font-size: 16px;
    border-bottom: solid 1px;
    color: #CC9933;
}

.box-item {
    display: flex;
}

h4 {
    font-size:15px;
    color: #008000;
}

.box-text {
    margin-left:20px;
}

table caption{
    caption-side: bottom;
    text-align: left;
    margin-top:10px;
    white-space: pre;
}
section{
    border-bottom: 1px dotted #000;
    margin-bottom: 10px;
}

input[type=text],input[type=email]{
    margin-left: .5em;
}