@charset "UTF-8";
@import url(font.css);
@import url(html5_reset.css);
@import url(https://unpkg.com/aos@2.3.1/dist/aos.css);

html {
  font-family: 'NanumSquareNeo', sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-y: scroll;
  max-width: 1920px;
  margin: 0 auto;
  font-size: 10px;
}

/* 모바일 퍼스트 반응형 CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  color: var(--font_666);
  line-height: 1.6;
}

:root {
  --fff: #fff;
  --font_222: #222;
  --font_333: #333333;
  --font_666: #666666;
  --font-171921: #171921;
  --color_main: #0AADBC;
  --color_1: #28b7c4;
  --color_2: #2892c4;
  --color_3: #28c48f;
  --color_4: #9783c0;
  --blue_bg: #e6f6ff;
  --bg: #ebe5e1;
  --bg2: #CEE5E8;
  --gray: #aaa;
  --yellow: #FECE63;
  --brown: #B5A498;
  --gray_2: #f5f5f5;
  --gray_3: #e3e3e3;
  --line: #d0d0d0;
}

.color_1 {
  color: var(--color_1)
}

.color_2 {
  color: var(--color_2)
}

.color_3 {
  color: var(--color_3)
}

.color_4 {
  color: var(--color_4)
}


/* 성능 최적화를 위한 CSS */
img {
  max-width: 100%;
  height: auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button {
  outline: none;
}

b {
  font-weight: 600;
}

.mobile {
  display: none !important;
}

.pc {
  display: revert;
}

.box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.left_align {
  text-align: left;
}

input[type="text"],
input[type="tel"],
input[type="password"],
textarea {
  padding: 1.5rem;
  border: 0;
  font-size: 1em;
  vertical-align: top;
  line-height: 1.6;
  width: 100%;
  border: 1px solid var(--line);

  &::placeholder {
    font-family: 'NanumSquareNeo';
    color: var(--line);
  }
}

input[type="image"] {
  max-width: 100% !important;
  height: auto !important;
}

select {
  padding: 5px 1px 5px 10px;
  border: 1px solid var(--line);
  height: 100%;
  vertical-align: top;
  min-width: 150px;
  background: #fff;
  position: relative;
  z-index: 1;
  background: none;
  vertical-align: middle;
  height: 4rem;
  font-size: 1em;
  font-family: 'NanumSquareNeo';
  border-radius: 1rem;
}

.select {
  text-align: center;
}

select::after {
  content: "\E819";
  font-family: "icon-font";
  position: absolute;
  margin-left: -42px;
  background: #fff;
  line-height: 37px;
  width: 37px;
  margin-top: 1px;
  color: #bdbdbd;
}

select::-ms-expand {
  display: none;
}

input[type="tel"] {

}

textarea {
  min-height: 80px;

  &:placeholder {}
}

input[type=checkbox] {
  display: none;
}

/* to hide the checkbox itself */
input[type=checkbox]+label {
  position: relative;
  display: flex;
  align-items: center;
}

input[type=checkbox]+label:before {
  content: "";
  position: relative;
  left: 0;
  border: 2px solid #777;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 1rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1em;
}

/* unchecked icon */
input[type=checkbox]:checked+label:before {
  font-family: 'icon-font';
  content: "\E80F";
  color: var(--color_2);
  font-size: 1.7rem;
  border: 0;
}

.filebox {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  /* padding: 1rem; */
  overflow: hidden;
}

.filebox input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.filebox label {
  display: inline-block;
  line-height: normal;
  vertical-align: middle;
  cursor: pointer;
  color: var(--fff);
  background-color: var(--color_1);
  width: 10rem;
  line-height: 4rem;
}

/* named upload */
.filebox .upload-name {

  background-color: var(--fff);
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4rem;
  line-height: 1.4em;
  padding: 1rem;
  border-radius: 1rem;
  min-width: 30rem;
  font-family: 'NanumSquareNeo';
}

.filebox label {

}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

.dot {
  border-radius: 50%;
  position: relative;
  animation: pulse 2s infinite;
  background: var(--color_1);
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 10rem;
  margin-bottom: 5rem;

  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.4);
    animation: pulse-ring 2s infinite;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }

  .pc {
    display: none !important;
  }

  .mobile {
    display: inherit !important;
  }

  .dot {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .filebox {
    width: 100%;

    label {
      width: 25% !important;
      text-align: center !important;
      min-width: auto !important;
    }

    .upload-name {
      min-width: auto;
      width: 70%;
    }
  }

}

/* 헤더 */
header {
  color: var(--fff);
  padding: 5.6rem 0 0;
  right: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  transition: all 0.3s ease;

  .header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
     ul.flag {
      display: flex;
      gap: 20px;
      margin-top: .6rem;

      li {
        a {
          display: block;
          width: 48px;
          height: 48px;
          border-radius: 100px;
          text-align: center;
        }

        &:last-child {

          label {
            width: 4.8rem;
            height: 4.8rem;
            position: absolute;
            cursor: pointer;

            input[type='file'] {
              display: none;
            }
          }

          span {
            display: flex;
            align-items: center;
            background: var(--color_1);
            color: var(--fff);
            justify-content: center;
            font-size: 1.4em;
            width: 48px;
            height: 48px;
            border-radius: 100px;
            text-align: center;
          }
        }
      }
    }
    .logo {
      position: relative;
      margin-top: 1.3rem;

      img {
        display: block;
        transition: all 0.3s ease;

        &.color {
          position: absolute;
          top: 0;
          opacity: 0;
        }

      }
    }
    .mobile-toggle{
      display:none;
    }
    nav {
      .flag{
        display:none;
      }
      >ul.nav-menu {
        display: flex;
        font-size: 2rem;
        font-weight: 700;
        position: relative;

        &:after {
          content: '';
          background: var(--fff);
          position: absolute;
          height: 0;
          left: -60px;
          right: -80px;
          top: 60px;
          border-radius: 2rem;
          opacity: 0;
        }

        &:hover {
          &:after {
            height: 26rem;
            opacity: 1;
          }
        }

        >li {
          position: relative;

          >a {
            color: var(--fff);
            padding: 1.4rem 3rem;
            border-radius: 2rem 2rem 0 0;
            /* transition: all 0.3s; */
            position: relative;
            font-weight: 800;
            display: block;
            text-align: center;

            &:before {
              content: "";
              position: absolute;
              top: 15px;
              height: 45px;
              width: 45px;
              background: transparent;
              border-bottom-right-radius: 50%;
              box-shadow: 0 20px 0 0 var(--fff);
              left: -45px;
              opacity: 0;
              /* transition: all 0.3s; */
            }

            &:after {
              content: "";
              position: absolute;
              top: 15px;
              height: 45px;
              width: 45px;
              background: transparent;
              border-bottom-left-radius: 50%;
              box-shadow: 0 20px 0 0 var(--fff);
              right: -45px;
              opacity: 0;
              /* transition: all 0.3s; */
            }
          }

          &:hover,
          &.active {
            >a {
              background: rgba(255, 255, 255, 1);
              color: var(--color_1);

              &:before {
                opacity: 1;
              }

              &:after {
                opacity: 1;
              }
            }

          }

          >ul {
            position: relative;
            left: 0;
            min-width: 180px;
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            list-style: none;
            padding: 0 0 0 2rem;
            margin: 0;
            z-index: 1001;
            height: 0;

            >li {
              &:first-child {
                padding-top: 30px;
              }

              a {
                padding: 14px 30px;
                color: var(--font_666);
                text-decoration: none;
                padding: 10px 20px;
                display: block;
                transition: all 0.3s;
                font-size: 16px;
                font-style: normal;
                font-weight: 800;
                line-height: normal;
                letter-spacing: -0.8px;
              }
            }

          }
        }
      }
    }

    .nav-menu:hover .submenu {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) !important;
      height: 260px;
    }

   
  }


  &.fix_nav {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    height: 90px;

    .header-content {
      .logo {
        position: relative;

        img {
          display: block;
          transition: all 0.3s ease;

          &.white {
            opacity: 0;
          }

          &.color {
            position: absolute;
            top: 0;
            opacity: 1;
          }

        }
      }

      nav {
        >ul {
          >li {
            >a {
              color: var(--font_666);
            }
          }
        }
      }
    }

    ul.flag {
      li {
        a {
          border: 1px solid var(--line);
        }
      }
    }
  }
}

