.main {
  background: #F5F5F5;
  padding: 0 0 250px 0;
}

@media (max-width: 768px) {
  .main {
    padding: 0 0 110px 0;
  }
}
.content__inner {
  max-width: 1344px;
  width: 70%;
  margin: 210px auto 0;
  background: #ffffff;
}

@media (max-width: 768px) {
  .content__inner {
    max-width: 500px;
    width: 95%;
    margin: 60px auto 0;
  }
}
.tab-list {
  background: #F5F5F5;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: solid 8px #434095;
}

.tab-list-item {
  background: #9498A1;
  color: #ffffff;
  display: block;
  text-align: center;
  padding: 20px 0;
  border-radius: 20px 20px 0 0;
  font-size: clamp(12px, 1.56vw, 20px);
  letter-spacing: 0.1em;
  cursor: pointer;
}

.tab-list-item.active {
  background: #434095;
}

.tab-content-inner .tab-content-inner-list {
  width: 100%;
  margin: 0 auto;
}
.tab-content-inner .tab-content-inner-list-item {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #9498A1;
}
.tab-content-inner .tab-content-inner-list-item:last-of-type {
  border-bottom: none;
}
.tab-content-inner .date {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: bold;
  width: 100%;
  text-align: center;
  max-width: 230px;
  margin: 0;
  padding: 50px 0;
}
.tab-content-inner .text-wrap {
  width: 77%;
  margin: 0 0 0 auto;
  position: relative;
  padding: 50px 0;
}
.tab-content-inner .text-wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 60%;
  background: #707070;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tab-content-inner .title {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: bold;
  margin-bottom: 10px;
  margin-left: 80px;
}
.tab-content-inner .address-wrap {
  display: flex;
  margin-bottom: 10px;
}
.tab-content-inner .address-wrap-title {
  width: 75px;
  text-align: right;
}
.tab-content-inner .address-text {
  word-break: break-all;
}
.tab-content-inner .tel-wrap {
  display: flex;
}
.tab-content-inner .tel-wrap-title {
  width: 75px;
  text-align: right;
}
.tab-content-inner .tel-text {
  word-break: break-all;
}

@media (max-width: 768px) {
  .tab-content-inner .date {
    width: 20%;
    max-width: 180px;
    padding: 20px 0;
  }
  .tab-content-inner .text-wrap {
    padding: 20px 0;
  }
  .tab-content-inner .title {
    margin-left: 7%;
    line-height: 1.7;
  }
}