@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

header {
    background: url(topbar.png);
    background-size: cover;
    margin-bottom: 30px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* iPhoneの自動文字拡大を無効化（全ページ共通がおすすめ） */
html { -webkit-text-size-adjust: 100%; }

/* ナビのコンテナをフレックス化して折り返し禁止に */
header .nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

/* 画像リンクのベースラインズレ対策 */
header .nav a { display: inline-flex; align-items: center; }
header .nav img,
.logo img { display: block; height: 50px; }  /* heightは今の指定に合わせてOK */


.nav a {
  margin-left: 10px;       /* ボタン間の間隔 */
  text-decoration: none;
}

.image{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

table , td, th {
    font-family: Zen Maru Gothic;
    font-size: 16px;
    color: #7c6c78;
	border: 2px dotted #7c6c78;
	border-collapse: collapse;
    margin: auto;
}
td, th {
    padding: 15px;
    text-align: center;
}

th {
	background: #faf3df;
}

td{
    text-align: left;
}

footer {
    text-align: center;
    color: #7c6c78;
    font-size: 16px;
    font-family: Solway Medium;
    margin-top: 100px;
    margin-bottom: 100px;
}