@media (max-width: 768px) {

  header {
    background: var(--fff);
    padding: 0;
    position: fixed;
    top: 0;

    .container {
      .header-content {
        display: block;

        .logo {
          margin: 0;
          padding: 1.5rem;
          border-bottom: 1px solid #eee;
          text-align: center;
          
          
          a{
            text-align:center;
            
            
             img {
            &.white {
              opacity: 0;
              display: none;
            }
            &.color {
              opacity: 1;
              /* top: 1.5rem; */
              /* display: inline-block; */
              position: relative;
              margin: 0 auto;
              max-width: 180px;
            }
          }
          }
         

        }

        .main-nav {
          &.open{
            position: fixed;
            background: rgba(232, 232, 237, 0.4);
            overflow: auto;
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            width: 100%;
            z-index: 1001;
            display: block;
            top: 59px;
            height: auto;
            bottom: 0;
            left: 0;
        }
              
          >ul.nav-menu {
            position: relative;
            left: 0;
            right: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            display: none;
            background: var(--fff);

            &:after {
              display: none;
            }

            >li {
              >a {
                color: var(--color_1);
                border-radius:0;
                &:before, &:after{
                  display:none;
                }
               
              }

              .submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #f8f9fa;
                height: 0;
                overflow: hidden;
                transition: all 0.3s ease;
                border-radius: 0;
                padding: 0 20px;
                
                >li {
                  text-align:center;
                  &:first-child {
                    padding-top: 0;
                  }
                }
              }

              &.active {

                .submenu {
                  height: auto;
                  max-height: 1000px;
                  padding: 20px;
                }
              }
            }
          }
        }

        /* 모바일 토글 */
        .mobile-toggle {
          flex-direction: column;
          cursor: pointer;
          padding: 1.6rem 1.5rem;
          display: flex;
          position: absolute;
          left: 0;
          z-index: 10000;
          top: 0;
          
          
          
          
          
          
          
          
          
          
          
          span {
            width: 25px;
            height: 3px;
            margin: 3px 0;
            background: var(--color_1);
            transition: all 0.3s ease;

          }
        }
        .tel {
          a {
            color:var(--color_1);
            font-size: 2.5em;
            position:absolute;
            right:0;
            top:0;
            padding: 1.2rem 1.5rem;
            line-height: 0.5;
          }
        }
        .flag {
          /* position: fixed; */
          /* right: 0; */
          display: flex;
          /* background: var(--bg); */
          padding: 0;
          margin: 0;
          /* gap: .5rem; */
          /* bottom: 6rem; */
          flex-direction: row;
          justify-content: center;
          transition: all 0.4s ease-in-out;
          height: 0px;
          overflow: hidden;
          background: var(--fff);
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          li {
            width:auto;
            a {
              border: 1px solid var(--line);
            }
            &:last-child{
              position:relative;
              &:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 50%;
                background-color: rgba(0, 188, 212, 0.5);
                animation: pulse-ring-small 2s infinite;
                z-index: -1;
              }
            }

          }
        }

        &.active {
          .flag {
            /* display:flex; */
            height: auto;
            padding: 1rem;
          }
          .mobile-toggle {
            span {
              background: #333;

              &:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
              }

              &:nth-child(2) {
                opacity: 0;
              }

              &:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
              }
            }
          }

        }
      }

    }
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    color: #333;
    padding: 15px 20px;
    border-top: 1px solid #eee;
  }



}

