html {
  background-color: #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

.header {
  background-color: #116cb0;
  height: 100px;
  text-align: center;
}

.header img {
  height: 100px;
}

.content {
  overflow: hidden;
  background-color: #fff;
  margin: 10px auto;
}

.title {
  background-color: #116cb0;
  color: #fff;
  padding: 10px;
}

.title_main {
  font-size: 20px;
  font-weight: 700;
}

.title_sub {
  font-size: 10px;
}

.body {
  padding: 10px;
}

.button {
  display: inline-block;
  background-color: #f93;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  opacity: 0.5;
}

.basso {
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

.sub_title {
  font-size: 18px;
  margin-top: 20px;
}

.landscape_container {
  display: flex;
  flex-wrap: wrap;
}

.landscape_container>img {
  flex-grow: 1;
  width: 200px;
  padding: 1px;
  object-fit: cover;
}

.link {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 5px;
  align-items: center;
  text-decoration: none;
  color: #000;
  padding: 5px;
  font-size: 14px;
}

.link:hover {
  background-color: #eee;
}

.link_img_container {
  width: 100px;
  height: 75px;
}

.link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link_main {
  font-weight: bold;
  font-size: 16px;
}

.link_sub {
  color: #666;
  font-size: 12px;
}

.footer {
  background-color: #116cb0;
  text-align: center;
  padding: 20px 0;
}

.link-list a {
  display: inline-block;
  margin: 5px 10px;
  color: #fff;
  text-decoration: none;
}

.pointlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.navi_space {
  width: 100%;
  height: 40px;
}

.navi_link-list {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: #f6f6f6;
  display: flex;
  gap: 10px;
}

.navi_link-list a {
  width: 100%;
  text-decoration: none;
  color: #116cb0;
  text-align: center;
  padding: 3px;
}

.navi_icon {
  width: 100%;
  font-size: 20px;
  height: 24px;
  line-height: 24px;
}

.navi_text {
  width: 100%;
  font-size: 8px;
  height: 10px;
  line-height: 10px;
  white-space: nowrap;
}

@media screen and (min-width: 600px) {
  .navi {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .content {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 20px;
  }

  .body {
    padding: 20px;
  }
}