@import url(./normalize.css);

:root {
  --header-height: 90px;
  --header-btn-color: #04145b;
  --inner-size: 1700px;
  --inner-gap: 30px;
}

@media screen and (max-width: 1000px) {
  :root {
    --header-height: 70px;
  }
}

@media screen and (max-width: 475px) {
  :root {
    --inner-gap: 15px;
  }
}

@font-face {
  font-family: "NanumSquareNeo";
  src: url("../fonts/NanumSquareNeo-aLt.ttf") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "NanumSquareNeo";
  src: url("../fonts/NanumSquareNeo-bRg.ttf") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "NanumSquareNeo";
  src: url("../fonts/NanumSquareNeo-cBd.ttf") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: "NanumSquareNeo";
  src: url("../fonts/NanumSquareNeo-dEb.ttf") format("woff");
  font-weight: 800;
}

@font-face {
  font-family: "NanumSquareNeo";
  src: url("../fonts/NanumSquareNeo-eHv.ttf") format("woff");
  font-weight: 900;
}

/* @font-face {
  font-family: "notosans";
  src: url("../fonts/NotoSansKR-Light.ttf") format("woff");
  font-weight: 400;
} */

@font-face {
  font-family: 'VITRO-CORE';
  src: url('../fonts/VITRO-CORE-TTF.woff2') format('woff2'),
      url('../fonts/VITRO-CORE-TTF.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'VITRO-INSPIRE';
  src: url('../fonts/VITRO-INSPIRE-TTF.woff2') format('woff2'),
      url('../fonts/VITRO-INSPIRE-TTF.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.vitro-core {
  font-family: 'VITRO-CORE', sans-serif !important;
}

.vitro-inspire {
  font-family: 'VITRO-INSPIRE', sans-serif !important;
}

@media (max-width: 996px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 996px) {
  .mo {
    display: none !important;
  }
}

body,
html {
  scroll-behavior: smooth;
}

body {
  font-family: "NanumSquareNeo";
  font-weight: 500;
}

body.lock {
  padding-right: var(--scrollbar-width);
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  body.lock {
    padding-right: 0;
  }
}

body * {
  letter-spacing: -0.025rem;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
  line-height: 1;
}

a {
  color: unset;
}

b {
  font-weight: 900;
}

.marker {
  background: linear-gradient(to top, #d1ddff 50%, transparent 50%);
}

.inner {
  width: 100%;
  max-width: var(--inner-size);
  margin: 0 auto;
  padding: 0 var(--inner-gap);
}


/* header */

header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

header .inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .logo-wrap {
  min-width: 375px;
  display: flex;
  align-items: center;
  gap: 15px;
}

header .side-wrap {
  min-width: 410px;
  display: flex;
  align-items: center;
}

header .logo img {
  filter: invert(1);
}

header .vol {
  width: fit-content;
  padding: 9px 20px;
  font-size: 15px;
  border-radius: 20vw;
  text-align: center;
  color: #fff;
  background-color: var(--header-btn-color);
}

header .search-bar,
.gnb .search-bar {
  padding: 12px 0 12px 20px;
  /* margin-right: 20px; */
  background-color: #f2f2f2;
  display: flex;
  /* max-width: 280px; */
  width: 100%;
  position: relative;
  border-radius: 20vw;
}

header .search-bar form {
  background-color: transparent;
}

header .search-bar input,
.gnb .search-bar input {
  width: 100%;
  border: none;
  background-color: transparent !important;
  outline: none;
  padding-right: 44px;
}

header .search-bar input::placeholder,
.gnb .search-bar input::placeholder {
  font-size: 14px;
  font-weight: 700;
  color: #bbb;
}

header .search-bar button,
.gnb .search-bar button {
  position: absolute;
  border: none;
  background-color: transparent;
  cursor: pointer;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

header .audio,
.gnb .audio {
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 8px 25px;
  gap: 8px;
  color: #fff;
  border-radius: 20vw;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  background-color: var(--header-btn-color);
}

header nav {
  height: 100%;
  flex: 1;
  font-family: 'VITRO-INSPIRE', sans-serif;
}

header nav ul {
  width: 80%;
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

header nav ul li {
  font-size: 18px;
  height: 100%;
  align-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
}

header nav ul li::after {
  content: "";
  width: 80%;
  height: 4px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: transparent;
  transition: all .25s;
}

header nav ul li:hover::after,
header nav ul li.active::after {
  background-color: #5789c6;
}

.gnb {
  width: 100%;
  padding-block: calc(var(--header-height) / 4);
  box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: fixed;
  top: var(--header-height);
  left: 0;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  z-index: 99;
}

.gnb.on {
  pointer-events: all;
  opacity: 1;
}

.gnb .inner {
  display: flex;
}

.gnb .side-wrap {
  display: none;
}

.gnb .gap-left {
  min-width: 375px;
}

.gnb .gap-right {
  min-width: 410px;
}

.gnb .list {
  font-family: 'VITRO-INSPIRE', sans-serif;
  flex: 1;
}

.gnb ul {
  width: 80%;
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gnb ul li {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.gnb ul li a {
  padding: 15px;
  line-height: 1.5;
  font-size: 17px;
}

.gnb ul li a:hover {
  color: #5789c6;
}

.gnb ul li a span {
  position: relative;
  letter-spacing: 0.5px;
}

.gnb ul li a:hover span::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #5789c6;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(150%, -110%);
}

.gnb-toggle {
  display: none;
}

.gnb-toggle div {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.gnb .title {
  display: none;
}

@media screen and (max-width: 1400px) {
  header nav ul,
  .gnb ul {
    width: 96%;
  }

  header nav ul li,
  .gnb ul li a {
    font-size: 16px;
  }

  header .vol {
    font-size: 14px;
  }

  header .side-wrap,
  .gnb .gap-right {
    min-width: 315px;
  }

  /* header .search-bar {
    max-width: 180px;
  } */
}

@media screen and (max-width: 1200px) {
  header .inner {
    padding-right: 0;  
  }

  header nav {
    display: none;
  }

  header .audio {
    margin-right: 20px;
  }

  header .search-bar {
    max-width: 280px;
    margin-right: 20px;
  }

  header .side-wrap {
    min-width: auto;
    height: 100%;
    flex: 1;
    justify-content: end;
  }

  .gap-left,
  .gap-right {
    display: none;
  }

  .gnb {
    height: calc(100% - var(--header-height));
    overflow-x: hidden;
    overflow-y: auto;
  }

  .gnb-toggle {
    min-width: var(--header-height);
    height: 100%;
    height: 100%;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    outline: none;
    border: none;
    background-color: var(--header-btn-color);
    cursor: pointer;
  }

  .gnb-toggle div {
    background-color: #fff;
    border-radius: 3px;
  }

  .gnb .title {
    display: block;
    color: #5789c6;
    position: relative;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .gnb ul li a.title span::after,
  .gnb ul li a.title:hover span::after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #5789c6;
    display: block;
    position: absolute;
    top: auto;
    right: auto;
    bottom: -15px;
    left: 0;
    border-radius: 0%;
    transform: none;
  }
}

@media screen and (max-width: 1000px) {
  header .logo img {
    height: 35px;
  }

  header .logo-wrap {
    min-width: auto;
    gap: 10px;
  }

  header .audio,
  header .search-bar {
    display: none;
  }

  .gnb-toggle {
    gap: 7px;
    padding: 21px;
  }

  .gnb .inner {
    flex-direction: column;
  }

  .gnb .side-wrap {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    /* position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 5; */
  }

  .gnb .search-bar {
    max-width: unset;
    flex: 1;
  }
}


@media screen and (max-width: 768px) {
  .gnb {
    padding-block: calc(var(--header-height) / 2);
  }
  .gnb ul {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .gnb ul li {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }

  .gnb ul li:first-of-type {
    margin-top: 0;
  }

  .gnb ul li:last-of-type {
    border-bottom: 0;
  }
}

@media screen and (max-width: 475px) {
  .gnb {
    padding-top: 25px;
  }
  header .logo img {
    height: 25px;
  }
  header .vol {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* // header */


.footer {
  background-color: #222222;
  padding: 40px 0;
}

.footer .logo-wrap {
  display: flex;
  gap: 30px;
}

.footer .inner .info-wrap address {
  margin-bottom: 8px;
}

.fix-menu+.footer {
  margin-top: 0;
}

.footer .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 1500px) {
  .footer .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 996px) {
  .footer .inner {
    align-items: center;
  }
}

.footer .inner .logo {
  flex-shrink: 0;
}

@media (max-width: 996px) {
  .footer .inner .logo-wrap {
    flex-direction: column;
    align-items: center;
  }
}

.footer .inner .info-wrap address {
  font-style: normal;
  color: #aaa;
  font-size: 15px;
  /* font-family: "notosans", sans-serif; */
  font-weight: 500;
}

@media (max-width: 996px) {
  .footer .inner .info-wrap address {
    font-size: 15px;
    text-align: center;
  }
}

.footer .inner .info-wrap .info>span {
  display: flex;
  gap: 30px;
}

.footer .inner .info-wrap .info>span:last-of-type p {
  margin-bottom: 0;
}

@media (max-width: 996px) {
  .footer .inner .info-wrap .info>span {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer .inner .info-wrap .info>span p {
  margin-bottom: 8px;
  position: relative;
  width: unset;
}

@media (max-width: 996px) {
  .footer .inner .info-wrap .info>span p.mo100 {
    width: 100%;
    /* margin-bottom: -4px; */
  }

  .footer .inner .info-wrap .info>span p.mo100::after {
    content: none !important;
  }
}

.footer .inner .info-wrap .info>span p:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 80%;
  background-color: #acacac;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 996px) {
  .footer .inner .info-wrap .info>span p:not(:last-child)::after {
    right: -7px;
    height: 11px;
  }
}

.footer .inner .btns {
  display: flex;
  gap: 15px;
}

@media (min-width: 996px) {
  .footer .inner .btns {
    display: none;
  }
}

.footer .inner .btns a {
  padding: 10px 18px;
  font-size: 13px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
  position: relative;
}

.footer .inner .btns a::after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  right: -9px;
}

.footer .inner .btns a:last-child::after {
  content: none;
}

.footer .inner .bottom-wrap {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 50px;
  align-items: center;
}

.footer .inner .bottom-wrap img {
  filter: invert(1);
}

@media (max-width: 1700px) {
  .footer .inner .bottom-wrap {
    gap: 50px;
  }
}

@media (max-width: 996px) {
  .footer .inner .bottom-wrap {
    gap: 25px;
  }
}

.footer .inner .bottom-wrap .family-site {
  /* font-family: "notosans", sans-serif; */
  max-width: 170px;
  width: 100%;
  height: 40px;
  padding: 0 calc(0.75rem + 12px + 0.75rem) 0 0.75rem;
  font-size: 16px;
  background-size: 12px;
  background-color: #222;
  border: 1px solid #ccc;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-image: url(../images/select.png);
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: calc(100% - 0.75rem);
  color: #cccccc;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  outline: none;
}

@media (max-width: 996px) {
  .footer .inner .bottom-wrap .family-site {
    order: 2;
    width: 175px;
    padding: 7px 50px 7px 13px;
    font-size: 14px;
    background-color: #fff;
    color: #000;
  }
}

.footer .inner .bottom-wrap .family-site>span i {
  font-style: normal;
  position: absolute;
  transform: rotate(90deg);
  letter-spacing: -0.5rem;
  right: 15px;
}

.footer .inner .bottom-wrap .family-site.active .links {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 996px) {
  .footer .inner .bottom-wrap .family-site.active .links {
    background-color: #fff;
  }
}

.footer .inner .bottom-wrap .sns {
  display: flex;
  gap: 10px;
}

.footer .inner .bottom-wrap .sns a:hover {
  filter: brightness(2);
}

@media (max-width: 996px) {
  .footer .inner .bottom-wrap .sns a {
    width: 30px;
  }
}

.swiper-btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
}

@media (max-width: 996px) {
  .swiper-btn {
    border: 1px solid #333;
    padding: 5px 0;
    border-radius: 30px;
  }
}

.swiper-btn .swiper-button {
  position: static;
  background-image: none;
  width: unset;
  flex-shrink: 0;
  height: unset;
  margin-top: 0;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  border: 1px solid #ddd;
}

@media (max-width: 996px) {
  .swiper-btn .swiper-button {
    border: none;
    width: unset;
    height: unset;
    padding: 10px;
    gap: 0;
  }
}

.swiper-btn .swiper-pagination {
  position: static;
  flex-shrink: 0;
  width: unset;
  min-width: 40px;
  font-size: 15px;
  color: #a19c99;
}

.swiper-btn .swiper-pagination .swiper-pagination-current {
  font-weight: 800;
  color: #333;
}

.wing {
  position: fixed;
  right: 80px;
  bottom: 60px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
}

.wing.scroll {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1700px) {
  .wing {
    right: 30px;
  }
}

@media (max-width: 1200px) {
  .wing {
    bottom: 120px;
  }
}

@media (max-width: 996px) {
  .wing {
    bottom: 100px;
  }
}

@media (max-width: 769px) {
  .wing {
    bottom: 70px;
  }
}

.wing a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  line-height: 18px;
  letter-spacing: -0.05rem;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .wing a {
    width: 100px;
  }
}

@media (max-width: 996px) {
  .wing a {
    width: 80px;
  }
}

.fix-menu {
  display: flex;
  margin-left: 80px;
  bottom: 0;
  border-radius: 40px 40px 0 0;
  background-color: #222;
  width: 100%;
  max-width: 500px;
  padding: 0 10px;
  position: static;
  margin-top: 105px;
  z-index: 30;
}

@media (max-width: 996px) {
  .fix-menu {
    margin: 50px auto 0;
    padding: 0 10px;
    width: calc(100% - 30px);
    border-radius: 25px 25px 0 0;
  }
}

.fix-menu.fixed {
  left: 0;
  bottom: 0;
  position: fixed;
}

@media (max-width: 996px) {
  .fix-menu.fixed {
    left: 50%;
    transform: translateX(-50%);
  }
}

.fix-menu.fixed+.footer {
  margin-top: 200px;
}

.fix-menu>div,
.fix-menu a {
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 769px) {

  .fix-menu>div,
  .fix-menu a {
    height: 60px;
  }
}

.fix-menu>div img,
.fix-menu a img {
  transition: all 0.2s;
  transform: scale(0.7);
}

.fix-menu>div:hover img,
.fix-menu a:hover img {
  filter: brightness(0.6);
}

.search .top-banner {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.search .introduction {
  margin-top: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 33px;
  max-width: 960px;
  text-align: justify;
  word-break: keep-all;
  text-align: center;
  z-index: 22;
  margin-top: 0;
}

@media (max-width: 996px) {
  .search .introduction {
    font-size: 16px;
    line-height: 1.6;
  }
}

.search .introduction small {
  color: #ddd;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 996px) {
  .search .introduction small {
    font-size: 14px;
  }
}

.search .search-result {
  margin-top: 100px;
  border-top: 4px solid #222;
  border-bottom: 4px solid #222;
}

@media (max-width: 769px) {
  .search .search-result {
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
  }
}

.search .search-result li {
  padding: 48px 0;
  border-top: 1px solid #222222;
}

@media (max-width: 769px) {
  .search .search-result li {
    padding: 24px 0 20px;
  }
}

.search .search-result li:first-child {
  border-top: 0;
}

.search .search-result li a {
  display: flex;
  gap: 40px;
}

@media (max-width: 769px) {
  .search .search-result li a {
    display: block;
  }
}

.search .search-result li a .thumb {
  width: 320px;
  height: 180px;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 769px) {
  .search .search-result li a .thumb {
    width: 100%;
    height: unset;
    padding-bottom: 56.25%;
  }
}

.search .search-result li a .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 769px) {
  .search .search-result li a .thumb img {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.search .search-result li a .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 769px) {
  .search .search-result li a .text-wrap {
    margin-top: 30px;
  }
}

.search .search-result li a .text-wrap .cate {
  font-family: "NanumSquareNeo";
  padding: 4px 10px;
  background-color: #222;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.search .search-result li a .text-wrap .title {
  line-height: 1.2;
  font-size: 32px;
  word-break: keep-all;
}

@media (max-width: 769px) {
  .search .search-result li a .text-wrap .title {
    font-size: 24px;
  }
}

.search .search-result li a .text-wrap .body {
  font-family: "NanumSquareNeo";
  line-height: 32px;
  font-size: 18px;
  font-weight: 400;
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: box;
  margin-top: 1px;
  overflow: hidden;
  vertical-align: top;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 769px) {
  .search .search-result li a .text-wrap .body {
    font-size: 16px;
    line-height: 1.5;
  }
}

.search .search-pagi {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.search .search-pagi a {
  padding: 5px;
  margin: 0 15px;
  color: #999999;
  font-size: 22px;
}

@media (max-width: 769px) {
  .search .search-pagi a {
    font-size: 16px;
    margin: 0 6px;
  }
}

.search .search-pagi a.this {
  font-weight: 700;
  color: #000;
}

.search .search-pagi a.prev,
.search .search-pagi a.next {
  color: #000;
  font-weight: 700;
}

.sub * {
  letter-spacing: -0.05rem;
}

@media (max-width: 996px) {
  .sub .pc {
    display: none;
  }
}

@media (min-width: 996px) {
  .sub .mo {
    display: none;
  }
}

.sub .inner {
  width: 100%;
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
}

.sub .inner1200 {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.sub .top-banner {
  position: relative;
}

.sub .top-banner .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 996px) {
  .sub .top-banner .bg.bg-pc {
    display: none;
  }
}

@media (min-width: 996px) {
  .sub .top-banner .bg.bg-mo {
    display: none;
  }
}

.sub .top-banner .cate {
  font-family: "NanumSquareNeo";
  font-weight: 400;
  padding: 10px 15px;
  font-size: 18px;
  color: #fff;
  background-color: #100f15;
  z-index: 3;
}

@media (max-width: 996px) {
  .sub .top-banner .cate {
    font-size: 14px;
  }

  .sub .top-banner .cate.mt-mb {
    margin-top: 60px;
  }
}

.sub .top-banner .search-num {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  padding: 0 15px;
  line-height: 64px;
  word-break: break-all;
  z-index: 3;
}

@media (max-width: 996px) {
  .sub .top-banner .search-num {
    font-size: 30px;
    line-height: 1.4;
  }
}

.sub .crawling-contents-top .banner {
  min-height: 720px;
  padding: 150px 0 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.sub .crawling-contents-top .banner .inner {
  max-width: 1230px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.sub .crawling-contents-top .banner .inner .title {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: 64px;
  margin-top: 20px;
  word-break: keep-all;
}

.sub .crawling-contents-top .banner .inner .title>span {
  font-weight: 400;
}

@media (max-width: 996px) {
  .sub .crawling-contents-top .banner .inner .title {
    font-size: 30px;
    line-height: 1.4;
  }
}

.sub .crawling-contents-top .banner .inner .introduction {
  margin-top: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 33px;
  max-width: 960px;
  text-align: justify;
  word-break: keep-all;
}

@media (max-width: 996px) {
  .sub .crawling-contents-top .banner .inner .introduction {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.6;
  }
}

.sub .writer-wrap {
  background-color: #f2f2f2;
  padding: 40px 15px;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

@media (max-width: 996px) {
  .sub .writer-wrap {
    padding: 20px 15px;
  }
}

.sub .writer-wrap .writer-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sub .writer-wrap .writer-inner h3 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 48px;
}

@media (max-width: 996px) {
  .sub .writer-wrap .writer-inner h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}

.sub .writer-wrap .writer-inner h3 b {
  font-weight: 700;
}

.sub .writer-wrap .writer-inner .writer {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}

@media (max-width: 996px) {
  .sub .writer-wrap .writer-inner .writer {
    font-size: 16px;
  }
}

.sub .writer-wrap .writer-inner .career {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  padding-top: 10px;
  margin-top: 12px;
  border-top: 1px solid #000;
}

@media (max-width: 996px) {
  .sub .writer-wrap .writer-inner .career {
    font-size: 15px;
  }
}

.sub .crawling-contents-textbox {
  margin-top: 110px;
}

@media (max-width: 996px) {
  .sub .crawling-contents-textbox {
    margin-top: 80px;
  }
}

.sub .textbox {
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
}

.sub .textbox.noflex {
  display: block;
}

.sub .textbox.flexend {
  align-items: flex-end;
}

.sub .textbox.marb0 {
  margin-bottom: 0;
}

.sub .textbox.marb0 p:last-child {
  padding-bottom: 34px;
}

.sub .textbox.marb0 .epil:last-child {
  margin-bottom: 60px;
}

@media (max-width: 996px) {
  .sub .textbox {
    display: block;
    margin-bottom: 70px;
  }
}

.sub .textbox:last-child {
  margin-bottom: 0;
}

.sub .textbox .left {
  flex-shrink: 0;
  width: 320px;
}

@media (max-width: 996px) {
  .sub .textbox .left {
    width: 100%;
  }
}

.sub .textbox .left .img {
  margin-top: 50px;
}

.sub .textbox .left .img:nth-child(2) {
  margin-top: 0;
}

.sub .textbox .left .img:last-child {
  padding-bottom: 34px;
}

.sub .textbox .right {
  flex: 1;
}

.sub .textbox h2 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 400;
  padding-bottom: 34px;
  word-break: keep-all;
}

.sub .textbox h2 b {
  font-weight: 900;
}

.sub .textbox h2 small {
  display: block;
  margin-top: 32px;
  position: relative;
  padding-top: 0;
  color: #000;
  font-weight: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
}

@media (max-width: 996px) {
  .sub .textbox h2 small {
    font-size: 20px;
  }
}

.sub .textbox h2 small::before {
  content: "";
  width: 69px;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -20px;
}

@media (max-width: 996px) {
  .sub .textbox h2 {
    font-size: 26px;
    line-height: 1.5;
    padding-bottom: 20px;
  }
}

.sub .textbox h2:first-child {
  margin-top: 2px;
}

.sub .textbox h4 {
  font-size: 26px;
  padding-bottom: 20px;
  line-height: 1.4;
  font-weight: 800;
}

@media (max-width: 996px) {
  .sub .textbox h4 {
    font-size: 20px;
  }
}

.sub .textbox h5 {
  font-size: 20px;
  padding-bottom: 20px;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 996px) {
  .sub .textbox h5 {
    font-size: 17px;
  }
}

.sub .textbox p {
  line-height: 32px;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 34px;
  text-align: justify;
}

@media (max-width: 996px) {
  .sub .textbox p {
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 20px;
  }
}

.sub .textbox p:last-child {
  padding-bottom: 0;
}

.sub .textbox p.img {
  text-align: center;
  line-height: 0;
}

.sub .textbox p.img>span,
.sub .textbox p.img>a {
  display: inline-block;
  margin: 0 auto;
}

.sub .textbox p.img img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.sub .textbox .text-flex {
  display: flex;
  padding-bottom: 7px;
}

.sub .textbox .text-flex.pad-unset {
  padding-bottom: 34px;
}

@media (max-width: 996px) {
  .sub .textbox .text-flex.pad-unset {
    padding-bottom: 20px;
  }
}

.sub .textbox .text-flex.pad-unset:last-child {
  padding-bottom: 0;
}

.sub .textbox .text-flex span:nth-child(1) {
  flex-shrink: 0;
  margin-right: 10px;
  font-weight: 900;
}

.sub .textbox .title-box {
  padding: 14px 30px !important;
  background-color: #f5f5f5;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-weight: 800;
  margin-bottom: 34px;
  margin-top: 20px;
}

@media (max-width: 996px) {
  .sub .textbox .title-box {
    padding: 14px 22px !important;
  }
}

.sub .textbox .title-box img {
  margin-right: 15px;
}

@media (max-width: 996px) {
  .sub .textbox .title-box img {
    transform: scale(0.7);
    margin-right: 5px;
  }
}

.sub small {
  font-size: 14px;
  color: #999;
  display: block;
  word-break: break-all;
  text-align: justify;
  padding-top: 10px;
  line-height: 1.3;
}

.sub p+.epil {
  margin-top: 30px;
}

.sub .epil {
  font-size: 24px;
  color: #89323b;
  font-weight: 800;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 60px;
}

.sub .epil.blue {
  color: #315589;
}

@media (max-width: 996px) {
  .sub .epil {
    font-size: 20px;
    line-height: 35px;
  }
}

.sub .epil:last-child {
  margin-bottom: 0;
}

.flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 34px;
}

@media (max-width: 996px) {
  .flex {
    flex-direction: column;
  }
}

.flex:last-child {
  margin-bottom: 0;
}

@media (max-width: 996px) {
  .flex>span {
    max-width: 100% !important;
  }
}

.flex p,
.flex .img {
  padding-bottom: 0 !important;
}

.interview-line {
  padding: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 3px solid #333;
  margin-bottom: 40px;
}

.interview-line h2 {
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  font-weight: 900 !important;
}

.qna {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 35px;
  background-color: #e4efff;
  border-radius: 30px;
  margin-bottom: 24px;
}

.qna span {
  color: #fff;
  border-radius: 5px;
  background-color: #687eb2;
  flex-shrink: 0;
  padding: 4px 7px;
  font-weight: 800;
  font-size: 23px;
}

.qna p {
  line-height: 37px;
  margin-top: 2px;
  font-size: 24px;
  font-weight: 700 !important;
  padding-bottom: 0 !important;
}

.flex-box {
  background-color: #f2f6ff;
  padding: 25px 70px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1400px) {
  .flex-box {
    padding: 25px;
  }
}

.flex-box .row {
  display: flex;
  width: calc(50% - 25px);
}

@media (max-width: 996px) {
  .flex-box .row {
    width: 100%;
  }
}

.flex-box .row:nth-child(2n) {
  margin-left: 50px;
}

@media (max-width: 996px) {
  .flex-box .row:nth-child(2n) {
    margin-left: 0;
  }
}

.flex-box .row p {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 996px) {
  .flex-box .row p {
    font-size: 16px;
    padding-top: 3px;
  }
}

.flex-box .row p b {
  font-weight: 700;
  margin-right: 5px;
}

.deps-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 15px;
  border-bottom: 3px solid #333;
}

.deps-title>p {
  padding-bottom: 0 !important;
  display: flex;
}

@media (max-width: 996px) {
  .deps-title>p {
    flex-direction: column;
  }
}

.deps-title.justifybetween {
  justify-content: space-between;
}

@media (max-width: 996px) {
  .deps-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

.deps-title .shap {
  font-size: 38px;
  font-weight: 800;
  flex-shrink: 0;
  color: #111;
}

.deps-title .shap>span {
  font-size: 34px;
  font-weight: 500;
}

@media (max-width: 996px) {
  .deps-title .shap>span {
    font-size: 24px;
    display: none;
  }
}

.deps-title .shap small {
  font-size: 20px;
  color: #111;
}

@media (max-width: 996px) {
  .deps-title .shap {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.deps-title span {
  color: #111;
  font-size: 26px;
  padding-bottom: 2px;
}

.deps-title span b {
  font-weight: 700;
}

@media (max-width: 996px) {
  .deps-title span {
    font-size: 20px;
  }
}

.deps-title .icon {
  margin-left: 15px;
  flex-shrink: 0;
  display: flex;
  gap: 10px;
}

@media (max-width: 996px) {
  .deps-title .icon {
    margin-left: 0;
    margin-top: 10px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  margin-top: 0;
  background-image: none;
  left: unset;
  right: unset;
  flex-shrink: 0;
  top: unset;
  width: unset;
  height: unset;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: none;
}

.slide-container {
  position: relative;
  padding: 0 70px;
}

.moment-swiper-container {
  overflow: hidden;
}

.moment-swiper {
  padding-bottom: 30px;
  display: flex;
  width: 100%;
}

.moment-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 51px;
  height: 51px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 22;
}

.moment-btn.swiper-button-prev {
  left: 0;
}

.moment-btn.swiper-button-next {
  right: 0;
}

.moment-swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  max-width: 1060px;
}

.moment-swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}

.moment-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #222;
}

.gallery-ex {
  padding: 1rem;
  text-align: center;
  margin-top: 50px;
  background-color: #f5f5f5;
}

@media (max-width: 769px) {
  .gallery-ex {
    display: none;
  }
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

@media (max-width: 769px) {
  .gallery {
    display: none;
  }
}

.gallery>li {
  display: inline-block;
  width: calc((100% - 1.75rem) / 2);
  height: 600px;
  margin-right: 1.75rem;
  margin-bottom: 1.75rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery>li:nth-child(2n) {
  margin-right: 0;
}

.gallery>li:nth-last-child(1),
.gallery>li:nth-last-child(2) {
  margin-bottom: 0;
}

.gallery .photo {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.gallery .photo>img {
  display: none;
}

.gallery .photo>small {
  display: none;
}

.gallery .photo .bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.7);
}

.gallery .photo02 {
  display: inline-block;
  float: left;
  height: calc((100% - 1.75rem) / 2) !important;
  margin-bottom: 1.75rem;
}

.gallery .photo02:last-child {
  margin-bottom: 0;
}

.gallery .photo03 {
  display: inline-block;
  float: left;
  width: calc((100% - 1.75rem) / 2);
  height: calc((100% - 1.75rem) / 2) !important;
  margin-right: 1.75rem;
  margin-bottom: 1.75rem;
}

.gallery .photo03:last-child {
  margin: 0;
}

.gallery .photo03.gallery .photo03:nth-last-child(2) {
  margin-bottom: 0;
}

.gallery .photo04 {
  width: calc((100% - 1.75rem) / 3 * 2);
  margin-right: 1.75rem;
}

.gallery .photo05 {
  width: calc((100% - 1.75rem) / 3 * 1);
}

.gallery .photo06 {
  height: 300px;
}

.gallery .photo06 .photo03 {
  height: 100% !important;
  margin-bottom: 0;
}

.gallery .gallery .photo07 {
  width: calc((100% - 1.75rem) / 3 * 1);
  height: 600px;
}

.gallery .gallery .photo07 .photo {
  height: calc((100% - 1.75rem) / 2) !important;
  margin-bottom: 1.75rem;
}

.gallery .gallery-image {
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  padding-right: 85px;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 999;
}

.gallery .gallery-image::before,
.gallery .gallery-image::after {
  display: block;
  content: "";
  width: 100%;
  height: 2rem;
}

.gallery .gallery-image .gallery-wrap {
  position: relative;
  max-width: 1280px;
  padding: 2rem;
  background-color: #440105;
}

.gallery .gallery-image .gallery-wrap>img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.gallery .gallery-image .gallery-wrap>small {
  display: block;
  padding: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  word-break: keep-all;
  color: #fff;
}

.gallery .gallery-image .gallery-close {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 5rem;
  background-image: url("../images/close02.png");
  background-size: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}

.gallery .gallery-image .gallery-close span {
  display: none;
}

.gallery .gallery-image.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery .gallery>li .gallery>li:nth-last-child(1),
.gallery>li:nth-last-child(2) {
  margin-bottom: 0;
}

.gallery-modal {
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.gallery-modal.active {
  display: block;
}

.gallery-modal .modal {
  position: fixed;
  left: 50%;
  border-radius: 15px;
  width: calc(100% - 30px);
  max-width: 1000px;
  max-height: calc(100vh - 100px);
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 50px 24px 20px;
  overflow-y: auto;
}

.gallery-modal .modal::-webkit-scrollbar {
  display: none;
}

.gallery-modal .modal p {
  margin-top: 10px;
  line-height: 1.5;
  color: #333;
  font-size: 15px;
}

.gallery-modal .modal .modal-close {
  position: absolute;
  right: 24px;
  top: 17px;
  cursor: pointer;
}

.gallery-modal .modal .modal-close img {
  width: 20px;
  filter: brightness(0);
}

.box01 {
  padding: 30px;
  border: 1px solid #999;
}

@media (max-width: 769px) {
  .box01 {
    padding: 15px;
  }
}

.appendix {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}

@media (max-width: 769px) {
  .appendix {
    margin-bottom: -30px;
  }
}

.appendix .box {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 40px;
  width: calc(50% - 30px);
  margin-bottom: 40px;
}

@media (max-width: 996px) {
  .appendix .box {
    width: calc(50% - 10px);
    padding: 24px;
  }
}

@media (max-width: 769px) {
  .appendix .box {
    width: 100%;
    margin-bottom: 30px;
  }
}

.appendix .box:nth-child(even) {
  margin-left: 60px;
}

@media (max-width: 996px) {
  .appendix .box:nth-child(even) {
    margin-left: 20px;
  }
}

@media (max-width: 769px) {
  .appendix .box:nth-child(even) {
    margin-left: 0;
  }
}

.appendix .box h2 {
  padding-bottom: 10px;
}

.appendix .box h3 {
  font-size: 24px;
  color: #999;
  font-weight: 400;
}

.appendix .box p {
  margin-top: 40px;
  text-align: justify;
}

@media (max-width: 769px) {
  .appendix .box p {
    margin-top: 20px;
  }
}

.youtube {
  padding-bottom: 56.25%;
  position: relative;
}

.youtube iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.shortform {
  padding-bottom: 177.78%;
  position: relative;
}

.shortform iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.underline {
  position: relative;
}

.underline::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.read .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 7rem;
}

.read .radio>label {
  display: inline-block;
  float: left;
  width: 300px;
  max-width: 50%;
  height: 70px;
  font-size: 18px;
  line-height: 68px;
  border: 1px solid #cccccc;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 996px) {
  .read .radio>label {
    font-size: 16px;
  }
}

.read .radio>input[type=radio]:checked+label {
  font-weight: 500;
  border-color: #333;
  background-color: #333;
  color: #fff;
}

.read .radio>input[type=radio]:checked~.radio-type {
  display: none;
}

.read .radio>#radio_flag1:checked~.radio-type.subcribe {
  display: block;
}

.read .radio>#radio_flag2:checked~.radio-type.cancle {
  display: block;
}

.read .radio-type {
  margin-top: 3rem;
  width: 1200px;
}

.read .radio-type .info {
  margin-bottom: 0.75rem;
}

.read .radio-type .info>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.75rem;
}

.read .radio-type .info>li>input {
  display: block;
  width: 100%;
  height: 55px;
  padding: 0 1.25rem;
  margin-right: 1rem;
  font-size: 0.95rem;
  font-size: 18px;
  border: 1px solid #cccccc;
  background-color: #def;
}

@media (max-width: 996px) {
  .read .radio-type .info>li>input {
    font-size: 16px;
  }
}

.read .radio-type .info>li>input:last-child {
  margin-right: 0;
}

.read .radio-type .info>li:last-child {
  margin-bottom: 0;
}

.read .radio-type .detail {
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid #cccccc;
  background-color: #f5f5f5;
}

.read .radio-type .detail>h5 {
  font-size: 24px;
}

@media (max-width: 996px) {
  .read .radio-type .detail>h5 {
    font-size: 20px;
  }
}

.read .radio-type .detail>p {
  margin-top: 1rem;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 996px) {
  .read .radio-type .detail>p {
    font-size: 16px;
  }
}

.read .radio-type .check>label {
  font-size: 16px;
  cursor: pointer;
  vertical-align: text-top;
}

@media (max-width: 996px) {
  .read .radio-type .check>label {
    font-size: 15px;
  }
}

.read .radio-type .btn {
  display: block;
  width: 300px;
  height: 68px;
  margin: 4rem auto 0;
  margin-bottom: calc(var(--tb-gap-xl) * 1.5);
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid #cccccc;
  background-color: #46d;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 996px) {
  .read .radio-type .btn {
    font-size: 16px;
  }
}

.read .radio-type.cancle {
  display: none;
}

.sub .textbox .right .tag01 {
  border: 1px solid #000;
  padding: 8px 25px;
  box-sizing: border-box;
  width: fit-content;
  margin-bottom: 20px;
}

.sub .textbox .right .tag02 {
  border: 1px solid #000;
  padding: 8px 25px;
  box-sizing: border-box;
  width: fit-content;
  border-radius: 30px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.sub .textbox .right .tag03 {
  padding: 8px 25px;
  box-sizing: border-box;
  width: fit-content;
  border-radius: 30px;
  margin-bottom: 20px;
  background-color: #278839;
  color: #fff;
}

.underline02 {
  text-decoration: underline;
  text-underline-position: under;
}

.break-all {
  word-break: break-all !important;
}

.keep-all {
  word-break: keep-all !important;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.grid .img {
  padding-bottom: 0 !important;
}

.num-img {
  position: relative;
}

.num-img .num {
  position: absolute;
  top: 20px;
  left: 10px;
  display: block;
  margin: 0;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 996px) {
  .text-center-md {
    text-align: center !important;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .mx-auto-md {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contents .inner .con-top-wrapper .con.banner {
    width: 100% !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .contents .inner .con-top-wrapper .con.banner a {
    width: 100%;
  }

  .contents .inner .con-top-wrapper .con.banner a img {
    width: 100%;
  }

  .num-img span {
    width: 100%;
  }

  .num-img .num {
    width: fit-content;
  }

  .num-img span img {
    width: 100%;
  }
}

@media (max-width: 769px) {
  .contents .inner .con-top-wrapper .con.banner {
    flex-direction: row;
  }

  .contents .inner .con-top-wrapper .con.banner a {
    width: 50%;
  }
}

.contents .inner .con-top-wrapper .on {
  width: calc(50% - 20px);
  margin-bottom: 30px;
  overflow: hidden;

}

.contents .inner .con-top-wrapper .on .img img {
  transition: 0.4s;
}

.contents .inner .con-top-wrapper .on .img:hover img {
  transform: scale(1.05);
}

/* 2025 추가 */
:root {
  /* gap */
  --side-gap-l: 30px;
  --side-gap-m: 20px;
  --side-gap-s: 10px;

  --tb-gap-xl: 80px; /* top, bottom */
  --tb-gap-l: 80px;
  --tb-gap-m: 50px;
  --tb-gap-s: 25px;
  --tb-gap-xs: 10px;
}


@media screen and (max-width: 640px) {
  :root {
  /* gap */
  --side-gap-l: 20px;
  --side-gap-m: 15px;
  --side-gap-s: 10px;

  --tb-gap-xl: 80px;
  /* top, bottom */
  --tb-gap-l: 50px;
  --tb-gap-m: 30px;
  --tb-gap-s: 20px;
  --tb-gap-xs: 10px;
  }
}
@media screen and (max-width: 475px) {
  :root {
  --outer-gap: 20px;
  --inner-gap: 15px;

  /* gap */
  --side-gap-l: 20px;
  --side-gap-m: 15px;
  --side-gap-s: 10px;

  --tb-gap-xl: 60px;
  /* top, bottom */
  --tb-gap-l: 40px;
  --tb-gap-m: 20px;
  --tb-gap-s: 15px;
  --tb-gap-xs: 10px;
  }
}

.crawling-contents-textbox .swiper-button-next:after,
.crawling-contents-textbox .swiper-rtl .swiper-button-prev:after,
.crawling-contents-textbox .swiper-button-prev:after,
.crawling-contents-textbox .swiper-rtl .swiper-button-next:after {
  content: "";
}

.line {
  width: 100%;
  height: 1px;
  background-color: #999;
}

.indent-num {display: flex; align-items: flex-start;}
.indent-num::before {content: attr(data-indent-num); margin-right: 0.25em; white-space: nowrap; color: inherit; font-weight: inherit;}
.indent-num.underline::before {margin-right: 0;}
.bf-bold::before {font-weight: 600;}

/* break points */
.br1200 {display: none;}
.br1024 {display: none;}
.br768 {display: none;}
.br640 {display: none;}
.br475 {display: none;}
.br375 {display: none;}
.br320 {display: none;}

.flex {display: flex;}
.flex-center {display: flex; justify-content: center; align-items: center;}
.flex-col {display: flex; flex-direction: column;}
.flex-col-center {display: flex; flex-direction: column; justify-content: center; align-items: center;}

.j-center {justify-content: center;}
.j-between {justify-content: space-between;}
.a-center {align-items: center;}

.flow-root {display: flow-root;}
.flow-root .float-l {float: left;}
.flow-root .float-r {float: right;}
.flow-root [class^="float-"] {display: block;}

@media screen and (max-width: 1200px) {
  .float-break-1200 .float-l,
  .float-break-1200 .float-r { float: none; }
  .float-break-1200 [class^="float-"] {margin-inline: auto; margin-bottom: var(--tb-gap-m);}
}

@media screen and (max-width: 1024px) {
  .float-break-1024 .float-l,
  .float-break-1024 .float-r { float: none; }
  .float-break-1024 [class^="float-"] {margin-inline: auto; margin-bottom: var(--tb-gap-m);}
  .float-break-1024 .mb0 {margin-bottom: 0;}
}

@media screen and (max-width: 768px) {
  .float-break-768 .float-l,
  .float-break-768 .float-r { float: none; }
  .float-break-768 [class^="float-"] {margin-inline: auto; margin-bottom: var(--tb-gap-m);}
  .float-break-768 .mb0 {margin-bottom: 0;}
}

@media screen and (max-width: 640px) {
  .float-break-640 .float-l,
  .float-break-640 .float-r { float: none; }
  .float-break-640 [class^="float-"] {margin-inline: auto; margin-bottom: var(--tb-gap-m);}
  .float-break-640 .mb0 {margin-bottom: 0;}
}

@media screen and (max-width: 475px) {
  .float-break-475 .float-l,
  .float-break-475 .float-r { float: none; }
  .float-break-475 [class^="float-"] {margin-inline: auto; margin-bottom: var(--tb-gap-m);}
  .float-break-475 .mb0 {margin-bottom: 0;}
}

@media screen and (max-width: 375px) {
  .float-break-375 .float-l,
  .float-break-375 .float-r { float: none; }
  .float-break-375 [class^="float-"] {margin-inline: auto; margin-bottom: var(--tb-gap-m);}
  .float-break-375 .mb0 {margin-bottom: 0;}
}

@media screen and (max-width: 320px) {
  .float-break-320 .float-l,
  .float-break-320 .float-r { float: none; }
  .float-break-320 [class^="float-"] {margin-inline: auto; margin-bottom: var(--tb-gap-m);}
  .float-break-320 .mb0 {margin-bottom: 0;}
}

.gap30 {gap: 30px;}
.gap20 {gap: 20px;}
.gap10 {gap: 10px;}

.gap-xs {gap: var(--tb-gap-xs);}
.gap-s {gap: var(--tb-gap-s);}
.gap-m {gap: var(--tb-gap-m);}
.gap-l {gap: var(--tb-gap-l);}
.gap-xl {gap: var(--tb-gap-xl);}

.gap-m-xs {gap: var(--tb-gap-m) var(--tb-gap-xs);}
.gap-m-s {gap: var(--tb-gap-m) var(--tb-gap-s);}
.gap-m-m {gap: var(--tb-gap-m) var(--tb-gap-m);}
.gap-m-l {gap: var(--tb-gap-m) var(--tb-gap-l);}
.gap-m-xl {gap: var(--tb-gap-m) var(--tb-gap-xl);}

.ml-l {margin-left: var(--side-gap-l);}
.ml-m {margin-left: var(--side-gap-m);}
.ml-s {margin-left: var(--side-gap-s);}

.mr-l {margin-right: var(--side-gap-l);}
.mr-m {margin-right: var(--side-gap-m);}
.mr-s {margin-right: var(--side-gap-s);}

.mt-xl {margin-top: var(--tb-gap-xl);}
.mt-l {margin-top: var(--tb-gap-l);}
.mt-m {margin-top: var(--tb-gap-m);}
.mt-s {margin-top: var(--tb-gap-s);}
.mt-xs {margin-top: var(--tb-gap-xs);}
.mt-0 {margin-top: 0 !important;}

.mb-xl {margin-bottom: var(--tb-gap-xl);}
.mb-l {margin-bottom: var(--tb-gap-l);}
.mb-m {margin-bottom: var(--tb-gap-m);}
.mb-s {margin-bottom: var(--tb-gap-s);}
.mb-xs {margin-bottom: var(--tb-gap-xs);}
/* padding */
.pl-l {padding-left: var(--side-gap-l);}
.pl-m {padding-left: var(--side-gap-m);}
.pl-s {padding-left: var(--side-gap-s);}

.pr-l {padding-right: var(--side-gap-l);}
.pr-m {padding-right: var(--side-gap-m);}
.pr-s {padding-right: var(--side-gap-s);}

.pt-xl {padding-top: var(--tb-gap-xl);}
.pt-l {padding-top: var(--tb-gap-l);}
.pt-m {padding-top: var(--tb-gap-m);}
.pt-s {padding-top: var(--tb-gap-s);}
.pt-xs {padding-top: var(--tb-gap-xs);}

.pb-xl {padding-bottom: var(--tb-gap-xl);}
.pb-l {padding-bottom: var(--tb-gap-l);}
.pb-m {padding-bottom: var(--tb-gap-m);}
.pb-s {padding-bottom: var(--tb-gap-s);}
.pb-xs {padding-bottom: var(--tb-gap-xs);}

.block {display: block;}

.align-c {align-items: center !important;}

.line-px1 {width: 100%; height: 1px; display: block; background-color: var(--gray30);}

.i-flex {display: inline-flex;}
.i-flex-center {display: inline-flex; justify-content: center; align-items: center;}
.i-flex-col {display: inline-flex; flex-direction: column;}
.i-flex-col-center {display: inline-flex; flex-direction: column; justify-content: center; align-items: center;}

.grid {width: 100%; display: grid; grid-template-columns: repeat(var(--start-fr, 1), 1fr);}
.fr-5 {--start-fr: 5;}
.fr-4 {--start-fr: 4;}
.fr-3 {--start-fr: 3;}
.fr-2 {--start-fr: 2;}

@media screen and (max-width: 1200px) {
  .fr-step1-1200 {grid-template-columns: repeat(calc(var(--start-fr) - 1), 1fr);}
  .fr-step2-1200 {grid-template-columns: repeat(calc(var(--start-fr) - 2), 1fr);}
  .fr-step3-1200 {grid-template-columns: repeat(calc(var(--start-fr) - 3), 1fr);}
}

@media screen and (max-width: 1024px) {
  .fr-step1-1024 {grid-template-columns: repeat(calc(var(--start-fr) - 1), 1fr);}
  .fr-step2-1024 {grid-template-columns: repeat(calc(var(--start-fr) - 2), 1fr);}
  .fr-step3-1024 {grid-template-columns: repeat(calc(var(--start-fr) - 3), 1fr);}
}

@media screen and (max-width: 768px) {
  .fr-step1-768 {grid-template-columns: repeat(calc(var(--start-fr) - 1), 1fr);}
  .fr-step2-768 {grid-template-columns: repeat(calc(var(--start-fr) - 2), 1fr);}
  .fr-step3-768 {grid-template-columns: repeat(calc(var(--start-fr) - 3), 1fr);}
}

@media screen and (max-width: 640px) {
  .fr-step1-640 {grid-template-columns: repeat(calc(var(--start-fr) - 1), 1fr);}
  .fr-step2-640 {grid-template-columns: repeat(calc(var(--start-fr) - 2), 1fr);}
  .fr-step3-640 {grid-template-columns: repeat(calc(var(--start-fr) - 3), 1fr);}
}

@media screen and (max-width: 475px) {
  .fr-step1-475 {grid-template-columns: repeat(calc(var(--start-fr) - 1), 1fr);}
  .fr-step2-475 {grid-template-columns: repeat(calc(var(--start-fr) - 2), 1fr);}
  .fr-step3-475 {grid-template-columns: repeat(calc(var(--start-fr) - 3), 1fr);}
}

@media screen and (max-width: 375px) {
  .fr-step1-375 {grid-template-columns: repeat(calc(var(--start-fr) - 1), 1fr);}
  .fr-step2-375 {grid-template-columns: repeat(calc(var(--start-fr) - 2), 1fr);}
  .fr-step3-375 {grid-template-columns: repeat(calc(var(--start-fr) - 3), 1fr);}
}

@media screen and (max-width: 320px) {
  .fr-step1-320 {grid-template-columns: repeat(calc(var(--start-fr) - 1), 1fr);}
  .fr-step2-320 {grid-template-columns: repeat(calc(var(--start-fr) - 2), 1fr);}
  .fr-step3-320 {grid-template-columns: repeat(calc(var(--start-fr) - 3), 1fr);}
}


@media screen and (max-width: 1200px) {
  .m-break1200 {margin: 0;}
  .p-break1200 {padding: 0;}
  .br1200 {display: block;}
  .br1200-end {display: none;}
  .img-break1200 img {min-width: auto !important;}
  .flex-col-1200 {flex-direction: column !important;}

  .flex-col-1200 > .pr-l,
  .flex-col-1200 > .pr-m,
  .flex-col-1200 > .pr-s {padding-right: 0;}
  .flex-col-1200 > .pl-l,
  .flex-col-1200 > .pl-m,
  .flex-col-1200 > .pl-s {padding-left: 0;}

  .flex-col-1200 > .mr-l,
  .flex-col-1200 > .mr-m,
  .flex-col-1200 > .mr-s {margin-right: 0;}
  .flex-col-1200 > .ml-l,
  .flex-col-1200 > .ml-m,
  .flex-col-1200 > .ml-s {margin-left: 0;}

  .flex-col-1200 .max10,
  .flex-col-1200 .max20,
  .flex-col-1200 .max30,
  .flex-col-1200 .max40,
  .flex-col-1200 .max50,
  .flex-col-1200 .max60,
  .flex-col-1200 .max70,
  .flex-col-1200 .max80,
  .flex-col-1200 .max90 {max-width: 100%;}
}

@media screen and (max-width: 1024px) {
  .m-break1024 {margin: 0;}
  .br1024 {display: block;}
  .br1024-end {display: none;}
  .img-break1024 img {min-width: auto !important;}
  .flex-col-1024 {flex-direction: column !important;}

  .flex-col-1024 > .pr-l,
  .flex-col-1024 > .pr-m,
  .flex-col-1024 > .pr-s {padding-right: 0;}
  .flex-col-1024 > .pl-l,
  .flex-col-1024 > .pl-m,
  .flex-col-1024 > .pl-s {padding-left: 0;}

  .flex-col-1024 > .mr-l,
  .flex-col-1024 > .mr-m,
  .flex-col-1024 > .mr-s {margin-right: 0;}
  .flex-col-1024 > .ml-l,
  .flex-col-1024 > .ml-m,
  .flex-col-1024 > .ml-s {margin-left: 0;}

  .flex-col-1024 .max10,
  .flex-col-1024 .max20,
  .flex-col-1024 .max30,
  .flex-col-1024 .max40,
  .flex-col-1024 .max50,
  .flex-col-1024 .max60,
  .flex-col-1024 .max70,
  .flex-col-1024 .max80,
  .flex-col-1024 .max90 {max-width: 100%;}
}

@media screen and (max-width: 768px) {
  .m-break768 {margin: 0;}
  .p-break768 {padding: 0;}
  .br768 {display: block;}
  .br768-end {display: none;}
  .img-break768 img {min-width: auto !important;}
  .flex-col-768 {flex-direction: column !important;}
  
  .flex-col-768 > .pr-l,
  .flex-col-768 > .pr-m,
  .flex-col-768 > .pr-s {padding-right: 0;}
  .flex-col-768 > .pl-l,
  .flex-col-768 > .pl-m,
  .flex-col-768 > .pl-s {padding-left: 0;}

  .flex-col-768 > .mr-l,
  .flex-col-768 > .mr-m,
  .flex-col-768 > .mr-s {margin-right: 0;}
  .flex-col-768 > .ml-l,
  .flex-col-768 > .ml-m,
  .flex-col-768 > .ml-s {margin-left: 0;}

  .flex-col-768 .max10,
  .flex-col-768 .max20,
  .flex-col-768 .max30,
  .flex-col-768 .max40,
  .flex-col-768 .max50,
  .flex-col-768 .max60,
  .flex-col-768 .max70,
  .flex-col-768 .max80,
  .flex-col-768 .max90 {max-width: 100%;}
}

@media screen and (max-width: 640px) {
  .m-break640 {margin: 0;}
  .p-break640 {padding: 0;}
  .br640 {display: block;}
  .br640-end {display: none;}
  .img-break640 img {min-width: auto !important;}
  .flex-col-640 {flex-direction: column !important;}
  
  .flex-col-640 > .pr-l,
  .flex-col-640 > .pr-m,
  .flex-col-640 > .pr-s {padding-right: 0;}
  .flex-col-640 > .pl-l,
  .flex-col-640 > .pl-m,
  .flex-col-640 > .pl-s {padding-left: 0;}

  .flex-col-640 > .mr-l,
  .flex-col-640 > .mr-m,
  .flex-col-640 > .mr-s {margin-right: 0;}
  .flex-col-640 > .ml-l,
  .flex-col-640 > .ml-m,
  .flex-col-640 > .ml-s {margin-left: 0;}

  .flex-col-640 .max10,
  .flex-col-640 .max20,
  .flex-col-640 .max30,
  .flex-col-640 .max40,
  .flex-col-640 .max50,
  .flex-col-640 .max60,
  .flex-col-640 .max70,
  .flex-col-640 .max80,
  .flex-col-640 .max90 {max-width: 100%;}
}

@media screen and (max-width: 475px) {
  .m-break475 {margin: 0;}
  .p-break475 {padding: 0;}
  .br475 {display: block;}
  .br475-end {display: none;}
  .img-break475 img {min-width: auto !important;}
  .flex-col-475 {flex-direction: column !important;}
  
  .flex-col-475 > .pr-l,
  .flex-col-475 > .pr-m,
  .flex-col-475 > .pr-s {padding-right: 0;}
  .flex-col-475 > .pl-l,
  .flex-col-475 > .pl-m,
  .flex-col-475 > .pl-s {padding-left: 0;}

  .flex-col-475 > .mr-l,
  .flex-col-475 > .mr-m,
  .flex-col-475 > .mr-s {margin-right: 0;}
  .flex-col-475 > .ml-l,
  .flex-col-475 > .ml-m,
  .flex-col-475 > .ml-s {margin-left: 0;}

  .flex-col-475 .max10,
  .flex-col-475 .max20,
  .flex-col-475 .max30,
  .flex-col-475 .max40,
  .flex-col-475 .max50,
  .flex-col-475 .max60,
  .flex-col-475 .max70,
  .flex-col-475 .max80,
  .flex-col-475 .max90 {max-width: 100%;}
}

@media screen and (max-width: 375px) {
  .m-break375 {margin: 0;}
  .p-break375 {padding: 0;}
  .br375 {display: block;}
  .br375-end {display: none;}
  .img-break375 img {min-width: auto !important;}
  .flex-col-375 {flex-direction: column !important;}

  .flex-col-375 > .pr-l,
  .flex-col-375 > .pr-m,
  .flex-col-375 > .pr-s {padding-right: 0;}
  .flex-col-375 > .pl-l,
  .flex-col-375 > .pl-m,
  .flex-col-375 > .pl-s {padding-left: 0;}

  .flex-col-375 > .mr-l,
  .flex-col-375 > .mr-m,
  .flex-col-375 > .mr-s {margin-right: 0;}
  .flex-col-375 > .ml-l,
  .flex-col-375 > .ml-m,
  .flex-col-375 > .ml-s {margin-left: 0;}

  .flex-col-375 .max10,
  .flex-col-375 .max20,
  .flex-col-375 .max30,
  .flex-col-375 .max40,
  .flex-col-375 .max50,
  .flex-col-375 .max60,
  .flex-col-375 .max70,
  .flex-col-375 .max80,
  .flex-col-375 .max90 {max-width: 100%;}
}

@media screen and (max-width: 320px) {
  .m-break320 {margin: 0;}
  .p-break320 {padding: 0;}
  .br320 {display: block;}
  .br320-end {display: none;}
  .img-break320 img {min-width: auto !important;}
  .flex-col-320 {margin: auto; flex-direction: column !important;}

  .flex-col-320 > .pr-l,
  .flex-col-320 > .pr-m,
  .flex-col-320 > .pr-s {padding-right: 0;}
  .flex-col-320 > .pl-l,
  .flex-col-320 > .pl-m,
  .flex-col-320 > .pl-s {padding-left: 0;}

  .flex-col-320 > .mr-l,
  .flex-col-320 > .mr-m,
  .flex-col-320 > .mr-s {margin-right: 0;}
  .flex-col-320 > .ml-l,
  .flex-col-320 > .ml-m,
  .flex-col-320 > .ml-s {margin-left: 0;}

  .flex-col-320 .max10,
  .flex-col-320 .max20,
  .flex-col-320 .max30,
  .flex-col-320 .max40,
  .flex-col-320 .max50,
  .flex-col-320 .max60,
  .flex-col-320 .max70,
  .flex-col-320 .max80,
  .flex-col-320 .max90 {max-width: 100%;}
}

.table-overflow {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

/* table */
table {border-collapse: collapse;}
table .borderless {border: none !important;}

.table-layout-basic,
.table-layout-basic th,
.table-layout-basic td {border: 1px solid #ccc;}
.table-layout-basic th {background-color: #eee;}

.table-layout-basic {width: 100%;}
.table-layout-basic th,
.table-layout-basic td {padding: 15px; text-wrap: balance; word-break: keep-all; line-height: 1.5;}

table .diagonal {
  padding: 30px 10px;
  position: relative;
  background-image: linear-gradient(to left bottom, transparent calc(50% - 1px), var(--text-base), transparent calc(50% + 1px));
  background-size: 120% 120%;
  background-position: center;
}
table .diagonal .left,
table .diagonal .right {position: absolute;}
table .diagonal .left {bottom: 10px; left: 10px;}
table .diagonal .right {top: 10px; right: 10px;}

table .bg-pattern-diagonal {
  background: repeating-linear-gradient(-45deg, #eee, 2px, #fff 1px, #fff 7px);
}

@media screen and (max-width: 475px) {
  .table-layout-basic {font-size: 14px;}
}

/* ellipsis */
.t-ellipsis {overflow: hidden; display: inline-block !important; text-overflow: ellipsis; white-space: nowrap;}
.t-ellipsis-line2 {overflow: hidden; text-overflow: ellipsis; display: inline-block; display: -webkit-box !important; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.t-ellipsis-line3 {overflow: hidden; text-overflow: ellipsis; display: inline-block; display: -webkit-box !important; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.t-ellipsis-line4 {overflow: hidden; text-overflow: ellipsis; display: inline-block; display: -webkit-box !important; -webkit-line-clamp: 4; -webkit-box-orient: vertical;}
.t-ellipsis-line5 {overflow: hidden; text-overflow: ellipsis; display: inline-block; display: -webkit-box !important; -webkit-line-clamp: 5; -webkit-box-orient: vertical;}

.gray-box {
  width: 100%;
  padding: 30px;
  display: block !important;
  background-color: #f2f2f2;
}

/* 메인페이지 */
:root {
  --book-cover-size: 300px;
  --visual-contain-gap: 60px;
}

.visual-wrap {
  display: flex;
  gap: var(--visual-contain-gap);
}

.visual-wrap .visual-swiper-contain {
  flex: 1;

}

.bf-v-line {
  display: flex !important;
  align-items: stretch;
  gap: 0.3em;
}

.bf-v-line::before {
  content: "";
  width: 0.3em;
  display: block;
  background-color: #5789c6;
}

.main-title {
  margin-bottom: 0.7em;
  font-size: 32px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.main-title.br640 {
  display: none !important;
}

.main-visual {
  padding: 40px 0 60px;
}

.cover {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}

.main-visual .visual-swiper-contain {
  width: calc(100% - var(--book-cover-size) - var(--visual-contain-gap));
  position: relative;
}

.main-visual .visual-swiper-contain .filter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 10%, transparent);
  z-index: 20;
}

.main-visual .visual-swiper-contain .swiper {
  height: 100%;
}

.main-visual .visual-swiper-contain .swiper-button-next:after,
.main-visual .visual-swiper-contain .swiper-rtl .swiper-button-prev:after,
.main-visual .visual-swiper-contain .swiper-button-prev:after,
.swiper-rtl .main-visual .visual-swiper-contain .swiper-button-next:after {
  content: "";
  width: 60px;
  aspect-ratio: 1 / 1;
  display: block;
}

.main-visual .visual-swiper-contain .swiper-button-next,
.main-visual .visual-swiper-contain .swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 25;
}

.main-visual .visual-swiper-contain .swiper-button-next img,
.main-visual .visual-swiper-contain .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.main-visual .visual-swiper-contain .inner-cont {
  width: 100%;
  height: 100%;
  padding: 60px;
  padding-bottom: 100px;
  display: flex;
  justify-content: end;
  flex-direction: column;
  position: relative;
  z-index: 25;
  color: #fff;
}

.main-visual .visual-swiper-contain .inner-cont h3 {
  margin-bottom: 0.5em;
  font-size: 32px;
  line-height: 1.5;
  word-break: keep-all;
  transform: translateX(-5%);
}

.main-visual .visual-swiper-contain .inner-cont p {
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
  text-align: justify;
  word-break: keep-all;
  transform: translateX(5%);
}

.main-visual .visual-swiper-contain .inner-cont .tag {
  margin-bottom: 2em;
  border-radius: 0;
  background-color: var(--header-btn-color);
}

.main-visual .visual-swiper-contain .inner-cont h3,
.main-visual .visual-swiper-contain .inner-cont p,
.main-visual .visual-swiper-contain .inner-cont .tag {
  opacity: 0;
  transition: all 1.5s .2s;
}

.main-visual .visual-swiper-contain .swiper-slide-active .inner-cont h3,
.main-visual .visual-swiper-contain .swiper-slide-active .inner-cont p,
.main-visual .visual-swiper-contain .swiper-slide-active .inner-cont .tag {
  opacity: 1;
  transform: translate(0);
}

.main-visual .visual-swiper-contain .swiper-button-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.main-visual .visual-swiper-contain .swiper-button-next {
  right: 0;
  transform: translate(50%, -50%);
}

.main-visual .visual-swiper-contain .swiper-slide {
  width: 100% !important;
}

.main-visual .visual-swiper-contain .swiper-slide img  {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-visual .visual-swiper-contain .swiper-pagination {
  max-width: 35%;
  left: 60px;
  bottom: 30px;
  --swiper-theme-color: #fff;
  display: flex;
}

.main-visual .visual-swiper-contain .swiper-pagination-bullet {
  width: 20px;
  display: block;
  border-radius: 0;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.8);
}

.main-visual .visual-vol-contain {
  width: var(--book-cover-size);
  min-width: var(--book-cover-size);
}

.main-visual .book-cover {
  margin-bottom: 25px;
}

.main-visual .tag {
  width: max-content;
  margin-bottom: 1em;
  padding: 10px 20px;
  background-color: #00b9b4;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 20vw;
  display: block;
}

.main-visual .tag + h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.main-visual .tag ~ h4 {
  margin-bottom: 1.5em;
  font-size: 18px;
  font-weight: 800;
  color: #9a9a9a;
}

.main-visual .btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.main-visual .btn-wrap > a {
  width: 100%;
  display: block;
  padding: 15px;
  text-align: center;
  border: 1px solid #9a9a9a;
  font-size: 17px;
  color: #9a9a9a;
  letter-spacing: 0.5px;
  transition:  all .2s;
}

.main-visual .btn-wrap > a:hover {
  background-color: #9a9a9a;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  :root {
    --visual-contain-gap: 40px;
    --book-cover-size: 200px;
  }

  .main-title {
    font-size: 26px;
  }

  .main-visual .tag {
    font-size: 15px;
  }

  .main-visual .tag + h3 {
    font-size: 22px;
  }

  .main-visual .btn-wrap > a {
    font-size: 16px;
  }

  .main-visual .visual-swiper-contain .swiper-button-next:after, .main-visual .visual-swiper-contain .swiper-rtl .swiper-button-prev:after, .main-visual .visual-swiper-contain .swiper-button-prev:after, .swiper-rtl .main-visual .visual-swiper-contain .swiper-button-next:after {
    width: 45px;
  }

  .main-visual .visual-swiper-contain .inner-cont h3 {
    font-size: 28px;
  }

  .main-visual .visual-swiper-contain .inner-cont p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .main-visual {
    padding: 60px 0;
  }

  /* .main-visual .visual-swiper-contain {
    width: 100%;
  } */

  .main-visual .visual-swiper-contain .swiper-pagination {
    max-width: calc(100% - 120px);
  }

  .main-visual .visual-swiper-contain .swiper-slide {
    aspect-ratio: 1.5 / 1;
  }
}

@media screen and (max-width: 768px) {
  .main-visual .visual-swiper-contain .inner-cont {
    padding: 40px;
    padding-bottom: 60px;
  }

  .main-visual .visual-swiper-contain .swiper-pagination {
    max-width: calc(100% - 80px);
    left: 40px;
    bottom: 20px;
  }

  .main-visual .visual-swiper-contain .swiper-slide {
    aspect-ratio: 1 / 1;
  }

  .main-visual .visual-swiper-contain .inner-cont h3 {
    font-size: 22px;
  }

  .main-visual .visual-swiper-contain .inner-cont p {
    font-size: 15px;
    text-align: left;
  }
}

@media screen and (max-width: 640px) {
  :root {
    --book-cover-size: 360px;
  }

  .visual-wrap {
    flex-direction: column-reverse;
    gap: 0;
  }

  .main-visual .visual-swiper-contain {
    width: 100%;
  }

  .main-visual .visual-vol-contain {
    width: 100%;
    min-width: auto;
    margin-bottom: var(--visual-contain-gap);
  }

  .main-visual .book-cover {
    margin-inline: auto;
  }
  

  .main-title.br640-end {
    display: none !important;
  }

  .main-title.br640 {
    display: flex !important;
  }
}

@media screen and (max-width: 475px) {
  .main-visual {
    padding: 40px 5px;
  }

  .main-visual .visual-swiper-contain .swiper-button-prev {
    transform: translate(-30%, -50%);
  }
  .main-visual .visual-swiper-contain .swiper-button-next {
    transform: translate(30%, -50%);
  }

  .main-visual .visual-swiper-contain .swiper-slide {
    aspect-ratio: 1 / 1.7;
  }

  .main-title {
    font-size: 22px;
  }

  .main-visual .visual-swiper-contain .inner-cont {
    padding: 20px;
    padding-bottom: 60px;
  }

  .main-visual .visual-swiper-contain .swiper-pagination {
    max-width: calc(100% - 40px);
    left: 20px;
  }
}

@media screen and (max-width: 375px) {
  .main-visual .visual-swiper-contain .swiper-button-next, .main-visual .visual-swiper-contain .swiper-button-prev {
    top: 45%;
  }

  .main-visual .visual-swiper-contain .swiper-slide {
    aspect-ratio: 1 / 1.8;
  }

  .main-visual .visual-swiper-contain .inner-cont h3 {
    font-size: 20px;
  }

    .main-visual .visual-swiper-contain .swiper-button-next:after,
    .main-visual .visual-swiper-contain .swiper-rtl .swiper-button-prev:after,
    .main-visual .visual-swiper-contain .swiper-button-prev:after,
    .swiper-rtl .main-visual .visual-swiper-contain .swiper-button-next:after {
      width: 40px;
    }

  .main-visual .visual-swiper-contain .inner-cont .tag {
    margin-bottom: 1em;
  }

  .main-visual .visual-swiper-contain .inner-cont p {
    font-size: 14px;
  }
}

.main-contents {
  padding: 60px 0 120px 0;
  overflow-x: hidden;
}

.main-contents .content-wrap {
  display: flex;
  gap: 30px;
}

.main-contents .title-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.main-contents .title-box .main-title {
  margin-bottom: 0;
}

.main-contents .arrow-wrap {
  display: flex;
  gap: 8px;
}

.main-contents .swiper-button-next:after,
.main-contents .swiper-rtl .swiper-button-prev:after,
.main-contents .swiper-button-prev:after,
.main-contents .swiper-button-next:after {
  content: "";
  width: 60px;
  aspect-ratio: 1 / 1;
  display: block;
}

.main-contents .swiper-button-next img,
.main-contents .swiper-button-prev img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.main-contents .content-main-contain {
  width: 38%;
  position: relative;
}

.main-contents .content-main-contain .filter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 10%, transparent);
  z-index: 20;
}

.main-contents .content-main-contain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-contents .content-main-contain .inner-cont {
  width: 100%;
  height: 100%;
  padding-block: 80px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  z-index: 25;
  gap: 20px;
}

.main-contents .content-main-contain .inner-cont .tag {
  width: max-content;
  padding: 10px 20px;
  padding-left: 40px;
  background-color: var(--header-btn-color);
}

.main-contents .content-main-contain .inner-cont .title {
  font-size: 32px;
  font-weight: 800;
  padding-inline: 40px;
  line-height: 1.5;
  word-break: keep-all;
}

.main-contents .content-main-contain .inner-cont .subtitle {
  padding-inline: 40px;
  font-size: 20px;
  line-height: 1.5;
}

.main-contents .content-list-contain {
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  /* align-items: start; */
}

.main-contents .content-swiper-contain {
  width: 100%;
  position: relative;
}

.main-contents .content-swiper-contain .arrow-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 15px));
  z-index: 40;
  pointer-events: none;
}

.main-contents .content-swiper-contain .arrow-wrap .swiper-button-next {
  transform: translateX(50%);
  pointer-events: all;
}
.main-contents .content-swiper-contain .arrow-wrap .swiper-button-prev {
  transform: translateX(-50%);
  pointer-events: all;
}

.main-contents .content-swiper-contain .filter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all .35s;
}

.main-contents .content-swiper-contain .inner-cont {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  border: 8px solid var(--header-btn-color);
  opacity: 0;
  transition: opacity .35s;
}

.main-contents .content-swiper-contain .inner-cont .tag {
  padding: 5px 10px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-size: 14px;
  display: block;
  background-color: var(--header-btn-color);
  color: #fff;
}

.main-contents .content-swiper-contain .inner-cont .title {
  word-break: keep-all;
  text-wrap: balance;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
}

.main-contents .content-swiper-contain .swiper-pagination {
  position: relative;
  top: auto;
  bottom: 0;
  display: flex;
  margin-top: 20px;
  align-items: center;
}

.main-contents .content-swiper-contain .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  flex: 1;
  border-radius: 0;
  height: 4px;
}

.main-contents .content-swiper-contain .swiper-slide:hover .filter,
.main-contents .content-swiper-contain .swiper-slide-active .filter {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.main-contents .content-swiper-contain .swiper-slide:hover .inner-cont,
.main-contents .content-swiper-contain .swiper-slide-active .inner-cont {
  opacity: 1;
}

.main-contents .content-swiper-contain .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5689c8;
  height: 8px;
}

.main-contents .content-swiper-contain .swiper {
  width: 100%;
}

.main-contents .content-banner-contain ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.main-contents .content-banner-contain ul li {
  position: relative;
}

.main-contents .content-swiper-contain .arrow-wrap {
  display: none;
}

@media screen and (max-width: 1200px) {
  .main-contents .content-main-contain {
    width: 45%;
  }
  .main-contents .content-list-contain {
    width: 55%;
  }

  .main-contents .content-main-contain .inner-cont {
    padding-block: 50px;
  }
  .main-contents .content-main-contain .inner-cont .tag {
    padding-left: 20px;
  }
  .main-contents .content-main-contain .inner-cont .title {
    font-size: 26px;
    padding-inline: 20px;
  }

  .main-contents .content-main-contain .inner-cont .subtitle {
    font-size: 18px;
    padding-inline: 20px;
  }

  .main-contents .content-banner-contain ul {
    gap: 20px;
  }

  .main-contents .swiper-button-next:after,
  .main-contents .swiper-rtl .swiper-button-prev:after,
  .main-contents .swiper-button-prev:after,
  .main-contents .swiper-button-next:after {
    width: 45px;
  }
}

@media screen and (max-width: 1024px) {
  .main-contents .content-wrap {
    flex-direction: column;
  }

  .main-contents .title-box .arrow-wrap {
    display: none;
  }

  .main-contents .content-swiper-contain .arrow-wrap {
    display: flex;
  }

  .main-contents .content-main-contain {
    width: 100%;
  }

  .main-contents .content-list-contain {
    width: 100%;
    overflow: visible;
  }

  .main-contents .content-banner-contain {
    margin-top: 20px;
  }
}

@media screen and (max-width: 475px) {
  .main-contents {
    padding-inline: 5px;
  }

  .main-contents .content-main-contain .inner-cont .title {
    font-size: 22px;
  }

  .main-contents .content-banner-contain ul {
    grid-template-columns: 1fr;
  }

  .main-contents .content-banner-contain ul li img {
    width: 100%;
  }

  .main-contents .content-swiper-contain .swiper {
    overflow: visible;
  }

  .main-contents .content-swiper-contain .arrow-wrap .swiper-button-next {
    transform: translate(calc(-50% - 5px));
  }
  .main-contents .content-swiper-contain .arrow-wrap .swiper-button-prev {
    transform: translate(calc(50% + 5px));
  }
}