/* 콘텐츠 섹션 */
a.viewMore-btn {
  display: inline-flex;
  background: none;
  transition: background 0.3s;
  font-family: "Poppins", 'NanumSquareNeo', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  width: auto;
  color: var(--fff);
  border: 1px solid var(--fff);
  padding: 1.2rem 3rem;
  border-radius: 10rem;
  line-height: 1em;
  gap: 1rem;
  cursor: pointer;
  letter-spacing: -.1rem;
  align-items: center;
  justify-content: center;

  i {
    font-size: 2.5rem;
    animation: MoveLeftRight 1s ease-in-out infinite alternate;

    &:before {
      margin: 0;
    }
  }

  &.greenBtn {
    color: var(--color_1);
    border: 1px solid var(--line);
  }

  &.greenBtn:hover {
    border-color: var(--color_1);
    color: var(--color_1);
  }
}

@media (max-width: 768px) {
  a.viewMore-btn {
    font-size: 1.2rem;
    padding: .5rem 2rem;
    letter-spacing: 0;
  }
}


/* 푸터  */
footer {
  .location {
    border-radius: 0 0 10rem 10rem;
    position: relative;
    z-index: 1;
    background: var(--fff);

    .content-wrap {
      padding: 15rem 0;

      .inwrap {
        max-width: 1600px;
        margin: 0 auto;

        >ul {
          display: flex;
          gap: 9rem;

          >li {
            flex: 1;
            border-bottom: 2px solid var(--font_222);
            color: var(--font_333);

            h3 {
              font-size: 2.4rem;
              font-family: "Poppins", sans-serif;
              color: var(--font_333);
              font-weight: 700;
              letter-spacing: 0;
              border-bottom: 2px solid var(--font_222);
              padding-bottom: 2.5rem;
              line-height: 1;
              display: flex;
              justify-content: space-between;

              span {
                font-size: 1.5rem;
                display: flex;
                align-items: center;
                color: var(--font_666);
                font-weight: 600;
                font-family: 'NanumSquareNeo';

                label {
                  /* color: var(--font_666); */

                  a {

                    color: var(--font_666);
                  }
                }
              }
            }

            >div {
              display: flex;
              padding: 2rem 3rem;
              align-items: center;
              gap: 2rem;

              address {
                font-size: 1.8rem;
                color: var(--font_333);
                font-weight: 800;

                span {
                  font-size: 1.6rem;
                  color: var(--font_666);
                  font-weight: 600;
                }
              }

              i {
                font-size: 6.2rem;
                line-height: 1;

                &:before {
                  margin: 0;
                }
              }

              +div {
                border-top: 1px solid var(--line);
                display: flex;
              }
            }

            &.foot_contact {

              >div {}

              >div+div {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
                padding-top: 2.6rem;

                dl {
                  display: flex;
                  font-size: 1.5rem;
                  font-weight: 800;
                  line-height: 1rem;
                  letter-spacing: 0;
                  gap: 2rem;

                  dt {
                    width: 11rem;
                    text-align: justify;
                    height: 1em;
                    

                    &:after {
                      content: "";
                      display: inline-block;
                      width: 100%;
                    }

                  }
                }
              }
            }

            &.foot_cscenter {
              >div {

                p {
                  font-size: 3rem;
                  font-weight: 600;
                  font-family: "Poppins", sans-serif;

                  span {
                    font-size: 1.6rem;
                    display: block;
                  }
                }

                &+div {
                  a{
                    display:flex;
                    gap: 2rem;
                    align-items: center;

                    
                    i {
                    background: #fae100;
                    height: 8.8rem;
                    width: 8.8rem;
                    text-align: center;
                    line-height: 9.5rem;
                    border-radius: 2rem;
                    color: #371e1f;
                    +div {
                      p {
                        color: var(--font_333);
                       font-size: 1.8rem;
                      font-family: 'NanumSquareNeo';
                        &+span {
                          color: #8b8b8b;
                          font-size: 1.5rem;
                        }

                      }
                    }
                  }
                  }
                  
                }
              }
            }

            &.foot_counsel {
              >div {
                padding: 0;
                position: relative;

                form {
                  display: flex;
                  flex-direction: column;
                  width: 100%;

                  input {
                    border: 0;
                    border-bottom: 1px solid var(--line);
                    font-size: 1.6rem;
                    padding: 1.3rem 1.5rem;
                    height: 5.6rem;
                  }

                  textarea {
                    height: 13.1rem;
                    resize: none;
                    padding: 4rem 1.5rem;
                    border: 0;
                  }

                  button {
                    color: var(--fff);
                    background: var(--color_1);
                    border: 0;
                    width: 80px;
                    height: 80px;
                    border-radius: 100px;
                    font-size: 1.8rem;
                    line-height: 1.2;
                    font-weight: 800;
                    position: absolute;
                    right: 2rem;
                    bottom: 2.5rem;
                  }

                }
              }
            }
          }
        }

        #footmap {
          /* width: 100%; */
          height: 37rem;
          margin-top: 12rem;
          border: 1px solid var(--line);
          /* background: var(--bg); */
          -moz-box-sizing: border-box;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
        }
      }
    }
  }

  .footInfo_section {
    background: #1e2023;
    margin-top: -10rem;
    font-size: 1.4rem;
    color: #a8a8aa;

    .inwrap {
      max-width: 1600px;
      margin: 0 auto;
      padding: 19rem 0 15rem 0;
      display: flex;
      justify-content: space-between;
      text-align: left;

      nav {
        display: flex;

        ul {
          display: flex;
          gap: 1rem;
          margin: 2rem 0;



          li {
            a {
              border-right: 1px solid #a8a8aa;
              padding-right: 1rem;
            }

            &:last-child {
              a {
                border: 0;
              }

            }
          }
        }
      }

      .foot-info {

        p {
          line-height: 2.8rem;
          display: flex;
          gap: 2rem;
        }
      }

      .foot-sns {
        display: flex;
        font-size: 2rem;
        gap: 3rem;
      }


      a {
        color: #a8a8aa;
      }
    }
  }
}

