/*moebius font*/
@font-face {
  font-family: "뫼비우스";
  font-weight: 100;
  src: url("../font/뫼비우스\ Regular.ttf") format("truetype"),
    url("../font/Moebius.ttf") format("truetype");
}
@font-face {
  font-family: "뫼비우스";
  font-weight: 300;
  src: url("../font/뫼비우스\ Bold.ttf") format("truetype");
}

/* google web font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@font-face {
  font-family: "Noto Sans KR";
  font-weight: 100;
  src: url("../font/NotoSansKR-Thin.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-weight: 300;
  src: url("../font/NotoSansKR-Light.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-weight: 400;
  src: url("../font/NotoSansKR-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-weight: 500;
  src: url("../font/NotoSansKR-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-weight: 700;
  src: url("../font/NotoSansKR-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-weight: 900;
  src: url("../font/NotoSansKR-Black.otf") format("opentype");
}


:root {
  --main-color: #b61b2d;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  margin: auto;
}
.container {
  min-width: 1280px;
}
.inner {
  width: 1280px;
  margin: auto;
}
.container .kakao {
  position: fixed;
  bottom: 100px;
  right: 40px;
  width: 0;
  height: 50px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  z-index: 90;
  animation: heartbeat 1.5s ease-in-out infinite both;
  background-color: yellow;
}
.container .kakao.active {
  width: 50px;
}
.container .kakao:hover {
  animation: none;
}
.container .f_call {
  position: fixed;
  top: 90px;
  left: -300px;
  background-color: var(--main-color);
  display: block;
  font-size: 17px;
  padding: 5px 10px;
  padding-left: 20px;
  color: #fff;
  z-index: 300;
  border-radius: 0 5px 0 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 55%);
  transition: 0.35s;
  /* animation: heartbeat 1.5s ease-in-out infinite both;
  animation-delay: 0.5s; */
}
.container .f_call.active {
  left: 0;
}
.container .cun_btn {
  position: fixed;
  left: -300px;
  top: 150px;
  height: 50px;
  z-index: 90;
  transition: 0.35s;
}
.container .cun_btn a {
  color: #fff;
  background-color: var(--main-color);
  border-radius: 0 5px 0 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 55%);
  padding: 5px 10px;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 400;
}
.container .cun_btn.active {
  left: 0;
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

.btn_01 {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  color: #555;
  font-size: 20px;
  font-weight: 300;
}
.btn_01 i {
  transform: rotate(90deg);
  font-size: 20px;
  color: var(--main-color);
}
.section_title {
  position: relative;
  width: fit-content;
  margin: auto;
}
/* .section_title::before,  
.section_title::after {
  content: '';
  position: absolute;
  background-color: var(--main-color);
}  
.section_title::before {
  top: 0;
  left: -20px;
  border-top: 10px solid var(--main-color);
  border-right: 10px solid #fff;
}
.section_title::after {
  bottom: 0;
  right: -10px;
  border-bottom: 10px solid var(--main-color);
  border-left: 10px solid #fff;
} */
.section_title h2 {
  font-family: "뫼비우스";
  font-size: 40px;
  font-weight: 100;
}
.section_title h2 span {
  font-size: 34px;
}
.section_title h2 b {
  color: var(--main-color);
  font-weight: 100;
}

.mo_on {
  display: none;
}
.pc_on {
  display: block;
}

/* footer*/

footer {
  padding-top: 30px;
  background-color: #222625;
  min-width: 1280px;
}
footer .inner {
  width: 700px;
  color: #fff;
}
footer .inner .footer_logo {
  width: 110px;
  margin: auto;
  margin-bottom: 25px;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* gap: 15px; */
}
footer .inner .footer_logo h6 {
  white-space: nowrap;
  font-size: 20px;
}
footer .inner .footer_logo img {
  width: 100%;
}
footer .inner h5 {
  font-size: 15px;
  font-weight: 300;
}
footer .inner .footer_icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 295px;
  margin: auto;
  padding: 30px 0;
}
footer .inner .footer_icons div {
  cursor: pointer;
}
footer .inner .footer_icons div i {
  font-size: 50px;
  transition: 0.35s;
}
footer .inner .footer_icons div:nth-child(1):hover i {
  color: #2db400;
}
footer .inner .footer_icons div:nth-child(2):hover i {
  color: #f9e000;
}
footer .inner .footer_icons div:nth-child(3):hover i {
  color: #fe001a;
}
footer .inner .footer_icons div:nth-child(4):hover i {
  color: #888;
}
footer .copyright {
  border-left-color: black;
  padding: 15px;
}
footer .copyright .inner {
  width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copyright .inner div {
  display: flex;
}
footer .copyright .inner div h5 {
  margin: 0 15px;
  cursor: pointer;
}
footer .copyright .inner div i {
  font-weight: 300;
}
/*■■■■■■■■■■■■■■ featherlight ■■■■■■■■■■■■■■*/
.featherlight .featherlight-content {
  /* width: 80%; */
  /* height: 100%; */
  width: 850px;
  height: 1500px;
  margin: 0 !important;
  padding: 0;
  max-height: 100% !important;
}
.featherlight-inner {
  width: 100%;
  height: 100%;
  margin: auto;
}
.featherlight-close-icon {
  top: 0 !important;
  right: 0;
  font-weight: 500 !important;
  text-align: right;
  color: #fff !important;
  background: var(--main-color) !important;
}

@media screen and (max-width: 768px) {
  .container {
    min-width: 100%;
  }
  .container .kakao {
    right: 10px;
    bottom: 60px;
  }
  .container .up_btn {
    right: 15px;
    bottom: 0;
  }
  .container .f_call {
    top: 80px;
    z-index: 150;
  }
  .container .cun_btn {
    top: 135px;
  }
  .inner {
    width: 95%;
    margin: auto;
  }
  .btn_01 {
    font-size: 17px;
  }
  .section_title h2 {
    font-size: 26px;
    white-space: nowrap;
  }
  .section_title h2 span {
    font-size: 24px;
  }
  .section_title::before {
    border-top: 5px solid var(--main-color);
    border-right: 5px solid #fff;
  }
  .section_title::after {
    border-bottom: 5px solid var(--main-color);
    border-left: 5px solid #fff;
  }
  .pc_on {
    display: none;
  }
  .mo_on {
    display: block;
  }
  footer {
    min-width: initial;
  }
  footer .inner {
    width: 90%;
    color: #fff;
  }
  footer .copyright .inner {
    width: 99%;
  }
  footer .copyright .inner {
    flex-direction: column;
  }
  footer .copyright .inner div {
    margin: auto;
  }
  footer .copyright .inner div:last-child {
    flex-direction: column;
  }
  /*■■■■■■■■■■■■■■ featherlight ■■■■■■■■■■■■■■*/
  .featherlight .featherlight-content {
    width: 100%;
    height: 100%;
    /* width: 850px; */
    /* height: 1500px; */
    margin: 0 !important;
    padding: 0;
    max-height: 100% !important;
  }
}

@media screen and (max-width: 330px) {
  footer .inner h5 {
    font-size: 13px;
  }
}
