/* ---------- S : Sub visual ---------- */
.sub-visual {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.sub-visual .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(1.2);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: svAni 2s ease forwards;
}

@keyframes svAni {
  0% {
    transform: translate(-50%, -50%) scale(1.2) ;
  }
  
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.sub-visual.sv1 .bg {
  background-image: url('/child/img/sub/sv1.png');
}
.sub-visual.sv2 .bg {
  background-image: url('/child/img/sub/sv2.png');
}
.sub-visual.sv3 .bg {
  background-image: url('/child/img/sub/sv3.png');
}
.sub-visual.sv3-1 .bg {
  background-image: url('/child/img/sub/sv3-1.png');
}
.sub-visual.sv4 .bg {
  background-image: url('/child/img/sub/sv4.png');
}

.sub-visual-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 1530px;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.sub-navigation {
  width: 100%;
  position: absolute;
  top: calc(39% + 3px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 29px;
}

.sub-navigation .home a {
  display: block;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/sub/home.png');
}

.sub-navigation .depth {
  font-size: 2rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.sub-navigation li {
  position: relative;
  padding: 0 12px;
}

.sub-navigation li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #ed6d00;
}

.sub-navigation .depth02::after {
  display: none;
}

.sub-visual .tit {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 50px;
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
}

.sub-visual .tit h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

@media(max-width:1200px) {
  .sub-navigation .depth {
    font-size: 1.8rem;
  }

  .sub-visual .tit {
    font-size: 5.2rem;
  }
}

@media(max-width:1024px) {
  .sub-visual {
    height: 700px;
  }

  .sub-navigation {
    margin: 0 0 25px;
  }

  .sub-navigation .home a {
    width: 16px;
    height: 16px;
  }

  .sub-navigation li {
    padding: 0 10px;
  }

  .sub-visual .tit {
    padding-bottom: 45px;
  }
}

@media(max-width:768px) {
  .sub-visual {
    height: 600px;
  }

  .sub-navigation {
    margin: 0 0 20px;
  }

  .sub-navigation .home a {
    width: 14px;
    height: 14px;
  }

  .sub-navigation .depth {
    font-size: 1.6rem;
  }

  .sub-navigation li {
    padding: 0 8px;
  }

  .sub-navigation li::after {
    width: 2px;
    height: 2px;
  }

  .sub-visual .tit {
    padding-bottom: 40px;
    font-size: 4.4rem;
  }
}

@media(max-width:500px) {
  .sub-visual {
    height: 500px;
  }

  .sub-navigation {
    margin: 0 0 15px;
  }

  .sub-navigation .depth {
    font-size: 1.4rem;
  }

  .sub-visual .tit {
    padding-bottom: 35px;
    font-size: 3.6rem;
  }
}
/* ---------- E : Sub visual ---------- */

/* ---------- S : Common ---------- */
.sec {
  padding: 120px 0 0;
}

.sec:last-of-type {
  padding: 120px 0;
}

.sec-tit {
  position: relative;
  margin-top: -9px;
  padding-top: 6px;
  font-size: 4.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.66;
}

.sec-tit h3 {
  position: relative;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  overflow: hidden;
}

.sec-tit h3 span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.sec-tit::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: -7px;
  transform: translate(-100%, 0) rotate(180deg);
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/common/sec_pin_color.png');
}

@keyframes keyAni {
  0% {
    transform: translate(-100%, 0) rotate(180deg);
  }
  100% {
    transform: translate(-100%, 0) rotate(0);
  }
}

.sec-tit.aos-animate::after {
  animation: keyAni .7s ease forwards;
  animation-delay: .2s;
}
.t-box {
  margin-top: 20px;
}

.t-box li {
  margin-bottom: 22px;
}

.t-box li:last-of-type {
  margin-bottom: 0;
}

.t-box .tit {
  position: relative;
  padding-left: 17px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.t-box .tit span {
  font-weight: 400;
}

.t-box .tit .dot {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #ffa14a;
}

.t-box .txt {
  padding-left: 15px;
  margin-top: 8px;
}

.t-box .txt p {
  position: relative;
  padding-left: 13px;
  font-size: 2.1rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.t-box .txt p:last-of-type {
  margin-bottom: 0;
}

.t-box .txt p span {
  font-weight: 700;
}

.t-box .txt p i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.t-box .txt .item {
  margin-bottom: 10px;
}

.t-box .txt .item:last-of-type {
  margin-bottom: 0;
}

.t-box .txt .item p {
  margin-bottom: 0;
}

.t-box .txt .item p span {
  font-weight: 600;
}

.t-box .txt .item-txt {
  margin-bottom: 0;
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
  line-height: 1.6;
}


.t-box .txt .item-txt i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media(max-width:1550px) {
  .sec-tit::after {
    top: 0px;
    left: 5px;
  }
}

@media(max-width:1200px) {
  .sec-tit {
    font-size: 3.6rem;
  }

  .t-box .tit {
    font-size: 2.1rem;
  }

  .t-box .txt p {
    font-size: 1.9rem;
  }
  
  .sec-tit::after {
    top: -3px;
    left: 5px;
  }

}

@media(max-width:1024px) {
  .sec {
    padding: 105px 0 0;
  }
  
  .sec:last-of-type {
    padding: 105px 0;
  }
    
  .sec-tit::after {
    top: -3px;
    left: 3px;
    width: 14px;
    height: 14px;
  }
  
  .t-box {
    margin-top: 15px;
  }

  .t-box li {
    margin-bottom: 20px;
  }

  .t-box .tit {
    padding-left: 15px;
  }

  .t-box .tit .dot {
    top: 7px;
  }

  .t-box .txt {
    padding-left: 13px;
  }

  .t-box .txt p {
    margin-bottom: 8px;
    padding-left: 10px;
  }
  
  .t-box .txt .item {
    margin-bottom: 8px;
  }

  .t-box .txt .item-txt {
    margin-left: 8px;
    padding-left: 8px;
  }
}

@media(max-width:768px) {
  .sec {
    padding: 90px 0 0;
  }
  
  .sec:last-of-type {
    padding: 90px 0;
  }
  
  .sec-tit {
    font-size: 3.2rem;
  }
  
  .sec-tit::after {
    top: 2px;
    left: 0px;
    width: 11px;
    height: 11px;
  }
  
  .t-box {
    margin-top: 12px;
  }

  .t-box li {
    margin-bottom: 15px;
  }

  .t-box .tit {
    padding-left: 13px;
    font-size: 1.9rem;
  }

  .t-box .tit .dot {
    top: 7px;
    width: 6px;
    height: 6px;
  }

  .t-box .txt {
    padding-left: 10px;
  }

  .t-box .txt p {
    padding-left: 8px;
    font-size: 1.7rem;
  }


}

@media(max-width:500px) {
  .sec {
    padding: 80px 0 0;
  }
  
  .sec:last-of-type {
    padding: 80px 0;
  }
  
  .sec-tit {
    line-height: 1.3;
    font-size: 2.8rem;
  }
  
  .sec-tit::after {
    top: 5px;
    width: 9px;
    height: 9px;
  }
  
  .t-box {
    margin-top: 10px;
  }

  .t-box li {
    margin-bottom: 10px;
  }

  .t-box .tit {
    padding-left: 10px;
    font-size: 1.7rem;
  }

  .t-box .tit .dot {
    top: 7px;
    width: 5px;
    height: 5px;
  }

  .t-box .txt p {
    font-size: 1.5rem;
  }

}

/* ---------- E : Common ---------- */
/* ---------- S : About ---------- */
.about .sec01 .sec-tit {
  margin-bottom: 14px;
}

.about .sec01 .sec-txt {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  line-height: 1.66;
}

.about .sec01 .sec-txt p {
  position: relative;
  padding-left: 15px;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.about .sec01 .sec-txt p span {
  position: absolute;
  top: 0;
  left: 0;
}

.about .sec01 .area {
  position: relative;
  margin-top: 106px;
}

.about .sec01 .area .img {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 1.358 / 1;
}

.about .sec01 .area .img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  aspect-ratio: 1.445 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/child/img/sub/about/about/sec01_img_full.png");
}

.about .sec01 .area .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 158px;
}

.about .sec01 .area .top::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -4;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 2px;
  background-color: #ec6d00;
}

.about .sec01 .area .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
}

