:root {
  --header-bg: #33aacc;
  --ink: #333333;
  --label: #555555;
  --line: #dddddd;
  --th-bg: #f9f9f9;
  --th-bg-mobile: #eeeeee;
  --title: rgba(0, 0, 0, 0.87);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  background: #ffffff;
  font-family: Helvetica, Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #015e94;
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 8px;
  z-index: 2000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: var(--header-bg);
  display: flex;
  align-items: center;
  padding: 4px 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  display: block;
  width: 104px;
  height: 26px;
}

.wrap {
  width: min(950px, calc(100% - 40px));
  margin: 0 auto;
}

main {
  padding: 0 0 80px;
}

h1 {
  margin: 100px 0 40px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: var(--title);
}

.tokutei-table {
  width: 100%;
  max-width: 910px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.tokutei-table th,
.tokutei-table td {
  border: 1px solid var(--line);
  padding: 15px;
  vertical-align: top;
  text-align: left;
}

.tokutei-table th {
  background-color: var(--th-bg);
  width: 30%;
  font-weight: 700;
  color: var(--label);
}

.tokutei-table td a {
  color: inherit;
}

.tokutei-bold {
  font-weight: 700;
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
}

.tokutei-bold:first-child {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
    line-height: 40px;
    margin: 88px 0 24px;
  }

  .tokutei-table th,
  .tokutei-table td {
    display: block;
    width: 100%;
  }

  .tokutei-table th {
    background-color: var(--th-bg-mobile);
  }
}
