:root{
  --primary: #0d2e86;
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #111827;
  --border: #e5e7eb;
  --container: 1080px;
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

/* ----- header ----- */
.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 12px 16px;
}
.logo{
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .05em;
}
.global-nav a{
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
  margin-left: 1em;
  position: relative;
}
.global-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:100%; height:2px;
  background:var(--primary);
  opacity:0; transform:scaleX(0);
  transition:all .2s ease;
}
.global-nav a:hover::after{
  opacity:1; transform:scaleX(1);
}

/* ----- section ----- */
.section-bar{
  background: var(--primary);
  color: var(--white);
}
.section-title{
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 16px;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ----- table ----- */
.container{
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 24px 16px 80px;
}

.tokutei-table{
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.tokutei-table .row{
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
  padding: 16px;
}
.tokutei-table .row:last-child{
  border-bottom: none;
}
.tokutei-table dt{
  font-weight: 600;
  color: var(--primary);
}
.tokutei-table dd{
  margin: 0;
  color: var(--text);
}
.tokutei-table a{
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary);
}
.tokutei-table a:hover{ opacity: .8; }

@media (max-width: 700px){
  .tokutei-table .row{
    grid-template-columns: 1fr;
  }
  .tokutei-table dt{
    margin-bottom: .3em;
  }
}

/* ----- footer ----- */
.site-footer{
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner{
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-inner small{
  font-size: .85rem;
  color: #374151;
}
.tiny-link{
  color: var(--primary);
  font-size: .85rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--primary);
}
.tiny-link:hover{ opacity: .8; }