.about .sec01 .area .item-mini {
  max-width: 357px;
  width: 24%;
  border: 3px solid #ed6d00;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about .sec01 .area .item-mini01 {
  background-image: url('/child/img/sub/about/about/sec01_img01.png');
}
.about .sec01 .area .item-mini02 {
  background-image: url('/child/img/sub/about/about/sec01_img02.png');
}
.about .sec01 .area .item-mini03 {
  margin: 0 auto;
  background-image: url('/child/img/sub/about/about/sec01_img03.png');
}

.about .sec01 .area .item-mini03::after {
  content: "";
  display: block;
  position: absolute;
  top: 20.671%;
  right: -60px;
  transform: translate(100%, -100%);
  width: 218px;
  height: 218px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/sub/about/about/sec01_arrow.png');
}

.about .sec01 .area .item-mini .tit {
  margin-bottom: 27px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
  color: #fff;
}

.about .sec01 .area .item-mini .tit span {
  display: block;
  font-size: 1.9rem;
  font-weight: 300;
}

.about .sec01 .area .item-mini .txt {
  font-size: 1.9rem;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: #fff;
}

.about .sec01 .area .item-mini .txt span {
  font-weight: 600;
}

.about .sec01 .area .item-center {
  position: relative;
  max-width: 410px;
  width: 28%;
}

.about .sec01 .area .item-center .box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.about .sec01 .area .item-center::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  max-width: 484px;
  width: 118%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 5px solid transparent;
  background-image: linear-gradient(#fff, #fff), 
  linear-gradient(to top, #41beef 0%,  #ec6d00 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.about .sec01 .area .item-center .tit {
  font-size: 3.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01rem;
  text-align: center;
}

.about .sec01 .area .item-center .txt {
  font-size: 2.4rem;
  line-height: 1.33;
  text-align: center;
  color: #fff;
}

.about .sec01 .area .item-center span {
  width: 280px;
  height: 1px;
  margin: 21px auto 16px;
  background-color: #fff;
}

.about .sec02 .container {
  position: relative;
}

.about .sec02 .container::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  bottom: 70px;
  z-index: -1;
  width: 420px;
  aspect-ratio: 0.917 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/sub/about/about/sec02_bg.png');
}

.about .sec02 .sec-tit {
  margin-bottom: 43px;
}

.about .sec02 .history {
  position: relative;
}

.about .sec02 .his-line {
  position: absolute;
  top: 13px;
  left: 254px;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: #e5e5e5;
}

.about .sec02 .his-line .progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.about .sec02 .history .item {
  display: flex;
  align-items: start;
  padding-bottom: 80px;
}

.about .sec02 .history .item:last-of-type {
  padding-bottom: 30px;
}

.about .sec02 .history .thumb {
  position: relative;
  width: 484px;
  aspect-ratio: 1.503 / 1;
  border-radius: 20px;
  overflow: hidden;
}

.about .sec02 .history .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about .sec02 .history .item .year {
  width: 254px;
  margin-top: -20px;
  font-size: 5.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #e5e5e5;
  transition: color .3s ease;
}

.about .sec02 .history .item .year.on {
  color: #ed6d00;
}

.about .sec02 .history .cont {
  max-width: 690px;
  width: calc(100% - 738px);
}

.about .sec02 .history .cont-item {
  padding: 2px 15px 0 60px;
  margin-bottom: 87px;
}

.about .sec02 .history .cont-item:last-of-type {
  margin-bottom: 0;
}

.about .sec02 .history .month {
  position: relative;
  margin-bottom: 13px;
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e5e5e5;
  transition: color .3s ease;
}

.about .sec02 .history .month.on {
  color: #ed6d00;
}

.about .sec02 .history .month::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e5e5e5;
  transition: background-color .3s ease;
}

.about .sec02 .history .month.on::after  {
  background-color: #ec6d00;
  animation: monthDotAni 1.4s ease infinite;
}

@keyframes monthDotAni {
  0% {
    box-shadow: 0 0 0 0px rgba(237, 109, 0, 1);
  }
  99% {
    box-shadow: 0 0 0 8px rgba(237, 109, 0, 0.1);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(237, 109, 0, 0);
  }
}

.about .sec02 .history .txt {
  display: flex;
  align-items: start;
  margin-bottom: 8px;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  line-height: 1.66;
}

.about .sec02 .history .date {
  display: block;
  font-weight: 700;
  width: 50px;
}

.about .sec02 .history .txt p {
  width: calc(100% - 50px);
}

@media(max-width:1500px) {
  .about .sec02 .history .thumb {
    width: 400px;
    border-radius: 18px;
  }
  
  .about .sec02 .history .cont {
    width: calc(100% - 654px);
  }
}

@media(max-width:1200px) {
  .about .sec01 .sec-txt {
    font-size: 2.1rem;
  }
  
  .about .sec01 .area .item-mini .tit {
    font-size: 2.2rem;
  }
  
  .about .sec01 .area .item-mini .tit span {
    font-size: 1.7rem;
  }
  
  .about .sec01 .area .item-mini .txt {
    font-size: 1.7rem;
  }
 
  .about .sec01 .area .item-center .tit {
    font-size: 3.2rem;
  }
  
  .about .sec01 .area .item-center .txt {
    font-size: 2rem;
  }
  
  .about .sec01 .area .item-center span {
    width: 250px;
  }
  
  .about .sec02 .container::after {
    width: 370px;
  }

  .about .sec02 .his-line {
    left: 220px;
  }
  
  .about .sec02 .history .thumb {
    width: 350px;
  }

  .about .sec02 .history .item .year {
    width: 220px;
    font-size: 5rem;
    margin-top: -18px;
  }

  .about .sec02 .history .cont {
    width: calc(100% - 570px);
  }

  .about .sec02 .history .cont-item {
    padding: 2px 15px 0 45px;
  }
  
  .about .sec02 .history .month {
    font-size: 2.5rem;
  }
  
  .about .sec02 .history .month::after {
    left: -45px;
  }

  .about .sec02 .history .txt {
    font-size: 2.1rem;
  }
}

@media(max-width:1024px) {
  .about .sec01 .area {
    margin-top: 90px;
  }
  
  .about .sec01 .area .top {
    margin-bottom: 140px;
  }
  
  .about .sec01 .area .item-mini {
    width: 28%;
  }
  
  .about .sec01 .area .item-mini03::after {
    top: 29%;
    right: -50px;
    width: 180px;
    height: 180px;
  }
  
  .about .sec01 .area .item-mini .tit {
    margin-bottom: 25px;
  }
  
  .about .sec01 .area .item-center {
    width: 34%;
  }
  
  .about .sec01 .area .item-center::after {
    width: 110%;
  }
  
  .about .sec01 .area .item-center span {
    width: 220px;
  }
  
  .about .sec02 .container::after {
    right: 25px;
    bottom: 50px;
    width: 320px;
  }

  .about .sec02 .sec-tit {
    margin-bottom: 40px;
  }

  .about .sec02 .his-line {
    left: 180px;
    width: 2px;
  }

  .about .sec02 .history .item {
    padding-bottom: 70px;
  }

  .about .sec02 .history .item:last-of-type {
    padding-bottom: 25px;
  }

  .about .sec02 .history .thumb {
    width: 300px;
    border-radius: 16px;
  }

  .about .sec02 .history .item .year {
    width: 180px;
  }

  .about .sec02 .history .cont {
    width: calc(100% - 480px);
  }

  .about .sec02 .history .cont-item {
    padding: 2px 15px 0 30px;
    margin-bottom: 80px;
  }

  .about .sec02 .history .month::after {
    left: -30px;
    width: 12px;
    height: 12px;
  }

  .about .sec02 .history .date {
    width: 40px;
  }

  .about .sec02 .history .txt p {
    width: calc(100% - 40px);
  }
  
}

