footer {
    border-top: 1px solid #EEEEEE;
    margin-top: 140px;
}

#footer_con {
    width: 1480px;
    margin: 0 auto;
}

#footer_con::after {
    content:"";
    display:block;
    clear:both;
}

.logo_img {
    /* margin-top: 35px; */
    float: left;
}

.logo_img img {
    /* margin-bottom: 25px; */
}

.logo_img p {
    color: #666666;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
}

footer .logo_img img{margin: 35px 0 25px 0;}

.footer_tel {
    display: flex;
}

.footer_tel li {
    margin-right: 25px;
    padding-right: 25px;
    border-right: 1px solid #DDDDDD;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
}

.footer_tel li:last-child {
    border-right: none;
}

.footer_tel li .bold {
    font-weight: 600;
}

.logo_img .copyright p {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #999999;
}

.footer_right {
    float: right;
    padding-bottom: 30px;
}

.scoll_top {
    color: white;
    background-color: #00AC72;
    width: 60px;
    height: 60px;
    position: relative;
    cursor: pointer;
    margin-bottom: 78px;
    left: 200px;
}

.fa-regular {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
}

.menu_list {
    display: grid;
    grid-template-rows: 40px max-content;
    position: relative;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.footer_toggle {
  all: unset;
  background-color:#FBFBFB;
  color: #999999;
  width: 240px;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  border-color: #DDDDDD;
}

.footer_toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-width: 0 3px 3px 0;
  border-style: solid;
  border-radius: 2px;
  transform: rotate(225deg);
  transition: 0.4s;
}

.list {
  background-color: white;
  width: 260px;
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  display: grid;
  grid-template-rows: repeat(4, 40px);
  border-radius: 5px;
  overflow: hidden;
  height: 0;
  transition: 0.4s;
  position: absolute;
  bottom: 50px;
}

.list-item {
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.4s, transform 0.4s var(--delay);
  transform: translateX(-100%);
  user-select: none;
  cursor: pointer;
}

.list-item:hover {
  background-color: #F9F9F9;
  color: #666666;
}
.footer_toggle.active {
    background-color: #444444;
    color: #FFFFFF;
}
.footer_toggle.active::after {
  transform: rotate(45deg);
}

.footer_toggle.active ~ .list {
  height: 100px;
  border: 1px solid #EEEEEE;
  padding: 10px 0;

}

.footer_toggle.active ~ .list .list-item {
  transform: translateX(0);
}


.footer_toggle.active ~ .list a{font-size: 15px; color: #666666;}