body {
  font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  background: white;
  color: #222;
  margin: 0;
  padding: 40px;
}

.container {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.arrow {
  max-width: 80px;
  height: auto;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  word-break: keep-all;
}

.arrow {
  font-size: 24px;
  color: orange;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  text-align: left;
  word-break: break-word;
}

th {
  width: 30%;
  background: #eee;
  padding: 10px;
  vertical-align: top;
  font-weight: bold;
}

td {
  padding: 10px;
}

.with-divider {
  border-bottom: 1px solid #fff;
}

a {
  color: #c00;
  text-decoration: underline;
}

/* --- mobile --- */
@media screen and (max-width: 600px) {
  body {
    padding: 20px 10px;
  }

  h1 {
    font-size: 20px;
  }

  .arrow {
    font-size: 20px;
  }

  table {
    font-size: 14px;
  }

  th, td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  th {
    background: #f5f5f5;
    font-weight: bold;
    padding-top: 5px;
  }

  td {
    padding-bottom: 5px;
  }

  table tr {
    margin-bottom: 10px;
    display: block;
  }
}