@media(max-width :850px) {
  .about .sec02 .container::after {
    right: 25px;
    bottom: 50px;
    width: 280px;
  }

  .about .sec02 .sec-tit {
    margin-bottom: 35px;
  }

  .about .sec02 .his-line {
    top: 0px;
    left: 0;
    width: 2px;
  }

  .about .sec02 .history .item {
    flex-wrap: wrap;
  }

  .about .sec02 .history .item .year {
    width: 100%;
    padding-left: 30px;
    margin-bottom: 30px;
  }

  .about .sec02 .history .cont {
    width: calc(100% - 300px);
  }

}

@media(max-width:768px) {
  .about .sec01 .sec-tit {
    margin-bottom: 8px;
  }
  
  .about .sec01 .sec-txt {
    font-size: 1.9rem;
  }
  
  .about .sec01 .sec-txt p {
    padding-left: 12px;
  }
  
  .about .sec01 .area {
    margin-top: 50px;
  }
  
  .about .sec01 .area .img {
    display: block;
  }
  
  .about .sec01 .area .top, 
  .about .sec01 .area .bottom {
    display: none;
  }
  
  .about .sec02 .container::after {
    right: 20px;
    bottom: 40px;
    width: 230px;
  }

  .about .sec02 .sec-tit {
    margin-bottom: 30px;
  }

  .about .sec02 .history .item {
    padding-bottom: 60px;
  }

  .about .sec02 .history .item:last-of-type {
    padding-bottom: 20px;
  }

  .about .sec02 .history .thumb {
    width: 250px;
    border-radius: 14px;
  }

  .about .sec02 .history .item .year {
    padding-left: 25px;
    margin-bottom: 25px;
    margin-top: -15px;
    font-size: 4.2rem;
  }

  .about .sec02 .history .cont {
    width: calc(100% - 250px);
  }

  .about .sec02 .history .cont-item {
    padding: 2px 15px 0 25px;
    margin-bottom: 70px;
  }

  .about .sec02 .history .month {
    margin-bottom: 10px;
    font-size: 2.1rem;
  }

  .about .sec02 .history .month::after {
    left: -25px;
    width: 10px;
    height: 10px;
  }

  .about .sec02 .history .txt {
    font-size: 1.9rem;
  }

  .about .sec02 .history .date {
    width: 35px;
  }

  .about .sec02 .history .txt p {
    width: calc(100% - 35px);
  }
}

@media(max-width:500px) {
  .about .sec01 .sec-txt {
    font-size: 1.7rem;
  }
  
  .about .sec01 .sec-txt p {
    padding-left: 10px;
  }
  
  .about .sec01 .area {
    margin-top: 45px;
  }
  
  .about .sec02 .container::after {
    right: 15px;
    bottom: 30px;
    width: 180px;
  }

  .about .sec02 .sec-tit {
    margin-bottom: 25px;
  }

  .about .sec02 .history .item {
    padding-bottom: 50px;
    padding-left: 20px;
  }

  .about .sec02 .history .item:last-of-type {
    padding-bottom: 15px;
  }

  .about .sec02 .history .thumb {
    width: 100%;
    aspect-ratio: 2 / 1;
    margin-bottom: 20px;
    border-radius: 12px;
    order: -1;
  }
  
  .about .sec02 .history .thumb img {
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    aspect-ratio: 1.503 / 1;
    transform: translate(-50%, -50%);
  }

  .about .sec02 .history .item .year {
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: -13px;
    font-size: 3.4rem;
    order: -2;
  }

  .about .sec02 .history .cont {
    width: 100%;
  }

  .about .sec02 .history .cont-item {
    padding: 2px 0 0;
    margin-bottom: 60px;
  }

  .about .sec02 .history .month {
    font-size: 1.9rem;
  }

  .about .sec02 .history .month::after {
    left: -20px;
    width: 8px;
    height: 8px;
  }

  .about .sec02 .history .txt {
    font-size: 1.7rem;
  }

  .about .sec02 .history .date {
    width: 30px;
  }

  .about .sec02 .history .txt p {
    width: calc(100% - 30px);
  }
}
/* ---------- E : About ---------- */
/* ---------- S : Advisory ---------- */
.advisory .sec-tit {
  margin-bottom: 63px;
}

.advisory .sec02 .sec-tit {
  margin-bottom: 60px;
}

.advisory .list {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 26px 0;
  margin: -12px;
}

.advisory .list li {
  width: 33.333%;
  padding: 12px;
}

.advisory .list .box {
  width: 100%;
  padding: 30px 30px 55px;
  border-radius: 20px;
  background-color: #f5f5f5;
}

.advisory .sec02 .list .box {
  padding: 50px 30px;
}

.advisory .list .heading {
  margin-bottom: 31px;
}

.advisory .sec01 .list .heading {
  display: flex;
  align-items: center;
  margin-bottom: 37px;
} 

.advisory .sec01 .list .heading .lt {
  width: calc(100% - 160px);
  padding-top: 4px;
}

.advisory .sec01 .list .heading .rt {
  width: 160px;
} 

.advisory .sec01 .list .heading .rt .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 0.727 / 1;
  border-radius: 10px;
  overflow: hidden;
} 

.advisory .sec01 .list .heading .rt .thumb  img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} 

.advisory .list .tag {
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 2px 10px;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
}

