.wrap {
  padding: 1rem;
  font-size: 16px;
}
h1 {
  font-size: 24px;
  text-align: center;
}
h2 {
  font-size: 32px;
  color: #0650cb;
  text-align: center;
}
p {
  margin-bottom: 1rem;
}
p:last-of-type {
  margin-bottom: unset;
}
a {
  color: #009fe6;
}

/* ヘッダー */
header {
  background-color: #0650cb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
header p {
  margin-bottom: unset;
}
a._contact {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
header .pict {
  max-width: 117px;
  margin-left: 1rem;
}
header a._contact .pict {
  max-width: 48px;
}

/* メインコンテンツ */
main {
  display: flex;
}

/* コンテンツ */
#content {
  width: 70%;
  margin-right: 1rem;
}

#title {
  border: solid 2px #0650cb;
  padding: 1rem;
  margin-bottom: 1rem;
}

#table {
  border: solid 1px #0650cb;
}

#table .tr {
  border-bottom: #0650cb solid 1px;
  display: flex;
}
#table .tr:last-of-type {
  border-bottom: unset;
}
#table .td:first-of-type,
#table .th:first-of-type {
  border-right: #0650cb solid 1px;
  min-width: 130px;
  text-align: center;
  padding: 1rem;
}

#table .td:nth-of-type(2),
#table .th:nth-of-type(2) {
  padding: 1rem;
  min-width: 130px;
}
.t_wrap {
  overflow: auto;
}
#in_table {
  border: solid 1px #000;
  width: 773px;
  overflow: hidden;
}
#in_table .tr {
  border-bottom: #000 solid 1px;
}
#in_table .td,
#in_table .th {
  border-right: #000 solid 1px;
  text-align: center;
  padding: 1rem;
  min-width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#in_table .td:nth-of-type(1),
#in_table .th:nth-of-type(1) {
  border-right: #000 solid 1px;
}
#in_table .td:nth-of-type(2),
#in_table .th:nth-of-type(2) {
  min-width: 220px;
}
#in_table .td:nth-of-type(3),
#in_table .th:nth-of-type(3) {
  min-width: 160px;
}
#in_table .td:nth-of-type(4),
#in_table .th:nth-of-type(4) {
  border-right: unset;
}

/* サイドバー */
#sidebar {
  border: solid 2px #0650cb;
  width: 30%;
  padding: 3rem 1rem 1rem 1rem;
}
#sidebar a {
  font-size: 20px;
  position: relative;
  padding: 0 1rem 1rem 1.5rem;
  margin-left: 1rem;
}
#sidebar a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 15px solid #0650cb;
  border-right: 0;
  position: absolute;
  left: 0;
  top: 3px;
}
#sidebar .item.dot {
  border: dotted 2px #0650cb;
  border-radius: 15px;
}
#sidebar .item p {
  padding: 1rem;
  font-size: 18px;
}

/* コンタクト */
#contact {
  padding: 1rem 1rem 0 1rem;
}

/* フッター */
footer {
  color: #fff;
  background-color: #0650cb;
  text-align: center;
  padding: 1rem;
}
