@charset "utf-8";
body > .rel_wrap,
body form > .rel_wrap {
  margin-top: 238px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 384px 792px;
  grid-template-rows: repeat(3, auto);
  gap: 30px 24px;
}
body > .rel_wrap nav .box,
body form > .rel_wrap nav .box {
  padding: 0;
}
body > .rel_wrap nav ul,
body form > .rel_wrap nav ul {
  list-style-type: none;
}
body > .rel_wrap nav li a,
body form > .rel_wrap nav li a {
  display: block;
  padding: 20px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
}
body > .rel_wrap nav li a::after,
body form > .rel_wrap nav li a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: '';
  width: 6px;
  height: 8px;
  background-image: url(../img/nav_arrow.svg);
}
body > .rel_wrap nav ul li:not(:last-child) a::before,
body form > .rel_wrap nav ul li:not(:last-child) a::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background-color: #eee;
  content: '';
}
body > .rel_wrap nav ul li span,
body form > .rel_wrap nav ul li span {
  position: relative;
}
body > .rel_wrap nav ul li.active span::after,
body form > .rel_wrap nav ul li.active span::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 8px;
  background-color: var(--main_color);
  z-index: -1;
  left: 0;
  bottom: 0;
  border-radius: 5px;
}
section .content_section:not(:last-child) {
  margin-bottom: 30px;
}
.visual {
  position: absolute;
  top: 139px;
  height: 200px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  body > .rel_wrap,
  body form > .rel_wrap {
    grid-template-columns: 100%;
    gap: 0;
  }
  body > .rel_wrap aside,
  body form > .rel_wrap aside {
    display: none;
  }
  body > .rel_wrap nav,
  body form > .rel_wrap nav {
    display: none;
  }
  body > .rel_wrap section,
  body form > .rel_wrap section {
    grid-column: 1;
    grid-row: 1 / span 1;
  }
}
.type-tabs {
  margin-bottom: 20px;
}
.type-tabs {
  margin-top: 20px;
}
.type-tabs li {
  float: left;
  min-width: 40px;
  height: 30px;
  margin-bottom: 10px;
  background: #fff;
  font-size: 14px;
  color: #888;
  margin-right: 10px;
  padding: 0 12px;
  line-height: 28px;
  text-align: center;
  border-radius: 15px;
  cursor: pointer;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}
.type-tabs li.active {
  background: #000;
  color: #fff;
  font-weight: 500;
}
.cs__contents-box .type-tabs li {
  background: #f4f4f4;
}
.cs__contents-box .type-tabs li.active {
  background: var(--main_color);
}
.type-tabs::after {
  content: '';
  display: block;
  clear: both;
}