.advisory .list .name {
  font-size: 2.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.advisory .list .heading .txt {
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-top: 21px;
  min-height: 90px;
  height: 100%;
  font-size: 2.1rem;
  line-height: 1.5;
}

.advisory .list .heading .txt span {
  display: block;
}

.advisory .list .cont {
  width: 100%;
}

.advisory .list .cont01 {
  margin-bottom: 37px;
}


.advisory .list .cont .tit {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.advisory .list .cont .tit::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin-right: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/common/sec_pin_color.png');
}

.advisory .list .cont .txt {
  width: 100%;
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 10px;
}

.advisory .sec01 .list .cont .txt {
  padding: 20px 30px;
}

.advisory .sec01 .list .cont01 .txt {
  height: 184px;
  overflow: auto;
}

.advisory .sec01 .list .cont02 .txt {
  height: 326px;
  overflow: auto;
}

.advisory .list .cont .txt p {
  margin-bottom: 8px;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  line-height: 1.66;
}

.advisory .list .cont .txt p:last-of-type {
  margin-bottom: 0;
}

.advisory .sec01 .list .cont .txt p {
  position: relative;
  padding-left: 10px;
}

.advisory .sec01 .list .cont .txt p .dot {
  position: absolute;
  top: 0;
  left: 0;
}

@media(max-width:1200px) {
  .advisory .list li {
    width: 50%;
  }
  
  .advisory .sec02 .list li:nth-of-type(3) {
    display: none;
  }
  
  .advisory .sec01 .list .heading .lt {
    width: calc(100% - 150px);
  }
  
  .advisory .sec01 .list .heading .rt {
    width: 150px;
  } 
  
  .advisory .list .tag {
    font-size: 1.7rem;
  }
  
  .advisory .list .name {
    font-size: 2.5rem;
  }
  
  .advisory .list .heading .txt {
    font-size: 1.9rem;
  }
  
  .advisory .list .cont .tit {
    font-size: 2rem;
  }
  
  .advisory .list .cont .txt {
    padding: 15px 25px;
    border-radius: 10px;
  }
  
  .advisory .sec01 .list .cont .txt {
    padding: 20px 25px;
  }
  
  .advisory .sec01 .list .cont01 .txt {
    height: 180px;
  }

  .advisory .sec01 .list .cont02 .txt {
    height: 300px;
  }
  
  .advisory .list .cont .txt p {
    font-size: 1.7rem;
  }
}

@media(max-width:1024px) {
  .advisory .sec-tit {
    margin-bottom: 55px;
  }
  
  .advisory .sec02 .sec-tit {
    margin-bottom: 50px;
  }
  
  .advisory .list {
    gap: 20px 0;
    margin: -10px;
  }
  
  .advisory .list li {
    width: 50%;
    padding: 10px;
  }
  
  .advisory .list .box {
    padding: 25px 25px 45px;
    border-radius: 18px;
  }
  
  .advisory .sec02 .list .box {
    padding: 45px 25px;
  }
  
  .advisory .list .heading {
    margin-bottom: 25px;
  }
  
  .advisory .sec01 .list .heading {
    margin-bottom: 15px;
  } 
  
  .advisory .sec01 .list .heading .lt {
    width: calc(100% - 140px);
  }
  
  .advisory .sec01 .list .heading .rt {
    width: 140px;
  } 
  
  .advisory .sec01 .list .heading .rt .thumb {
    border-radius: 8px;
  } 
  
  .advisory .list .heading .txt {
    margin-top: 15px;
    min-height: 80px;
  }
  
  .advisory .list .cont01 {
    margin-bottom: 35px;
  }
  
  .advisory .list .cont .tit {
    margin-bottom: 15px;
  }
  
  .advisory .list .cont .tit::before {
    width: 11px;
    height: 11px;
    margin-right: 9px;
  }
  
  .advisory .list .cont .txt {
    padding: 15px 20px;
    border-radius: 10px;
  }
  
  .advisory .sec01 .list .cont .txt {
    padding: 15px 20px;
  }
  
  .advisory .sec01 .list .cont01 .txt {
    height: 160px;
  }

  .advisory .sec01 .list .cont02 .txt {
    height: 290px;
  }
  
  .advisory .list .cont .txt p {
    margin-bottom: 8px;
  }
  
  .advisory .sec01 .list .cont .txt p {
    padding-left: 8px;
  }
}

@media(max-width:768px) {
  .advisory .sec-tit,
  .advisory .sec02 .sec-tit {
    margin-bottom: 45px;
  }

  .advisory .list {
    gap: 15px 0;
    margin: -8px;
  }
  
  .advisory .list li {
    width: 50%;
    padding: 8px;
  }
  
  .advisory .sec01 .list li {
    width: 100%;
  }
  
  .advisory .list .box {
    padding: 20px 20px 40px;
    border-radius: 16px;
  }
  
  .advisory .sec02 .list .box {
    padding: 40px 20px;
  }
  
  .advisory .list .heading {
    margin-bottom: 20px;
  }
  
  .advisory .sec01 .list .heading {
    margin-bottom: 12px;
  } 
  
  .advisory .sec01 .list .heading .lt {
    width: calc(100% - 120px);
  }
  
  .advisory .sec01 .list .heading .rt {
    width: 120px;
  } 
  
  .advisory .list .tag {
    font-size: 1.5rem;
    border-radius: 3px;
  }
  
  .advisory .list .name {
    font-size: 2.1rem;
  }
  
  .advisory .list .heading .txt {
    margin-top: 12px;
    min-height: 80px;
    font-size: 1.7rem;
  }
  
  .advisory .list .cont01 {
    margin-bottom: 30px;
  }
  
  .advisory .list .cont .tit {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .advisory .list .cont .tit::before {
    width: 10px;
    height: 10px;
    margin-right: 6px;
  }
  
  .advisory .list .cont .txt {
    padding: 15px;
    border-radius: 8px;
  }
  
  .advisory .sec01 .list .cont .txt {
    padding: 15px;
  }
  
  .advisory .sec01 .list .cont01 .txt {
    height: 150px;
  }

  .advisory .sec01 .list .cont02 .txt {
    max-height: 260px;
    height: auto;
  }
  
  .advisory .list .cont .txt p {
    font-size: 1.5rem;
  }
  
  .advisory .sec01 .list .cont .txt p {
    padding-left: 8px;
  }
}

@media(max-width: 650px) {
  .advisory .list {
    gap: 20px 0;
    margin: 0;
  }
  
  .advisory .list li {
    width: 100%;
    padding: 0;
  }
  
  .advisory .sec02 .list li:nth-of-type(2) {
    display: none;
  }
  
  .advisory .list .box {
    padding: 15px 15px 35px;
  }
  
  .advisory .sec02 .list .box {
    padding: 35px 15px;
  }
  
  .advisory .list .cont01 {
    margin-bottom: 30px;
  }
  
  .advisory .sec01 .list .cont01 .txt {
    height: auto;
    max-height: 150px;
  }

  .advisory .sec01 .list .cont02 .txt {
    height: auto;
    max-height: 260px;
  }
}

@media(max-width: 500px) {
  .advisory .sec-tit,
  .advisory .sec02 .sec-tit {
    margin-bottom: 40px;
  }
  
  .advisory .list {
    gap: 15px 0;
  }
  
  .advisory .list .box {
    padding: 12px 12px 30px;
    border-radius: 14px;
  }
    
  .advisory .sec02 .list .box {
    padding: 30px 12px;
  }
  
  .advisory .list .heading {
    margin-bottom: 15px;
  }
  
  .advisory .sec01 .list .heading {
    margin-bottom: 10px;
  } 
  
  .advisory .sec01 .list .heading .lt {
    width: calc(100% - 100px);
  }
  
  .advisory .sec01 .list .heading .rt {
    width: 100px;
  } 
  
  .advisory .list .tag {
    margin-bottom: 10px;
    padding: 2px 8px;
    font-size: 1.3rem;
  }
  
  .advisory .list .name {
    font-size: 1.9rem;
  }
  
  .advisory .list .heading .txt {
    margin-top: 10px;
    min-height: 70px;
    font-size: 1.5rem;
  }
  
  .advisory .list .cont01 {
    margin-bottom: 25px;
  }
  
  .advisory .list .cont .tit {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  
  .advisory .list .cont .tit::before {
    width: 8px;
    height: 8px;
    margin-right: 4px;
  }
  
  .advisory .list .cont .txt {
    padding: 12px;
    border-radius: 6px;
  }
  
  .advisory .sec01 .list .cont .txt {
    padding: 12px;
  }
  
  .advisory .sec01 .list .cont01 .txt {
    max-height: 150px;
  }

  .advisory .sec01 .list .cont02 .txt {
    max-height: 260px;
  }
  
  .advisory .list .cont .txt p {
    font-size: 1.3rem;
  }
  
  .advisory .sec01 .list .cont .txt p {
    padding-left: 6px;
  }
}
/* ---------- E : Advisory ---------- */
/* ---------- S : Resource ---------- */
.resource .sec-tit {
  margin-bottom: 63px;
}

@media(max-width:1024px) {
  .resource .sec-tit {
    margin-bottom: 55px;
  }
}

@media(max-width:768px) {
  .resource .sec-tit {
    margin-bottom: 45px;
  }
}

@media(max-width:500px) {
  .resource .sec-tit {
    margin-bottom: 40px;
  }
}
/* ---------- E : Resource ---------- */
/* ---------- E : Precision ---------- */
.precision .sec02 .t-box {
  margin-bottom: 64px;
}

.precision .sec02 .area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 85px 80px;
  border-radius: 20px;
  background-color: #f5f5f5;
}

.precision .sec02 .area .circle {
  max-width: 410px;
  width: 31%;
  opacity: 0;
  transform: scale(.9);
  transition: all .4s ease;
}

.precision .sec02 .area .circle.aos-animate {
  opacity: 1;
  transform: scale(1);
}
.precision .sec02 .area .circle .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 5px solid #ed6d00;
}

.precision .sec02 .area .circle .box01 {
  background-color: #fff;
}

.precision .sec02 .area .circle .box02  {
  color: #fff;
}

.precision .sec02 .area .circle .box .line {
  max-width: 280px;
  width: 70%;
  height: 1px;
  margin-bottom: 13px;
  background-color: #fff;
}

.precision .sec02 .area .circle .box .tit {
  margin-bottom: 11px;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.01em;
  text-align: center;
}

.precision .sec02 .area .circle .box .txt {
  font-size: 2.5rem;
  line-height: 1.58;
  letter-spacing: -0.01em;
  text-align: center;
}

.precision .sec02 .area .circle .box .txt span {
  display: block;
}

.precision .sec02 .area .center {
  max-width: 355px;
  width: 27%;
}

.precision .sec02 .area .center li {
  width: 100%;
  margin-bottom: 64px;
}

.precision .sec02 .area .center li:last-of-type {
  margin-bottom: 0;
}

.precision .sec02 .area .center .box {
  margin-bottom: 15px;
}

.precision .sec02 .area .center .box:last-of-type {
  margin-bottom: 0;
}

.precision .sec02 .area .center .box p {
  font-size: 2.1rem;
  letter-spacing: -0.01em;
  font-weight: 700;  
  color: #ec6d00;
  text-align: center;
}

.precision .sec02 .area .center .box.blue p {
  color: #41beef;
}

.precision .sec02 .area .center .arrow {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background-color: #ec6d00;
}

.precision .sec02 .area .center .arrow-blue {
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(to right, #48c1f0 61%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 16px 2px;
  background-repeat: repeat-x;
}

.precision .sec02 .area .center .arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.precision .sec02 .area .center .arrow-blue::after {
  left: 0;
  transform: translateY(-50%) rotate(135deg);
  border-color: #48c1f0;
}

.precision .sec02 .area .center .arrow-orange::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  border-color: #ec6d00;
}

@media(max-width:1200px) {
  .precision .sec02 .area {
    padding: 55px 50px;
  }
  
  .precision .sec02 .area .circle {
    width: 31%;
  }

  .precision .sec02 .area .circle .box .tit {
    font-size: 3.2rem;
  }
  
  .precision .sec02 .area .circle .box .txt {
    font-size: 2.1rem;
  }
  
  .precision .sec02 .area .center {
    width: 27%;
  }

  .precision .sec02 .area .center .box p {
    font-size: 1.9rem;
  }

}

@media(max-width:1024px) {
  .precision .sec02 .t-box {
    margin-bottom: 55px;
  }
  
  .precision .sec02 .area {
    padding: 35px 30px;
    border-radius: 18px;
  }
  
  .precision .sec02 .area .circle {
    width: 33%;
  }
  
  .precision .sec02 .area .circle .box .line {
    width: 80%;
  }
  
  .precision .sec02 .area .center {
    width: 30%;
  }
  
  .precision .sec02 .area .center li {
    margin-bottom: 55px;
  }
}

@media(max-width:768px) {
  .precision .sec02 .t-box {
    margin-bottom: 45px;
  }
  
  .precision .sec02 .area {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .precision .sec02 .area .circle {
    width: 37%;
  }
  
  .precision .sec02 .area .circle .box {
    border-width: 3px;
  }
  
  .precision .sec02 .area .circle .box .line {
    margin-bottom: 10px;
  }
  
  .precision .sec02 .area .circle .box .tit {
    font-size: 2.8rem;
  }
  
  .precision .sec02 .area .circle .box .txt {
    font-size: 1.9rem;
  }
  
  .precision .sec02 .area .center {
    width: 23%;
  }
  
  .precision .sec02 .area .center li {
    margin-bottom: 45px;
  }
  
  .precision .sec02 .area .center .box p {
    font-size: 1.7rem;
  }
}

@media(max-width:680px) {
  .precision .sec02 .area {
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .precision .sec02 .area .circle {
    width: 80%;
  }
  
  .precision .sec02 .area .circle .box {
    border-width: 3px;
  }
  
  .precision .sec02 .area .center {
    display: flex;
    align-items: start;
    max-width: 100%;
    width: 100%;
  }
  
  .precision .sec02 .area .center li {
    display: flex;
    width: 50%;
    margin: 30px 0;
  }
  
  .precision .sec02 .area .center .box {
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: 0;
  }
  
  .precision .sec02 .area .center .box p {
    width: calc(100% - 20px);
  }
  
  .precision .sec02 .area .center .arrow {
    width: 2px;
    height: 200px;
    margin: 0 5px;
  }
  
  .precision .sec02 .area .center .arrow::after {
    width: 9px;
    height: 9px;
    top: 98%;
  }
  
  .precision .sec02 .area .center .arrow-orange::after {
    right: auto;
    left: 1px;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
  }
  
  .precision .sec02 .area .center .arrow-blue {
    background-image: linear-gradient(to top, #48c1f0 61%, rgba(255, 255, 255, 0) 0%);
    background-size: 2px 16px;
    background-repeat: repeat-Y;
  }
  
  .precision .sec02 .area .center .arrow-blue::after {
    top: 5px;
    left: 1px;
    transform: translateY(-50%) translateX(-50%) rotate(-135deg);
  }
}

@media(max-width:500px) {
  .precision .sec02 .t-box {
    margin-bottom: 40px;
  }
  
  .precision .sec02 .area {
    padding: 20px;
  }
  
  .precision .sec02 .area .circle .box {
    border-width: 2px;
  }
  
  .precision .sec02 .area .circle .box .line {
    margin-bottom: 8px;
  }
  
  .precision .sec02 .area .circle .box .tit {
    margin-bottom: 8px;
    font-size: 2.4rem;
  }
  
  .precision .sec02 .area .circle .box .txt {
    font-size: 1.7rem;
  }
  
  .precision .sec02 .area .center li {
    margin: 20px 0;
  }
  
  .precision .sec02 .area .center .box p {
    width: calc(100% - 15px);
    font-size: 1.5rem;
  }
  
  .precision .sec02 .area .center .arrow {
    height: 150px;
  }
}
/* ---------- E : Precision ---------- */
/* ---------- S : Measurement ---------- */
.measurement .area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 80px 100px 80px 80px;
  gap: 0 15px;
  margin-top: 71px;
  border-radius: 20px;
  background-color: #f5f5f5;
}

.measurement .area .ani {
  opacity: 0;
  transform: scale(.9);
  transition: all .4s ease;
}

.measurement .area .ani.aos-animate {
  opacity: 1;
  transform: scale(1);
}

.measurement .area .circle {
  width: 320px;
  aspect-ratio: 1 / 1;
}

.measurement .area .circle .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 50%;
}

.measurement .area .circle .tit {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
}

.measurement .area .circle .line {
  display: block;
  max-width: 260px;
  width: 70%;
  height: 1px;
  margin: 15px auto;
  background-color: #fff;
}

.measurement .area .circle .txt span {
  display: block;
  line-height: 1.3;
  font-size: 2.5rem;
  text-align: center;
}

.measurement .area .rt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 65px;
  max-width: 910px;
  width: 70%;
}

.measurement .area .rt li .tit {
  padding-top: 10px;
  margin-bottom: 13px;
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
}

.measurement .area .rt li .txt {
  min-height: 114px;
}

.measurement .area .rt li .txt span {
  display: block;
  font-size: 2.5rem;
  line-height: 1.58;
  text-align: center;
  letter-spacing: -0.01em;
}

.measurement .area .rt .box {
  max-width: 232px;
  width: 26%;
}

.measurement .area .rt .box > div {
  margin-bottom: 24px;
}

.measurement .area .rt .box > div:last-of-type {
  margin-bottom: 0;
}

.measurement .area .rt .box p {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ec6d00;
  text-align: center;
}

.measurement .area .rt .box .blue p {
  color: #41bff0;
}

.measurement .area .rt .arrow {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background-color: #ec6d00;
}

.measurement .area .rt .arrow-blue {
  width: 100%;
  background-color: transparent;
  background-image: linear-gradient(to right, #48c1f0 61%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 16px 2px;
  background-repeat: repeat-x;
}

.measurement .area .rt .arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.measurement .area .rt .arrow-blue::after {
  left: 0;
  transform: translateY(-50%) rotate(135deg);
  border-color: #48c1f0;
}

.measurement .area .rt .box02 .arrow-blue::after {
  left: auto;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.measurement .area .rt .arrow-orange::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  border-color: #ec6d00;
}

@media(max-width:1500px) {
  .measurement .area {
    padding: 60px;
  }
  
  .measurement .area .rt {
    gap: 0 30px;
  }
}

@media(max-width:1200px) {
  .measurement .area {
    padding: 40px;
    margin-top: 71px;
    border-radius: 18px;
  }

  .measurement .area .circle {
    width: 320px;
  }
  
  .measurement .area .circle .tit {
    font-size: 3rem;
  }
  
  .measurement .area .circle .line {
    width: 70%;
    margin: 15px auto;
  }
  
  .measurement .area .circle .txt span {
    font-size: 2.1rem;
  }
  
  .measurement .area .rt {
    gap: 0 25px;
  }
  
  .measurement .area .rt li .tit {
    padding-top: 10px;
    margin-bottom: 13px;
    font-size: 3rem;
  }
  
  .measurement .area .rt li .txt {
    min-height: 114px;
  }
  
  .measurement .area .rt li .txt span {
    font-size: 2.1rem;
  }
  
  .measurement .area .rt .box {
    width: 26%;
  }
  
  .measurement .area .rt .box > div {
    margin-bottom: 24px;
  }
  
  .measurement .area .rt .box p {
    font-size: 1.9rem;
  }
  
  .measurement .area .rt .arrow {
    height: 2px;
    margin: 7px 0;
  }
  
  .measurement .area .rt .arrow::after {
    width: 11px;
    height: 11px;
  }
}

@media(max-width:1024px) {
  .measurement .area {
    padding: 30px;
    margin-top: 60px;
    border-radius: 16px;
  }

  .measurement .area .circle {
    width: 250px;
  }
  
  .measurement .area .circle .line {
    width: 80%;
  }
  
  .measurement .area .rt {
    gap: 0 20px;
  }
  
  .measurement .area .rt li .tit {
    padding-top: 8px;
    margin-bottom: 10px;
  }
  
  .measurement .area .rt .box > div {
    margin-bottom: 20px;
  }
  
  .measurement .area .rt .arrow {
    margin: 5px 0;
  }
  
  .measurement .area .rt .arrow::after {
    width: 9px;
    height: 9px;
  }
}

@media(max-width:880px) {
  .measurement .area {
    flex-direction: column;
    gap: 20px 0;
  }

  .measurement .area .circle {
    width: 260px;
    margin: 0 auto;
  }
  
  .measurement .area .circle .line {
    width: 80%;
  }
  
  .measurement .area .rt {
    flex-direction: column;
    gap: 15px 0;
  }
  
  .measurement .area .rt li .tit {
    padding-top: 0;
    margin-bottom: 10px;
  }
  
  .measurement .area .rt li .txt {
    min-height: auto;
  }
  
  .measurement .area .rt .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    max-width: 100%;
    width: 100%;
  }
  
  .measurement .area .rt .box > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    width: 50%;
  }
  
  .measurement .area .rt .box p {
    width: calc(100% - 23px);
  }
  
  .measurement .area .rt .arrow {
    width: 2px;
    height: 100px;
    margin: 0 10px;
  }
  
  .measurement .area .rt .arrow::after {
    top: 98%;
  }
  
  .measurement .area .rt .arrow-orange::after {
    right: auto;
    left: 1px;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
  }
  
  .measurement .area .rt .arrow-blue {
    background-image: linear-gradient(to top, #48c1f0 61%, rgba(255, 255, 255, 0) 0%);
    background-size: 2px 16px;
    background-repeat: repeat-Y;
  }

  .measurement .area .rt .arrow.arrow-blue::after {
    top: 5px;
    left: 1px;
    transform: translateY(-50%) translateX(-50%) rotate(-135deg);
  }
      
  .measurement .area .rt .box02 .arrow-blue::after {
    left: 1px;
    right: auto;
    top: 98%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
  }
}

@media(max-width:768px) {
  .measurement .area {
    padding: 20px;
    margin-top: 50px;
    gap: 15px 0;
  }

  .measurement .area .circle {
    width: 260px;
  }
  
  .measurement .area .circle .tit {
    font-size: 2.6rem;
  }
  
  .measurement .area .circle .line {
    margin: 12px auto;
  }
  
  .measurement .area .circle .txt span {
    font-size: 1.9rem;
  }
  
  .measurement .area .rt {
    /* gap: 15px 0; */
  }
  
  .measurement .area .rt li .tit {
    margin-bottom: 10px;
    font-size: 2.6rem;
  }
  
  .measurement .area .rt li .txt span {
    font-size: 1.9rem;
  }

  .measurement .area .rt .box {
    gap: 0 15px;
  }
  
  .measurement .area .rt .box p {
    width: calc(100% - 15px);
    font-size: 1.7rem;
  }
  
  .measurement .area .rt .arrow {
    height: 90px;
    margin: 0 5px;
  }
  
  .measurement .area .rt .arrow::after {
    /* width: 9px;
    height: 9px; */
    /* top: 98%; */
  }
}

@media(max-width:500px) {
  .measurement .area {
    padding: 18px;
    margin-top: 45px;
  }

  .measurement .area .circle {
    width: 230px;
  }
  
  .measurement .area .circle .tit {
    font-size: 2.2rem;
  }
  
  .measurement .area .circle .line {
    margin: 10px auto;
  }
  
  .measurement .area .circle .txt span {
    font-size: 1.7rem;
  }
  
  .measurement .area .rt {
    gap: 12px 0;
  }
  
  .measurement .area .rt li .tit {
    margin-bottom: 8px;
    font-size: 2.2rem;
  }
  
  .measurement .area .rt li .txt span {
    font-size: 1.7rem;
  }

  .measurement .area .rt .box {
    gap: 0 12px;
  }
  
  .measurement .area .rt .box p {
    width: calc(100% - 15px);
    font-size: 1.5rem;
  }
  
  .measurement .area .rt .arrow {
    height: 80px;
  }
  
  .measurement .area .rt .arrow::after {
    width: 8px;
    height: 8px;
    top: 96%;
  }
}
/* ---------- E : Measurement ---------- */
/* ---------- S : Immune ---------- */
.immune .t-box  {
  margin-top: 14px;
  margin-bottom: -6px;
}

.immune .t-box .tit {
  line-height: 1.6;
}

.immune .area {
  display: flex;
  align-items: end;
}

.immune .area .img {
  position: relative;
  max-width: 992px;
  width: 66.1333%;
  overflow: hidden;
}

.immune .sec01 .area .img {
  margin-top: 78px;
  aspect-ratio: 1.521 / 1;
}

.immune .sec04 .area .img {
  margin-top: 57px;
  aspect-ratio: 1.533 / 1;
}

.immune .area .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.immune .area .source {
  width: calc(100% - 33.866%);
  max-width: 508px;
  padding: 27px 30px 24px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.immune .area .source a {
  display: block;
  margin-bottom: 10px;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: #005bac;
}

.immune .area .source span {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  line-height: 1.33;
}

@media(max-width:1200px) {
  .immune .area .img {
    width: 67%;
  }
  
  .immune .area .source {
    width: 33%;
  }
  
  .immune .area .source a {
    font-size: 1.7rem;
  }
  
  .immune .area .source span {
    font-size: 1.7rem;
  }
}

@media(max-width:1024px) {
  .immune .sec01 .area .img {
    margin-top: 70px;
  }
  
  .immune .sec04 .area .img {
    margin-top: 50px;
  }
  
  .immune .area .source {
    padding: 25px;
  }
  
  .immune .area .source a {
    margin-bottom: 10px;
  }
}

@media(max-width:768px) {
  .immune .area {
    flex-direction: column;
    align-items: start;
  }
  
  .immune .area .img {
    width: 100%;
  }
  
  .immune .sec01 .area .img {
    margin: 60px auto 30px;
  }
  
  .immune .sec04 .area .img {
    margin: 45px auto 30px;
  }
  
  .immune .area .source {
    width: 100%;
    padding: 20px;
  }
  
  .immune .area .source a {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }
  
  .immune .area .source span {
    font-size: 1.5rem;
  }
}

@media(max-width:500px) {
  .immune .sec01 .area .img {
    margin: 50px auto 25px;
  }
  
  .immune .sec04 .area .img {
    margin: 40px auto 25px;
  }
  
  .immune .area .source {
    padding: 15px;
  }
  
  .immune .area .source a {
    margin-bottom: 6px;
    font-size: 1.3rem;
  }
  
  .immune .area .source span {
    font-size: 1.3rem;
  }
}
/* ---------- E : Immune ---------- */
/* ---------- E : Immune ---------- */
.cytometry  .t-box {
  margin-top: 14px;
}

.cytometry .t-box .tit {
  line-height: 1.66;
}

.cytometry .t-box .tit .dot {
  top: 15px;
}

.cytometry .sec01 .t-box {
  max-width: 1090px;
}

.cytometry .area {
  margin-bottom: 71px;
}

.cytometry .area:last-of-type {
  margin-bottom: 0;
}

.cytometry .sec01 .area {
  display: flex;
  align-items: end;
}

.cytometry .sec01 .area .img {
  position: relative;
  max-width: 992px;
  width: 66.1333%;
  margin-top: 73px;
  overflow: hidden;
  aspect-ratio: 1.236 / 1;
}

.cytometry .sec01 .area .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cytometry .sec01 .area .source {
  width: calc(100% - 33.866%);
  max-width: 508px;
  padding: 27px 30px 24px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.cytometry .sec01 .area .source a {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: #005bac;
}

.cytometry .sec02 .area .img {
  position: relative;
  overflow: hidden;
}

.cytometry .sec02 .area .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cytometry .sec02 .area01 .img {
  max-width: 992px;
  width: 66.1333%;
  margin: 53px 0 33px;
  aspect-ratio: 3.633 / 1;
}

.cytometry .sec02 .area01 .txt p {
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.cytometry .sec02 .table {
  width: 100%;
  padding-top: 2px;
}

.cytometry .sec02 .table table{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border-collapse: collapse;
}

.cytometry .sec02 .table th {
  border-right: 1px solid #d2d2d2;
  padding: 12px 15px;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.4;
  color: #fff;
}

.cytometry .sec02 .table th:last-of-type {
  border: none;
}

.cytometry .sec02 .table td {
  height: 80px;
  padding: 12px 15px;
  border-right: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: center;
}

.cytometry .sec02 .table td span {
  display: inline-block;
}

.cytometry .sec02 .table td:first-of-type {
  color: #666;
  background-color: #f5f5f5;
}

.cytometry .sec02 .table td:nth-of-type(2) {
  font-weight: 700;
  background-color: #fdf0e5;
}

.cytometry .sec02 .table tr td:last-of-type {
  border-right: none;
  background-color: #fef8f2;
}

.cytometry .sec02 .table tr:last-of-type td {
  border-bottom: none;
}

.cytometry .sec02 .area03 .box {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 53px;
}

.cytometry .sec02 .area03 .img {
  width: 100%;
  aspect-ratio: 3 / 1;
}

.cytometry .sec02 .area04 .img {
  width: 100%;
  aspect-ratio: 1.446 / 1;
  margin-top: 50px;
}

@media(max-width:1200px) {
  .cytometry .t-box .tit .dot {
    top: 13px;
  }
  
  .cytometry .sec01 .area .img {
    width: 67%;
  }
  
  .cytometry .sec01 .area .source {
    width: 33%;
  }
  
  .cytometry .sec01 .area .source a {
    font-size: 1.7rem;
  }

  .cytometry .sec02 .area01 .img {
    width: 67%;
    margin: 53px 0 33px;
  }
  
  .cytometry .sec02 .area01 .txt p {
    font-size: 1.9rem;
  }
  
  .cytometry .sec02 .table th {
    padding: 12px 15px;
    font-size: 1.9rem;
  }
  
  .cytometry .sec02 .table td {
    height: 80px;
    padding: 12px 15px;
    font-size: 1.9rem;
  }
  
  .cytometry .sec02 .area03 .box {
    margin-top: 53px;
  }
  
  .cytometry .sec02 .area04 .img {
    margin-top: 50px;
  }

}

@media(max-width:1024px) {
  .cytometry  .t-box {
    margin-top: 20px;
  }
  
  .cytometry .t-box .tit .dot {
    top: 11px;
  }

  .cytometry .area {
    margin-bottom: 60px;
  }

  .cytometry .sec01 .area .img {
    margin-top: 80px;
  }
  
  .cytometry .sec01 .area .source {
    padding: 25px;
  }
  
  .cytometry .sec02 .area01 .img {
    width: 67%;
    margin: 45px 0 30px;
  }
  
  .cytometry .sec02 .table th {
    padding: 12px 15px;
  }
  
  .cytometry .sec02 .table td {
    height: 80px;
    padding: 12px 15px;
  }
  
  .cytometry .sec02 .area03 .box {
    margin-top: 45px;
  }
  
  .cytometry .sec02 .area04 .img {
    margin-top: 40px;
  }

}

@media(max-width:768px) {
  .cytometry  .t-box {
    margin-top: 15px;
  }

  .cytometry .area {
    margin-bottom: 50px;
  }
  
  .cytometry .sec01 .area {
    flex-direction: column;
    align-items: start;
  }
  
  .cytometry .sec01 .area .img {
    width: 100%;
  }
  
  .cytometry .sec01 .area .img {
    margin: 70px auto 30px;
  }

  .cytometry .sec01 .area .source {
    width: 100%;
    padding: 20px;
  }
  
  .cytometry .sec01 .area .source a {
    font-size: 1.5rem;
  }
  
  .cytometry .sec02 .area01 .img {
    width: 100%;
    margin: 40px 0 45px;
  }
  
  .cytometry .sec02 .area01 .txt p {
    font-size: 1.7rem;
  }
  
  .cytometry .sec02 .table th {
    padding: 12px 10px;
    font-size: 1.7rem;
  }
  
  .cytometry .sec02 .table td {
    height: 80px;
    padding: 12px 10px;
    font-size: 1.7rem;
  }
  
  .cytometry .sec02 .area03 .box {
    margin-top: 35px;
  }
  
  .cytometry .sec02 .area04 .img {
    margin-top: 35px;
  }

}

@media(max-width:500px) {
  .cytometry  .t-box {
    margin-top: 10px;
  }
  
  .cytometry .t-box .tit .dot {
    top: 10px;
  }

  .cytometry .area {
    margin-bottom: 45px;
  }
  
  .cytometry .sec01 .area .img {
    margin: 60px auto 30px;
  }
  
  .cytometry .sec01 .area .source {
    padding: 15px;
  }
  
  .cytometry .sec01 .area .source a {
    font-size: 1.3rem;
  }
  
  .cytometry .sec02 .area01 .img {
    margin: 35px 0 40px;
  }
  
  .cytometry .sec02 .area01 .txt p {
    font-size: 1.5rem;
  }
  
  .cytometry .sec02 .table th {
    padding: 10px 8px;
    font-size: 1.5rem;
  }
  
  .cytometry .sec02 .table td {
    height: 80px;
    padding: 10px 8px;
    font-size: 1.5rem;
  }
  
  .cytometry .sec02 .area03 .box {
    margin-top: 35px;
  }
  
  .cytometry .sec02 .area04 .img {
    margin-top: 30px;
  }
  
}
/* ---------- E: Cytometry ---------- */
/* ---------- S: Digital ---------- */
.digital .sec01 .t-box {
  margin-top: 15px;
}

.digital .sec01 .t-box .tit {
  line-height: 1.6;
}

.digital .sec01 .t-box .tit .dot {
  top: 14px;
}

.digital .sec01 .area {
  position: relative;
  width: 100%;
  aspect-ratio: 1.504 / 1;
  margin-top: 72px;
  overflow: hidden;
}

.digital .sec01 .area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media(max-width:1024px) {
  .digital .sec01 .t-box {
    margin-top: 15px;
  }
  
  .digital .sec01 .t-box .tit br {
    display: none;
  }
  
  
  .digital .sec01 .t-box .tit .dot {
    top: 14px;
  }
  
  .digital .sec01 .area {
    margin-top: 60px;
  }
  
  .digital .sec02 .t-box .txt p br {
    display: none;
  }
}

@media(max-width:768px) {
  .digital .sec01 .t-box {
    margin-top: 12px;
  }
  
  .digital .sec01 .t-box .tit .dot {
    top: 12px;
  }
  
  .digital .sec01 .area {
    margin-top: 50px;
  }
}

@media(max-width:500px) {
  .digital .sec01 .t-box {
    margin-top: 10px;
  }
    
  .digital .sec01 .area {
    margin-top: 45px;
  }
}
/* ---------- E: Digital ---------- */
/* ---------- S: Notice ---------- */
.notice .sec-tit {
  margin-bottom: 63px;
}

@media(max-width:1024px) {
  .notice .sec-tit {
    margin-bottom: 55px;
  }
}

@media(max-width:768px) {
  .notice .sec-tit {
    margin-bottom: 45px;
  }
}

@media(max-width:500px) {
  .notice .sec-tit {
    margin-bottom: 40px;
  }
}
/* ---------- E: Notice ---------- */
/* ---------- S: Inquiry ---------- */
.inquiry .sec-tit {
  margin-bottom: 63px;
}

.inquiry #inquiryForm .form-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -12px;
  padding: 30px 0 32px;
  padding-left: 20px;
  border-top: 2px solid #b5b5b5;
  border-bottom: 2px solid #b5b5b5;
}

.inquiry #inquiryForm .row {
  display: flex;
  align-items: start;
  width: calc(50% - 10px);
  padding: 0 12px;
  margin-bottom: 30px;
}

.inquiry #inquiryForm .row.row-100 {
  width: 100%;
}

.inquiry #inquiryForm .row.row-agree,
.inquiry #inquiryForm .row.row-conTxt {
  margin-bottom: 0;
}