@media (max-width: 768px) {
  footer {
    .location {
      border-radius: 0 0 5rem 5rem;

      .content-wrap {
        padding: 5rem 0;


        .inwrap {
          margin: 0 2rem;

          >ul {
            display: flex;
            flex-direction: column;
            gap: 4rem;

            >li {
              border-bottom: 0;

              h3 {
                padding-bottom: 1rem;
                /* display: flex; */
                justify-content: center;
                align-items: center;
              }

              >div {
                padding: 2rem 0;
                gap: 1rem;
                justify-content: center;

                i {
                  font-size: 10vw;
                }

                address {
                  font-size: 4.5vw;

                  span {
                    font-size: 4.2vw;
                  }
                }
              }

              &.foot_contact {
                >div+div {
                  display: flex;
                  align-items: center;

                  dl {
                    dt {
                      width: 26vw;
                      font-size: 1.4rem;
                      letter-spacing: -1px;
                    }

                    dd {
                      font-size: 1.4rem;
                    }
                  }

                }
              }

              &.foot_cscenter {
                >div {
                  i {
                    font-size: 15vw;
                  }

                  p {
                    font-size: 10vw;
                    line-height: 1;

                    span {
                      font-size: 5vw;
                      line-height: 1.4;
                    }
                  }

                  &+div {
                    i {
                      height: 16vw;
                      width: 16vw;
                      line-height: 18vw;
                      font-size: 10vw;
                      border-radius: 1rem;

                      &+p {
                        font-size: 6.5vw;
                        line-height: 1.5;
                        a {
                          &+span {
                            font-size: 5vw;
                          }
                        }
                      }

                    }

                  }
                }
              }

              &.foot_counsel {
                h3 {
                  flex-direction: column;
                  gap: 1rem;
                  padding-bottom: 2rem;

                }

                >div {
                  form {
                    textarea {
                      padding: 1.3rem 1.5rem;
                    }

                    button {
                      position: static;
                      width: 100%;
                      border-radius: 0;
                      height: auto;
                      padding: 1rem;
                    }
                  }
                }
              }
            }
          }

          >#footmap {
            margin-top: 4rem;
            height: 20rem;
          }
        }
      }
    }

    .footInfo_section {
      margin-top: -5rem;
      font-size: 1.2rem;






      .inwrap {
        display: flex;
        flex-direction: column;
        margin: 0 2rem;
        padding: 10rem 0 6rem;




        >div {
          text-align: center;

          >img {
            max-width: 15rem;
            opacity: .5;
          }

          nav {
            justify-content: center;

            ul {
              >li {}
            }
          }
        }

        .foot-info {
          margin-bottom: 2rem;

          p {
            flex-direction: column;
            gap: 0rem;
            line-height: 1.6em;
          }
        }

        .foot-sns {
          justify-content: center;
          border-top: 1px solid var(--line);
          padding-top: 2rem;
        }
      }
    }
  }
}

/*서브페이지*/
section.sub_visual {
  min-height: auto;
  height: 60rem;
  border-radius: 0 0 10rem 10rem;
  overflow: hidden;
  color: var(--fff);
  text-align: center;
  position: relative;

  >div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);

    p {
      font-family: Poppins;
      font-size: 3rem;
      font-style: normal;
      font-weight: 700;
      text-transform: uppercase;
    }

    h1 {
      font-size: 7rem;
      font-weight: 800;
    }
  }

  img {
    display: block;
  }
}

.flex {
  display: flex;
  gap: 2.4rem;

  img {
    border-radius: 5rem;
  }
}

