:root {
  --main: #3392dc;
  --bg: #f5f5f5;
}
.fill-main {
  fill: var(--main);
}
.bg-main {
  background-color: var(--main);
}
.text-main {
  color: var(--main);
}
.text-main_a {
  color: #ffb618;
}
.bg-main_a {
  background-color: #ffb618;
}
.bg-sub {
  background-color: var(--bg);
}
.text-sub {
  color: var(--bg);
}
.w-10e {
  width: auto;
  height: 10em;
}
.py-1s {
  padding: 6em 0;
}

a,
a:visited {
  color: inherit;
}
.sp {
  display: none;
}
.min {
  font-size: 0.55em;
}
.text-center_span {
  display: block;
  text-align: center;
}
.btn {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: max(27vw, 340px);
  margin: 0.5em auto;
  padding: 1rem 0;
  font-weight: bold;
  color: #f7b200;
  background: #fff;
  border: 2px solid #f7b200;
  transition: 0.5s;
  font-size: 0.8em;
}
.btn:hover {
  border: 2px solid #f7b200;
  background: #f7b200;
  color: #fff;
}

.hi-20 {
  height: 10em;
  width: auto;
  margin: 0 auto;
  align-items: center;
  display: flex;
}
.hi-20 img {
  margin: 0 auto;
  display: block;
}
.me-20s {
  margin-right: 20px;
}
.Sample_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 3em auto;
}
.Sample_img img {
  width: 45%;
  display: block;
}
.webiner {
  width: fit-content;
  margin: 0 auto 10px;
  position: relative;
}
.webiner:before {
  content: "";
  width: 1px;
  height: 32px;
  background-color: #222;
  position: absolute;
  bottom: 0;
  left: -15px;
  transform: rotate(-20deg);
}
.webiner:after {
  content: "";
  width: 1px;
  height: 32px;
  background-color: #222;
  position: absolute;
  bottom: 0;
  right: -15px;
  transform: rotate(20deg);
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .display-5 {
    font-size: calc(1.425rem + 1.4vw);
  }
  .bg-main {
    background-position: left;
  }
  .w-80 {
    width: 90% !important;
  }
  .me-20s {
    margin-right: 0;
  }
}

/*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;
}
@media screen and (max-width: 768px) {
  table {
    border: 0;
    width: 100%;
  }
  table th {
    background-color: #fff;
    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;
  }
}
.company-block {
  padding-block: 20px;
  padding-inline: 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  margin-block: 5px;
}

.company-block dt {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 700;
}
.company-block dd {
  font-size: clamp(14px, 2.5vw, 18px);
  margin: 0;
}
@media screen and (min-width: 768px) {
  table th.w20 {
    width: 20%;
  }
  table th.w30 {
    width: 30%;
  }
}