.inquiry #inquiryForm .row .th {
  width: 118px;
  padding-top: 13px;
  font-size: 2.1rem;
  font-weight: 700;
}

.inquiry #inquiryForm .row .th span {
  color: #ed6d00;
}

.inquiry #inquiryForm .row .td {
  width: calc(100% - 118px);
}

.inquiry #inquiryForm .row .td input[type="text"] {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
}

.inquiry #inquiryForm .row .td textarea {
  width: 100%;
  height: 300px;
  padding: 20px;
  resize: none;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
}

.inquiry #inquiryForm .row .td input[type="text"],
.inquiry #inquiryForm .row .td textarea {
  font-size: 1.9rem;
  background-color: transparent;
}


.inquiry #inquiryForm .form-agree {
  margin-top: 15px;
}

.inquiry #inquiryForm .form-agree label {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}

.inquiry #inquiryForm .form-agree input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.inquiry #inquiryForm .form-agree i {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/common/check.png');
}

.inquiry #inquiryForm .form-agree input[type="checkbox"]:checked ~ i {
  background-image: url('/child/img/common/checked.png');
}

.inquiry #inquiryForm .form-agree p {
  font-size: 1.9rem;
}

.inquiry #inquiryForm .form-agree p .inquiryPrivacy {
  font-size: inherit;
  position: relative;
  font-weight: 600;
  color: #41bff0;
}