#sub {
  main {
    overflow: hidden;

    .inwrap {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      > img{
        border-radius:5rem;
      }
    }

    .subTit {
      padding-top: 12rem;
      margin-bottom: 7rem;



      span.dot {
        width: 4.4rem;
        height: 4.4rem;
        display: block;
        margin: 5rem auto 4rem;
        background-color: var(--color_1);
        border-radius: 10rem;
      }

      p {
        font-weight: 700;
        line-height: 160%;
        /* letter-spacing: -0.05em; */
        font-size: 2.2rem;
        margin-top: 3rem;

        span {
          color: var(--color_1);
        }

        b {
          font-weight: 800;
          color: var(--font_333);

          &.color {
            color: var(--color_1);
          }
        }
      }

      h2 {
        font-size: 5rem;
        font-weight: 500;
        line-height: 130%;
        letter-spacing: -.08em;
        color: var(--font_333);
        font-family: "Noto Serif KR", serif;
        margin-top: 3rem;
        span{
          font-size: 4rem;
        }
        em{
          color:var(--color_1);
          font-weight: 600;
        }

      }
    }
  }

  h4.NotoSerifKR {
    font-size: 3rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.24rem;
    color: var(--font_333);
    margin-top: 3rem;
  }

  h5 {
    font-size: 2.8rem;
    color: var(--font_333);
    font-weight: 600;

    &.tit {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;

      &:before,
      &:after {
        content: '';
        width: 10rem;
        height: 2px;
        display: inline-block;
        background: var(--font_333);
      }

    }
  }
  h6{
    font-size:2.2rem;
    color: var(--font_222);
  }
  ul.checkList {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 160%;
    letter-spacing: -0.12rem;
    /* max-width: 80rem; */
    flex-wrap: wrap;
    margin-top: 4rem;
    margin-bottom: 8rem;

    li {
      min-width: 42rem;
      color: var(--fff);
      display: flex;
      align-items: center;
      padding: 2rem;
      border-radius: 10rem;
      gap: 2rem;
      text-align: center;
      background: var(--color_1);

      i {
        font-size: 4.8rem;
      }

      span {
        flex: 1;
        margin-left: -3rem;
      }



      &:nth-child(2) {
        background: var(--color_2);
      }

      &:nth-child(3) {
        background: var(--color_3);
      }

      &:nth-child(4) {
        background: var(--color_4);
      }
    }
  }

  ul.photoList {
    display: flex;
    gap: 2rem;

    li {
      border: 1px solid var(--line);
      border-radius: 2.5rem;
      overflow: hidden;

      img {
        display: block;
      }

      h6 {
        /* background: var(--gray); */
        font-size: 2rem;
        padding: 1rem 0;
        font-weight: 600;
        /* color: var(--fff); */
      }

      p {
        padding: 2rem 1rem;
        font-weight: 800;
        color: var(--font_333);
        font-size: 1.8rem;
        /* background: var(--font_333); */
      }

    }
  }

  .left_img {
    margin-top: 4em;
    gap: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;


    >li {
      flex: 1;

      img {
        border-radius: 5rem;
        display: block;
        margin: 0 auto;
      }

      >ul.checkList {
        margin: 0;

        >li {
          width: 100%;
        }
      }
    }
  }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  section.sub_visual {
    border-radius: 0 0 5rem 5rem;
    margin-top: 5.9rem;
    height: 20rem;
    margin-bottom: -2rem;
    
    
    
    >div {
      width: 100%;
      transform: translate(-50%, -50%);

      p {
        font-size: 1.2rem;
        font-weight: 400;
      }

      h1 {
        font-size: 2.5rem;
      }
    }

    >img {
      min-height: 100%;
      object-fit: cover;
    }
  }

  #sub {
    main {
      .inwrap {
        margin: 0 1.5rem;
        > img{
          border-radius:2rem;
        }
      }

      .subTit {
        padding-top: 5rem;
        margin-bottom: 2rem;

        span.dot {
          width: 2.5rem;
          height: 2.5rem;
          margin-bottom: 2.5rem;
          margin-top: 2.5rem;
        }
        p {
          font-size: 1.3rem;
          margin-top: 1rem;
          letter-spacing: -.01em;
        }

        h2 {
          font-size: 2.2rem;
          margin-top: 2rem;
          letter-spacing: -.12em;
          
          
          span{
            font-size: 2rem;
          }
        }
        
      }

      h5 {
        font-size: 1.8rem;
        
        
        
        

        &.tit {
          gap: 1rem;





          &:before,
          &:after {
            width: 4rem;
          }
        }
      }

      h4.NotoSerifKR {
        font-size: 1.8rem;
      }


      .flex {
        gap: 1.4rem;
        display: flex;
        flex-direction: column;

        img {
          border-radius: 3rem;
        }
      }

      ul.checkList {
        margin-top: 2rem;
        margin-bottom: 4rem;
        font-size: 1.6rem;
        gap: 1rem;
        li {
          padding: 1rem;
          gap: 1rem;
          width: auto;
          min-width: 20rem;

          i {
            font-size: 2.4rem;
          }

          span {
            margin-left: -2rem;
          }

        }
      }
    }

    ul.photoList {
      display: flex;
      flex-wrap: wrap;

      li {
        border-radius:2rem;
        h6{
          font-size: 1.6rem;
          line-height: 1.4;
        }
      }
    }
  }
}


/* 스크롤 진행률 래퍼 */
.scroll-progress-wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

