@charset "utf-8";
body {
 background-color: #EFEEE5 ;
 font-size: 16px;
 font-family: 'Verdana','Hiragino Sans','Meiryo',sans-serif;
}
header{
    font-size: 15px;
    text-align: right;
    width: 1240px;
    margin: 0 auto 44px;
    border-bottom: 4px solid #7c5d48
}
h1{
    font-size: 35px;
    text-align: right;
    padding: 20px 0px 16px;
}
div{
    width: 1240px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
}
main {
    flex-basis: 900px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 62px 72px 32px 72px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
  }
main h2{
    color: #FF8F72;
    font-size: 35px;
}
main nav ul{
    display: flex;
    list-style-type: none;
    justify-content: center;
    border-top: 2px solid #7c5d48;
    border-bottom: 2px solid #7c5d48;
    background-color: rgba(255,255,255,0.42);
    padding: 12px 0px 10px;
    margin:30px 0 30px 0;
}
main nav ul li{
    margin: 0 20px;
}
main nav ul li a{
    color: #7c5d48;
}
main nav ul li a:hover{
    text-decoration: underline double;
}
main nav h2{
    margin: 10px 2px;
}
#houmonnkaigo {
    margin: 20px 0px 60px;
    padding: 0 0 40px;
    border-bottom: 4px solid #7c5d48
}
#houmonnkaigo h4{
    font-size:20px;
    margin: 20px 10px 5px 0px;
    color:fuchsia;
}
main h4{
    font-size:20px;
    margin: 20px 10px 5px 0px;
}
main h5{
    font-size:16px;
    margin: 20px 10px 5px 0px;
}
#syokukaizenn {
    margin-top: 80px; /* 上にたっぷり余白 */
  }
/* テーブル全体 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
  }
  
  /* 表ヘッダー */
  thead th {
    background-color: #7c5d48;  /* アクセントカラーに統一 */
    color: #fff;
    text-align: left;
    padding: 16px 20px;
    font-weight: bold;
  }
  
  /* 表の本文セル */
  tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
    word-break: break-word;  /* 長文も折り返す */
  }
  
  /* 偶数行の背景色 */
  tbody tr:nth-child(even) {
    background-color: #faf7f2; /* 少しベージュ寄りで統一感 */
  }
  
  /* 小画面対応 */
  @media screen and (max-width: 768px) {
    table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }
address img{
    max-width:50%;
    object-position:0 100px;
}
 aside nav h3{
    font-size: 22px;
    font-weight: bold;
    color: #7c5d48;
 }
 aside nav ul{
    list-style-type: none;
    font-size: 20px;
    margin: 0 5px 16px 20px;
 }
 aside nav ul a{
    color: #7c5d48;
 }
 aside nav ul li a:hover{
    text-decoration:underline double #7c5d48 1.5px;
 }
 aside nav ul li{
    margin: 15px 5px;
 }
footer{
    background-color: #523f2e;
    color: #ffffff;
    text-align: center;
    padding: 14px 10px 20px;
}
footer p{
    text-align: center;
}
#menu-toggle {
    display: none; /* チェックボックスは非表示 */
  }
  
  /* ハンバーガーメニューのボタン */
  .hamburger {
    display: none; /* PCでは非表示 */
    position: fixed; /* 画面右上に固定 */
    top: 10px;
    right: 10px;
    font-size: 26px;
    background-color: #7c5d48;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 1000; /* 他より前面 */
  }
  
  /* メニュー本体 */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 50px;    /* ハンバーガーの下に配置 */
    right: 10px;
    background-color: #fff;
    padding: 10px 20px;
    border: 2px solid #7c5d48;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 999;
    width: 200px;
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu li {
    margin: 12px 0;
  }
  
  .mobile-menu a {
    color: #7c5d48;
    text-decoration: none;
    font-size: 18px;
  }
  
  .mobile-menu a:hover {
    text-decoration: underline;
  }
  
  /* メニュー開閉制御 */
  #menu-toggle:checked + .hamburger + .mobile-menu {
    display: block;
  }
  
  /* 画面幅768px以下の時にハンバーガーメニューを表示、asideは非表示 */
  @media screen and (max-width: 768px) {
    .hamburger {
      display: block;
    }
    aside {
      display: none;
    }
  }
  
  /* PC画面ではmobile-menuを隠す */
  @media screen and (min-width: 769px) {
    .mobile-menu {
      display: none !important;
    }
  }