.inquiry #inquiryForm .form-agree p .inquiryPrivacy::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #41bff0;
}

.inquiry #inquiryForm .form-btns {
  width: 300px;
  height: 60px;
  margin: 60px auto 0;
}

.inquiry #inquiryForm .form-btns button {
  width: 100%;
  height: 100%;
  font-size: 2.1rem;
  border-radius: 10px;
  color: #fff;
}

@media(max-width:1200px) {
  .inquiry #inquiryForm .row .th {
    font-size: 1.9rem;
  }
  
  .inquiry #inquiryForm .row .td input[type="text"],
  .inquiry #inquiryForm .row .td textarea{
    font-size: 1.7rem;
  }
  
  .inquiry #inquiryForm .form-agree p {
    font-size: 1.7rem;
  }
  
  .inquiry #inquiryForm .form-btns button {
    font-size: 1.9rem;
  }
}

@media(max-width:1024px) {
  .inquiry .sec-tit {
    margin-bottom: 55px;
  }
  
  .inquiry #inquiryForm .form-table {
    margin: 0 -6px;
    padding: 25px 0;
    padding-left: 15px;
  }
  
  .inquiry #inquiryForm .row {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 25px;
  }
  
  .inquiry #inquiryForm .row .th {
    width: 100px;
    padding-top: 11px;
  }
  
  .inquiry #inquiryForm .row .td {
    width: calc(100% - 100px);
  }
  
  .inquiry #inquiryForm .row .td input[type="text"] {
    height: 50px;
    padding: 0 15px;
    border-radius: 8px;
  }
  
  .inquiry #inquiryForm .row .td textarea {
    height: 250px;
    padding: 15px;
    border-radius: 8px;
  }
  
  .inquiry #inquiryForm .form-agree {
    margin-top: 12px;
  }
  
  .inquiry #inquiryForm .form-agree i {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .inquiry #inquiryForm .form-btns {
    width: 250px;
    height: 50px;
    margin: 50px auto 0;
  }
  
  .inquiry #inquiryForm .form-btns button {
    border-radius: 8px;
  }
}