/* 진행률 컨테이너 */
.scroll-progress-container {
  position: relative;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-progress-container:hover {
  transform: scale(1.1);
}

/* SVG 진행률 링 */
.progress-ring {
  transform: rotate(-90deg);
  width: 80px;
  height: 80px;
}

.progress-ring-background {
  opacity: .3;
  stroke: #ccc;
}

.progress-ring-circle {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 0.3s ease;
}

/* 진행률 텍스트 */
.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  color: #898989;
  transition: opacity 0.3s ease;
  font-family: 'Noto Serif KR';
}

/* 화살표 아이콘 */
.arrow-icon {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color_1);
}

.arrow-icon.show {
  opacity: 1;
  animation: bounceUp 1s ease-in-out infinite alternate;
}

/* 100% 완료 시 텍스트 숨김 */
.progress-text.hide {
  opacity: 0;
}

/* 화살표 애니메이션 */
@keyframes bounceUp {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }

  100% {
    transform: translate(-50%, -50%) translateY(-3px);
  }
}

/* 클릭 효과 */
.scroll-progress-container.clicking {
  transform: scale(0.95);
}

.background-fixed {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* 반응형 디자인 */
@media (max-width: 768px) {
  .scroll-progress-wrapper {
    transform: scale(.6);
    bottom: 4rem;
    left: 0rem;
  }
}

@keyframes MoveUpDown {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes MoveLeftRight {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(10px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes pulse-ring-small {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* 사진상담 */
.photoCounsel_wrap {
  position: fixed;
  right: 0;
  z-index: 100;
  background: var(--bg);
  bottom: 0;
  top: 0;
  overflow: auto;
  padding: 5rem;
  color: var(--font_222);
  transition: right 0.5s ease-out, visibility 0s linear 0.5s;
  box-shadow: 0 0 13px -5px rgba(0, 0, 0, 0.5);
  transform: translate(100%, 00%);
  transition: all 0.4s ease-in-out;

  h2 {
    color: var(--font_333);
    position: relative;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    font-size: 6rem;
    font-family: "Noto Serif KR", serif;
    align-items: center;



    span.photoClose_btn {
      position: relative;
      right: 0;
      width: 5rem;
      height: 5rem;
      cursor: pointer;



      &::before,
      &::after {
        content: '';
        display: inline-block;
        width: 6.7rem;
        height: 0.3rem;
        background: var(--font_333);
        position: absolute;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 24px;
        margin-left: -8px;
        border-radius: 1rem;
      }

      &::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }

    }
  }

  .photoCounsel_inwrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    .img-box {
      height: 20rem;
      border: 1px solid var(--line);
      background: var(--fff);
      border-radius: 1rem;
      text-align: center;
      position: relative;
      padding: 2rem;


      img {
        margin: 0 auto;
        height: 100%;
      }

      input {
        display: none;
      }
    }

    dl {
      display: flex;
      font-size: 2rem;
      font-weight: 600;

      dt {
        width: 20%;
      }

      dd {
        flex: 1;

        input,
        textarea {
          border-radius: 1rem;
          border: 1px solid var(--line);
        }
      }
    }

    .checkboxWrap {
      display: flex;
      align-items: center;

      input[type=checkbox]+label {
        /* display: flex; */
        /* align-items: center; */
      }

    }
  }

  input[type=submit] {
    font-size: 3rem;
    padding: 2rem;
    border: 1px solid var(--line);
    background: var(--color_1);
    color: var(--fff);
    font-weight: 800;
    border-radius: 1rem;
    cursor: pointer;
  }

  &.active {
    transform: translate(00%, 00%);

  }
}

@media (max-width: 768px) {
  .photoCounsel_wrap {
    padding: 4rem 2rem;

    h2 {
      font-size: 4rem;
      margin-bottom: 2rem;

      span.photoClose_btn {
        width: 3.1rem;
        height: 3.1rem;

        &::before,
        &::after {
          width: 4rem;
          top: 15px;
          margin-left: -4px;
        }
      }
    }

    .photoCounsel_inwrap {
      gap: 1rem;

      .img-box {
        height: 15rem;
        padding: 1rem;
      }

      dl {
        font-size: 1.6rem;

        dt {}

        dd {

          input,
          textarea {
            padding: 1rem;
          }
        }
      }

      input[type=submit] {
        font-size: 2.4rem;
        padding: 2rem 2rem;
      }
    }

  }
}

/* layer_pop */

.layer_pop {
  position: fixed;
  width: auto;
  height: auto;
  z-index: 70;
  background: var(--fff);
  border: 10px solid var(--bg);
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5rem 10rem;
  border-radius: 5rem;
  display: none;

  h2 {
    font-size: 5rem;
    font-weight: 400;
    color: var(--font_333);
    align-items: center;
    font-family: "Noto Serif KR", serif;
  }

  h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color_1);
  }

  p {
    font-size: 2.4rem;
    margin: 4rem 0;
    color: var(--font_333);
  }

  input {
    border: 1px solid var(--line);
    border-radius: 1rem;
    margin-bottom: 4rem;
  }

  span.close_btn {
    position: absolute;
    right: 0;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    display: block;
    transform: translate(100%, -100%);
    top: 0;

    &::before,
    &::after {
      content: '';
      display: inline-block;
      width: 6.7rem;
      height: 0.3rem;
      background: var(--fff);
      position: absolute;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 24px;
      margin-left: -32px;
      border-radius: 1rem;
    }

    &::after {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }

  }

  button {
    font-size: 2.4rem;
    padding: 1rem 5rem;
    border: 0;
    background: var(--color_1);
    color: var(--fff);
    border-radius: 4rem;
    font-weight: 700;
    cursor: pointer;
  }

  &.bf_board_pop {
    input {
      max-width: 40rem;
      text-align: center;
      font-size: 2.4rem;
      font-weight: 700;
    }

    p {
      font-size: 1.8rem;
      margin: 2rem 0;

    }

    .btn {
      padding: 0.2rem 1rem;
      border: 0;
      background: var(--color_1);
      color: var(--fff);
      border-radius: 4rem;
      font-weight: 700;

    }

    .btn_gray {
      background: var(--gray);
    }

    .btnWrap {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }
  }
}

.dim_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2000000, endColorstr=#b2000000);
  z-index: 60;
  cursor: pointer;
  top: 0;
  display: none;
}

