:root {
  --main: #13737c;
  --bg: #eee;
}
.fill-main {
  fill: var(--main);
}
.bg-main {
  background-color: var(--main);
}
.text-main {
  color: var(--main);
}
.bg-sub {
  background-color: var(--bg);
}
.text-sub {
  color: var(--bg);
}

.min {
  font-size: 0.5em;
}
a.btn {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 340px;
  margin: 0.5em auto;
  padding: 1rem 0;
  font-weight: bold;
  color: #13737c;
  background: #fff;
  border: 2px solid #13737c;
  transition: 0.5s;
}
a.btn:hover {
  border: 2px solid #13737c;
  background: #13737c;
  color: #fff;
}
/*table*/
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 70%;
  table-layout: fixed;
}

table tr {
  background-color: #fff;
  border: 1px solid #bbb;
  padding: 0.35em;
}
table th,
table td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
}
table thead tr {
  background-color: var(--main);
}
.txt {
  text-align: left;
}
.Sample_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 3em auto;
}
.Sample_img img {
  width: 45%;
  display: block;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .nayami_come {
    font-size: 1.5em;
  }
  .px-80s {
    padding-left: 50px;
    padding-right: 50px;
  }
  .contact_flex {
    display: block;
  }
  table {
    border: 0;
    width: 100%;
  }
  table th {
    background-color: #eee;
    display: block;
    border-right: none;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table tr {
    display: block;
    margin-bottom: 0.625em;
  }

  table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: 0.8em;
    text-align: right;
    position: relative;
    padding: 0.625em 0.625em 0.625em 5em;
    border-right: none;
  }

  table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 5px;
  }

  table td:last-child {
    border-bottom: 0;
  }
}
.bal {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.bal:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -15px;
  transform: rotate(-25deg);
  width: 1px;
  height: 30px;
  border: 1px solid #222;
}
.bal:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -15px;
  transform: rotate(25deg);
  width: 1px;
  height: 30px;
  border: 1px solid #222;
}