@media(max-width:768px) {
  .inquiry .sec-tit {
    margin-bottom: 45px;
  }
  
  .inquiry #inquiryForm .form-table {
    margin: 0px;
    padding: 20px 0;
    padding-left: 0;
  }
  
  .inquiry #inquiryForm .row-null{
    display: none;
  }
  
  .inquiry #inquiryForm .row {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .inquiry #inquiryForm .row .th {
    width: 90px;
    padding-top: 9px;
    font-size: 1.7rem;
  }
  
  .inquiry #inquiryForm .row .td {
    width: calc(100% - 90px);
  }
  
  .inquiry #inquiryForm .row .td input[type="text"] {
    height: 45px;
    padding: 0 12px;
  }
  
  .inquiry #inquiryForm .row .td textarea {
    height: 200px;
    padding: 12px;
  }
  
  .inquiry #inquiryForm .row .td input[type="text"],
  .inquiry #inquiryForm .row .td textarea {
    font-size: 1.5rem;
  }
  
  .inquiry #inquiryForm .form-agree {
    margin-top: 10px;
  }
  
  .inquiry #inquiryForm .form-agree i {
    width: 16px;
    height: 16px;
  }
  
  .inquiry #inquiryForm .form-agree p {
    width: calc(100% - 24px);
    font-size: 1.5rem;
  }
  
  .inquiry #inquiryForm .form-btns {
    width: 200px;
    height: 45px;
    margin: 45px auto 0;
  }
  
  .inquiry #inquiryForm .form-btns button {
    font-size: 1.7rem;
  }
}

