@charset "UTF-8";
body {
  font-family: "appleSDGothicNeo", sans-serif;
}

.content {
  margin-top: 15rem;
  margin-bottom: 5rem;
  width: 100%;
}

.section {
  width: 100%;
}
.section:nth-last-of-type(1) {
  padding-bottom: 7rem;
}

.inner {
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  max-width: 154rem;
}

.reverse {
  flex-direction: row-reverse;
}

/* 페이지 로케이션*/
.location {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.location li {
  position: relative;
  margin-left: 1.7rem;
  font-size: 1.5rem;
  color: #333;
}
.location li .icon {
  margin-top: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
}
.location li .icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.location li::after {
  content: "|";
  position: absolute;
  right: -1.1rem;
  top: 50%;
  font-size: 1.1em;
  font-weight: 100;
  color: #999;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.location li:first-child::after, .location li:last-child::after {
  display: none;
}
.location li:first-child {
  margin-left: 0;
}

/* 서브 네비*/
.sub-nav-wrap {
  overflow-x: auto;
  margin: 5rem auto 0;
  padding: 0;
  max-width: 146rem;
}
.sub-nav-wrap::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sub-nav {
  display: flex;
}
.sub-nav li {
  margin-right: 1.5rem;
  font-size: 1.9rem;
  color: #555;
  white-space: nowrap;
}
.sub-nav li > a {
  display: block;
  padding: 1.7rem 2.5rem 1.4rem;
  text-align: center;
  min-width: 15rem;
  font-weight: 600;
  border-radius: 2.8rem;
  background: #f5f5f5;
  border: 1px solid #ccc;
  -webkit-border-radius: 2.8rem;
  -moz-border-radius: 2.8rem;
  -ms-border-radius: 2.8rem;
  -o-border-radius: 2.8rem;
}
.sub-nav li.active a {
  background: #293bec;
  border: 1px solid #1e2fd7;
  color: #fff;
  font-weight: 800;
}
.sub-nav li a:focus {
  background: #293bec;
  border: 1px solid #1e2fd7;
  color: #fff;
  font-weight: 800;
}

.br {
  display: block;
}

.page-top {
  overflow: hidden;
  position: relative;
  margin-top: 12rem;
  padding-top: 10rem;
}
.page-top .inner {
  z-index: 10;
  position: relative;
}
.page-top .page-tit {
  font-size: 6rem;
  font-weight: 800;
}
.page-top .circle-wrap {
  position: absolute;
  width: 17rem;
  height: 17rem;
}
.page-top .circle-wrap.left {
  top: -3.5rem;
  left: -4.5%;
}
.page-top .circle-wrap.left .circle {
  background-color: #f3f3f4;
  animation: CircleAni 2.5s infinite alternate ease-in-out;
  -webkit-animation: CircleAni 2.5s infinite alternate ease-in-out;
}
.page-top .circle-wrap.right1 {
  right: 3.5%;
  top: -3.5rem;
}
.page-top .circle-wrap.right1 .circle {
  background-color: #f4f5fe;
  animation: CircleAni 2s 0.7s infinite alternate ease-in-out;
  -webkit-animation: CircleAni 2s 0.7s infinite alternate ease-in-out;
}
.page-top .circle-wrap.right2 {
  z-index: 1;
  right: -4%;
  top: -3.5rem;
  mix-blend-mode: multiply;
}
.page-top .circle-wrap.right2 .circle {
  background-color: #dfe2fc;
  animation: CircleAni 2s infinite alternate ease-in-out;
  -webkit-animation: CircleAni 2s infinite alternate ease-in-out;
}
.page-top .circle-wrap .circle {
  position: relative;
  width: inherit;
  height: inherit;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

@keyframes CircleAni {
  0% {
    top: 0;
  }
  100% {
    top: 1rem;
  }
}
.sub-tit {
  margin-top: 10rem;
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: 600;
  font-family: "AppleSDGothicNeo", sans-serif;
  color: #555;
}

.section-tit {
  margin-bottom: 8rem;
  line-height: 1.3;
  font-size: 4.5rem;
  font-weight: 700;
  font-family: "AppleSDGothicNeo", sans-serif;
  word-break: keep-all;
}

@media all and (max-width: 85.375rem) {
  .sub-nav-wrap {
    padding: 0 4rem;
  }
  .page-top {
    margin-top: 9rem;
  }
  .content {
    margin-top: 10rem;
  }
  .sub-nav {
    width: 100%;
  }
}
@media all and (max-width: 64rem) {
  .sub-nav li {
    font-size: 1.6rem;
  }
  .page-top {
    padding-top: 7rem;
  }
  .page-top .circle-wrap {
    position: absolute;
    width: 14rem;
    height: 14rem;
  }
  .content {
    margin-top: 8rem;
  }
  .sub-tit {
    font-size: 2.5rem;
  }
  .section-tit {
    margin-bottom: 5rem;
    font-size: 3.5rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .page-top .circle-wrap.left {
    left: -10%;
  }
  .page-top .circle-wrap.right2 {
    right: -10%;
  }
  .location li {
    font-size: 1.2rem;
  }
  .content {
    margin-top: 7rem;
    margin-bottom: 5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .location {
    margin-bottom: 2rem;
  }
  .sub-nav li {
    font-size: 1.4rem;
  }
  .sub-nav li > a {
    padding: 1rem 2.5rem;
    min-width: 10rem;
  }
  .page-top {
    margin-top: 7rem;
    padding-top: 5rem;
  }
  .page-top .page-tit {
    font-size: 3.5rem;
  }
  .page-top .circle-wrap {
    width: 10rem;
    height: 10rem;
  }
  .content {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }
  .sub-tit {
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  .section-tit {
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  .inner {
    padding: 0 2rem;
  }
  .sub-nav-wrap {
    margin-top: 2.5rem;
    padding: 0 2rem;
  }
  .sub-nav li {
    font-size: 1.2rem;
  }
}
/*회사 소개*/
.aboutus .tab {
  min-width: 46rem;
}

/* 인사말 */
.ceo .txt-wrap {
  width: 100%;
}
.ceo .main-txt {
  margin: 4rem 0;
  line-height: 2;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  word-break: keep-all;
  letter-spacing: -0.05rem;
  text-align: justify;
}
.ceo .main-txt > span {
  font-weight: 700;
  color: var(--fc-blue);
}
.ceo .last-txt {
  line-height: 1 !important;
  font-size: 1.8rem;
}
.ceo .last-txt .point {
  margin-left: 0.8rem;
  font-size: 3.3rem;
  font-weight: 700;
}
.ceo .img-wrap {
  position: absolute;
  left: 61.64%;
  top: 0;
  width: 38.36%;
  max-width: 56rem;
}

@media all and (max-width: 64rem) {
  .ceo .full-img {
    height: 35rem;
  }
  .ceo .txt-wrap {
    margin-top: 8rem;
  }
  .ceo .main-txt {
    margin: 3rem 0;
    font-size: 1.8rem;
  }
  .ceo .last-txt .point {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .ceo .full-img {
    height: 20rem;
  }
  .ceo .txt-wrap {
    margin-top: 5rem;
  }
  .ceo .section-tit .br {
    display: inline;
  }
  .ceo .main-txt {
    margin: 2rem 0;
    font-size: 1.4rem;
  }
  .ceo .last-txt {
    font-size: 1.4rem;
  }
  .ceo .last-txt .point {
    font-size: 2rem;
  }
}
/* 회사연역 */
.history .sub-txt {
  position: absolute;
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: -0.1rem;
  line-height: 1.3;
}
.history .history-wrap {
  position: relative;
  margin-top: -7rem;
}
.history .history-wrap .line {
  position: absolute;
  left: 45.2%;
  width: 10.2rem;
  border-right: 0.3rem solid #ccd2dc;
}
.history .history-wrap .line .active-line {
  position: absolute;
  right: -0.3rem;
  width: 0.3rem;
  height: 0;
  background-color: #143dfb;
}
.history .history-wrap .line::after {
  z-index: -1;
  position: absolute;
  right: -0.3rem;
  bottom: 2.5%;
  content: "";
  width: 0;
  height: 5rem;
  border-right: 0.3rem dashed #fff;
}
.history .his-item {
  display: flex;
  position: relative;
  padding-left: 45.2%;
}
.history .his-item:nth-of-type(3)::before {
  z-index: -1;
  position: absolute;
  top: -80%;
  left: 6.85%;
  content: "";
  width: 100%;
  max-width: 40rem;
  height: 36rem;
  background: url("../img/sub/sub1/his-1.png") center/cover no-repeat;
}
.history .his-item:nth-of-type(5)::before {
  z-index: -1;
  position: absolute;
  left: 6.85%;
  top: 25%;
  content: "";
  width: 100%;
  max-width: 38rem;
  height: 35rem;
  background: url("../img/sub/sub1/his-2.png") center/cover no-repeat;
}
.history .his-item:nth-of-type(5)::after {
  z-index: -2;
  position: absolute;
  content: "";
  left: 6.85%;
  padding-bottom: 100%;
  width: 31.58%;
  height: 0;
  background: url("../img/sub/sub1/his-2-d.png") no-repeat;
  animation: CircleAni 3s infinite;
  -webkit-animation: CircleAni 3s infinite alternate ease-in-out;
}
.history .his-item:nth-of-type(8)::before {
  z-index: -1;
  position: absolute;
  left: 6.85%;
  top: 20%;
  content: "";
  width: 50%;
  max-width: 34rem;
  height: 30rem;
  background: url("../img/sub/sub1/his-3.png") center/cover no-repeat;
}
.history .his-item:nth-of-type(8)::after {
  z-index: -2;
  position: absolute;
  content: "";
  left: 26%;
  margin-top: 28rem;
  width: 12rem;
  height: 12rem;
  background: url("../img/sub/sub1/his-3-d.png") no-repeat;
  animation: CircleAni 3s infinite;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  -webkit-animation: CircleAni 3s infinite alternate ease-in-out;
}
.history .his-item.active .year::after {
  background-color: #293bec;
}
.history .his-item.active .year::before {
  position: absolute;
  top: 0;
  right: -0.7rem;
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-color: #ccd1ff;
  border-radius: 2.3rem;
  -webkit-border-radius: 2.3rem;
  -moz-border-radius: 2.3rem;
  -ms-border-radius: 2.3rem;
  -o-border-radius: 2.3rem;
}
.history .year {
  position: relative;
  min-width: 10.5rem;
  font-size: 3rem;
  color: #001e4e;
  font-weight: 800;
}
.history .year::after {
  position: absolute;
  top: 0.7rem;
  right: 0;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background-color: #bdc5dd;
  border-radius: 0.9rem;
  -webkit-border-radius: 0.9rem;
  -moz-border-radius: 0.9rem;
  -ms-border-radius: 0.9rem;
  -o-border-radius: 0.9rem;
}
.history .his-txt {
  position: relative;
  padding-bottom: 8rem;
  padding-left: 5.4rem;
  width: 69.3rem;
}
.history .his-txt li {
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.history .his-txt li:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 64rem) {
  .history .sub-txt {
    font-size: 4rem;
  }
  .history .his-item:nth-of-type(3)::before, .history .his-item:nth-of-type(5)::before, .history .his-item:nth-of-type(8)::before {
    width: 30%;
  }
  .history .his-item:nth-of-type(5)::before {
    top: 25%;
  }
}
@media all and (max-width: 63.9375rem) {
  .history .sub-txt {
    position: relative;
  }
  .history .history-wrap {
    margin-top: 0;
  }
  .history .history-wrap .line {
    left: 0;
  }
  .history .history-list {
    margin-top: 4rem;
  }
  .history .his-item {
    padding-left: 0;
  }
  .history .his-item:nth-of-type(3)::before, .history .his-item:nth-of-type(5)::before, .history .his-item:nth-of-type(8)::before {
    display: none;
  }
  .history .his-item:nth-of-type(3)::after, .history .his-item:nth-of-type(5)::after, .history .his-item:nth-of-type(8)::after {
    display: none;
  }
  .history .year {
    font-size: 2.5rem;
  }
  .history .his-txt {
    padding-bottom: 4rem;
    padding-left: 3.5rem;
  }
  .history .his-txt li {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .history .sub-txt {
    font-size: 2.6rem;
  }
  .history .history-wrap .line {
    width: 7.2rem;
  }
  .history .year {
    min-width: 7.5rem;
    font-size: 2rem;
  }
  .history .year::after {
    width: 1rem;
    height: 1rem;
  }
  .history .his-txt {
    padding-bottom: 3rem;
    padding-left: 2rem;
  }
  .history .his-txt li {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-size: 1.4rem;
  }
}
/* 경영이념/가치*/
.philosophy .phil-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 18rem;
  padding-bottom: 7rem;
  padding-right: 17.12%;
  width: 100%;
  height: 76rem;
}
.philosophy .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
}
.philosophy .item .item-tit {
  display: inline-block;
  width: 14rem;
  text-align: right;
  font-size: 2.2rem;
  font-weight: 400;
}
.philosophy .item .txt {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.philosophy .item .line {
  display: inline-block;
  position: relative;
  margin-left: 2.5rem;
}
.philosophy .item .line::before {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  border: 0.3rem solid #00b533;
  transform: translateY(-50%);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.philosophy .item-1 {
  height: 7rem;
}
.philosophy .item-1 .line {
  width: 11.5vw;
  border-bottom: 0.2rem dotted #949df5;
}
.philosophy .item-1 p {
  padding-left: 2.5rem;
  font-size: 4.5rem;
  font-weight: 700;
  color: #005f1b;
}
.philosophy .item-2 {
  z-index: -1;
  position: relative;
}
.philosophy .item-2 .txt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.philosophy .item-2 .line {
  margin-right: auto;
  width: 4.1vw;
  border-bottom: 0.2rem dotted #949df5;
}
.philosophy .item-2 .img-wrap {
  position: relative;
  width: 91.17%;
  text-align: center;
}
.philosophy .item-2 .img-wrap::after {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: -43%;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../img/sub/sub1/phi-bg.jpg") center/contain no-repeat;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.philosophy .item-3 {
  height: 7rem;
}
.philosophy .item-3 .line {
  width: 4.1vw;
  border-bottom: 0.2rem dotted #949df5;
}
.philosophy .item-3 .txt {
  height: inherit;
}
.philosophy .item-3 .txt > p {
  position: relative;
  width: 91.17%;
  height: 100%;
  text-align: center;
  font-size: 2.6rem;
  color: #6c6e7a;
  border-width: 0 0.5rem 0.2rem;
  border-style: solid;
  border-color: #66c782;
  font-weight: 600;
}
.philosophy .item-3 .txt > p > span {
  color: #005f1b;
}

@media all and (max-width: 64rem) {
  .philosophy .item-1 p {
    font-size: 3.2rem;
  }
  .philosophy .item-3 .txt > p {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .philosophy .phil-wrap {
    padding-right: 4rem;
    padding-bottom: 0;
    height: 50rem;
  }
  .philosophy .item .item-tit {
    min-width: 8rem;
  }
  .philosophy .item-1 p {
    font-size: 2.5rem;
  }
  .philosophy .item-3 .txt {
    width: 80%;
  }
  .philosophy .item-3 .txt > p {
    font-size: 1.6rem;
    line-height: 7rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .philosophy .phil-wrap {
    padding-right: 0;
  }
  .philosophy .phil-wrap p {
    padding-top: 0.5rem;
    padding-left: 0;
  }
  .philosophy .item,
  .philosophy .txt {
    flex-direction: column;
    align-items: center;
  }
  .philosophy .item .item-tit {
    z-index: 10;
    margin-bottom: 1.5rem;
    width: auto;
  }
  .philosophy .txt .line {
    z-index: 10;
    margin-left: 0;
    width: 1px;
    height: 3rem;
    border-left: 0.2rem dotted #949df5;
    border-bottom: 0 none;
  }
  .philosophy .txt .line::before {
    left: -0.6rem;
    top: -0.5rem;
  }
  .philosophy .item-1 {
    margin-bottom: 4rem;
  }
  .philosophy .item-1 p {
    font-size: 2.2rem;
  }
  .philosophy .item-2 .line {
    margin-right: 0;
  }
  .philosophy .item-3 p {
    line-height: 1.5;
    word-break: keep-all;
  }
  .philosophy .item-3 .txt > p {
    line-height: 1.5;
  }
}
.list-wrap .list {
  width: 100%;
  border: 1px solid #000;
  border-left: none;
  border-right: none;
}
.list-wrap .list li {
  width: 100%;
  height: 6rem;
  line-height: 6rem;
  border-bottom: 1px solid #e5e5e5;
  font-size: 2rem;
}
.list-wrap .list li a {
  display: flex;
  justify-content: space-between;
}
.list-wrap .list li a:hover .wrap1 .txt {
  font-weight: 600;
  text-decoration: underline;
}
.list-wrap .list li .wrap1,
.list-wrap .list li .wrap2 {
  display: flex;
  text-align: center;
}
.list-wrap .list li .wrap1 {
  width: 76%;
}
.list-wrap .list li .wrap1 .num {
  display: block;
  width: 10%;
  min-width: 4rem;
}
.list-wrap .list li .wrap1 .txt {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.list-wrap .list li .wrap1 .img {
  margin-left: 2rem;
}
.list-wrap .list li .wrap2 {
  width: 24%;
}
.list-wrap .list li .wrap2 .writer {
  width: 25%;
}
.list-wrap .list li .wrap2 .date {
  width: 50%;
}
.list-wrap .list li .wrap2 .view {
  width: 25%;
}

@media all and (max-width: 63.9375rem) {
  .list-wrap .list li {
    height: 5rem;
    line-height: 2rem;
    padding: 0.7rem 1.4rem;
    font-size: 1.4rem;
  }
  .list-wrap .list li a {
    display: block;
  }
  .list-wrap .list li a .wrap1,
  .list-wrap .list li a .wrap2 {
    width: 100%;
  }
  .list-wrap .list li a .wrap2 {
    margin-right: 2rem;
    justify-content: flex-end;
    gap: 2rem;
  }
  .list-wrap .list li a .wrap2 .writer {
    width: auto;
  }
  .list-wrap .list li a .wrap2 .date {
    width: auto;
  }
  .list-wrap .list li a .wrap2 .view {
    width: auto;
  }
}
@media all and (max-width: 47.9375rem) {
  .list-wrap .list .li {
    font-size: 1.4rem;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  margin: 3rem 0 0;
  align-items: center;
}
.pagination > button {
  opacity: 0.5;
  margin: 0 0.5rem;
  width: 2rem;
  height: 2.5rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
}
.pagination > button:hover {
  opacity: 1;
}
.pagination > button.start-page {
  background-image: url("../img/icon/start.svg");
}
.pagination > button.prev-page {
  background-image: url("../img/icon/prev.svg");
}
.pagination > button.next-page {
  background-image: url("../img/icon/next.svg");
}
.pagination > button.end-page {
  background-image: url("../img/icon/end.svg");
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
}
.pagination ul li {
  margin: 0 1rem;
}
.pagination ul li a {
  display: inline-block;
  padding: 0 1rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
  color: #111;
}
.pagination ul li a > span {
  position: relative;
  left: 0;
  top: 0;
  display: inline-block;
}
.pagination ul li:hover a {
  font-weight: 800;
}
.pagination ul li.active a {
  font-weight: 800;
  position: relative;
}
.pagination ul li.active a > span::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  width: 120%;
  height: 0.2rem;
  background-color: #000;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.view .tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #000;
  border-bottom: 1px solid #e5e5e5;
  height: 9rem;
  padding-right: 5.3rem;
}
.view .tit-box .tit {
  font-size: 2.8rem;
  line-height: 9rem;
}
.view .tit-box .data-wrap {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.view .tit-box .data-wrap span {
  font-size: 2rem;
}
.view .content-box {
  padding: 5rem 0 8rem;
  min-height: 46rem;
  border-bottom: 1px solid #727272;
  position: relative;
}
.view .content-box .con-inner {
  font-size: 2rem;
  line-height: 3.5rem;
}
.view .content-box .img-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  padding-bottom: 8rem;
}
.view .content-box .d-btn {
  position: absolute;
  left: 0;
  bottom: 2rem;
}
.view .content-box .d-btn a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.view .content-box .d-btn a:hover p {
  text-decoration: underline;
}
.view .list-btn {
  width: 100%;
  display: flex;
  justify-content: right;
}
.view .list-btn .btn {
  width: 13rem;
  height: 5rem;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
  background: #dfe2fc;
  margin-top: 2rem;
  text-align: center;
  color: #001e4e;
  line-height: 5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

@media all and (max-width: 63.9375rem) {
  .view .tit-box .tit {
    font-size: 2.2rem;
  }
  .view .tit-box .data-wrap {
    gap: 2rem;
  }
  .view .tit-box .data-wrap span {
    font-size: 1.6rem;
  }
  .view .content-box .con-inner {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .view .list-btn .btn {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .view .tit-box {
    display: block;
  }
  .view .tit-box .tit {
    font-size: 2rem;
    line-height: 4rem;
    margin-top: 1.2rem;
  }
  .view .tit-box .data-wrap {
    gap: 1rem;
  }
  .view .tit-box .data-wrap p {
    font-size: 1.4rem;
  }
  .view .content-box .con-inner {
    font-size: 1.4rem;
  }
  .view .content-box .img-flex {
    gap: 3rem;
    padding-bottom: 5rem;
  }
  .view .list-btn .btn {
    width: 10rem;
    font-size: 1.4rem;
  }
  .pagination ul li {
    margin: 0 0.5rem;
  }
}
.support .flex-wrap {
  display: flex;
  flex-direction: column;
}
.support .flex-wrap .s-wrap {
  width: 100%;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(12rem, 1fr));
  gap: 4rem;
}
.support .flex-wrap .s-wrap .cer-wrap:last-child {
  margin-right: 0;
}
.support .flex-wrap .s-wrap .cer-wrap .img-wrap {
  line-height: 0;
}
.support .flex-wrap .s-wrap .cer-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support .flex-wrap .s-wrap .cer-wrap .txt-box {
  padding: 1rem;
  border: 1px solid #e9e9e9;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.2rem;
}

@media all and (max-width: 85.375rem) {
  .support .flex-wrap .s-wrap {
    margin-bottom: 2.5rem;
    grid-template-columns: repeat(6, minmax(12rem, 1fr));
    gap: 2rem;
  }
}
@media all and (max-width: 85.375rem) {
  .support .flex-wrap .s-wrap {
    grid-template-columns: repeat(5, minmax(12rem, 1fr));
  }
}
@media all and (max-width: 63.9375rem) {
  .support .flex-wrap .s-wrap {
    grid-template-columns: repeat(4, minmax(12rem, 1fr));
  }
}
@media all and (max-width: 47.9375rem) {
  .support .flex-wrap .s-wrap {
    grid-template-columns: repeat(2, minmax(12rem, 1fr));
  }
  .support .flex-wrap .s-wrap .cer-wrap .txt-box {
    height: 5rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
.brochure .box-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem;
}
.brochure .box-wrap .box {
  display: flex;
  flex-direction: column;
}
.brochure .box-wrap .box .img-wrap {
  max-width: 32.6rem;
  height: 26rem;
  overflow: hidden;
}
.brochure .box-wrap .box .img-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
}
.brochure .box-wrap .box .txt-wrap {
  width: 100%;
  height: 11rem;
  background: #f5f5f5;
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.brochure .box-wrap .box .txt-wrap p {
  font-size: 2rem;
  font-weight: 600;
}
.brochure .box-wrap .box .txt-wrap a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brochure .box-wrap .box .txt-wrap a p {
  font-size: 1.6rem;
  font-weight: 300;
}

@media all and (max-width: 63.9375rem) {
  .brochure .box-wrap {
    width: auto;
    gap: 2rem;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
  }
  .brochure .box-wrap .box .img-wrap {
    height: 24rem;
  }
  .brochure .box-wrap .box .txt-wrap p {
    font-size: 1.6rem;
  }
  .brochure .box-wrap .box .txt-wrap a {
    gap: 0.8rem;
  }
  .brochure .box-wrap .box .txt-wrap a p {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .brochure .box-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .brochure .box-wrap .box .img-wrap {
    height: 16rem;
  }
  .brochure .box-wrap .box .txt-wrap {
    height: 8rem;
    padding-left: 2rem;
  }
  .brochure .box-wrap .box .txt-wrap p {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
  .brochure .box-wrap .box .txt-wrap .icon {
    width: 2.4rem;
  }
}
/*이미지 게시판 (공통)*/
/*240401*/
.img-board .box-wrap .box .txt-wrap {
  padding: 0 3rem;
}
.img-board .box-wrap .box .img-wrap {
  max-width: none;
}
.img-board .tit {
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 2rem;
  font-family: "AppleSDGothicNeoSB00", sans-serif;
}
.img-board .tit:hover {
  text-decoration: underline;
}
.img-board .date {
  font-size: 1.6rem;
  font-family: "SUIT", sans-serif;
}

@media all and (max-width: 85.375rem) {
  .img-board .box-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 63.9375rem) {
  .img-board .box-wrap {
    gap: 1.8rem;
  }
  .img-board .box-wrap .box .img-wrap {
    height: 20rem;
  }
  .img-board .box-wrap .box .txt-wrap {
    padding: 0 2rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .img-board .box-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-board .tit {
    font-size: 1.5rem;
  }
  .img-board .date {
    font-size: 1.3rem;
  }
  .img-board .box .img-wrap {
    height: 1.6rem;
  }
}
.social .box-wrap {
  grid-template-columns: repeat(3, 1fr);
}

/*240401*/
.inquiry .form-wrap .form-bg {
  width: 100%;
  background: #f9f9f9;
  padding: 5rem 15.75rem 9rem;
  border-top: 1px solid #000;
}
.inquiry .form-wrap .form-bg .f-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.inquiry .form-wrap .flex-1 {
  display: flex;
  justify-content: flex-start;
}
.inquiry .fieldset {
  margin-bottom: 2rem;
}
.inquiry textarea {
  background: #fff;
  border: 1px solid #dadada;
  resize: none;
}
.inquiry .file {
  width: 100%;
  height: 4.6rem;
  max-width: 104.2rem;
  background: #f2f2f2;
  border: 1px solid #dadada;
}
.inquiry .file .btn {
  width: 9rem;
  height: 3.6rem;
  background: #f9f9f9;
  border: 1px solid #7c7c7c;
  line-height: 3.6rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
  cursor: pointer;
}
.inquiry .mx-5 {
  padding: 0 0.8rem;
  line-height: 4.6rem;
  font-size: 1.5rem;
}
.inquiry .select-wrap {
  width: 13rem;
  height: 4.6rem;
  background: #f2f2f2;
  border: 1px solid #dadada;
  margin-left: 1rem;
  margin-top: 0.1rem;
}
.inquiry .select-wrap .select-btn {
  height: inherit;
}
.inquiry .select-wrap .select-btn .select {
  font-size: 1.6rem;
  margin: 0 0.9rem 0 1.8rem;
}
.inquiry .select-wrap .option {
  z-index: 999;
  width: 100%;
  top: 4.6rem;
}
.inquiry .select-wrap .option a {
  padding: 1.2rem 1rem;
  font-size: 1.5rem;
}
.inquiry .btn-wrap {
  display: flex;
  gap: 1rem;
  width: 27rem;
  margin: 4rem auto 0;
}
.inquiry .btn-wrap button {
  width: 13rem;
  height: 5rem;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #001e4e;
  line-height: 4rem;
  text-align: center;
}
.inquiry .btn-wrap .cancle {
  background: #fff;
  border: 1px solid #aeb6c3;
}
.inquiry .btn-wrap .sent {
  background: #dfe2fc;
}

@media all and (max-width: 85.375rem) {
  .inquiry .form-wrap .form-bg .f-wrap {
    display: block;
  }
}
@media all and (max-width: 64rem) {
  .inquiry .form-wrap .flex-1 {
    width: 100%;
  }
  .inquiry .form-wrap .flex-1 .input-box {
    margin-right: 1rem;
    width: auto;
  }
  .inquiry .form-wrap .flex-1 .select-wrap {
    height: 4.6rem;
    margin-left: 0;
  }
  .inquiry .form-wrap .form-bg {
    padding: 3.5rem 8rem 5rem;
  }
  .inquiry .input-box {
    width: 100%;
  }
  .inquiry .input-box .wid-380,
  .inquiry .input-box .wid-460 {
    width: 100%;
  }
}
@media all and (max-width: 63.9375rem) {
  .inquiry .form-wrap .flex-1 .input-box {
    display: flex;
    justify-content: flex-start;
    margin-right: 1.5rem;
    width: calc(100% - 14rem);
  }
  .inquiry .wid-120 {
    width: 50%;
  }
  .inquiry .wid-95 {
    width: 50%;
  }
}
@media all and (max-width: 47.9375rem) {
  .inquiry input {
    height: 4rem;
  }
  .inquiry .input-box {
    display: flex;
  }
  .inquiry .form-wrap .form-bg {
    padding: 2rem 3rem 4rem;
  }
  .inquiry .form-wrap label {
    font-size: 1.4rem;
    width: 6rem;
    min-width: 6rem;
  }
  .inquiry .form-wrap .flex-1 {
    flex-wrap: wrap;
  }
  .inquiry .form-wrap .flex-1 .input-box {
    margin-right: 0;
    width: 100%;
  }
  .inquiry .form-wrap .flex-1 .select-wrap {
    width: 100%;
    height: 3.6rem;
  }
  .inquiry .form-wrap .flex-1 .select-wrap .select-btn .select {
    font-size: 1.3rem;
  }
  .inquiry .form-wrap .flex-1 .select-wrap .option {
    top: 3.6rem;
  }
  .inquiry .form-wrap .flex-1 .select-wrap .option a {
    padding: 0.8rem 1rem;
    font-size: 1.3rem;
  }
  .inquiry .fieldset {
    flex-wrap: wrap;
  }
  .inquiry .legend {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .inquiry .mx-5 {
    padding: 0 0.4rem;
  }
  .inquiry .file {
    height: 4rem;
  }
  .inquiry .file .btn {
    width: 7.5rem;
    height: 3.2rem;
    font-size: 1.3rem;
    line-height: 3.2rem;
  }
  .inquiry .btn-wrap {
    justify-content: center;
  }
  .inquiry .btn-wrap button {
    width: 9rem;
    height: 3.6rem;
    font-size: 1.3rem;
    line-height: 3.6rem;
  }
}
.full-img {
  width: 100%;
  margin: 0 auto;
  height: 70rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.full-img .img-tit {
  font-size: 7rem;
  color: #fff;
  text-align: center;
  padding-top: 24rem;
  margin-bottom: 6.5rem;
}
.full-img .small-tit {
  display: flex;
  justify-content: center;
}
.full-img .small-tit p {
  width: 45rem;
  height: auto;
  padding: 2rem 2rem;
  background: rgba(43, 56, 188, 0.6);
  border-radius: 6rem;
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  -webkit-border-radius: 6rem;
  -moz-border-radius: 6rem;
  -ms-border-radius: 6rem;
  -o-border-radius: 6rem;
}
.full-img .txt {
  margin: 0 auto;
  width: 90%;
  text-align: center;
  color: #fff;
  margin-top: 4rem;
  font-size: 2.5rem;
  line-height: 1.4;
  word-break: keep-all;
}

@media all and (max-width: 85.375rem) {
  .full-img {
    padding: 0;
  }
  .full-img .img-tit {
    font-size: 5.7rem;
    margin-bottom: 1.8rem;
  }
  .full-img .small-tit p {
    font-size: 2rem;
  }
  .full-img .txt {
    line-height: 1.5;
  }
}
@media all and (max-width: 47.9375rem) {
  .full-img {
    height: 36rem;
  }
  .full-img .img-tit {
    padding-top: 10rem;
    font-size: 3.6rem;
  }
  .full-img .small-tit p {
    width: 80%;
    padding: 1rem 1rem;
    font-size: 1.8rem;
  }
  .full-img .txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.dajabara .flex-wrap,
.fan .flex-wrap,
.safety .flex-wrap,
.chemical .flex-wrap,
.magic .flex-wrap {
  display: flex;
}
.dajabara .flex-wrap .img-wrap,
.fan .flex-wrap .img-wrap,
.safety .flex-wrap .img-wrap,
.chemical .flex-wrap .img-wrap,
.magic .flex-wrap .img-wrap {
  width: 50%;
}
.dajabara .flex-wrap.reverse .txt-box,
.fan .flex-wrap.reverse .txt-box,
.safety .flex-wrap.reverse .txt-box,
.chemical .flex-wrap.reverse .txt-box,
.magic .flex-wrap.reverse .txt-box {
  padding-left: 8.8rem;
}
.dajabara .txt-box,
.fan .txt-box,
.safety .txt-box,
.chemical .txt-box,
.magic .txt-box {
  width: 65%;
  padding-top: 5.5rem;
}
.dajabara .txt-box .t-wrap .mini-tit,
.fan .txt-box .t-wrap .mini-tit,
.safety .txt-box .t-wrap .mini-tit,
.chemical .txt-box .t-wrap .mini-tit,
.magic .txt-box .t-wrap .mini-tit {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  line-height: 3.8rem;
  font-weight: 700;
  word-break: keep-all;
}
.dajabara .txt-box .t-wrap .list,
.fan .txt-box .t-wrap .list,
.safety .txt-box .t-wrap .list,
.chemical .txt-box .t-wrap .list,
.magic .txt-box .t-wrap .list {
  margin-bottom: 4rem;
  padding-left: 3.3rem;
}
.dajabara .txt-box .t-wrap .list li,
.fan .txt-box .t-wrap .list li,
.safety .txt-box .t-wrap .list li,
.chemical .txt-box .t-wrap .list li,
.magic .txt-box .t-wrap .list li {
  font-size: 2rem;
  text-wrap: nowrap;
  line-height: 3.3rem;
  position: relative;
}
.dajabara .txt-box .t-wrap .list li::before,
.fan .txt-box .t-wrap .list li::before,
.safety .txt-box .t-wrap .list li::before,
.chemical .txt-box .t-wrap .list li::before,
.magic .txt-box .t-wrap .list li::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  background: #000;
  position: absolute;
  top: 1.3rem;
  left: -1.1rem;
}
.dajabara .main-txt,
.fan .main-txt,
.safety .main-txt,
.chemical .main-txt,
.magic .main-txt {
  margin-top: 20rem;
  margin-bottom: 15rem;
  text-align: center;
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 600;
}
.dajabara .caption,
.fan .caption,
.safety .caption,
.chemical .caption,
.magic .caption {
  font-size: 2.5rem;
}
.dajabara .img-100,
.fan .img-100,
.safety .img-100,
.chemical .img-100,
.magic .img-100 {
  margin-bottom: 20rem;
}
.dajabara .bg,
.fan .bg,
.safety .bg,
.chemical .bg,
.magic .bg {
  width: 100%;
  height: 74rem;
  background: #edeffa;
}
.dajabara .bg .s-tit,
.fan .bg .s-tit,
.safety .bg .s-tit,
.chemical .bg .s-tit,
.magic .bg .s-tit {
  text-align: center;
  padding-top: 12rem;
  font-size: 2.5rem;
}
.dajabara .bg .s-tit span,
.fan .bg .s-tit span,
.safety .bg .s-tit span,
.chemical .bg .s-tit span,
.magic .bg .s-tit span {
  font-weight: 400;
}
.dajabara .bg .all-wrap,
.fan .bg .all-wrap,
.safety .bg .all-wrap,
.chemical .bg .all-wrap,
.magic .bg .all-wrap {
  display: flex;
  margin-top: 5rem;
}
.dajabara .bg .all-wrap .left,
.fan .bg .all-wrap .left,
.safety .bg .all-wrap .left,
.chemical .bg .all-wrap .left,
.magic .bg .all-wrap .left {
  width: 50%;
}
.dajabara .bg .all-wrap .left h4,
.fan .bg .all-wrap .left h4,
.safety .bg .all-wrap .left h4,
.chemical .bg .all-wrap .left h4,
.magic .bg .all-wrap .left h4 {
  margin-bottom: 2.4rem;
  font-size: 2rem;
}
.dajabara .bg .all-wrap .left .flex-wrap,
.fan .bg .all-wrap .left .flex-wrap,
.safety .bg .all-wrap .left .flex-wrap,
.chemical .bg .all-wrap .left .flex-wrap,
.magic .bg .all-wrap .left .flex-wrap {
  width: 100%;
  justify-content: left;
  gap: 0.4rem;
}
.dajabara .bg .all-wrap .left .flex-wrap .box-wrap,
.fan .bg .all-wrap .left .flex-wrap .box-wrap,
.safety .bg .all-wrap .left .flex-wrap .box-wrap,
.chemical .bg .all-wrap .left .flex-wrap .box-wrap,
.magic .bg .all-wrap .left .flex-wrap .box-wrap {
  width: 30%;
}
.dajabara .bg .all-wrap .left .flex-wrap .box-wrap p,
.fan .bg .all-wrap .left .flex-wrap .box-wrap p,
.safety .bg .all-wrap .left .flex-wrap .box-wrap p,
.chemical .bg .all-wrap .left .flex-wrap .box-wrap p,
.magic .bg .all-wrap .left .flex-wrap .box-wrap p {
  padding-top: 1.4rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
}
.dajabara .bg .all-wrap .left .flex-wrap .box-wrap .img-wrap,
.fan .bg .all-wrap .left .flex-wrap .box-wrap .img-wrap,
.safety .bg .all-wrap .left .flex-wrap .box-wrap .img-wrap,
.chemical .bg .all-wrap .left .flex-wrap .box-wrap .img-wrap,
.magic .bg .all-wrap .left .flex-wrap .box-wrap .img-wrap {
  width: 100%;
}

.safety .sec-4 .flex-wrap .txt-box {
  padding-top: 0;
}
.safety .sec-4 .flex-wrap:nth-of-type(2) {
  align-items: center;
}

.dajabara .full-img {
  background-image: url("../img/sub/sub2/full1.jpg");
}
.dajabara .flex-wrap .txt-box {
  padding-top: 1.5rem;
}
.dajabara .flex-wrap .txt-box p {
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 600;
}
.dajabara .sec-2 .flex-wrap {
  margin-bottom: 10rem;
}

.chemical .flex-wrap {
  display: flex;
  align-items: center;
}
.chemical .flex-wrap:last-child {
  align-items: flex-start;
}
.chemical .flex-wrap.reverse .txt-box {
  width: 50%;
  padding-top: 0;
  padding-left: 8.8rem;
}
.chemical .flex-wrap.reverse .txt-box .t-wrap .mini-tit {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  line-height: 3.8rem;
  font-weight: 600;
  word-break: keep-all;
}
.chemical .flex-wrap.reverse .txt-box .t-wrap .list {
  margin-bottom: 6rem;
  padding-left: 3.3rem;
}
.chemical .flex-wrap.reverse .txt-box .t-wrap .list li {
  font-size: 2rem;
  text-wrap: nowrap;
  line-height: 3.3rem;
  position: relative;
}
.chemical .flex-wrap.reverse .txt-box .t-wrap .list li::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  background: #000;
  position: absolute;
  top: 1.3rem;
  left: -1.1rem;
}
.chemical .flex-wrap.reverse .img-wrap {
  width: 50%;
}
.chemical .flex-wrap .img-wrap {
  width: 59%;
}
.chemical .flex-wrap .txt-box {
  padding-right: 2%;
  width: 41%;
}

@media all and (max-width: 85.375rem) {
  .dajabara .main-txt,
  .fan .main-txt,
  .safety .main-txt,
  .chemical .main-txt,
  .magic .main-txt {
    word-break: keep-all;
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: 16rem;
    margin-bottom: 10rem;
  }
  .dajabara .flex-wrap .txt-box .t-wrap .list li,
  .fan .flex-wrap .txt-box .t-wrap .list li,
  .safety .flex-wrap .txt-box .t-wrap .list li,
  .chemical .flex-wrap .txt-box .t-wrap .list li,
  .magic .flex-wrap .txt-box .t-wrap .list li {
    text-wrap: wrap !important;
    word-break: keep-all;
    font-size: 1.7rem;
  }
  .dajabara .flex-wrap .txt-box .t-wrap .mini-tit,
  .fan .flex-wrap .txt-box .t-wrap .mini-tit,
  .safety .flex-wrap .txt-box .t-wrap .mini-tit,
  .chemical .flex-wrap .txt-box .t-wrap .mini-tit,
  .magic .flex-wrap .txt-box .t-wrap .mini-tit {
    font-size: 2rem;
    line-height: 1.5;
  }
  .dajabara .flex-wrap.f-100,
  .fan .flex-wrap.f-100,
  .safety .flex-wrap.f-100,
  .chemical .flex-wrap.f-100,
  .magic .flex-wrap.f-100 {
    justify-content: space-between;
  }
  .dajabara .flex-wrap.f-100 .txt-box .t-wrap .list.list-h li:first-child,
  .fan .flex-wrap.f-100 .txt-box .t-wrap .list.list-h li:first-child,
  .safety .flex-wrap.f-100 .txt-box .t-wrap .list.list-h li:first-child,
  .chemical .flex-wrap.f-100 .txt-box .t-wrap .list.list-h li:first-child,
  .magic .flex-wrap.f-100 .txt-box .t-wrap .list.list-h li:first-child {
    margin-bottom: 6.5rem;
  }
  .dajabara .i-wrap,
  .fan .i-wrap,
  .safety .i-wrap,
  .chemical .i-wrap,
  .magic .i-wrap {
    width: 48%;
  }
  .chemical .flex-wrap {
    align-items: flex-start;
  }
}
@media all and (max-width: 63.9375rem) {
  .dajabara .flex-wrap,
  .fan .flex-wrap,
  .safety .flex-wrap,
  .chemical .flex-wrap,
  .magic .flex-wrap {
    flex-direction: column;
  }
  .dajabara .flex-wrap .txt-box,
  .fan .flex-wrap .txt-box,
  .safety .flex-wrap .txt-box,
  .chemical .flex-wrap .txt-box,
  .magic .flex-wrap .txt-box {
    width: 100%;
  }
  .dajabara .flex-wrap .img-wrap,
  .fan .flex-wrap .img-wrap,
  .safety .flex-wrap .img-wrap,
  .chemical .flex-wrap .img-wrap,
  .magic .flex-wrap .img-wrap {
    width: 100%;
  }
  .dajabara .bg,
  .fan .bg,
  .safety .bg,
  .chemical .bg,
  .magic .bg {
    height: auto;
    padding-bottom: 4rem;
  }
  .dajabara .bg .all-wrap,
  .fan .bg .all-wrap,
  .safety .bg .all-wrap,
  .chemical .bg .all-wrap,
  .magic .bg .all-wrap {
    flex-direction: column;
  }
  .dajabara .bg .all-wrap .left,
  .fan .bg .all-wrap .left,
  .safety .bg .all-wrap .left,
  .chemical .bg .all-wrap .left,
  .magic .bg .all-wrap .left {
    width: 100%;
  }
  .dajabara .bg .all-wrap .left .flex-wrap,
  .fan .bg .all-wrap .left .flex-wrap,
  .safety .bg .all-wrap .left .flex-wrap,
  .chemical .bg .all-wrap .left .flex-wrap,
  .magic .bg .all-wrap .left .flex-wrap {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .dajabara .bg .all-wrap .right,
  .fan .bg .all-wrap .right,
  .safety .bg .all-wrap .right,
  .chemical .bg .all-wrap .right,
  .magic .bg .all-wrap .right {
    margin-top: 4rem;
  }
  .dajabara .ft-wrap,
  .fan .ft-wrap,
  .safety .ft-wrap,
  .chemical .ft-wrap,
  .magic .ft-wrap {
    width: 100%;
    margin-bottom: 4rem;
  }
  .dajabara .img-100,
  .fan .img-100,
  .safety .img-100,
  .chemical .img-100,
  .magic .img-100 {
    margin-bottom: 10rem;
  }
  .dajabara .flex-wrap.reverse .txt-box {
    padding-left: 0;
  }
  .chemical .mt-17 {
    margin-top: 8rem;
  }
  .chemical .flex-wrap.reverse .txt-box .t-wrap .mini-tit {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
  .chemical .flex-wrap.reverse .txt-box .t-wrap .list {
    margin-bottom: 3rem;
  }
  .chemical .flex-wrap.reverse .txt-box .t-wrap .list li {
    font-size: 1.7rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .dajabara .main-txt,
  .fan .main-txt,
  .safety .main-txt,
  .chemical .main-txt,
  .magic .main-txt {
    margin-top: 6rem;
    margin-bottom: 5rem;
    font-size: 1.8rem;
    word-break: keep-all;
  }
  .dajabara .flex-wrap .txt-box .t-wrap .mini-tit,
  .fan .flex-wrap .txt-box .t-wrap .mini-tit,
  .safety .flex-wrap .txt-box .t-wrap .mini-tit,
  .chemical .flex-wrap .txt-box .t-wrap .mini-tit,
  .magic .flex-wrap .txt-box .t-wrap .mini-tit {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .dajabara .flex-wrap .txt-box .t-wrap .list li,
  .fan .flex-wrap .txt-box .t-wrap .list li,
  .safety .flex-wrap .txt-box .t-wrap .list li,
  .chemical .flex-wrap .txt-box .t-wrap .list li,
  .magic .flex-wrap .txt-box .t-wrap .list li {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .dajabara .flex-wrap .txt-box .t-wrap .list li::before,
  .fan .flex-wrap .txt-box .t-wrap .list li::before,
  .safety .flex-wrap .txt-box .t-wrap .list li::before,
  .chemical .flex-wrap .txt-box .t-wrap .list li::before,
  .magic .flex-wrap .txt-box .t-wrap .list li::before {
    top: 0.7rem;
  }
  .dajabara .flex-wrap.reverse .txt-box,
  .fan .flex-wrap.reverse .txt-box,
  .safety .flex-wrap.reverse .txt-box,
  .chemical .flex-wrap.reverse .txt-box,
  .magic .flex-wrap.reverse .txt-box {
    padding-left: 0;
  }
  .dajabara .bg .all-wrap .left .flex-wrap,
  .fan .bg .all-wrap .left .flex-wrap,
  .safety .bg .all-wrap .left .flex-wrap,
  .chemical .bg .all-wrap .left .flex-wrap,
  .magic .bg .all-wrap .left .flex-wrap {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .dajabara .bg .all-wrap .left .flex-wrap .box-wrap p,
  .fan .bg .all-wrap .left .flex-wrap .box-wrap p,
  .safety .bg .all-wrap .left .flex-wrap .box-wrap p,
  .chemical .bg .all-wrap .left .flex-wrap .box-wrap p,
  .magic .bg .all-wrap .left .flex-wrap .box-wrap p {
    font-size: 1.3rem;
  }
  .dajabara .bg .all-wrap .right,
  .fan .bg .all-wrap .right,
  .safety .bg .all-wrap .right,
  .chemical .bg .all-wrap .right,
  .magic .bg .all-wrap .right {
    margin-top: 4rem;
  }
  .dajabara .img-100,
  .fan .img-100,
  .safety .img-100,
  .chemical .img-100,
  .magic .img-100 {
    margin-bottom: 0;
  }
  .dajabara .in-circle,
  .fan .in-circle,
  .safety .in-circle,
  .chemical .in-circle,
  .magic .in-circle {
    margin-top: 6rem;
  }
  .dajabara .in-circle ul li,
  .fan .in-circle ul li,
  .safety .in-circle ul li,
  .chemical .in-circle ul li,
  .magic .in-circle ul li {
    font-size: 1.4rem;
  }
  .dajabara .fan-table th,
  .fan .fan-table th,
  .safety .fan-table th,
  .chemical .fan-table th,
  .magic .fan-table th {
    font-size: 1.2rem;
  }
  .dajabara .fan-table td,
  .fan .fan-table td,
  .safety .fan-table td,
  .chemical .fan-table td,
  .magic .fan-table td {
    font-size: 1.2rem;
  }
  .dajabara .flex-wrap .txt-box p {
    margin-top: 4rem;
  }
  .chemical .flex-wrap.reverse .txt-box > p {
    margin-bottom: 3rem;
  }
  .chemical .flex-wrap.reverse .txt-box .t-wrap .mini-tit {
    font-size: 1.8rem;
  }
  .chemical .flex-wrap.reverse .txt-box .t-wrap .list li {
    font-size: 1.5rem;
  }
}
.number-list {
  counter-reset: number;
}
.number-list li {
  margin: 2rem 0;
  font-size: 2rem;
  line-height: 1.5;
  word-break: keep-all;
  counter-increment: number;
}
.number-list li::before {
  margin-right: 2rem;
  content: counter(number);
  width: 2.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  line-height: 2.6rem;
  border-radius: 2.6rem;
  text-align: center;
  -webkit-border-radius: 2.6rem;
  -moz-border-radius: 2.6rem;
  -ms-border-radius: 2.6rem;
  -o-border-radius: 2.6rem;
  background: #d8dff2;
  color: #2a3beb;
}

@media all and (max-width: 85.375rem) {
  .number-list li {
    font-size: 1.7rem;
  }
}
@media all and (max-width: 64rem) {
  .number-list li {
    padding-right: 2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .number-list li {
    font-size: 1.7rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .number-list li::before {
    max-width: 2rem;
    min-width: 2rem;
    height: 2rem;
    line-height: 2.2rem;
    font-size: 1.6rem;
  }
}
.in-circle {
  margin-top: 21rem;
}
.in-circle p {
  font-size: 2rem;
  margin-bottom: 5rem;
}
.in-circle .txt-box {
  padding-top: 0;
}
.in-circle ul li {
  display: flex;
  font-weight: 600;
}
.in-circle ul li span {
  display: block;
  width: 2.6rem;
  font-size: 1.7rem;
  color: #2a3beb;
  position: relative;
  margin-right: 2rem;
  text-align: center;
}
.in-circle ul li span::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 2.6rem;
  -webkit-border-radius: 2.6rem;
  -moz-border-radius: 2.6rem;
  -ms-border-radius: 2.6rem;
  -o-border-radius: 2.6rem;
  background: #d8dff2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: -1;
}

@media all and (max-width: 63.9375rem) {
  .in-circle {
    margin-top: 10rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .in-circle p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
.fan .full-img {
  background-image: url("../img/sub/sub2/full2.jpg");
}
.fan .cap {
  margin-bottom: 1rem;
  color: #6a798e;
  font-weight: 600;
  font-size: 1.6rem;
}
.fan .f-100 {
  margin-top: 19rem;
}
.fan .f-100 .txt-box {
  padding-top: 0;
  width: 100%;
}
.fan .f-100 .txt-box .t-wrap .list li {
  max-width: 64.1rem;
  font-size: 2rem;
  text-wrap: wrap;
}
.fan .f-100 .txt-box .t-wrap .list.list-h li {
  height: 3rem;
}
.fan .f-100 .txt-box .t-wrap .list.list-h li:first-child {
  margin-bottom: 3.2rem;
}
.fan .f-100 .txt-box .t-wrap .list.list-h li:last-child {
  margin-bottom: 12.4rem;
}
.fan .f-100 .img-wrap {
  width: 100%;
  margin-bottom: 4.8rem;
}
.fan .in-circle p {
  font-weight: 600;
}
.fan .in-circle .txt-box {
  padding-top: 0;
}
.fan .in-circle ul li {
  line-height: 3rem;
  margin-top: 3rem;
  font-size: 2rem;
}
.fan .in-circle ul li.mt-0 {
  margin-top: 0;
  margin-left: 4.6rem;
  word-break: keep-all;
}
.fan .in-circle ul li:first-child {
  margin-top: 0;
}
.fan .in-circle ul > span {
  margin-left: 5rem;
}
.fan .ft-wrap {
  max-width: none;
}

@media all and (max-width: 85.375rem) {
  .fan .in-circle ul li {
    text-wrap: wrap;
  }
}
@media all and (max-width: 63.9375rem) {
  .fan .i-wrap {
    width: 100%;
  }
  .fan .img-wrap {
    margin-top: 4rem;
  }
  .fan .flex-wrap.reverse .txt-box {
    padding-left: 0;
  }
  .fan .flex-wrap.reverse .txt-box ul li {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .fan .f-100 {
    margin-top: 8rem;
  }
  .fan .f-100 .txt-box .t-wrap .list li {
    font-size: 1.4rem;
  }
  .fan .i-wrap {
    width: 100%;
  }
  .fan .table-wrap {
    position: relative;
    display: block;
    overflow-x: scroll;
  }
  .fan .table-wrap table {
    min-width: 45.5rem;
  }
  .fan .ft-wrap {
    margin-bottom: 0;
  }
}
.file-input {
  padding: 0 1rem;
  line-height: 4.6rem;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.5rem;
}

@media all and (max-width: 47.9375rem) {
  .file-input {
    width: calc(100% - 100px);
    line-height: 4rem;
  }
}
.safety .full-img {
  background-image: url("../img/sub/sub2/full1.jpg");
}
.safety.content {
  background: #edeffa;
  margin-bottom: 0;
}
.safety .b-tit {
  padding-top: 19.5rem;
  text-align: center;
  font-size: 5rem;
  font-weight: 800;
}
.safety .p-img {
  margin-top: 10rem;
  padding: 1.8rem 0;
  width: 100%;
  background: url("../img/sub/sub2/18-bg.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.safety .p-img .img-wrap {
  margin: 0 auto;
  width: 95%;
  max-width: 95.3rem;
}
.safety .p-img .s-tit {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2.5rem;
  line-height: 3.8rem;
  font-weight: 600;
}
.safety .table-wrap {
  margin-top: 10rem;
}
.safety .table-wrap table {
  width: 100%;
  word-break: keep-all;
}
.safety .table-wrap table td {
  background: #fff;
  display: flex;
  align-items: center;
}
.safety .table-wrap table td span {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #666666;
  padding-left: 4rem;
}
.safety .s-bg .p-img {
  padding: 8.22rem 0;
  background: url("../img/sub/sub2/13-bg.jpg") no-repeat center;
}
.safety .s-bg .p-img .img-wrap {
  width: 95%;
  max-width: 77.4rem;
}
.safety .s-bg .p-img .img-wrap img {
  width: 100%;
}
.safety .mg-tb {
  padding: 20rem 0 7rem;
}
.safety .mg-tb .reverse {
  margin-top: 20rem;
}
.safety .flex-wrap .txt-box .t-wrap .mini-tit {
  font-size: 2.2rem;
  font-weight: 600;
}
.safety .flex-wrap .txt-box .t-wrap .list li {
  font-size: 2rem;
  font-weight: 600;
}
.safety .w-35 {
  width: 35%;
}

.f-bg {
  background: #edeffa;
}

@media all and (max-width: 85.375rem) {
  .safety .table-wrap table th {
    font-size: 1.5rem;
  }
  .safety .table-wrap table td {
    font-size: 1.4rem;
    padding: 0 2.4rem;
  }
  .safety .table-wrap table td span {
    padding-left: 0;
    font-size: 1.3rem;
  }
  .safety .s-wrap {
    position: relative;
    overflow-x: scroll;
    display: block;
  }
  .safety .s-wrap .scroll {
    min-width: 1005px;
  }
  .safety .w-35 {
    width: 30%;
  }
}
@media all and (max-width: 64rem) {
  .safety .flex-wrap.reverse .txt-box {
    padding-left: 2.8rem;
    padding-top: 0.5rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .safety .b-tit {
    padding-top: 14rem;
    font-size: 3.6rem;
  }
  .safety .p-img .s-tit {
    font-size: 1.8rem;
  }
  .safety .mg-tb {
    padding: 7rem 0 0;
  }
  .safety .flex-wrap.reverse {
    margin-top: 5rem;
    padding-bottom: 5rem;
  }
  .safety .flex-wrap.reverse .txt-box {
    padding: 0;
  }
  .safety .flex-wrap .txt-box .t-wrap .list li {
    font-size: 1.8rem;
  }
  .safety .flex-wrap .txt-box .t-wrap .mini-tit {
    font-size: 1.8rem;
  }
  .safety .table-wrap {
    margin-top: 5rem;
  }
  .safety .table-wrap:first-child {
    margin-top: 0;
  }
  .safety .table-wrap table th {
    font-size: 1.4rem;
  }
  .safety .table-wrap table td {
    font-size: 1.3rem;
  }
  .safety .table-wrap table td span {
    font-size: 1.2rem;
  }
  .safety .table-wrap:first-child .saf-table {
    border-right: 1px solid #c0ccdd;
  }
  .safety .table-wrap:last-child .saf-table {
    border-left: 1px solid #c0ccdd;
  }
  .safety .flex-wrap .wid-50 {
    width: 100%;
  }
}
@media all and (max-width: 47.9375rem) {
  .safety .b-tit {
    font-size: 2.8rem;
    padding-top: 8rem;
  }
  .safety .p-img {
    margin-top: 5rem;
    padding: 5rem 0;
  }
  .safety .sec-3 {
    padding-top: 5rem;
  }
  .safety .flex-wrap .txt-box .t-wrap .list li {
    font-size: 1.5rem;
  }
  .safety .flex-wrap .txt-box .t-wrap .mini-tit {
    font-size: 1.5rem;
  }
  .safety .sec-5 {
    padding-bottom: 0;
  }
}
.chemical .full-img {
  background-image: url("../img/sub/sub2/full3.jpg");
}
.chemical .img-wrap {
  position: relative;
  font-size: 1.6rem;
}
.chemical .img-wrap > p {
  position: absolute;
  margin-top: 1.5rem;
}
.chemical .img-wrap .p-wrap {
  position: absolute;
  margin-top: 1.5rem;
  display: flex;
  width: 100%;
}
.chemical .img-wrap .p-wrap p {
  width: 50%;
}
.chemical .number-list li {
  font-size: 2rem;
}
.chemical .number-list li span {
  font-weight: 800;
}
.chemical .mt-17 {
  margin-top: 17rem;
}
.chemical .mt-17 .txt-box {
  padding-top: 0.8rem;
}
.chemical .mt-17 .txt-box > p {
  margin-bottom: 5rem;
  font-size: 2rem;
}

@media all and (max-width: 63.9375rem) {
  .chemical .flex-wrap.reverse .txt-box {
    padding-left: 0;
    width: 100%;
  }
  .chemical .flex-wrap.reverse .img-wrap {
    width: 100%;
  }
  .chemical .mt-17 {
    margin-top: 10rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .chemical .flex-wrap .txt-box {
    padding-top: 0;
  }
  .chemical .img-wrap p {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .chemical .img-wrap .p-wrap {
    position: relative;
  }
  .chemical .img-wrap .p-wrap p {
    margin-top: 0;
  }
  .chemical .mt-17 {
    margin-top: 0;
  }
}
.magic .sec-4 .inner {
  padding: 0 3rem;
}
.magic .full-img {
  background-image: url("../img/sub/sub2/full4.jpg");
}
.magic .all-wrap {
  width: 60%;
}
.magic .wid-10 {
  width: 16%;
}
.magic .wid-13 {
  width: 12.9%;
}
.magic .wid-14 {
  width: 13.9%;
}
.magic .wid-16 {
  width: 16%;
}
.magic .wid-20 {
  width: 20%;
}
.magic .wid-25 {
  width: 23%;
}
.magic .wid-30 {
  width: 30%;
}
.magic .flex-wrap {
  justify-content: space-between;
}
.magic .flex-wrap .txt-box {
  max-width: 71.5rem;
  padding-top: 0;
}
.magic .sec-3 {
  padding-top: 19rem;
  text-align: center;
}
.magic .sec-3 span {
  font-size: 2.5rem;
  font-weight: 600;
}
.magic .sec-3 .tit {
  margin-top: 4rem;
  line-height: 1.5;
  font-size: 3rem;
  font-weight: 800;
  word-break: keep-all;
}
.magic .sec-3 p {
  font-size: 2.8rem;
  line-height: 1.4;
  word-break: keep-all;
}
.magic .sec-3 .caption {
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
}
.magic .sec-3 .img-wrap {
  padding-top: 16rem;
}
.magic .sec-4 {
  padding-top: 19rem;
  padding-bottom: 0;
}
.magic .sec-4 .flex-wrap {
  padding-bottom: 7rem;
}
.magic .sec-4 .flex-wrap .txt-box {
  padding-top: 8rem;
  width: 50%;
}
.magic .sec-4 .flex-wrap .txt-box p {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4.7rem;
}
.magic .sec-4 .flex-wrap .txt-box .mini-tit .blue {
  color: #2a3bed;
}
.magic .sec-4 .flex-wrap .txt-box .mini-tit .word {
  white-space: nowrap;
}
.magic .sec-4 .flex-wrap .cap {
  margin-bottom: 1rem;
  color: #6a798e;
  font-weight: 600;
  font-size: 1.6rem;
}
.magic .sec-4 .flex-wrap .table-wrap {
  margin-bottom: 4rem;
}
.magic .sec-4 .before {
  position: relative;
  overflow: hidden;
  background: url("../img/sub/sub2/line.png") 0 0/100% 100% no-repeat;
}
.magic .sec-4 .before .ledo {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
}
.magic .sec-4 .before .riup {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
}
.magic .ma-table th {
  font-size: 1.7rem;
  padding: 1.95rem 0.8rem;
}
.magic .ma-table td {
  font-size: 1.6rem;
}
.magic .ma-table td.lh {
  line-height: 3rem;
}

@media all and (max-width: 85.375rem) {
  .magic .flex-wrap .all-wrap {
    width: 100%;
  }
  .magic .flex-wrap .txt-box {
    padding-right: 5%;
  }
  .magic .flex-wrap .txt-box .number-list li br {
    display: none;
  }
  .magic .sec-3 span {
    font-size: 2.1rem;
  }
  .magic .sec-3 .tit {
    font-size: 2.6rem;
    margin-top: 3rem;
  }
  .magic .sec-3 p {
    font-size: 2.2rem;
  }
  .magic .sec-3 .caption {
    font-size: 2rem;
  }
  .magic .sec-3 .img-wrap {
    padding-top: 14rem;
  }
  .magic .sec-3 .tit-box {
    padding-top: 0;
  }
  .magic .sec-4 .flex-wrap .txt-box {
    padding-left: 5%;
  }
  .magic .sec-4 .flex-wrap .txt-box .mini-tit .word {
    white-space: normal;
    display: inline;
  }
  .magic .sec-4 .flex-wrap:last-child {
    padding-bottom: 0;
  }
  .magic .ma-table th {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 64rem) {
  .magic .sec-4 .flex-wrap .txt-box {
    padding-left: 3%;
    width: 40%;
  }
  .magic .wid-10 {
    width: 17%;
  }
}
@media all and (max-width: 63.9375rem) {
  .magic .sec-4 .flex-wrap .txt-box {
    padding: 0;
    width: 100%;
  }
  .magic .ma-table th {
    font-size: 1.5rem;
    padding: 1.95rem 0.8rem;
  }
  .magic .ma-table td {
    font-size: 1.4rem;
  }
  .magic .ma-table td.lh {
    line-height: 2rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .magic .section {
    padding-top: 0;
  }
  .magic .flex-wrap {
    padding-bottom: 6rem;
  }
  .magic .cap {
    font-size: 1.5rem;
  }
  .magic .table-wrap {
    position: relative;
    display: block;
    overflow-x: scroll;
  }
  .magic .table-wrap .table {
    min-width: 705px;
  }
  .magic .sec-3 span {
    font-size: 1.6rem;
  }
  .magic .sec-3 .tit {
    font-size: 1.9rem;
  }
  .magic .sec-3 p {
    font-size: 1.5rem;
  }
  .magic .sec-3 .caption {
    font-size: 1.5rem;
  }
  .magic .sec-3 .img-wrap {
    padding: 6rem 0;
  }
  .magic .sec-4 {
    padding-bottom: 0;
  }
  .magic .sec-4 .flex-wrap {
    padding-bottom: 6rem;
  }
  .magic .sec-4 .flex-wrap .txt-box .mini-tit .word {
    white-space: wrap;
  }
  .magic .wid-30 {
    width: 20%;
  }
}
.ci .ci-tit {
  font-size: 3rem;
  color: #555555;
  padding-bottom: 5rem;
}
.ci .ci-wrap {
  width: 100%;
  height: 56rem;
  background: url("../img/sub/sub1/ci-bg.jpg") no-repeat center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci .ci-wrap .img-wrap {
  width: 100%;
  max-width: 38rem;
}
.ci .flex-wrap {
  display: flex;
}
.ci .flex-wrap .am-wrap {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
.ci .flex-wrap .am-wrap .txt-wrap {
  display: flex;
  justify-content: space-between;
}
.ci .flex-wrap .tit {
  width: 32rem;
  font-size: 3rem;
  color: #555555;
}
.ci .flex-wrap .box {
  display: flex;
}
.ci .flex-wrap .box .pb {
  width: 31.8rem;
}
.ci .flex-wrap .box .pb .pb-1 {
  width: 100%;
  height: 16rem;
  background: #647dbd;
}
.ci .flex-wrap .box .pb .pb-2 {
  width: 100%;
  height: 6rem;
  background: #a7b9e7;
}
.ci .flex-wrap .box .cr,
.ci .flex-wrap .box .ob,
.ci .flex-wrap .box .gg {
  width: 16rem;
}
.ci .flex-wrap .box .cr-1 {
  width: 100%;
  height: 16rem;
  background: #d33348;
}
.ci .flex-wrap .box .cr-2 {
  width: 100%;
  height: 6rem;
  background: #edc5b5;
}
.ci .flex-wrap .box .ob-1 {
  width: 100%;
  height: 16rem;
  background: #1e7fbe;
}
.ci .flex-wrap .box .ob-2 {
  width: 100%;
  height: 6rem;
  background: #6bbbd9;
}
.ci .flex-wrap .box .gg-1 {
  width: 100%;
  height: 16rem;
  background: #6ebd6b;
}
.ci .flex-wrap .box .gg-2 {
  width: 100%;
  height: 6rem;
  background: #dce9a4;
}
.ci .flex-wrap .box .twrap {
  padding-top: 5.5rem;
}
.ci .flex-wrap .box .twrap .name {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}
.ci .flex-wrap .box .twrap ul li {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #666666;
}
.ci .flex-wrap .box .twrap ul li span {
  display: block;
  width: 5.5rem;
  color: #000;
}
.ci .sec-2 {
  padding: 20rem 0;
}

@media all and (max-width: 63.9375rem) {
  .ci .flex-wrap .tit {
    font-size: 2.4rem;
    width: 20rem;
  }
  .ci .flex-wrap .box {
    width: 100%;
  }
  .ci .flex-wrap .box .pb {
    width: 32%;
  }
  .ci .flex-wrap .box .pb .pb-1 {
    height: 10rem;
  }
  .ci .flex-wrap .box .cr,
  .ci .flex-wrap .box .ob,
  .ci .flex-wrap .box .gg {
    width: 22%;
  }
  .ci .flex-wrap .box .cr-1,
  .ci .flex-wrap .box .ob-1,
  .ci .flex-wrap .box .gg-1 {
    height: 10rem;
  }
  .ci .flex-wrap .box .twrap {
    padding-top: 3rem;
  }
  .ci .flex-wrap .box .twrap .name {
    font-size: 1.6rem;
  }
  .ci .flex-wrap .box .twrap ul li {
    font-size: 1.5rem;
  }
  .ci .flex-wrap .box .twrap ul li span {
    width: 4.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .ci .ci-tit {
    font-size: 1.8rem;
    padding-bottom: 2rem;
  }
  .ci .ci-wrap {
    height: 30rem;
  }
  .ci .ci-wrap .img-wrap {
    width: 16rem;
  }
  .ci .flex-wrap {
    flex-direction: column;
  }
  .ci .flex-wrap .tit {
    width: 100%;
    font-size: 1.8rem;
    padding-bottom: 2rem;
  }
  .ci .flex-wrap .box {
    width: 100%;
  }
  .ci .flex-wrap .box .pb {
    width: 32%;
  }
  .ci .flex-wrap .box .pb .pb-1 {
    height: 10rem;
  }
  .ci .flex-wrap .box .cr,
  .ci .flex-wrap .box .ob,
  .ci .flex-wrap .box .gg {
    width: 22%;
  }
  .ci .flex-wrap .box .cr-1,
  .ci .flex-wrap .box .ob-1,
  .ci .flex-wrap .box .gg-1 {
    height: 10rem;
  }
  .ci .flex-wrap .box .twrap {
    padding-top: 3rem;
  }
  .ci .flex-wrap .box .twrap .name {
    font-size: 1.3rem;
  }
  .ci .flex-wrap .box .twrap ul li {
    font-size: 1.2rem;
    flex-direction: column;
    padding-bottom: 0.8rem;
    align-items: baseline;
  }
  .ci .flex-wrap .box .twrap ul li span {
    width: 100%;
    padding-bottom: 0.8rem;
  }
  .ci .sec-2 {
    padding: 5rem 0;
  }
}
.business .tit {
  font-size: 3rem;
  color: #555555;
  padding-bottom: 5rem;
}
.business .flex-wrap {
  display: flex;
  gap: 9rem;
}
.business .flex-wrap .map-wrap {
  width: 80rem;
}
.business .flex-wrap .map-wrap img {
  max-width: none;
}
.business .flex-wrap .card-wrap {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.business .flex-wrap .card-wrap .card .name {
  font-size: 2.5rem;
}
.business .flex-wrap .card-wrap .card ul {
  margin-bottom: 4rem;
}
.business .flex-wrap .card-wrap .card ul li {
  padding-top: 1.8rem;
  display: flex;
  font-size: 1.8rem;
  line-height: 1.3;
}
.business .flex-wrap .card-wrap .card ul li .width {
  display: block;
  min-width: 9rem;
}
.business .flex-wrap .card-wrap .card ul li.blue {
  color: #001e4e;
}
.business .sec-2 {
  padding-top: 14rem;
}
.business .sec-2 ul {
  margin-bottom: 0;
}

@media all and (max-width: 85.375rem) {
  .business .flex-wrap {
    gap: 5rem;
  }
  .business .flex-wrap .map-wrap {
    width: 50%;
  }
  .business .flex-wrap .map-wrap img {
    max-width: 100%;
  }
  .business .flex-wrap .card-wrap {
    width: 50%;
  }
}
@media all and (max-width: 63.9375rem) {
  .business .tit {
    font-size: 2.4rem;
    padding-bottom: 3rem;
  }
  .business .flex-wrap .card-wrap {
    gap: 5rem;
  }
  .business .flex-wrap .card-wrap .card .name {
    font-size: 1.8rem;
  }
  .business .flex-wrap .card-wrap .card ul {
    margin-bottom: 2.4rem;
  }
  .business .flex-wrap .card-wrap .card ul li {
    font-size: 1.5rem;
    padding-top: 1.2rem;
  }
  .business .sec-2 {
    padding-top: 8rem;
  }
  .business .br {
    display: inline;
  }
}
@media all and (max-width: 47.9375rem) {
  .business .flex-wrap {
    flex-direction: column;
  }
  .business .flex-wrap .map-wrap {
    width: 100%;
  }
  .business .flex-wrap .card-wrap {
    width: 100%;
  }
  .business .flex-wrap .card-wrap .card ul li {
    font-size: 1.4rem;
  }
  .business .flex-wrap .card-wrap .card ul li p {
    width: calc(100% - 7rem);
  }
  .business .flex-wrap .card-wrap .card ul li .width {
    width: 7rem;
  }
}