@media (max-width: 768px) {
  .layer_pop {
    padding: 1rem 0;
    border-radius: 3rem;
    left: auto;
    transform: translate(0%, -50%);
    margin: 0 1.5rem;
    border-width: 5px;
    width: calc(100% - 3rem);

    >div {
      max-height: 80vh;
      overflow: scroll;
      padding: 2rem 1rem;
    }

    h3 {
      font-size: 1.8rem;
      letter-spacing: -.1rem;

      span {
        display: block;
      }
    }

    h2 {
      font-size: 3rem;
    }

    p {
      font-size: 1.6rem;
      margin: 2rem 0;
    }

    input {
      margin-bottom: 2rem;
    }

    button {
      font-size: 2rem;
      padding: 1rem 3rem;
      border: 0;
      background: var(--color_1);
      color: var(--fff);
      border-radius: 4rem;
      font-weight: 700;
      cursor: pointer;
    }

    span.close_btn {
      transform: translate(0%, -120%);
      width: 3rem;
      height: 3rem;
      right: -5px;

      &::before,
      &::after {
        width: 3rem;
        top: 14px;
        margin-left: -12px;
      }
    }

    &.bf_board_pop {
      p {
        font-size: 1.5rem;
      }

      input {
        font-size: 2rem;
        padding: .5rem;
        max-width: 30rem;
      }

      .btnWrap {
        gap: .5rem;

        button {
          font-size: 1.6rem;
          padding: 1rem 1rem;
        }
      }
    }
  }
}

/* vod */
.auto_height {position: relative;width: 100%;height: 0;padding-bottom: 56.21%;margin-bottom: 0;}
.auto_height iframe, .auto_height video {position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
@media screen and (max-width:  768px) {
  .content_wrap p.auto_height {margin-bottom:0 }
}

ul.num_list{
  > li{
    display: flex;
    text-align: left;
    gap: 5rem;
    align-items: center;
    padding: 4rem;
    border-bottom: 1px solid var(--line);
    img{
      border-radius:5rem;
    }
    &:first-child{
      padding-top:0;
    }
    h4{
      font-size:3rem;
      font-weight:800;
      color: var(--font_333);
      margin-bottom: 2rem;
    }
    p{
      font-size: 2rem;
      span{
        color:var(--color_1);
        font-weight: 600;
      }
    }
  }
}

@media screen and (max-width:  768px) {
  
}

/* quick_menu */
.quick_menu {
  position: relative;
  top: 300px;
  right: 20px;
  position: fixed;
  z-index: 20;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;

  >ul {
    float: left;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

    >li {
      &::before {
        /* content: '\E8A7'; */
        font-family: 'icon_font';
        color: #324b91;
        position: absolute;
        font-size: 5em;
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      a {
        height: 80px;
        overflow: hidden;
        margin-bottom: 10px;
        padding: 0;
        color: #fff;
        text-align: center;
        display: block;
        font-size: 12px;
        cursor: pointer;
        text-align: center;
        padding-left: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
        width: 80px;
        border-radius: 50px;
        line-height: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;

        &::before {
          display: inline-block;
          font-size: 32px;
          font-family: 'icon_font';
          margin-top: 10px;
        }
        i{
          font-size: 2.8em;
        }
        span {
          display: inline-block;
          font-weight: 600;
          /* width: 80px; */
          margin-top: 6px;
        }
      }

      &:nth-child(1){
        a {
          background: var(--color_1);
        }
      }
      &:nth-child(2){
        a {
          background: #ffe700;color: #371e1f;
        }
      }
      &:nth-child(4){
        a {
          background: var(--color_3);
        }
      }
      &:nth-child(5){
        a {
          background: var(--color_4);
        }
      }
      &:nth-child(3){
       background: var(--color_4);
       color:var(--fff);
       padding: 5px 0 4px 0;
       text-align:center;
       cursor: pointer;
       
       
       label{
         display:flex;
         align-items: center;
         justify-content: center;
       }
        i{
           display: inline-block;
            font-size: 22px;
            margin-right: 3px;
        }
      }
    }
  }
  >div {
    width: 380px;
    float: right;
    border: 0;
    border-bottom: 1px solid #dadada;
    overflow: hidden;

  }

  &.f_nav {
    top: 170px;
    right: 20px;
    margin-right: 0;
  }
}
 .layerwrite {
  text-align: left;
  background: #fff;
  width: 560px;
  position: fixed;
  left: 50%;
  z-index: 300;
  margin-left: -280px;
  top: 140px;
  display: none;
  border: 1px solid #dadada;
  border-radius: 30px;
  overflow: hidden;
  padding: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  h2 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color_2);
    font-weight: 800;


    i {
      float: right;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 20px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      font-size: .7em;

      &:hover {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
      }
    }
  }

  .wraper {
    p {
      margin: 0;
      text-align: center;
    }

    form {
      table {
        width: 100%;
        margin: 10px 0 20px;
        border-top: 1px solid #d3cfc8;

        th {
          border-bottom: 1px solid #cbcbcb;
          background: #f4f8fb;
          color: #606060;
          font-weight: 400;
          width: 100px;
          text-align: center;
          vertical-align: middle;
        }

        td {
          border-bottom: 1px solid #d5d5d5;
          padding: 0;
          background: #fff;
        }

        input[type="text"] {
          border: 0;
          font-size: 1em;
          padding: 10px 15px;
          width: 327px;
        }

        textarea {
          padding: 10px 15px;
          border: 0;
          width: 327px;
          min-height: 112px;

          &::placeholder {
            color: #c5c5c5;
          }
        }

        p {
          margin-bottom: 40px;

          input[type=checkbox]+label:before {
            top: 5px;
          }

          input[type=checkbox]:checked+label:before {
            top: 5px;
          }

          

        }

      }
      .Counselagree_view {
            line-height: 1em;
            color: #fff;
            background: #898989;
            padding: 5px 10px;
            border-radius: 4px;
            margin-left: 10px;
            display: inline-block;
            &:hover {
            color: #fff;
            } 
          }

      input[type="submit"] {
        width: auto;
        background: var(--color_2);
        border: 0;
        color: #fff;
        font-size: 1.4em;
        padding: 10px 40px;
        cursor: pointer;
        border-radius: 40px;
        display: block;
        margin: 0 auto;
        margin-top: 1em;
        font-weight: 600;
      }
    }
  }
}