@media(max-width:500px) {
  .inquiry .sec-tit {
    margin-bottom: 40px;
  }
  
  .inquiry #inquiryForm .form-table {
    padding: 15px 0;
  }
  
  .inquiry #inquiryForm .row {
    flex-direction: column;
    align-items: start;
    margin-bottom: 15px;
  }
  
  .inquiry #inquiryForm .row .th {
    width: 100%;
    padding-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
  }
  
  .inquiry #inquiryForm .row-agree .th {
    margin-bottom: 0;
  }
  
  .inquiry #inquiryForm .row .td {
    width: 100%;
  }
  
  .inquiry #inquiryForm .row .td input[type="text"] {
    height: 40px;
    padding: 0 10px;
  }
  
  .inquiry #inquiryForm .row .td textarea {
    height: 180px;
    padding: 10px;
  }
  
  .inquiry #inquiryForm .row .td input[type="text"],
  .inquiry #inquiryForm .row .td textarea {
    font-size: 1.3rem;
  }
  
  .inquiry #inquiryForm .form-agree {
    margin-top: 8px;
  }
  
  .inquiry #inquiryForm .form-agree label {
    align-items: start;
  }
  
  .inquiry #inquiryForm .form-agree i {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
  
  .inquiry #inquiryForm .form-agree p {
    width: calc(100% - 20px);
    font-size: 1.3rem;
  }
  
  .inquiry #inquiryForm .form-btns {
    width: 180px;
    height: 40px;
    margin: 40px auto 0;
  }
  
  .inquiry #inquiryForm .form-btns button {
    font-size: 1.5rem;
  }
}
/* ---------- E: Inquiry ---------- */