body{
margin:0;
background:#eeeeee;
}
table{
border-collapse:collapse;
}

/*---------ここからヘッダー---------*/

/* 固定ヘッダー */
.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header.scrolled {
  background: #eeeeee;
  backdrop-filter: blur(6px);
}

/* 中身の幅制御 */
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.logo{
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.logo-ing{
width:100%;
}

.logo-dark {
  display: none;
}

/* サブページは常にdark */
.sub-page .logo-white {
  display: none;
}

.sub-page .logo-dark {
  display: block;
}

/* ナビ */
.nav {
  display: flex;
  gap: 14px;
  margin-left:20px;
}

/* フレーム風リンク */
.nav a {
white-space: nowrap;
  text-decoration: none;
  color: #333333;
  border: 1px solid #ccc;
  padding: 6px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  background: #ccc;
}

/* ホバー */
.nav a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ヘッダー固定分の余白 */
.content {
  padding-top: 90px;
}

.slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* ← これが超重要 */
  z-index: 1;
}

/*------ここまでヘッダー---------*/

/*------ここからフッター----------*/
.footer{
max-width: 1100px;
margin: 0 auto;
}

.foo1{
margin-top:100px;
}
.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 追加 */
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-logo{
width:100px;
}
.copy1{
  margin-top: 50px;
  display: flex;
  justify-content: center; /* 中央寄せ */
  align-items: center;
  gap: 50px;
}
.copy2{
flex:1;
margin-bottom:50px;
}
.copy3{
flex:1;
text-align: right;
margin-bottom:50px;
}
/*------ここまでフッター----------*/