@media screen and (max-width: 1600px) {
  .quick_menu {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .quick_menu {
    display: block;
    top: auto;
    bottom: 0px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    background: #fff;
    &.f_nav {
      top: auto;
      display: none;
    }
    >ul {
      width: 100%;
      >li {
        float: left;
        width: 25%;
        height: auto;
        background: none;
        padding: 0;
        &:first-child {
          animation-name: color-effect2;
          animation-duration: 1200ms;
          animation-iteration-count: infinite;
          background: #224187;
        }
        a {
          height: auto;
          width: 100%;
          display: block;
          margin-bottom: 0;
          padding: 10px 0;
          border-radius: 0;
          
          i {
            margin-top: 0px;
            display: inline-block;
            font-size: 22px;
            margin-right: 3px;
            vertical-align: sub;
          }
        }
        span {
            opacity: 1;
            padding-top: 0;
            font-size: 11px;
            width: auto;
          }
        
      }
    }
  }



  .layerwrite {
    width: 90%;
    margin-left: -45%;
    padding: 50px 5% 30px;
    top: 60px;
    h2 {
      font-size: 2em;
      margin-bottom: 10px;
    }
    .wraper{
      form{
        p{
          margin-bottom: 20px
        }
        table{
           margin-top: 0;
          th{
             width: 25%;
          }
          input[type="text"], 
          textarea{
            width: 90%;
            padding: 10px 5%;
          }
        }
        .Counselagree_view{
          margin-left: 5px;
           font-size: .9em;
        }
        input[type="submit"] {
          font-size: 1.2em;
          padding: 10px 20px;
        }
      }
    }
  }



  
}


/* FAQ */

#faq {
  border-bottom: 1px solid #6a6a6a;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 5px solid var(--color_1);
  text-align: left;
  
  > li{
          border-top: 2px solid var(--gray);
          
          
    &:first-child{
      border-top:0;
    }
    p {
      margin: 0
    }
  
    .faq_q {
      padding: 25px 20px;
      /* padding-left: 80px; */
      position: relative;
      z-index: 1;
      background: #fff;
      cursor: pointer;
      /* border-top: 2px solid var(--gray); */
      /* font-weight: 500; */
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 2.4rem;
      font-family: 'NanumSquareNeo', sans-serif !important;
      font-weight: 700;
      color: var(--font_333) !important;
    }
  .faq_a {
    display: none;
    padding: 25px 20px;
    border-top: 1px solid var(--gray_3);
    /* padding-left: 80px; */
    background: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 1rem;
    font-size: 1.8rem;
    > div {
      width:calc(100% - 50px);
    }
  }
    
.faq_q::before,
.faq_a::before {
  content: 'Q';
  font-size: 2.6rem;
  display: block;
  background: var(--color_4);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: #fff;
  /* margin-right: 10px; */
  /* line-height: 35px; */
  text-align: center;
  font-weight: 600;
  /* position: absolute; */
  /* margin-left: -60px; */
  /* margin-top: -4px; */
}
.faq_a::before {
  content: 'A';
  background: var(--color_2);
}
  }
}



@media screen and (max-width: 768px) {

#faq{
  > li{

    .faq_q {padding: 10px;padding-left: 50px;font-size: 16px;display: block;}
    .faq_q::before, .faq_a::before {width: 30px;height: 30px;line-height: 30px;font-size: 20px;margin-left: -40px;/* margin-top: -4px; */position: absolute;}
    .faq_a::before {margin-top: 0px;}
    .faq_a {padding: 10px;padding-left: 50px;
           > div{
             width:auto;
           }
           }
    p{
      font-size:1.4rem;
    }
  }
}


}