.header {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: clamp(20px, 4vw, 32px) 20px clamp(16px, 3vw, 24px);
  box-sizing: border-box;
  text-align: center;
}

body {
  margin: 0;
}

/* ロゴ：ヘッダー上部に中央配置 */
.logo {
  margin: 0 0 clamp(14px, 3vw, 24px);
}

.logo img {
  height: clamp(50px, 7vw, 90px);
}

.line{
  border: none;        /* デフォルトの線を消す */
  height: 1.5px;         /* 太さ */
  background-color: #333; /* 線の色 */
  width: calc(100% + 40px); /* .headerの左右padding(20px)分をはみ出させて端まで届かせる */
  margin-left: -20px;
  margin-right: -20px;
}

/* ハンバーガーボタン（モバイル用） */
.menu-btn,
.menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
}

/* ナビ全体：ロゴ下に横並びで中央配置 */
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各リンク */
nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 550;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* 店舗情報：虹色の「藍」 */
nav a:hover {
  color: #4a4e9e;
}

/* HOME：どのページからでも虹色のグラデーションで表示 */
nav a[href="main.html"]:hover {
  background-image: linear-gradient(90deg, #e5484d, #c9a179, #e0b400, #7fad8f, #3f7fd1, #4a4e9e, #8e5fc4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* 区切り線 */
nav .separator {
  color: #ccc;
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
}

/* モバイル：ハンバーガーメニューに切り替え */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    position: absolute;
    top: clamp(20px, 4vw, 32px);
    right: 24px;
  }

  .menu-body {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .menu-body.is-open {
    transform: translateX(0);
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
  }

  nav ul {
    flex-direction: column;
    gap: 28px;
  }

  .separator {
    display: none;
  }
}

/* レンタルスペース・料金／委託販売と同じ、タイトル上に見出しのアクセント線を入れる */
.page-hero {
    max-width: 820px;
    margin: 40px auto 0;
    padding: 14px 20px 0;
    box-sizing: border-box;
    text-align: center;
    border-top: 3px solid #4a4e9e;
}

.page-title {
    letter-spacing: 0.2em;
    font-size: clamp(22px, 4vw, 28px);
    margin: 0;
}

/* 地図と表を横並びに、写真はその下に */
#accessinfo{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin: 30px auto;
    width: 90%;
    max-width: 1000px;
}

.table-area,
.mapinfo{
    flex: 1 1 420px;
}

/* シンプルな案内テーブル */
.table-area table{
    border-collapse: collapse;
    width: 100%;
    /*font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;*/
}

.table-area th,
.table-area td{
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid #999;
}

.table-area tr:last-child th,
.table-area tr:last-child td{
    border-bottom: none;
}

.table-area th{
    width: 35%;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
    border-right: 1px solid #999;
}

.table-area td{
    color: #333;
    letter-spacing: 0.05em;
}

.mapinfo{
    text-align: center;
}

.mapinfo iframe{
    width: 100%;
    height: 350px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* 写真エリア */
.photo-area{
    text-align: center;
    margin: 10px auto 60px;
}

.photo-area img{
    max-width: 90%;
    width: 500px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    #accessinfo{
        flex-direction: column;
        align-items: center;
    }

    .table-area,
    .mapinfo{
        width: 100%;
        max-width: 420px;
    }
}

/* ==== フッター ==== */
.footer {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 12px;
}

.footer p {
  margin: 0;
}