main {
  width: 100%;
}
main article {
  width: 100%;
  display: grid;
  grid-template-columns: 36.9325% 58.52285%;
  row-gap: 80px;
  column-gap: 4.54465%;
  padding-bottom: 80px;
}
main .visual {
  width: 100%;
  height: 560px;
  grid-column: 3/1;
  position: relative;
}
main .visual .bg,
main .visual .text {
  width: 100%;
  height: 100%;
}
main .visual .bg {
  background-image: url("/img/main/bg_visual.jpg");
  border-radius: 40px;
  z-index: -1;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .visual .text {
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 40px;
}
main .visual .text h2 {
  color: #5C5556;
  font-size: calc(var(--font60) + 0.4rem);
  line-height: 1.5;
  overflow: hidden;
}
main .visual .text h2 * {
  font-family: 'Ownglyph_meetme-Rg';
}
main .visual .text h2 .br768 {
  display: none;
}
main .visual .text span {
  display: inline-block;
  transform: translateY(100%);
  transition: all 0.6s ease-in-out;
}
main .visual .text em {
  color: #099818;
}
main .visual .text p {
  width: 100%;
  color: #5C5556;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: 'GmarketSansMedium';
  margin-left: 40px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-in-out;
  /* padding: 40px;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative; */
}
/* main .visual .text p::before {
  content: "";
  display: block;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(242, 94, 116, 0.1);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
main .visual .title {
  margin-bottom: 0;
}
main .visual.on .text h2 span {
  transform: translateY(0);
}
main .visual.on .text h2:nth-child(1) span {
  transition-delay: 0.4s;
}
main .visual.on .text h2:nth-child(2) span {
  transition-delay: 0.8s;
}
main .visual.on .text h2:nth-child(3) span {
  transition-delay: 1.2s;
}
main .visual.on p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
main .title {
  margin-bottom: 30px;
}
main h4 {
  color: #111;
  font-size: var(--font28);
  font-weight: 600;
}
main .use,
main .center {
  width: 100%;
}
main .use .item-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 10px;
}
main .use .item {
  width: 100%;
  height: 120px;
  background: linear-gradient(145deg, #F7F8FB 0%, #ECF0FA 100%);
  border: 2px solid #FFF;
  border-radius: 20px;
  padding: 30px 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 40px;
}
main .use .icon {
  width: 55px;
  height: 60px;
  flex-shrink: 0;
  position: relative;
}
main .use .icon img {
  height: 100%;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
main .use p {
  color: #333;
  line-height: 1.6;
}
main .use p b {
  color: #2973B7;
  font-weight: 800;
}
main .use .item:hover .icon img:last-child {
  animation: icon-on 0.4s ease-in-out;
}
@keyframes icon-on {
  50% {
    transform: translateY(-5px);
  }
}
main .use .item-box.on .item {
  opacity: 1;
  transform: translateY(0);
}
main .use .item-box.on .item:nth-child(1) {
  transition-delay: 0.1s;
}
main .use .item-box.on .item:nth-child(2) {
  transition-delay: 0.2s;
}
main .use .item-box.on .item:nth-child(3) {
  transition-delay: 0.3s;
}
main .use .item-box.on .item:nth-child(4) {
  transition-delay: 0.4s;
}
main .use .item-box.on .item:nth-child(5) {
  transition-delay: 0.5s;
}
main .center {
  display: flex;
  flex-direction: column;
}
main .center .title {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
main .center .title a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
}
main .center .title a em {
  color: #ccc;
  font-size: 1.5rem;
  font-family: var(--font-pretendard);
  line-height: 1;
}
main .center .title a span {
  display: block;
  width: 20px;
  height: 20px;
  background: #f8f8f8;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  position: relative;
}
main .center .title a span::before, main .center .title a span::after {
  content: "";
  display: block;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .center .title a span::before {
  width: 2px;
  height: 8px;
}
main .center .title a span::after {
  width: 8px;
  height: 2px;
}
main .center .item-box {
  height: 100%;
  background: #f8f8f8;
  border-radius: 20px;
  padding: 60px 60px 55px 45px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
main .center .map {
  width: 36.4645%;
}
main .center .list-box {
  width: 100%;
  max-width: 450px;
}
main .center .list-box * {
  font-family: var(--font-pretendard);
}
main .center .list-box h6 {
  width: 100%;
  height: 65px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  color: #111;
  font-size: 1.8rem;
  font-size: 2.1rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
main .center .list {
  height: 420px;
  overflow-y: scroll;
}
main .center .list::-webkit-scrollbar {
  width: 0;
}
main .center .list * {
  transition: all 0.4s;
}
main .center .list .item {
  height: 70px;
  border-bottom: 1px solid var(--color-border);
}
main .center .list .item a {
  background: transparent;
  border-radius: 10px;
  padding: 0 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
main .center .list .item p {
  color: #555;
  font-size: 1.8rem;
  font-weight: 300;
}
main .center .list .item .icon {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
main .center .list .item .icon img {
  filter: grayscale(1) brightness(1.12);
}
main .center .list .item:hover {
  border-bottom-color: transparent;
}
main .center .list .item:hover a {
  background: var(--color-main);
}
main .center .list .item:hover p {
  color: var(--color-white);
  font-weight: 600;
}
main .center .list .item:hover .icon {
  background: var(--color-white);
}
main .center .list .item:hover .icon img {
  filter: inherit;
}