@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/overview/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #213a70;
}

.title h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size:36px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}

.featuer {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}

.featuer table {
  width: 100%;
  border-collapse: collapse;
}

.featuer table tr {
  border-bottom: solid 2px white;
}

.featuer table tr:last-child {
  border-bottom: none;
}

.featuer table th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 5px 0px;
}

.featuer table th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.featuer table td {
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 15px;
}

.link-button:hover {
  background-color: #ede2a9;
}

@media (max-width: 800px) {
  .title {
    background-image: url(../images/overview/bg-main-sp.jpg);
  }
  .featuer {
    display: block;
    width: 500px;
    margin-top: 45px;
  }
}