@charset "UTF-8";
:root {
  --color-orange: #faa74a;
  --color-mint: #00b6ad;
}

.font25 {
  --fontsize: 2.5rem;
  font-size: var(--fontsize);
}

.font28 {
  --fontsize: 2.8rem;
  font-size: var(--fontsize);
}

.font34 {
  --fontsize: 3.4rem;
  font-size: var(--fontsize);
}

.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

#sv {
  width: 100%;
  height: 600px;
  position: relative;
}

#sv .subVisual,
#sv .bg,
#sv .flexBox {
  width: 100%;
  height: 100%;
}

#sv .bg {
  z-index: -2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#sv .bg::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#sv.sv01 .bg {
  background-image: url("/img/sub/subVisual1.jpg");
}

#sv.sv02 .bg {
  background-image: url("/img/sub/subVisual2.jpg");
}

#sv.sv03 .bg {
  background-image: url("/img/sub/subVisual3.jpg");
}

#sv.sv04 .bg {
  background-image: url("/img/sub/subVisual4.jpg");
}

#sv.sv05 .bg {
  background-image: url("/img/sub/subVisual5.jpg");
}

#sv.sv06 .bg {
  background-image: url("/img/sub/subVisual6.jpg");
}

#sv .title,
#sv .lnbBox {
  margin: auto 0 0;
}

#sv .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
  text-align: center;
}

#sv h2,
#sv .path {
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

#sv h2 {
  color: #ffffff;
  font-weight: 700;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

#sv .path li,
#sv .path li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sv .path {
  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;
}

#sv .path li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

#sv .path li:not(:last-child)::after {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  background: url("/img/sub/pathArrow.png") no-repeat center/cover;
  margin: 0 14px;
}

#sv .path i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
}

#sv .lnbBox {
  width: 100%;
  height: 70px;
  background: #ffffff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#sv #lnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

#sv #lnb li,
#sv #lnb li a {
  width: 100%;
  height: 100%;
}

#sv #lnb li {
  position: relative;
}

#sv #lnb li:not(:last-child)::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -1.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#sv #lnb li a {
  color: #333333;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.2941;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
}

#sv #lnb li a .simpleBus {
  width: 260px;
}

#sv #lnb li:hover a, #sv #lnb li.on a {
  color: var(--color-orange);
  font-weight: 500;
}

#sv.on .bg::before {
  opacity: 0;
  width: 100%;
  height: 100%;
}

#sv.on h2,
#sv.on .path {
  opacity: 1;
}

#sv.on h2 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#sv.on .path {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.paddingBox {
  padding: 140px 0;
}

.paddingBox.paddingTopX {
  padding: 0 0 140px;
}

.paddingBox.paddingBottomX {
  padding: 140px 0 0;
}

.marginTop60 {
  margin-top: 60px;
}
.marginTop80 {
  margin-top: 80px;
}
.marginTop90 {
  margin-top: 90px;
}

.centerTop60 {
  margin: 60px auto 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.rightTop40 {
  margin: 40px 0 0 auto;
}

.backgroundColor {
  position: relative;
}

.backgroundColor::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f9f9f9;
  z-index: -2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.subPage {
  max-width: 100%;
  overflow-x: hidden;
}

.subPage h2,
.subPage h3 {
  color: #222222;
  font-weight: 600;
}

.paddingBox {
  padding: 150px 0;
}

.subFlexRow,
.subFlexColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subFlexRow > h2,
.subFlexRow > h3 {
  width: 100%;
  line-height: 1.26;
}

.subFlexRow > *:last-child {
  width: 100%;
  max-width: 78.5715%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.subFlexColumn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px 0;
}

.subFlexColumn.gap140 {
  gap: 140px 0;
}

.tabTitle {
  height: 60px;
  gap: 0 10px;
  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;
}

.tabTitle * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.tabTitle li {
  width: 100%;
  max-width: 400px;
  height: 100%;
}

.tabTitle li a,
.tabTitle li button {
  color: #999999;
  font-size: 1.7rem;
  width: 100%;
  height: 100%;
  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;
}

.tabTitle li:hover, .tabTitle li.on {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.tabTitle li:hover a,
.tabTitle li:hover button, .tabTitle li.on a,
.tabTitle li.on button {
  color: #ffffff;
  font-weight: 600;
}

.topTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px 0;
}

.topTitle > p {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 300;
}

.topTitle span {
  line-height: 1.3;
}

.textCenter {
  text-align: center;
}

.dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  line-height: 1.2;
}

.dot::before {
  content: "·";
  font-weight: 700;
}

.dot.orange::before {
  color: var(--color-orange);
}

.dot.mint::before {
  color: var(--color-mint);
}

hr.line {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  border: none;
}

.smallTitle {
  color: #333333;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 35px;
}

.infoText {
  margin: 0 0 55px;
}

.infoText * {
  color: #333333;
}

.infoText h5 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 20px;
}

.infoText p {
  font-weight: 300;
  line-height: 1.75;
}

.plusPoint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}

.plusPoint::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("/img/svg/plus.svg") no-repeat center/100% 100%;
}

.pageInfo .dlBox {
  gap: 34px 0;
}

.pageInfo dl dt {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 20px;
}

.pageInfo .pBox {
  gap: 10px 0;
}

.tagBox {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tagBox.gap10 {
  gap: 10px;
}

.tagBox.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tag {
  height: 35px;
  background: #f0f0f0;
  border-radius: 17.5px;
  color: #666666;
  font-size: 1.4rem;
  white-space: nowrap;
  padding: 0 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
}

.tag.big {
  width: auto;
  height: 45px;
  border-radius: 22.5px;
  font-size: 1.5rem;
  padding: 0 35px;
}

.tag.border {
  background: #ffffff;
}

.tag.color {
  background: var(--color-orange);
  color: #ffffff;
}

table {
  border-top: 1px solid #e0e0e0;
}

table th,
table td {
  border-bottom: 1px solid #e0e0e0;
}

table th {
  background: #f9f9f9;
  color: #333333;
  font-weight: 400;
}

table td {
  color: #555555;
  font-size: 1.5rem;
  font-weight: 300;
}

table.typeList th,
table.typeList td {
  min-height: 40px;
  padding: 14px 10px;
}

table.typeList th:not(:last-child),
table.typeList td:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}

table.typeList th {
  font-size: 1.5rem;
}

table.typeList td {
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
}

table.typeList .link {
  color: var(--color-orange);
  font-size: 1.4rem;
}

table.typeForm th, table.typeResult th {
  font-size: 1.7rem;
}

table.typeForm td, table.typeResult td {
  font-size: 1.5rem;
}

table.typeForm th,
table.typeForm td {
  height: 60px;
}

table.typeForm th em {
  display: inline-block;
  color: var(--color-orange);
  margin: 0 3px 0 0;
}

table.typeForm td {
  padding: 10px 20px;
}

table.typeForm td > div {
  width: 100%;
  height: 100%;
}

table.typeForm input[type=text],
table.typeForm input[type=password],
table.typeForm select,
table.typeForm textarea {
  font-size: 1.5rem;
  font-weight: 300;
  width: 100%;
  height: 100%;
}

table.typeForm input[type=text],
table.typeForm input[type=password],
table.typeForm select {
  padding: 0 20px;
}

table.typeForm textarea {
  padding: 20px;
}

table.typeForm textarea::placeholder {
  line-height: 1.4;
}

table.typeForm .flexBox {
  gap: 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table.typeForm .max400,
table.typeForm .applicants {
  gap: 0 10px;
}

table.typeForm .max400 {
  max-width: 400px;
}

table.typeForm .applicants input[type=text] {
  max-width: 116px;
}

table.typeForm .inputRegion {
  gap: 0 30px;
}

table.typeForm .inputRegion div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table.typeForm .inputRegion select {
  width: 400px;
}

table.typeForm .inputFile > * {
  height: 100%;
}

table.typeForm .inputFile label {
  width: 100px;
  background: #f9f9f9;
  position: relative;
  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;
}

table.typeForm .inputFile input[type=file] {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

table.typeForm .inputFile span {
  width: 300px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table.typeForm .inputContent {
  height: 100%;
  height: 130px;
}

table.typeForm .note {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

table.typeResult th {
  height: 60px;
}

table.typeResult td {
  line-height: 1.2;
  text-align: center;
  padding: 14px 20px;
}

table.typeResult td.left {
  text-align: left;
}

.grayBox {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f9f9f9;
  text-align: center;
  padding: 55px 50px;
  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;
}

.grayBox h4 {
  color: #333333;
}

.grayBox p {
  color: #555555;
  font-size: 1.8rem;
  font-weight: 300;
}

.underline {
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.underline::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: rgba(250, 167, 74, 0.3);
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.passwordPopup {
  min-width: 320px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

.passwordPopup .inner {
  background: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  padding: 20px 0;
}

.passwordPopup .top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.passwordPopup .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
  color: #555555;
  text-align: center;
  padding: 30px 20px 20px;
}

.passwordPopup input {
  width: 100%;
  height: 40px;
  padding: 0 10px;
}

.passwordPopup .buttonBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 20px;
}

.passwordPopup button {
  padding: 10px 14px;
  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;
}

.passwordPopup .close {
  background: #f0f0f0;
}

.passwordPopup .check {
  background: var(--color-orange);
  color: #ffffff;
}

.noText {
  width: 100%;
  background: #f8f8f8;
  border-radius: 10px;
  color: #aaaaaa;
  font-size: 1.8rem;
  padding: 60px 20px;
  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;
}

#subContents .greetings * {
  color: #333333;
}

#subContents .greetings .itemBox {
  gap: 0 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .greetings .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}

#subContents .greetings h3 {
  line-height: 1.3714;
}

#subContents .greetings h3 span {
  display: inline-block;
  -webkit-transform: translate(0.2em, -0.3em);
          transform: translate(0.2em, -0.3em);
}

#subContents .greetings .pBox {
  gap: 20px 0;
}

#subContents .greetings .pBox .sign {
  display: flex;
  align-items: center;
  gap: 20px;
}
#subContents .greetings .pBox .sign img {
  height: 40px;
  display: flex;
}
#subContents .greetings p {
  font-weight: 300;
  line-height: 1.7777;
}

#subContents .greetings p b {
  font-weight: 500;
}

#subContents .brand .br768,
#subContents .brand .br640 {
  display: none;
}

#subContents .brand h3 {
  font-weight: 300;
  line-height: 1.2;
}

#subContents .brand h3 em {
  font-weight: 600;
}

#subContents .brand .mint {
  color: var(--color-mint);
}

#subContents .brand .orange {
  color: var(--color-orange);
}

#subContents .brand .circleBox,
#subContents .brand .inner,
#subContents .brand .logo {
  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;
}

#subContents .brand .circle,
#subContents .brand .inner {
  border-radius: 50%;
}

#subContents .brand .circleBox {
  margin: 50px 0 0;
}

#subContents .brand .circle {
  width: 21.428%;
  background: rgba(250, 167, 74, 0.1);
  padding: 10.714% 0;
  position: relative;
}

#subContents .brand .center {
  width: 30.714%;
  background: rgba(250, 167, 74, 0.3);
  padding: 15.357% 0;
}

#subContents .brand .center .inner {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  gap: 40px 0;
  background: #ffffff;
}

#subContents .brand .center .logo {
  width: 220px;
  height: auto;
}

#subContents .brand .center p {
  font-size: 1.8rem;
  font-weight: 500;
}

#subContents .brand .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .brand .logo {
  width: 100%;
  height: 80px;
}

#subContents .brand .line {
  display: block;
  width: 110px;
  height: 11px;
  background: transparent url("/img/common/orangeDot.png") repeat left top;
}

#subContents .brand p {
  color: #333333;
  line-height: 1.625;
}

/* 브랜드 소개 추가 (2025-02-11) */
#subContents .brand .logoBox,
#subContents .brand .flexBox dl{
	width: calc((100% - 40px) / 3);
}

#subContents .brand .logoBox{
	padding: 0 30px;
	margin: 0 auto;
	position: relative;
}

#subContents .brand .logoBox::before,
#subContents .brand .logoBox::after{
	content: "";
	width: 1px;
	height: 150%;
	border-right: 4px dotted var(--color-orange);
	position: absolute;
	bottom: 0;
	z-index: -1;
	transform-origin: top;
}

#subContents .brand .logoBox::before{
	left: 50%;
	transform: translateY(70%) rotate(60deg);
}

#subContents .brand .logoBox::after{
	right: 50%;
	transform: translateY(70%) rotate(-60deg);
}

#subContents .brand .logoBox .cc{
	position: relative;
	margin: 60px 0 70px;
}

#subContents .brand .logoBox .cc::before{
	content: "";
	display: block;
	padding-bottom: calc(100% - 26px);
	background: #FFF;
	border: 13px solid rgba(250, 168, 75, 0.3);
	border-radius: 50%;
	box-sizing: border-box;
}

#subContents .brand .logoBox .cc::after{
	content: "";
	width: 1px;
	height: 70px;
	border-right: 4px dotted var(--color-orange);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateY(100%);
}

#subContents .brand .logoBox img{
	width: 180px;
	height: auto;
}

#subContents .brand .logoBox .text{  
	font-size: 1.8rem;
	font-weight: 500;
	color: #333;
	letter-spacing: -0.02em;
	text-align: center;
	padding: 0 30px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 10;
	transform: translateY(-50%);
}

#subContents .brand .logoBox .text p{
	margin-top: 40px;
}

#subContents .brand .flexBox{
	flex-wrap: wrap;
	gap: 20px;
}
#subContents .brand .flexBox dl{
	background: #FEF5EB;
	border-radius: 20px;
	text-align: center;
	padding: 40px;
	position: relative;
}

#subContents .brand .flexBox dl .img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	padding: 10px 0;
	margin-bottom: 20px;
}

#subContents .brand .flexBox dl .img.small{
	padding: 20px 0;
}

#subContents .brand .flexBox dl dt{
	font-size: 1.8rem;
	font-weight: 700;
	color: #333;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}
#subContents .brand .flexBox dl dt p{
	display: inline-block;
	line-height: 1.3;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-orange);
}

#subContents .brand .flexBox dl dd{
	font-weight: 500;
	color: #555;
	letter-spacing: -0.02em;
	line-height: 1.5;
}

#subContents .ci .tabTitle {
  width: 100%;
  max-width: 78.5715%;
  margin: 0 0 90px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .ci .gridBg {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #f8f8f8), color-stop(10%, rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, left bottom, color-stop(10%, #f8f8f8), color-stop(10%, rgba(0, 0, 0, 0)));
  background-image: linear-gradient(90deg, #f8f8f8 10%, rgba(0, 0, 0, 0) 10%), linear-gradient(#f8f8f8 10%, rgba(0, 0, 0, 0) 10%);
  background-size: 10px 10px;
}

#subContents .ci .introduce .plus,
#subContents .ci .introduce .plus ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .ci .introduce .plus ul li:not(.plusIcon),
#subContents .ci .introduce .plus .logo {
  height: 330px;
}

#subContents .ci .introduce .plus {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#subContents .ci .introduce .plus ul,
#subContents .ci .introduce .plus .point {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .ci .introduce .plus ul li {
  width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 50px 20px;
}

#subContents .ci .introduce .plus ul .img {
  height: 74px;
  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;
}

#subContents .ci .introduce .plus dl dt {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 24px 0 20px;
  position: relative;
}

#subContents .ci .introduce .plus dl dt::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: var(--color-orange);
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#subContents .ci .introduce .plus dl dd {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5333;
}

#subContents .ci .introduce .plus .plusIcon {
  width: 36px;
  height: 36px;
  background: var(--color-orange);
  border-radius: 50%;
  color: #ffffff;
  padding: 0;
  margin: 0 -14px;
  position: relative;
  z-index: 1;
  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;
}

#subContents .ci .introduce .plus .point {
  margin: 0 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .ci .introduce .plus .point span {
  display: block;
  background: var(--color-orange);
}

#subContents .ci .introduce .plus .point span.line {
  width: 60px;
  height: 1px;
}

#subContents .ci .introduce .plus .point span.circle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

#subContents .ci .introduce .plus .logo,
#subContents .ci .introduce .plus .logo p {
  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;
}

#subContents .ci .introduce .plus .logo {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
  padding: 20px;
}

#subContents .ci .introduce .plus .logo p {
  width: 100%;
  max-width: 280px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 12px 10px;
}

#subContents .ci .introduce .slogan {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px 0;
  padding: 85px 20px;
  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;
}

#subContents .ci .introduce .slogan p {
  color: #333333;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
}

#subContents .ci .introduce .slogan p br {
  display: none;
}

#subContents .ci .introduce .rule ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  padding: 40px 0;
}

#subContents .ci .introduce .rule ul li:nth-child(2) {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

#subContents .ci .introduce .rule .color,
#subContents .ci .introduce .rule dl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .ci .introduce .rule dl,
#subContents .ci .introduce .rule p {
  padding: 15px 0 0;
}

#subContents .ci .introduce .rule .color {
  width: 100px;
  height: 100px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  font-weight: 600;
  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;
}

#subContents .ci .introduce .rule .orange {
  background: var(--color-orange);
}

#subContents .ci .introduce .rule .mint {
  background: #00b3ab;
}

#subContents .ci .introduce .rule .brown {
  background: #5a4b42;
}

#subContents .ci .introduce .rule dl dt,
#subContents .ci .introduce .rule p {
  color: #333333;
}

#subContents .ci .introduce .rule dl dt {
  font-weight: 500;
  margin: 0 0 16px;
}

#subContents .ci .introduce .rule dl dd {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5333;
}

#subContents .ci .introduce .rule p {
  width: 64.55%;
  line-height: 1.75;
  margin: 0 0 0 auto;
}

#subContents .ci .download .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}

#subContents .ci .download .item {
  width: 100%;
  position: relative;
}

#subContents .ci .download .item > p {
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#subContents .ci .download .gridBg {
  height: 300px;
  position: relative;
  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;
}

#subContents .ci .download .gridBg .img {
  width: 50%;
  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;
}

#subContents .ci .download hr {
  width: 1px;
  height: 130px;
  background: var(--color-mint);
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .ci .download ul {
  gap: 0 5px;
  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;
}

#subContents .ci .download ul * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .ci .download ul li {
  width: 200px;
  height: 50px;
  background: #f5f5f5;
}

#subContents .ci .download ul li a {
  color: #666666;
  font-size: 1.5rem;
  width: 100%;
  height: 100%;
  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;
}

#subContents .ci .download ul li:hover {
  background: var(--color-orange);
}

#subContents .ci .download ul li:hover a {
  color: #ffffff;
}

#subContents .organization picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .promotion .law span {
  display: block;
  color: #555555;
  line-height: 1.2;
  margin: 5px 0 0;
}

#subContents .promotion .necessity .itemBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
}

#subContents .promotion .necessity .item {
  height: 380px;
  background: #ffffff;
  padding: 45px 0 0;
}

#subContents .promotion .necessity .icon {
  height: 78px;
  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;
}

#subContents .promotion .necessity dl,
#subContents .promotion .necessity dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .promotion .necessity dl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
  margin: 20px auto 0;
}

#subContents .promotion .necessity dl dt {
  gap: 0 8px;
}

#subContents .promotion .necessity dl dt span {
  color: var(--color-orange);
  font-size: 6.2rem;
  font-weight: 600;
}

#subContents .promotion .necessity dl dt h6 {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.4;
}

#subContents .promotion .necessity dl dd {
  gap: 5px 0;
}

#subContents .promotion .necessity dl dd * {
  line-height: 1.375;
}

#subContents .promotion .necessity dl dd span {
  color: #555555;
  font-weight: 300;
}

#subContents .promotion .necessity dl dd b {
  color: var(--color-orange);
  font-weight: 600;
}

#subContents .promotion .necessity dl dd em {
  display: block;
  margin: -0.28em 0 0;
}

#subContents .promotion .necessity dl dd.lineHeight * {
  line-height: 1.75;
}

#subContents .promotion .history ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px 0;
}

#subContents .promotion .history ul li {
  position: relative;
}

#subContents .promotion .history em {
  display: block;
  font-size: 4.0rem;
  font-weight: 600;
}

#subContents .promotion .history .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 0;
  position: relative;
}

#subContents .promotion .history .bar,
#subContents .promotion .history .bar::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#subContents .promotion .history .bar {
  width: 1px;
  height: 100%;
  background: #e0e0e0;
  top: 20px;
}

#subContents .promotion .history .bar::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border: 3px solid var(--color-orange);
  border-radius: 50%;
  top: -20px;
}

#subContents .promotion .history .list,
#subContents .promotion .history dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .promotion .history .list {
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
  padding: 0 45px;
}

#subContents .promotion .history .list.left{
	text-align: right;
}

#subContents .promotion .history .list.right {
  margin: 0 0 0 auto;
}

#subContents .promotion .history .list.left dl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#subContents .promotion .history dl {
  gap: 0 12px;
}

#subContents .promotion .history dl dt {
  width: 22px;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

#subContents .promotion .history dl dd {
  gap: 6px 0;
  color: #555555;
  font-weight: 300;
  margin: 0.05em 0 0;
}

#subContents .promotion .history dl dd p {
  line-height: 1.2;
}

#subContents .location .itemBox {
  width: 100vw;
  height: 650px;
  position: relative;
}

#subContents .location #map {
  width: 100%;
  height: 100%;
}

#subContents .location #map > div:first-child::before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .location #map > div:first-child > div > div:nth-child(6) {
  z-index: 2 !important;
}

#subContents .location .customoverlay {
  width: 210px;
  height: 35px;
  background: var(--color-orange);
  border-radius: 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  bottom: 78px;
  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;
}

#subContents .location ul,
#subContents .location ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .location ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .location dl dd {
  color: #555555;
}

#subContents .location .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  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;
}

#subContents .location p em,
#subContents .location .infoBox dl dt {
  color: #222222;
  font-size: 1.7rem;
  font-weight: 500;
}

#subContents .location .infoBox {
  background: #ffffff;
  padding: 70px 70px 60px;
  position: absolute;
  top: 50%;
  right: 60px;
  z-index: 3;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#subContents .location .infoBox .icon {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
}

#subContents .location .infoBox .icon i {
  color: var(--color-orange);
  font-size: 1.8rem;
}

#subContents .location .infoBox ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
}

#subContents .location .infoBox ul li {
  gap: 0 16px;
}

#subContents .location .infoBox dl dt {
  margin: 0 0 8px;
}

#subContents .location .infoBox .pBox {
  gap: 15px 0;
  margin: 45px 0 0;
}

#subContents .location .infoBox p {
  color: #555555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .location .infoBox a {
  width: 160px;
  height: 35px;
  gap: 0 6px;
  background: var(--color-orange);
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.5rem;
  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;
}

#subContents .location .counsel {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .location .counsel dl dt {
  color: #333333;
  font-size: 4.0rem;
  font-weight: 600;
  margin: 0 0 24px;
}

#subContents .location .counsel dl dd {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
}

#subContents .location .counsel ul {
  gap: 0 25px;
}

#subContents .location .counsel ul li {
  width: 410px;
  height: 85px;
  gap: 0 20px;
  background: #f7f7f7;
  padding: 0 30px;
}

#subContents .location .counsel .icon {
  width: 55px;
  height: 55px;
  background: #ffffff;
}

#subContents .business .contents > p {
  color: #333333;
  font-weight: 300;
  line-height: 1.5625;
}

#subContents .business .note {
  width: 100%;
  max-width: 500px;
  background: rgba(250, 168, 75, 0.10);
  border-radius: 20px;
  padding: 25px 40px;
  margin-top: 25px;
}

#subContents .business .note h6 {
  color: #555;
  font-weight: 700;
}

#subContents .business .note h6 em {
  color: #FAA84B;
}

#subContents .business .note .pBox {
  row-gap: 5px;
  margin-top: 15px;
}

#subContents .business .note .pBox p {
  color: #525252;
  font-size: 1.4rem;
  font-weight: 500;
}

#subContents .business ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  margin: 100px 0 0;
}

#subContents .business ul li {
  width: 100%;
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  column-gap: 35px;
  border-bottom: 1px solid #e5e5e5;
}

#subContents .business ul li:nth-child(1), #subContents .business ul li:nth-child(2) {
  border-top: 1px solid #e5e5e5;
}

#subContents .business .icon {
  width: 150px;
  height: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #f9f9f9;
  border-radius: 50%;
  margin: auto 0;
  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;
}

#subContents .business .icon img {
  -webkit-transform: scale(0.88);
          transform: scale(0.88);
}

#subContents .business dl {
  margin: 50px 0 0;
}

#subContents .business dl dt {
  color: #333333;
  font-weight: 500;
  margin: 0 0 18px;
}

#subContents .business dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
}

#subContents .business dl dd * {
  color: #555555;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2857;
}

#subContents .business dl dd > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}

#subContents .business .linkButton {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #FAA84B;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  padding: 15px 40px;
  margin-top: 120px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

#subContents .business .linkButton em {
  font-size: 1.5rem;
  font-weight: 500;
}

#subContents .business .linkButton span {
  display: inline-flex;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 5px;
}

#subContents .business .linkButton i {
  margin-left: 5px;
}

#subContents .business dl em {
  display: block;
  margin: 4px 0 0;
}

#subContents .information.understanding hr {
  margin: 40px 0;
}

#subContents .information.understanding p {
  color: #333333;
  font-weight: 300;
  line-height: 1.75;
}

#subContents .information.understanding p.regular {
  font-weight: 400;
}

#subContents .information.understanding .info .pBox {
  gap: 30px 0;
}

#subContents .information.understanding .infoText {
  margin: 0;
}

#subContents .information.understanding .itemBottomBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .information.understanding .itemBottomBox .item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  -webkit-box-shadow: 13px 5px 18px rgba(179, 179, 179, 0.2);
          box-shadow: 13px 5px 18px rgba(179, 179, 179, 0.2);
  padding: 35px;
}

#subContents .information.understanding .itemBottomBox h6 {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 12px;
}

#subContents .information.understanding .itemBottomBox .icon {
  margin: auto 0 0 auto;
}

#subContents .information.understanding ul.radiusBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
}

#subContents .information.understanding ul.radiusBox li {
  background: #ffffff;
  border-radius: 10px;
  position: relative;
}

#subContents .information.understanding ul.radiusBox li::before {
  content: "";
  display: block;
  -webkit-box-shadow: 0 0 6px #ededed;
          box-shadow: 0 0 6px #ededed;
  border-radius: 10px;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .information.understanding ul.radiusBox.typeList li {
  padding: 35px;
  z-index: 1;
}

#subContents .information.understanding ul.radiusBox.typeList li.clickOn {
  padding: 0;
}

#subContents .information.understanding ul.radiusBox.typeList li.clickOn > div {
  padding: 35px;
}

#subContents .information.understanding ul.radiusBox.typeList li.clickOn.on .title {
  background: #fcfcfc;
}

#subContents .information.understanding ul.radiusBox.typeList .title {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .information.understanding ul.radiusBox.typeList .title .icon {
  width: 25px;
  height: 25px;
}

#subContents .information.understanding ul.radiusBox.typeList .list {
  display: none;
}

#subContents .information.understanding ul.radiusBox.typeList .list hr {
  margin: 30px 0;
}

#subContents .information.understanding ul.radiusBox.typeImg li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  padding: 20px;
}

#subContents .information.understanding ul.radiusBox.typeImg .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .information.understanding ul.radiusBox.typeImg .text {
  padding: 15px 0 0;
}

#subContents .information.understanding ul.radiusBox.typeIcon li {
  gap: 0 50px;
  padding: 35px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .information.understanding ul.radiusBox.typeIcon .icon {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: rgba(250, 167, 74, 0.08);
  border-radius: 50%;
  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;
}

#subContents .information.understanding ul.radiusBox.typeIcon .text {
  width: 100%;
}

#subContents .information.understanding ul.radiusBox.typeIcon h6 {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 500;
  margin: 0 0 12px;
}

#subContents .information.understanding ul.radiusBox.typeIcon hr {
  margin: 15px 0;
}

#subContents .information.understanding .tag {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .information.understanding .tag:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

#subContents .information.depression .info .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  margin: 50px 0 0;
}

#subContents .information.depression .info .listBox dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  border-radius: 20px;
  padding: 30px 20px;
}

#subContents .information.depression .info .listBox dl dt {
  width: 220px;
  height: 54px;
  border-radius: 27px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  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;
}

#subContents .information.depression .info .listBox dl dd {
  gap: 15px 0;
  color: #333333;
  font-weight: 300;
}

#subContents .information.depression .info .listBox dl p {
  line-height: 1;
}

#subContents .information.depression .info .listBox dl.mint {
  background: rgba(0, 182, 173, 0.03);
}

#subContents .information.depression .info .listBox dl.mint dt {
  background: var(--color-mint);
}

#subContents .information.depression .info .listBox dl.orange {
  background: rgba(250, 167, 74, 0.03);
}

#subContents .information.depression .info .listBox dl.orange dt {
  background: var(--color-orange);
}

#subContents .information.depression .symptom .top,
#subContents .information.depression .symptom .optionBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .information.depression .symptom .top {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 25px;
}

#subContents .information.depression .symptom .optionBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
}

#subContents .information.depression .symptom .optionBox button {
  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;
}

#subContents .information.depression .symptom .optionBox button i {
  color: var(--color-mint);
}

#subContents .information.depression .symptom .swiper-pagination {
  gap: 0 4px;
}

#subContents .information.depression .symptom .swiper-pagination .swiper-pagination-current {
  color: #333333;
  font-weight: 500;
}

#subContents .information.depression .symptom .itemBottomBox,
#subContents .information.depression .symptom .itemBottomBox .item {
  height: 250px;
}

#subContents .information.depression .symptom .slide {
  width: 100vw;
  max-width: 1590px;
  overflow: inherit;
  overflow-x: clip;
  position: absolute;
}

#subContents .information.depression .treatment .radiusBox {
  margin: 20px 0 0;
}

#subContents .information.depression .add .pBox {
  gap: 20px 0;
}

#subContents .information.depression .add .point {
  width: 100%;
  max-width: 700px;
  margin: 50px auto 0;
  position: relative;
  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;
}

#subContents .information.depression .add .point .text {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .information.depression .add .point dl {
  width: 50%;
  text-align: center;
}

#subContents .information.depression .add .point dl dt {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 15px;
}

#subContents .information.depression .add .point dl dt.mint {
  color: var(--color-mint);
}

#subContents .information.depression .add .point dl dt.orange {
  color: var(--color-orange);
}

#subContents .information.stress .definition .point {
  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;
  gap: 0 14px;
}

#subContents .information.stress .definition .point h6,
#subContents .information.stress .definition .point p {
  text-align: center;
}

#subContents .information.stress .definition .point h6 {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
}

#subContents .information.stress .definition .point .circle {
  width: 184px;
  height: 184px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px 0;
  border-radius: 50%;
  color: #ffffff;
  margin: 0 0 20px;
  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;
}

#subContents .information.stress .definition .point .circle.mint {
  background: var(--color-mint);
}

#subContents .information.stress .definition .point .circle.orange {
  background: var(--color-orange);
}

#subContents .information.stress .definition .point .center {
  position: relative;
}

#subContents .information.stress .definition .point .center h5 {
  color: #333333;
  font-size: 2.6rem;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .information.stress .definition .point .bottom {
  margin: auto 0 0;
}

#subContents .information.stress .factors .radiusBox {
  margin: 20px 0 0;
}

#subContents .information.stress .symptom .itemBottomBox {
  gap: 0 15px;
}

#subContents .information.stress .symptom .itemBottomBox .item {
  height: 280px;
}

#subContents .information.stress .solve .clickOn {
  margin: 25px 0 0;
}

#subContents .information.stress .solve .clickOn dt {
  gap: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .information.stress .solve .clickOn dd {
  display: none;
}

#subContents .information.stress .solve .clickOn .icon {
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .information.stress .solve .clickOn.on .icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#subContents .information.schizophrenia .symptom .itemBottomBox {
  gap: 0 13px;
  margin: 30px 0 0;
}

#subContents .information.schizophrenia .symptom .itemBottomBox .item {
  height: 265px;
}

#subContents .information.schizophrenia .treatment > p {
  margin: 0 0 50px;
}

#subContents .information.manic .info .point dl dt {
  width: 220px;
  height: 54px;
  background: var(--color-mint);
  border-radius: 27px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 auto -27px;
  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;
}

#subContents .information.manic .info .point dl dd {
  background: rgba(0, 182, 173, 0.06);
  text-align: center;
  padding: 45px 20px 25px;
}

#subContents .information.manic .info .point dl p {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .information.manic .info .point ul {
  gap: 0 120px;
  margin: 20px 0 0;
  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;
}

#subContents .information.manic .info .point ul li {
  width: 100%;
  max-width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 0;
}

#subContents .information.manic .info .point ul span {
  display: block;
  width: 1px;
  height: 78px;
  background: transparent url("/img/sub/information/manicLine.png") center center/cover;
}

#subContents .information.manic .info .point ul em {
  color: var(--color-mint);
  font-size: 1.8rem;
}

#subContents .information.manic .info .point ul p {
  font-size: 1.4rem;
  line-height: 1;
  margin: 10px 0 0;
}

#subContents .information.manic .info .point ul hr {
  margin: 15px 0 25px;
}

#subContents .information.manic .info .point ul h6 {
  color: #333333;
  font-size: 2.0rem;
}

#subContents .information.manic .info .point .circle {
  width: 100%;
  border: 1px solid rgba(0, 182, 173, 0.3);
  border-radius: 50%;
  padding: 50% 0;
  position: relative;
}

#subContents .information.manic .info .point .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px;
  width: 100%;
  height: 100%;
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .information.manic .symptom > p {
  margin: 0 0 50px;
}

#subContents .information.manic .symptom .radiusBox {
  margin: 20px 0 0;
}

#subContents .information.statistics .chartBorder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px 0;
  border: 1px solid #e5e5e5;
  padding: 55px 40px 40px;
}

#subContents .information.statistics .chartBorder .topText {
  color: #333333;
  font-size: 1.4rem;
}

#subContents .information.statistics .chartBorder .flexBox {
  width: 100%;
  position: relative;
}

#subContents .information.statistics .chartBorder .flexBox * {
  font-size: 1.3rem;
}

#subContents .information.statistics .chartBorder .centerText {
  width: 100%;
  gap: 0 40px;
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .information.statistics .chartBorder .centerText li {
  gap: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .information.statistics .chartBorder .centerText span {
  display: block;
  width: 15px;
  height: 5px;
}

#subContents .information.statistics .chartBorder .centerText span.orange {
  background: var(--color-orange);
}

#subContents .information.statistics .chartBorder .centerText span.mint {
  background: #7ad6d2;
}

#subContents .information.statistics .chartBorder .centerText span.dot {
  gap: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .information.statistics .chartBorder .centerText span.dot::before {
  display: none;
}

#subContents .information.statistics .chartBorder .centerText span.dot em {
  display: block;
  width: 2px;
  height: 2px;
}

#subContents .information.statistics .chartBorder .centerText span.dot.blue em {
  background: #476ba2;
}

#subContents .information.statistics .chartBorder .centerText span.dot.gray em {
  background: #aeaeae;
}

#subContents .information.statistics .chartBorder .bottomText {
  color: #999999;
  font-weight: 300;
  margin: 0 0 0 auto;
}

#subContents .information.statistics .infoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px 0;
  margin: 50px 0 0;
}

#subContents .information.statistics .infoBox ul,
#subContents .information.statistics .infoBox ul li {
  width: 100%;
}

#subContents .information.statistics .infoBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}

#subContents .information.statistics .infoBox ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#subContents .information.statistics .infoBox h6 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
}

#subContents .information.statistics .infoBox hr {
  margin: 16px 0;
}

#subContents .information.statistics .infoBox p {
  color: #555555;
  font-weight: 300;
  line-height: 1.625;
}

#subContents .information.statistics .recognitionTable {
  margin: 50px 0 0;
  display: none;
}

#subContents .information.statistics .recognitionTable p {
  color: #333333;
  font-size: 1.4rem;
  margin: 0 0 16px;
}

#subContents .information.statistics .recognitionTable table th,
#subContents .information.statistics .recognitionTable table td {
  height: 40px;
}

#subContents .information.statistics .recognitionTable table th:not(:last-child),
#subContents .information.statistics .recognitionTable table td:not(:last-child) {
  border-right: 1px solid #ffffff;
}

#subContents .information.statistics .recognitionTable table th {
  background: #3f3f3f;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
}

#subContents .information.statistics .recognitionTable table td {
  background: #f3f3f3;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
}

#subContents .information.helpline .chartBorder .flexBox {
  padding: 45px 0 0;
}

#subContents .information.helpline .chartBorder .centerText {
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#subContents .information.classification .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 110px;
}

#subContents .information.classification .mapBox {
  width: 100%;
  max-width: 480px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .information.classification .topTitle .simpleBus {
  height: 70px;
}

#subContents .information.classification .tabBox {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

#subContents .information.classification .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

#subContents .information.classification .tab li {
  width: calc((100% - 40px) / 5);
  height: 50px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .information.classification .tab li.all {
  width: 100%;
}

#subContents .information.classification .tab li.half {
  width: calc(50% - 5px);
}

#subContents .information.classification .tab li button {
  color: #555555;
  font-size: 1.5rem;
  font-weight: 300;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  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;
}

#subContents .information.classification .tab li:hover, #subContents .information.classification .tab li.on {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

#subContents .information.classification .tab li:hover button, #subContents .information.classification .tab li.on button {
  color: #ffffff;
}

#subContents .information.classification .listBox {
  width: 100%;
}

#subContents .information.classification .subFlexColumn {
  gap: 25px 0;
}

#subContents .information.classification .list {
  margin: 50px 0 0;
}

#subContents .information.classification .smallTitle {
  margin: 0 0 25px;
}

#subContents .information.classification h6 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 20px;
}
#subContents .information.classification .toggle {
  display: none;
}
#subContents .information.classification .toggle.on {
  display: block;
}

#subContents .information.news .noResults {
  gap: 0 20px;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 40px;
  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;
  display: none;
}

#subContents .information.news .noResults p {
  color: #999999;
  font-size: 1.8rem;
}

#subContents .information.news .noResults.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .information.news .item .img img,
#subContents .information.column .item .img img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

#subContents .information.news .item {
  position: relative;
  overflow: inherit;
}

#subContents .information.news .galleryBox em.new {
	position: absolute;
	top: -27px;
	left: 0;
}

#subContents .information.news .item:hover .img img,
#subContents .information.column .item:hover .img img {
  -webkit-transform: translate(-50%, -50%) scale(1.18);
          transform: translate(-50%, -50%) scale(1.18);
}

#subContents .newsView .view .tagBox {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 30px;
}

#subContents .newsView .related {
  padding: 0 0 55px;
}

#subContents .newsView .related .swiper-slide {
  position: relative;
  overflow: hidden;
}

#subContents .newsView .related .swiper-slide img {
  max-height: inherit;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .newsView .related .buttonBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .newsView .related .buttonBox button {
  width: 50px;
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: #aaaaaa;
  font-size: 1.3rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
}

#subContents .newsView .related .buttonBox button:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

#subContents .newsView .related .relatedSlideBox {
  position: relative;
}

#subContents .newsView .related .relatedSlide,
#subContents .newsView .related .swiper-slide {
  width: 100%;
  overflow: inherit;
  overflow-x: clip;
}

#subContents .newsView .related .swiper-slide .img img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

#subContents .newsView .related .swiper-slide:hover .img img {
  -webkit-transform: translate(-50%, -50%) scale(1.18);
          transform: translate(-50%, -50%) scale(1.18);
}

#subContents .newsView .related h6 {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
}

#subContents .newsView .related .img {
  padding: 34.094% 0;
  position: relative;
}
/* 25.03.26 썸네일 비율 수정 */
#subContents .newsView.card-news .related .img {
    padding: 50% 0;
	position: relative;
}
/* --------------- */

#subContents .newsView .related .tagBox {
  position: absolute;
  left: 0;
  bottom: -55px;
}

#subContents .newsView .related .buttonBox {
  width: calc(100% + 140px);
}

#subContents .heart.checkup .checkupTab {
  gap: 0 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.checkup .checkupTab::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -2;
}

#subContents .heart.checkup .checkupTab li {
  width: 100%;
  background: #ffffff;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .heart.checkup .checkupTab li * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .heart.checkup .checkupTab a {
  display: block;
  padding: 35px 10px;
  width: 100%;
  height: 100%;
  cursor: default;
}

#subContents .heart.checkup .checkupTab em {
  color: var(--color-orange);
  font-size: 1.4rem;
  font-weight: 600;
}

#subContents .heart.checkup .checkupTab h6 {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 15px 0 0;
}

#subContents .heart.checkup .checkupTab li.on {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

#subContents .heart.checkup .checkupTab li.on * {
  color: #ffffff;
}

#subContents .heart.checkup .top,
#subContents .heart.checkup .bottom {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#subContents .heart.checkup .top {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 35px;
}

#subContents .heart.checkup .top .smallTitle {
  margin: 0;
}

#subContents .heart.checkup .top > p {
  color: #999999;
  font-size: 1.4rem;
  font-weight: 300;
}

#subContents .heart.checkup .checkupList.grayBox ul li {
  background: #ffffff;
}

#subContents .heart.checkup .checkupList ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
}

#subContents .heart.checkup .checkupList ul li {
  background: #f9f9f9;
}

#subContents .heart.checkup .checkupList ul li > p {
  gap: 0 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.6rem;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.checkup .checkupList ul li > p .tag {
  margin: 0 0 0 auto;
}

#subContents .heart.checkup .checkupList ul li > p i {
  color: var(--color-orange);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .heart.checkup .checkupList ul li.on i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

#subContents .heart.type .contents {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#subContents .heart.type .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}

#subContents .heart.type label {
  width: 100%;
  height: 350px;
  text-align: center;
  padding: 50px 0;
  position: relative;
}

#subContents .heart.type label:nth-child(1) {
  background: url("/img/sub/checkupImg1-1.png") no-repeat center bottom;
}

#subContents .heart.type label:nth-child(2) {
  background: url("/img/sub/checkupImg1-2.png") no-repeat center bottom;
}

#subContents .heart.type label:nth-child(3) {
  background: url("/img/sub/checkupImg1-3.png") no-repeat center bottom;
}

#subContents .heart.type label:nth-child(4) {
  background: url("/img/sub/checkupImg1-4.png") no-repeat center bottom;
}

#subContents .heart.type input[type=radio] {
  background: transparent;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .heart.type input[type=radio]:checked {
  opacity: 1;
  border: 3px solid var(--color-orange);
}

#subContents .heart.type p {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 600;
}

#subContents .heart.personal .inputCheck {
	justify-content: flex-end;
}

#subContents .heart.tools .grayBox {
  gap: 35px 0;
}

#subContents .heart.tools h6 {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 600;
}

#subContents .heart.tools .itemBox {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#subContents .heart.tools .itemBox label {
  width: 100%;
  gap: 0 15px;
  background: #ffffff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.tools .itemBox .check {
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  position: relative;
}

#subContents .heart.tools .itemBox i {
  color: #cccccc;
  font-size: 1.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .heart.tools .itemBox input[type=checkbox] {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

#subContents .heart.tools .itemBox input[type=checkbox]:checked {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

#subContents .heart.tools .itemBox input[type=checkbox]:checked + i {
  color: #ffffff;
}

#subContents .heart.list .note {
  width: 100%;
  font-size: 1.6rem;
  text-align: left;
  margin: 0 0 25px;
}

#subContents .heart.list .note em {
  color: #333333;
  font-weight: 500;
}

#subContents .heart.list .checkupList ul li > div {
  padding: 20px 50px;
}

#subContents .heart.list .checkupList ul li.on i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

#subContents .heart.list .listBox {
  table-layout: inherit;
}

#subContents .heart.list .listBox th,
#subContents .heart.list .listBox td {
  font-size: 1.5rem;
  line-height: 1.2;
}

#subContents .heart.list .listBox th:not(:last-child),
#subContents .heart.list .listBox td:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}

#subContents .heart.list .listBox th *,
#subContents .heart.list .listBox td * {
  line-height: 1.2;
}

#subContents .heart.list .listBox th, #subContents .heart.list .listBox td {
  padding: 14px;
}

#subContents .heart.list .listBox th {
  text-align: center;
  padding: 18px 14px;
}

#subContents .heart.list .listBox th.left {
  text-align: left;
}

#subContents .heart.list .listBox td {
  background: #ffffff;
  padding: 14px;
}

#subContents .heart.list .listBox td .column {
  gap: 10px 0;
}

#subContents .heart.list .listBox td.subject {
  width: 100%;
}

#subContents .heart.list .listBox td.bg {
  background: #f9f9f9;
}

#subContents .heart.list .listBox td.none {
  display: none;
}

#subContents .heart.list .listBox label {
  width: 100%;
  gap: 0 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.list .listBox label input[type=radio] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .heart.list .listBox label span {
  white-space: nowrap;
}

#subContents .heart.list .listBox label em {
  display: block;
  font-size: 1.3rem;
}

#subContents .heart.list .listBox + p {
  color: #777777;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: right;
  margin: 10px 0;
}

#subContents .heart.list .listBox + p + button.tag {
	margin: 0 0 0 auto;
	transition: all 0.4s;
}

#subContents .heart.list .listBox + p + button.tag:hover {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: #fff;
}

#subContents .heart.results .color20 {
  background: #feeddb;
}

#subContents .heart.results .color20 .resultsArrow {
  fill: #feeddb;
}

#subContents .heart.results .color50 {
  background: #fcd3a4;
}

#subContents .heart.results .color50 .resultsArrow {
  fill: #fcd3a4;
}

#subContents .heart.results .color70 {
  background: #fabf7e;
}

#subContents .heart.results .color70 .resultsArrow {
  fill: #fabf7e;
}

#subContents .heart.results .color100 {
  background: #faa74a;
}

#subContents .heart.results .color100 .resultsArrow {
  fill: #faa74a;
}

#subContents .heart.results .detail h4 {
  color: #333333;
  font-size: 3.0rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
}

#subContents .heart.results .detail h4 b {
  display: inline-block;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

#subContents .heart.results .detail h4 b::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: rgba(250, 167, 74, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
}

#subContents .heart.results .graphBox,
#subContents .heart.results .graph {
  margin: 50px 0 55px;
}

#subContents .heart.results .graphBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px 0;
}

#subContents .heart.results .graphBox p {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 15px 20px;
}

#subContents .heart.results .graphBox .graph {
  margin: 0;
}

#subContents .heart.results .graph {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: inherit;
}

#subContents .heart.results .graph > div {
  color: #333333;
  position: relative;
  width: 100%;
  height: 100%;
  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;
}

#subContents .heart.results .graph > div:first-child {
  border-radius: 10px 0 0 10px;
}

#subContents .heart.results .graph > div:last-child {
  border-radius: 0 10px 10px 0;
}

#subContents .heart.results .graph > div.on .arrow {
  opacity: 1;
}

#subContents .heart.results .graph .arrow {
  width: 15px;
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-backdrop-filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.05));
          backdrop-filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.05));
}

#subContents .heart.results .graph .arrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 20px;
  background: url("/img/sub/resultsPoint.png") no-repeat center / cover;
  position: absolute;
  top: -22px;
  left: -5px;
}

#subContents .heart.results .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  background: #ffffff;
  padding: 40px;
}

#subContents .heart.results .textBox .icon {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #f9f9f9;
  border-radius: 50%;
  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;
}

#subContents .heart.results .dlBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px 0;
  padding: 20px 0 0;
}

#subContents .heart.results dl {
  color: #222222;
}

#subContents .heart.results dl dt {
  margin: 0 0 10px;
}

#subContents .heart.results dl dt span {
  display: inline-block;
  border-radius: 100px;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 8px 15px;
}

#subContents .heart.results dl dd p {
  line-height: 1.375;
}

#subContents .heart.results .checkupList ul li > div {
  padding: 0 50px 20px;
}

#subContents .heart.results .bottom ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}

#subContents .heart.results .bottom ul * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .heart.results .bottom ul li {
  width: 100%;
  height: 150px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px 0;
  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;
}

#subContents .heart.results .bottom ul li:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

#subContents .heart.results .bottom ul li:hover p {
  color: #ffffff;
}

#subContents .heart.results .bottom ul li:hover a {
  color: var(--color-orange);
  background: #ffffff;
}

#subContents .heart.results .bottom p {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
}

#subContents .heart.results .bottom .flexBox {
  gap: 0 5px;
}

#subContents .heart.introduce .info p span {
  line-height: 1.2;
}

#subContents .heart.introduce .info .more {
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-orange);
  font-weight: 600;
}

#subContents .heart.introduce .info .more img {
  width: 18px;
  height: 18px;
}

#subContents .heart.introduce .use .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}

#subContents .heart.introduce .use .item {
  gap: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.introduce .use .step,
#subContents .heart.introduce .use .arrow {
  width: 215px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}

#subContents .heart.introduce .use i {
  color: var(--color-orange);
  font-size: 1.8rem;
}

#subContents .heart.introduce .use .step {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 12px 0;
  padding: 30px 10px;
}

#subContents .heart.introduce .use .step * {
  color: #ffffff;
  font-weight: 600;
}

#subContents .heart.introduce .use .step1 {
  background: #ffd5a7;
}

#subContents .heart.introduce .use .step2 {
  background: #fcc384;
}

#subContents .heart.introduce .use .step3 {
  background: var(--color-orange);
}

#subContents .heart.introduce .use em {
  font-size: 1.4rem;
}

#subContents .heart.introduce .use h6 {
  font-size: 1.8rem;
}

#subContents .heart.introduce .use dl,
#subContents .heart.introduce .use dl > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#subContents .heart.introduce .use dl {
  gap: 15px 0;
}

#subContents .heart.introduce .use dl dt {
  gap: 10px 0;
  color: #333333;
}

#subContents .heart.introduce .use dl dt span {
  color: #555555;
  font-weight: 300;
}

#subContents .heart.introduce .use dl dt a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-orange);
  font-weight: 600;
}

#subContents .heart.introduce .use dl dd {
  gap: 6px 0;
  color: #999999;
  font-size: 1.4rem;
}

#subContents .heart.introduce .picture .imgBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#subContents .heart.introduce .picture .img {
  padding: 44.235% 0;
  position: relative;
}

#subContents .heart.introduce .picture .img img {
  min-height: 100%;
  max-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .heart.introduce .picture .item p {
  background: #f0f0f0;
  border-radius: 10px;
  color: #333;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  margin: 10px 0 0;
}

#subContents .heart.apply .subFlexColumn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.apply .stateBox {
  gap: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.apply .stateBox span {
  font-size: 1.2rem;
  font-weight: 500;
}

#subContents .heart.apply .stateBox .black {
  color: #333333;
}

#subContents .heart.apply .state {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #ffffff;
  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;
}

#subContents .heart.apply .state.orange {
  background: var(--color-orange);
}

#subContents .heart.apply .state.gray {
  background: #aaaaaa;
}

#subContents .heart.apply .state.mint {
  background: var(--color-mint);
}

#subContents .heart.apply .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 0 80px;
}

#subContents .heart.apply .form .checklistBox,
#subContents .heart.apply .form .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#subContents .heart.apply .form .checklistBox {
  width: 500px;
  gap: 30px 0;
}

#subContents .heart.apply .form .checklistBox em {
  display: block;
}

#subContents .heart.apply .form .checklistBox dl dt {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 16px;
}

#subContents .heart.apply .form .checklistBox dl dd {
  color: #555555;
  font-weight: 300;
  line-height: 1.625;
}

#subContents .heart.apply .form .checklist {
  padding: 50px 40px 30px;
}

#subContents .heart.apply .form .list {
  gap: 40px 0;
  margin: 45px 0 0;
}

#subContents .heart.apply .form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
}

#subContents .heart.apply .form input[type=checkbox] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .heart.apply .form .note {
  padding: 20px 40px;
}

#subContents .heart.apply .form .note em {
  color: #999999;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 10px 0;
}

#subContents .heart.apply .form .schedule {
  width: 100%;
}

#subContents .heart.apply .form .month,
#subContents .heart.apply .form .month button {
  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;
}

#subContents .heart.apply .form .month {
  gap: 0 25px;
  margin: 0 0 35px;
}

#subContents .heart.apply .form .month button {
  width: 45px;
  height: 45px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: #999999;
  font-size: 1.5rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .heart.apply .form .month button:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

#subContents .heart.apply .form .month .center {
  color: #333333;
  font-size: 2.5rem;
  font-weight: 600;
}

#subContents .heart.apply .form .calendar {
  border-top: none;
}

#subContents .heart.apply .form .calendar .colorRed {
  color: #ea1919;
}

#subContents .heart.apply .form .calendar .colorBlue {
  color: #1041dd;
}

#subContents .heart.apply .form .calendar th {
  background: transparent;
  color: #333333;
  font-size: 1.4rem;
  text-align: left;
  padding: 8px 14px;
}

#subContents .heart.apply .form .calendar td {
  height: 100px;
  background: #fbfbfb;
  border: 1px solid #e0e0e0;
  vertical-align: top;
}

#subContents .heart.apply .form .calendar td.empty {
  background: #ffffff;
}

#subContents .heart.apply .form .calendar td:first-child {
  border-left: none;
}

#subContents .heart.apply .form .calendar td:last-child {
  border-right: none;
}

#subContents .heart.apply .form .calendar td > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 14px;
  width: 100%;
  height: 100%;
}

#subContents .heart.apply .form .calendar em {
  font-size: 1.3rem;
  line-height: 1.28;
}

#subContents .heart.apply .form .stateBox {
  margin: auto 0 0;
  position: relative;
}

#subContents .heart.apply .form .stateBox .on {
  padding: 10px 25px 10px 10px;
  position: absolute;
  top: 30px;
  left: -10px;
  z-index: 2;
  display: none;
}

#subContents .heart.apply .form .stateBox .on * {
  color: #ffffff;
  white-space: nowrap;
}

#subContents .heart.apply .form .stateBox .on .state {
  background: #ffffff;
  color: #333333;
  font-weight: 500;
}

#subContents .heart.apply .form .stateBox .on.orange {
  background: var(--color-orange);
}

#subContents .heart.apply .form .stateBox .on.gray {
  background: #aaaaaa;
}

#subContents .heart.apply .form .stateBox .on.mint {
  background: var(--color-mint);
}

#subContents .heart.apply .form .stateBox .on .title {
  gap: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.apply .form .stateBox .on h6 {
  font-size: 1.5rem;
  font-weight: 600;
}

#subContents .heart.apply .form .stateBox .dlBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px 0;
  margin: 10px 0 0;
}

#subContents .heart.apply .form .stateBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .heart.apply .form .stateBox dl * {
  font-size: 1.4rem;
  line-height: 1.1428;
}

#subContents .heart.apply .form .stateBox dl dt {
  font-weight: 600;
}

#subContents .heart.apply .form .schedule .bottom {
  gap: 0 15px;
  margin: 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .heart.apply p.red {
  color: #ff0000;
  font-size: 1.5rem;
  text-align: right;
  margin: -25px 0 10px;
}

#subContents .heart.apply .inputCheck .button {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 5px 10px;
}

#subContents .heart.apply .policyBox .text {
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin: 15px 0 0;
  display: none;
}

#subContents .heart.apply .policyBox .text p {
  display: flex;
  gap: 0 5px;
  line-height: 1.4;
}

#subContents .heart.apply .policyBox .text p::before {
  content: "-";
}

#subContents .participation.application .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

#subContents .participation.application .item {
  width: calc(50% - 20px);
  padding: 50px;
  position: relative;
}

#subContents .participation.application .item.on {
  border: 3px solid var(--color-orange);
}

#subContents .participation.application .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#subContents .participation.application .item h5,
#subContents .participation.application .item h6 {
  color: #333333;
}

#subContents .participation.application .item h5 {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.2;
}

#subContents .participation.application .item h5::before {
  height: 2.4rem;
}

#subContents .participation.application .item ul {
  gap: 20px 0;
  margin: 35px 0 0;
}

#subContents .participation.application .item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .participation.application .item .icon {
  width: 16px;
  color: var(--color-orange);
  margin: 0 3px 0 0;
  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;
}

#subContents .participation.application .item h6 {
  font-weight: 500;
}

#subContents .participation.application .item p {
  color: #555555;
  font-weight: 300;
}

#subContents .participation.application .item .formButton {
  position: absolute;
  right: 25px;
  bottom: 25px;
}

#subContents .participation.application .grayBox {
  gap: 24px 0;
  margin: 0 0 50px;
}

#subContents .participation.eventList .text {
  background: #ffffff;
}

#subContents .participation.eventList .text p {
  color: #555555;
  font-weight: 300;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#subContents .participation.eventList h5,
#subContents .participation.eventList h6 {
  color: #333333;
}

#subContents .participation.eventList h5 {
  font-weight: 600;
  margin: 15px 0 40px;
}

#subContents .participation.eventList h6 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 15px 0 25px;
}

#subContents .participation.eventList .date {
  gap: 0 3px;
  color: #555555;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 25px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .participation.eventList .date i {
  display: inline-block;
  color: var(--color-orange);
}

#subContents .participation.eventList .eventSlideBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 80px;
}

#subContents .participation.eventList .eventSlideBox p {
  height: 4.941em;
  font-size: 1.7rem;
  line-height: 1.6470;
}

#subContents .participation.eventList .eventSlideBox a {
  margin: 85px 0 0;
}

#subContents .participation.eventList .eventSlideBox button {
  color: #aaaaaa;
  font-size: 2.0rem;
}

#subContents .participation.eventList .eventSlideBox button:hover {
  color: var(--color-orange);
}

#subContents .participation.eventList .eventImgSlideBox {
  width: 100%;
  max-width: 680px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .participation.eventList .eventImgSlideBox .img {
  padding: 33.09% 0;
  position: relative;
}

#subContents .participation.eventList .eventImgSlideBox .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .participation.eventList .eventTextSlideBox {
  max-width: calc(100% - 760px);
}

#subContents .participation.eventList .optionBox,
#subContents .participation.eventList .buttonBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .participation.eventList .optionBox {
  gap: 0 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 25px 0 0;
}

#subContents .participation.eventList .swiper-pagination {
  width: 100%;
  height: 2px;
}

#subContents .participation.eventList .buttonBox {
  gap: 0 15px;
}

#subContents .participation.eventList .listBox p {
  height: 4.875em;
  line-height: 1.625;
}

#subContents .participation.eventList .category {
  margin: 60px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .participation.eventList .category li:not(:last-child)::after {
  content: "·";
  color: #cccccc;
  font-weight: 700;
  margin: 0 15px;
}

#subContents .participation.eventList .category li a {
  color: #999999;
  font-size: 1.7rem;
  font-weight: 300;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .participation.eventList .category li:hover a, #subContents .participation.eventList .category li.on a {
  color: #333333;
  font-weight: 500;
}

#subContents .participation.eventList .itemBox {
  border-top: 1px solid #e0e0e0;
}

#subContents .participation.eventList .item {
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 0;
}

#subContents .participation.eventList .item a {
  gap: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .participation.eventList .item .img,
#subContents .participation.eventList .item .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#subContents .participation.eventList .item .img {
  width: 30%;
  padding: 9.286% 0;
  position: relative;
}

#subContents .participation.eventList .item .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .participation.eventList .item .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #aaaaaa;
  font-size: 1.3rem;
  margin: 0 0 0 auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
}

#subContents .participation.eventList .item:hover .arrow {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

#subContents .participation.eventView .inputCheck {
  justify-content: flex-end;
}



.introduce-new .top {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.introduce-new .top .img {
  position: absolute;
  width: 623px;
  left: -135px;
}
.introduce-new .top .txtbox {
  position: relative;
  z-index: 1;
  margin: 63px 0;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  color: #222;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
  padding: 50px 0;
}
.introduce-new .top .txtbox .txt-1 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.introduce-new .top .txtbox .txt-1 img {
  margin:0 15px -5px 0;
}
.introduce-new .top .txtbox .txt-2 {
  margin-top: 30px;
  line-height: 1.9;
}
.introduce-new .top .txtbox .txt-2 strong {
  font-weight: 600;
}
.introduce-new .cont {
  margin-top: 60px;
}
.introduce-new .bgCont {
  background: #F8F8F8;
  margin-top: 120px;
  padding:120px 0 200px;
}
.introduce-new .bgCont .cont {
  margin-top: 120px;
}
.introduce-new .bgCont .cont:nth-child(1) {
  margin-top: 0;
}
.introduce-new h4.tit {
  position: relative;
  color: #222;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 40px;
}
.introduce-new h4.tit::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 26px;
  height: 26px;
  background: url("/img/svg/plus.svg") no-repeat center/100% 100%;
}
.introduce-new .schedule-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 50px;
}
.introduce-new .schedule-box .calendar-box {
  width: calc(55% - 10px);
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 30px;
}
.introduce-new .schedule-box .calendar-top { 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 25px;
}
.introduce-new .schedule-box .calendar-top a { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  border: 1px solid #E0E0E0;
}
.introduce-new .schedule-box .calendar-top strong { 
  color: #111;
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 1.3;
}
.introduce-new .schedule-box .infobox { 
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.introduce-new .schedule-box .infobox ul { 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 15px;
}
.introduce-new .schedule-box .infobox ul li { 
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: #353535;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
}
.introduce-new .schedule-box .calendar-body { 
  margin-top: 30px;
  text-align: left;
}
.introduce-new .schedule-box .calendar-body table {
  border-top: none
}
.introduce-new .schedule-box .calendar-body thead th { 
  color: #555;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 5px 10px;
  background: #fff;
}
.introduce-new .schedule-box .calendar-body tr:first-child th:first-child,
.introduce-new .schedule-box .calendar-body td:first-child { 
  color: #ed1919;
}
.introduce-new .schedule-box .calendar-body tr:last-child th:last-child,
.introduce-new .schedule-box .calendar-body td:last-child { 
  color: #1764E1;
  border-width:0 0 1px 0;
}
.introduce-new .schedule-box .calendar-body tbody td { 
  position: relative;
  color: #333;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3;
  height: 80px;
  text-align: left;
  vertical-align: top;
  padding: 10px 0 10px 10px;
  border: 1px solid #e0e0e0;
  border-width: 0 1px 1px 0;
}
.introduce-new .schedule-box .calendar-body tbody td.bg { 
  background: #fbfbfb;
}
.introduce-new .schedule-box .calendar-body tbody td .num { 
  font-weight: 300;
}
.introduce-new .schedule-box .calendar-body tbody td .sch { 
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #555;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-top: 5px;
}
.introduce-new .schedule-box .calendar-body tbody td .day-label { 
  display: none; 
  color: #333;
  font-weight: 300;
}
.introduce-new .schedule-box .txt_b { 
  margin-top: 30px;
}
.introduce-new .schedule-box .txt_b li:not(:last-child) { 
  margin-bottom: 5px;
}
.introduce-new .schedule-box .txt_b li { 
  display: flex;
  align-items: center;
  gap: 5px;
  color: #555;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.introduce-new .schedule-box .txt_b li span{ 
  color: var(--color-mint);
  font-weight: 400;
}
.introduce-new span.sbox { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}
.introduce-new .schedule-box span.orange { 
  background: var(--color-orange);
}
.introduce-new .schedule-box span.mint { 
  background: var(--color-mint);
}
.introduce-new .schedule-box span.blue { 
  background: #408ac7;
}
.introduce-new .schedule-box span.red { 
  background: #ff7062;
}
.introduce-new .schedule-box span.bus { 
  background: none;
  border: 1px solid #f9a64a;
}

.introduce-new .schedule-box .schedule-list {
  width: calc(100% - 55% - 10px);
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 30px;
}
.introduce-new .schedule-box .schedule-list .tit {
  color: #111;
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
}
.introduce-new .schedule-box .schedule-list .list {
  margin-top: 30px;
  border-top: 1px solid #e0e0e0;
  height: 645px;
  overflow: auto;
}
.introduce-new .schedule-box .schedule-list .list .box {
  padding: 30px 10px 30px 30px;
  border-bottom: 1px solid #e0e0e0;
}
.introduce-new .schedule-box .schedule-list .list .box dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.introduce-new .schedule-box .schedule-list .list .box dd {
  margin-top: 20px;
}
.introduce-new .schedule-box .schedule-list .list .box dd li:not(:last-child) { 
  margin-bottom: 10px;
}
.introduce-new .schedule-box .schedule-list .list .box dd li {
  padding-left: 18px;
  color: #777;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.025em;
  position: relative;
}
.introduce-new .schedule-box .schedule-list .list .box dd li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: #777;
}

.introduce-new .listbox > dl {
  display: flex;
  flex-wrap: wrap;
}
.introduce-new .listbox > dl > dt {
  width: 300px;
}
.introduce-new .listbox > dl > dd {
  width: calc(100% - 300px);
}
.introduce-new .listbox .sbox {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
}
.introduce-new .listbox > dl > dd .txtbox p {
  color: #222;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
.introduce-new .listbox > dl > dd .txtbox p strong {
  font-weight: 500;
}
.introduce-new .listbox > dl > dd .txtbox li {
  padding-left: 13px;
  color: #222;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.025em;
  position: relative;
}
.introduce-new .listbox > dl > dd .txtbox li div{ 
}
.introduce-new .listbox > dl > dd .txtbox li div p{
  font-size: inherit;
  margin-top: 3px;
}
.introduce-new .listbox > dl > dd .txtbox li div p span{
  display: inline-block;
  width: 100px;
}
.introduce-new .listbox > dl > dd .txtbox li strong {
  font-weight: 500;
}
.introduce-new .listbox > dl > dd .txtbox li:not(:last-child) { 
  margin-bottom: 5px;
}
.introduce-new .listbox > dl > dd .txtbox li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 11px;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background: #222;
}
.introduce-new .listbox > dl > dd .txtbox li.nop::before {
  display: none;
}
.introduce-new .listbox > dl > dd .img-list {
  margin-top: 20px;
}
.introduce-new .listbox > dl > dd .img-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.introduce-new .listbox > dl > dd .img-list ul li {
  width: calc((100% - 60px) / 4);
  text-align: center;
}
.introduce-new .listbox > dl > dd .img-list ul li img {
  border-radius: 10px;
  width: 100%;
}
.introduce-new .listbox > dl > dd .img-list ul li strong {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 43px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.025em;
  background: var(--color-mint);
}
.introduce-new .listbox > dl > dd .step-box .box:not(:last-child) { 
  margin-bottom: 73px;
}
.introduce-new .listbox > dl > dd .step-box .box { 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.introduce-new .listbox > dl > dd .step-box .box .step { 
  width: 200px;
  height: 106px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  position: relative;
}
.introduce-new .listbox > dl > dd .step-box .box .step::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 15px;
  height: 12px;
  background: url("/img/svg/arr_icon01.svg") no-repeat center;
}
.introduce-new .listbox > dl > dd .step-box .box:nth-child(1) .step::before {
  display: none;
}
.introduce-new .listbox > dl > dd .step-box .box .step strong { 
  font-size: 1.8rem;
  font-weight: 700;
}
.introduce-new .listbox > dl > dd .step-box .box:nth-child(1) .step {
  background: #ffcd97;
}
.introduce-new .listbox > dl > dd .step-box .box:nth-child(2) .step {
  background: #ffb96e;
}
.introduce-new .listbox > dl > dd .step-box .box:nth-child(3) .step {
  background: #ffa84b;
}
.introduce-new .listbox > dl > dd .step-box .box .txt { 
  width: calc(100% - 200px);
  padding-left: 40px;
}
.introduce-new .listbox > dl > dd .step-box .box .txt li:not(:last-child) { 
  margin-bottom: 10px;
}
.introduce-new .listbox > dl > dd .step-box .box .txt li { 
  color: #333;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.introduce-new .listbox > dl > dd .step-box .box .txt li strong { 
  color: #111;
  font-weight: 500;
}
.introduce-new .listbox > dl > dd .step-box .box .txt li span { 
  color: #333;
  font-weight: 400;
}
.introduce-new .listbox > dl > dd .step-box .box .txt .txt_bx {
  margin-top: 10px;
  color: #999;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.introduce-new .listbox > dl > dd .txt-inquiry .txt-1 {
  color: #111;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.introduce-new .listbox > dl > dd .txt-inquiry .txt-2 {
  margin-top: 15px;
  color: #777;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap:0 10px;
}


/* 260417 statistics renewal */

/* main */
.statistics_n * {
	line-height: 1.3;
}
.statistics_n figure {
	margin: 0;
}
.statInfoBox {
	padding: 40px 71px;
	border-radius: 20px;
	background-color: #FFFAF4;
}
.statInfoBox > ul > li {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: -0.01em;
	color: #222;
}
.statInfoBox > ul > li + li {
	margin-top: 10px;
}
.indicatorArea {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 60px;
}
.indicatorArea .item {
	overflow: hidden;
	position: relative;
	width: calc((100% - 50px)/3);
	border: 1px solid #DDDDDD;
	border-radius: 10px;
	background-color: #FBFBFB;
}
.indicatorArea .item::before {
	content: "";
	display: block;
	padding-top: 89%;
}
.indicatorArea .item .dataText {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 10px;
	text-align: center;
}
.indicatorArea .item .textBox {
	margin-top: 30px;
	font-size: 20px;
	color: #222;
}
.indicatorArea .item .textBox > span {
	font-weight: 500;
}
.indicatorArea .item .textBox > b {
	display: block;
	margin-top: 10px;
	font-size: 1.5em;
	font-weight: 700;
	color: var(--color-orange);
}
.indicatorArea .item.center {
	border: none;
	background-color: #00B5AD;
}
.indicatorArea .item.center .textBox {
	margin-top: 0;
	font-size: 22px;
	color: #fff;
}
.indicatorArea .item.center .textBox > em {
	display: block;
	margin-top: 10px;
	font-size: 2em;
	font-weight: 700;
}
.indicatorArea .item .hover {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	opacity: 0;
	transition: opacity 0.3s;
}
.indicatorArea .item .hover .more-text {
	display: flex;
	align-items: center;
	padding: 16px 34px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	background-color: var(--color-orange);
}
.indicatorArea .item .hover .more-text::after {
	content:"";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 4px;
	background: url("/img/sub/information/stat/icon_plus.svg") no-repeat center center/contain;
}
.indicatorArea .item:hover .hover {
	opacity: 1;
}

/* dashboard */
.dashboard {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.dashboard > li {
	width: calc(50% - 20px);
}
.dashboard > li > a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 40px;
	border: 1px solid #DDDDDD;
	border-radius: 20px;
	background-color: #FBFBFB;
	transition: 0.3s;
    transition-property: border-color, background-color;
}
.dashboard > li > a:hover {
	background-color: #FFFFFF;
	border-color: var(--color-orange);
}
.dashboard > li .imgBox {
	overflow: hidden;
	flex: 0 0 160px;
	border-radius: 20px;
}
.dashboard > li .imgBox img {
	width: 100%;
}
.dashboard > li .textBox {
	width: 100%;
	max-width: 350px;
	margin-left: 40px;
}
.dashboard > li .titleText .title {
	margin-right: 10px;
	font-size: 26px;
	font-weight: 600;
	color: #222;
}
.dashboard > li .titleText .sub {
	font-size: 16px;
	font-weight: 300;
	color: #555;
    vertical-align: 0.187em;
    white-space: nowrap;
}
.dashboard > li .data {
	margin-top: 30px;
	font-size: 20px;
	color: #222;
}
.dashboard > li dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.dashboard > li dl + dl {
	margin-top: 10px;
}
.dashboard > li dd {
	display: flex;
	align-items: center;
	font-weight: 600;
	margin-left: 10px;
}
.dashboard > li dd::before {
	content:"";
	display: inline-block;
	width: 14px;
	height: 10px;
	margin-right: 5px;
}
.dashboard > li dd.up {
	color: #0066FF;	
}
.dashboard > li dd.up::before {
	background: url("/img/sub/information/stat/data_arrow_up.svg") no-repeat center center/contain;
}
.dashboard > li dd.down {
	color: #FF3300;	
}
.dashboard > li dd.down::before {
	background: url("/img/sub/information/stat/data_arrow_down.svg") no-repeat center center/contain;
}

/* data */
.sub-link {
	overflow: hidden; 
	position: absolute; 
	width: 1px; 
	height: 1px; 
	margin: -1px; 
	clip: rect(0 0 0 0);
}
.dataTab {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.dataTab > a {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 62px;
	border: 1px solid #DDDDDD;
	border-radius: 10px;
	padding: 5px;
	font-size: 17px;
	font-weight: 600;
	color: #BBB;
	text-align: center;
}
.dataTab > a.on {
	border: none;
	background-color: var(--color-orange);
	color: #FFFFFF;
}
.secDataTop .dataInfo > li {
	display: flex;
	border-bottom: 1px solid #E0E0E0;
	font-size: 15px;
}
.secDataTop .dataInfo > li * {
	letter-spacing: -0.01em;
}
.secDataTop .dataInfo > li:first-child {
	border-top: 1px solid #E0E0E0;
}
.secDataTop .dataInfo > li .title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 14.28%;
	min-width: 100px;
	padding: 10px 20px;
	font-size: 1.13em;
	font-weight: 500;
	color: #333;
	text-align: center;
	background-color: #F9F9F9;
}
.secDataTop .dataInfo > li .desc {
	width: 85.72%;
	max-width: calc(100% - 100px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 19px 20px;
	font-weight: 300;
	color: #555;
}
.secDataTop .dataInfo > li .desc > ul > li {
	position: relative;
	padding-left: 0.82em;
}
.secDataTop .dataInfo > li .desc > ul > li + li {
	margin-top: 10px;
}
.secDataTop .dataInfo > li .desc > ul > li::before {
	content:"";
	position: absolute;
	left: 0;
	top: 0.44em;
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #444444;
}
.secDataDetail {
	--content-gap: 80px;
}
.secDataDetail .dataWrap + .dataWrap {
	margin-top: var(--content-gap);
}
.secDataDetail .dataWrap > .title,
.secDataDetail .tableItem > .title{
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 0;
	color: #222;
}
.secDataDetail .graphArea {
	text-align: center;
}
.secDataDetail .graphArea .sub {
	margin-top: 20px;
	font-size: 15px;
	font-weight: 300;
	color: #555;
	text-align: left;
}
.secDataDetail .graphArea .simpleButton {
	gap: 10px;
	margin-top: var(--content-gap);
	padding: 0 30px;
	border-radius: 50px;
	height: 54px;
}
.secDataDetail .graphArea .simpleButton span {
	font-size: 16px;
}
.secDataDetail .graphArea .simpleButton .arrow {
	width: 24px;
	height: 24px;
	background: url("/img/common/simple_btn_arrow.svg") no-repeat center center/contain;
}
.scrollBox {
	overflow-x: auto;
}
.scrollBox .graph {
	min-width: 700px;
}
.scrollBox table {
	min-width: 700px;
}
.scrollBox table.sizeS {
	min-width: 550px;
}
.scrollBox table.type2{
	min-width: 1100px;
}
.secDataDetail .statisticsMore {
	display: none;
	margin-top: var(--content-gap);
}
.secDataDetail .tableTop {
	margin-bottom: 10px;
	text-align: right;
}
.secDataDetail .tableTop .unit {
	font-size: 16px;
	font-weight: 600;
	color: #D9D9D9;
}
.secDataDetail table th,
.secDataDetail table td {
	padding: 13px 10px;
	border-right: 1px solid #E0E0E0;
}
.secDataDetail table th:last-child,
.secDataDetail table td:last-child {
	border-right: none;
}
.secDataDetail table th .fsz-s {
	font-size: 12px;
}
.secDataDetail table th.border-r {
	border-right: 1px solid #E0E0E0;
}
.secDataDetail table th.border-t {
	border-top: 1px solid #E0E0E0;
}
.secDataDetail table th.border-b-n {
	border-bottom: none;
}
.secDataDetail table thead th {
	height: 44px;
	padding: 10px 4px;
	font-size: 17px;
	font-weight: 500;
	color: #333;
}
.secDataDetail table tbody * {
	font-size: 15px;
	font-weight: 500;
	
}
.secDataDetail table tbody th {
	color: #555;
	background-color: #fff;
}
.secDataDetail table tbody td {
	height: 47px;
	text-align: right;
}
.secDataDetail table tbody .total th,
.secDataDetail table tbody .total td {
	font-weight: 700;
	background-color: #FFF7ED;
}
.secDataDetail table tbody .point th,
.secDataDetail table tbody .point td {
	font-weight: 700;
	background-color: #EBF9F9;
}
.secDataDetail table tbody td.total {
	font-weight: 700;
	background-color: #FFF7ED;
}
.secDataDetail table tbody td.point {
	font-weight: 700;
	background-color: #EBF9F9;
}
.secDataDetail table.type2 tbody * {
	color: #333;
	font-size: 17px;
}
.secDataDetail table.type2 th, .secDataDetail table.type2 td {
    padding: 10px 8px;
}
.secDataDetail table.type2 tbody td {
	height: 44px;
	color: #333;
	text-align: center;
}
.secDataDetail .dataInfo {
	margin-top: 20px;
}
.secDataDetail .dataInfo > li {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
	color: #555;
}
.secDataDetail .tableItem + .tableItem {
	margin-top: var(--content-gap);
}

/* library renewal */
.libraryWrap * {
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.libraryInfo {
	padding: 40px 71px;
	border-radius: 20px;
	background-color: #FFFAF4;
}
.libraryInfo > .title {
	position: relative;
	padding-left: 3.35em;
	font-size: 20px;
	font-weight: 600;
}
.libraryInfo > .title::before {
	content:"";
	position: absolute;
	left: 0;
	top: -0.225em;
	display: inline-block;
	width: 55px;
	height: 35px;
	background: url("/img/sub/inform/title_logo.svg") no-repeat center center/contain;
}
.libraryInfo .stepList {
	display: flex;
	gap: 40px;
	margin-top: 24.5px;
}
.libraryInfo .stepList > li {
	position: relative;
	width: calc((100% - 120px)/4);
	padding: 39px 0 48px;
	border: 1px solid #DDDDDD;
	border-radius: 20px;
	background-color: #fff;
	text-align: center;
}
.libraryInfo .stepList > li::after {
	content:"";
	position: absolute;
	right: -20px;
	top: 50%;
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url("/img/sub/inform/step_arrow.svg") no-repeat center center/contain;
	transform: translate(50%,-50%);
}
.libraryInfo .stepList > li:last-child::after {
	display: none;
}
.libraryInfo .stepList > li .num {
	display: inline-block;
	padding: 9px 20px;
	border-radius: 40px;
	background-color: #F5F5F5;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-orange);
}
.libraryInfo .stepList > li .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 110px;
	margin-top: 24px;
	padding: 0 10px;
}
.libraryInfo .stepList > li .box .text {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #222;
	word-break: break-all;
}
.libraryInfo .stepList > li .box .btnDownload {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 48px;
	margin-top: 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: #fff;
	background-color: var(--color-orange);
}
.libraryInfo .stepList > li .box .btnDownload::before {
	content:"";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	background: url("/img/sub/inform/icon_download.svg") no-repeat center center/contain;
}
.libraryInfo .stepList > li .contact {
	margin-top: 10px;
}
.libraryInfo .stepList > li .contact > li {
	position: relative;
	width: fit-content;
	margin: 0 auto;
	padding-left: 1.5em;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.54;
	color: #777;
	text-align: left;
	word-break: break-all;
}
.libraryInfo .stepList > li .contact > li::before {
	content:"";
	position: absolute;
	left: 0;
	top: 0.28em;
	display: inline-block;
	width: 16px;
	height: 16px;
}
.libraryInfo .stepList > li .contact > li.email::before {
	background: url("/img/sub/inform/icon_email.svg") no-repeat center center/contain;
}
.libraryInfo .stepList > li .contact > li.fax::before {
	background: url("/img/sub/inform/icon_fax.svg") no-repeat center center/contain;
}
.copyrightNotice {
	margin-top: 40px;
}
.copyrightNotice > .title {
	position: relative;
	padding-left: 1.75em;
	font-size: 16px;
	font-weight: 500;
	color: #222;
}
.copyrightNotice > .title::before{
	content:"";
	position: absolute;
	left: 0;
	top: 0.03em;
	display: inline-block;
	width: 20px;
	height: 20px;
    background: url("/img/svg/plus.svg") no-repeat center center/contain;
}
.copyrightNotice > ul {
	counter-reset: num 0;
	margin-top: 12px;
}
.copyrightNotice > ul > li {
	position: relative;
	padding-left: 1.5em;
	font-size: 16px;
	font-weight: 300;
	color: #222;
}
.copyrightNotice > ul > li::before {
	counter-increment: num 1;
	content:counter(num)'.';
	position: absolute;
	left: 0;
	top: 0;
	padding: 0 0.375em;
}
.copyrightNotice > ul > li + li {
	margin-top: 4px;
}
.libraryWrap .boardBox {
	margin-top: 40px;
}
.libraryWrap .searchBox > * {
	border-radius: 10px;
}
.libraryWrap .searchBox select {
	padding: 0 30px;
	background-image: url("/img/sub/selectArrow2.svg");
	background-position: calc(100% - 30px) center;
}
.libraryWrap .searchBox button {
	background: url("/img/sub/icon_search.svg") no-repeat center center/ 54.5% var(--color-orange);
}
.libraryWrap .searchBox button i {
	display: none;
}
.libraryWrap .searchBox label,
.libraryWrap .searchBox input[type=text] {
	padding: 0 30px;
}

.libraryList {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 16px;
}
.libraryList > li {
	display: flex;
	align-items: center;
	width: calc(50% - 8px);
	border: 1px solid #E0E0E0;
	border-radius: 10px;
	padding: 19px;
	transition: box-shadow 0.5s ease-out;
}
.libraryList > li .imgBox {
	position: relative;
	overflow: hidden;
	width: 134px;
	flex-shrink: 0;
	margin: 0;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
}
.libraryList > li .imgBox::before {
	content:"";
	display: block;
	padding-top: 144%;
}
.libraryList > li .imgBox > img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	transition: transform 0.5s ease-out;
}
.libraryList > li .imgBox > a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.libraryList > li .textBox {
	margin-left: 30px;
}
.libraryList > li .textBox .title > a {
	font-size: 20px;
	font-weight: 500;
	color: #222;
}
.libraryList > li .textBox {
	font-size: 16px;
}
.libraryList > li .textBox > ul {
	margin-top: 24px;
}
.libraryList > li .textBox > ul > li {
	display: flex;
}
.libraryList > li .textBox > ul > li.al-c {
	align-items: center;
}
.libraryList > li .textBox > ul > li + li {
	margin-top: 8px;
}
.libraryList > li .textBox .label {
	position: relative;
	width: 63px;
	font-weight: 500;
	color: #777;
}
.libraryList > li .textBox .label::after {
	content:"";
	position: absolute;
	right: -1px;
	top: 50%;
	display: inline-block;
	width: 1px;
	height: 10px;
	background-color: #E0E0E0;
	transform: translateY(-50%);
}
.libraryList > li .textBox .value {
	padding-left: 19px;
	font-weight: 300;
	color: #777;
}
.libraryList > li .textBox .value .btnDownload {
	display: block;
	width: 24px;
	height: 24px;
	background: url("/img/sub/inform/icon_download2.svg") no-repeat center center/contain;
}
.libraryList > li:hover {
	box-shadow: 0 0 12px rgba(0,0,0,0.16);
}
.libraryList > li:hover .imgBox > img {
	transform: translate(-50%, -50%) scale(1.32);
}

.libraryData > li {
	--img-w : 178px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	border: 1px solid #E0E0E0;
	border-radius: 10px;
	padding: 19px;
	transition: box-shadow 0.5s ease-out;
}
.libraryData > li + li {
	margin-top: 21px;
}
.libraryData > li .imgBox {
	position: relative;
	overflow: hidden;
	width: var(--img-w);
	flex-shrink: 0;
	margin: 0;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
}
.libraryData > li .imgBox::before {
	content:"";
	display: block;
	padding-top: 143.8%;
}
.libraryData > li .imgBox > img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	min-height:100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	transition: transform 0.5s ease-out; 
}
.libraryData > li .infoBox {
	width: calc(100% - var(--img-w) - 30px);
	margin-left: 30px;
}
.libraryData > li .infoBox .infoTitle {
	font-size: 20px;
	font-weight: 600;
	color: #222;
}
.libraryData > li .infoBox .date {
	display: flex;
	margin-top: 20px;
	font-size: 16px;
}
.libraryData > li .infoBox .date dt {
	position: relative;
	width: 63px;
	font-weight: 500;
}
.libraryData > li .infoBox .date dt::after {
	content:"";
	position: absolute;
	right: -1px;
	top: 50%;
	display: inline-block;
	width: 1px;
	height: 10px;
	background-color: #E0E0E0;
	transform: translateY(-50%);
}
.libraryData > li .infoBox .date dd {
	padding-left: 19px;
	font-weight: 300;
}
.libraryData > li:hover {
	box-shadow: 0 0 12px rgba(0,0,0,0.16);
}
.libraryData > li:hover .imgBox > img {
	transform: translate(-50%, -50%) scale(1.1);
}

.libraryData .infoList {
	margin-top: 20px;
}
.libraryData .infoList > li {
	display: flex;
	border-bottom: 1px solid #E0E0E0;
}
.libraryData .infoList > li:first-child {
	border-top: 1px solid #E0E0E0;
}
.libraryData .infoList > li .label {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 17.36%;
	min-width: 80px;
	background-color: #F9F9F9;
	font-size: 17px;
	font-weight: 500;
	color: #333;
	text-align: center;
}
.libraryData .infoList > li .value {
	position: relative;
	width: 82.64%;
	max-width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 19px 20px;
	font-size: 15px;
    font-weight: 300;
    color: #555;
}
.libraryData .infoList > li .value .download {
	position: relative;
	display: flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding-left: 1.33em;
	font-size: inherit;
	font-weight: 300;
	color: #555;
}
.libraryData .infoList > li .value .download  > span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
}
.libraryData .infoList > li .value .download::before {
	content:"";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 16px;
	height: 16px;
	background: url("/img/sub/inform/icon_file.svg") no-repeat center center/contain;
}
.libraryData .infoList > li .value .download::after {
	content:"";
	display: inline-block;
	min-width: 24px;
	height: 24px;
	margin-left: 8px;
	background: url("/img/sub/inform/icon_download2.svg") no-repeat center center/contain;
}

@media (max-width: 1400px) {
	.dashboard > li .titleText .title br {
		display: none;
	}
	.secDataTop .dataInfo > li .desc > ul > li br {
		display: none;
	}
	.scrollBox table.sizeL {
		min-width: 1400px;
	}
	.secDataDetail table th br:not(.fixed) {
		display: none;
	}
	
	.libraryInfo {
		padding: 30px 40px;
	}
}

@media (max-width: 1200px) {
	.indicatorArea .item .icon img {
		width: 90px;
	}
	.indicatorArea .item .textBox {
		font-size: 18px;
	}
	.indicatorArea .item.center .textBox {
		font-size: 20px;
	}
	.dashboard {
		gap: 30px;
	}
	.dashboard > li > a{
		padding: 25px;
	}
	.dashboard > li .imgBox {
		flex: 0 0 120px;
		border-radius: 10px;
	}
	.dashboard > li .textBox {
		margin-left: 30px;
	}
	.dashboard > li .titleText .title {
		font-size: 24px;
	}
	.dashboard > li .titleText .sub {
		font-size: 14px;
	}
	.dashboard > li .data {
		font-size: 18px;
	}
	.secDataDetail table.type2 tbody * {
		font-size: 15px;
	}
	
	/* library */
	.libraryInfo > .title {
		font-size: 18px;
	}
	.libraryInfo > .title::before {
		width: 50px;
		height: 30px;
	}
	.libraryInfo .stepList > li {
		padding: 30px 0 40px;
	}
	.libraryInfo .stepList > li .num {
		font-size: 16px;
	}
	.libraryInfo .stepList > li .box .text {
		font-size: 16px;
	}
	.libraryInfo .stepList > li .box .text > br {
		display: none;
	}
	.libraryInfo .stepList > li .contact > li {
		font-size: 14px;
	}
}

@media (max-width: 1024px) {
	.dataTab {
		gap: 5px;
		flex-wrap: wrap;
		justify-content: left;
	}
	.dataTab > a {
		flex: none;
		width: calc((100% - 10px)/3);
		height: 45px;
		border-radius: 5px;
		font-size: 14px;
	}
	.statInfoBox {
		padding: 30px 50px;
	}
	.indicatorArea .item .icon img {
		width: 80px;
	}
	.indicatorArea .item .textBox {
		font-size: 16px;
	}
	.indicatorArea .item.center .textBox {
		font-size: 18px;
	}
	.indicatorArea .item.center .textBox > em {
		font-size: 1.8em;
	}
	.indicatorArea .item .hover .more-text {
		padding: 12px 25px;
		font-size: 14px;
	}
	.indicatorArea .item .hover .more-text::after {
		width: 18px;
		height: 18px;
	}
	.secDataTop .dataInfo > li {
		font-size: 14px;
	}
	.secDataTop .dataInfo > li .title,
	.secDataTop .dataInfo > li .desc {
		padding: 10px;
	}
	.secDataTop .dataInfo > li .desc > ul > li::before {
		width: 3px;
		height: 3px;
	}
	.dataTab > a {
		height: 50px;
		font-size: 15px;
	}
	.secDataDetail .tableTop {
		margin-bottom: 5px;
	}
	.secDataDetail .tableTop .unit {
		font-size: 14px;
	}
	.scrollBox table.sizeL {
		min-width: 1200px;
	}
	.secDataDetail table th, .secDataDetail table td {
		padding: 5px;
	}
	.secDataDetail table thead th {
		height: 35px;
		padding: 5px;
		font-size: 15px;
	}
	.secDataDetail table tbody * {
		font-size: 14px;
	}
	.secDataDetail table tbody td {
		height: 40px;
	}
	.secDataDetail table.type2 th, .secDataDetail table.type2 td {
		padding: 4px;
	}
	.secDataDetail table.type2 thead th {
		font-size: 14px;
	}
	.secDataDetail table.type2 tbody * {
		font-size: 14px;
	}
	.libraryInfo .stepList {
		flex-wrap: wrap;
	}
	.libraryInfo .stepList > li {
		width: calc(50% - 20px);
	}
	.libraryInfo .stepList > li:nth-child(3) {
		order: 4;
	}
	.libraryInfo .stepList > li:nth-child(2)::after {
		right: 50%;
		top: calc(100% + 20px);
		transform: translate(50%, -50%) rotate(90deg);
	}
	.libraryInfo .stepList > li:nth-child(3)::after {
		right: calc(100% + 20px);
		transform: translate(50%, -50%) rotate(180deg);
	}
	.libraryWrap .searchBox > * {
		border-radius: 8px;
	}
	.libraryWrap .searchBox select {
		padding: 0 10px;
		background-size: 20px;
		background-position: calc(100% - 10px) center;
	}
	.libraryWrap .searchBox label,
	.libraryWrap .searchBox input[type=text] {
		padding: 0 10px;
	}
	.libraryWrap .searchBox button {
		background-size: 45%;
	}
	.libraryList > li {
		padding: 15px;
	}
	.libraryList > li .imgBox {
		width: 110px;
	}
	.libraryList > li .textBox {
		margin-left: 20px;
	}
	.libraryList > li .textBox {
		font-size: 15px;
	}
	.libraryList > li .textBox .title > a {
		font-size: 18px;
	}
	.libraryList > li .textBox > ul {
		margin-top: 20px;
	}
	.libraryList > li .textBox > ul > li + li {
		margin-top: 5px;
	}
	.libraryList > li .textBox .value .btnDownload {
		width: 20px;
		height: 20px;
	}
	.libraryData > li {
		--img-w: 150px;
	}
	.libraryData > li .infoBox .infoTitle {
		font-size: 18px;
	}
	.libraryData .infoList > li .label {
		font-size: 15px;
	}
	.libraryData .infoList > li .value {
		padding: 15px;
		font-size: 14px;
	}
	.libraryData .infoList > li .value .download::after {
		min-width: 22px;
		height: 22px;
	}
	.libraryData > li .infoBox .date {
		font-size: 14px;
	}
	.libraryData > li .infoBox .date dt {
		width: 55px;
	}
	.libraryData > li .infoBox .date dd {
		padding-left: 15px;
	}
}
@media (max-width: 960px) {
	.dashboard {
		gap: 20px;
	}
	.dashboard > li{
		width: 100%;
	}
	.dashboard > li > a {
		padding: 20px;
	}
	.dashboard > li .textBox {
		max-width: initial;
	}
}
@media (max-width: 768px) {
	.statInfoBox {
		padding: 20px;
		border-radius: 10px;
	}
	.statInfoBox > ul > li {
		font-size: 14px;
	}
	.indicatorArea {
		gap: 20px;
	}
	.indicatorArea .item {
		width: calc(50% - 10px);
	}
	.indicatorArea .item.center {
		width: 100%;
	}
	.indicatorArea .item::before {
		display: none;
	}
	.indicatorArea .item .dataText {
		position: static;
		padding: 20px 10px;
	}
	.indicatorArea .item .textBox {
		margin-top: 20px;
	}
	
	.indicatorArea .item .textBox {
		font-size: 14px;
	}	
	.indicatorArea .item .textBox > b {
		margin-top: 5px;
		font-size: 1.2em;
	}
	.indicatorArea .item.center .textBox {
		font-size: 16px;
	}
	.indicatorArea .item.center .textBox > em {
		margin-top: 5px;
		font-size: 1.5em;
	}
	.indicatorArea .item .hover .more-text {
		padding: 10px 20px;
		font-size: 13px;
	}
	.indicatorArea .item .hover .more-text::after {
		width: 16px;
		height: 16px;
	}
	.dashboard > li > a {
		padding: 15px;
		border-radius: 10px;
	}
	.dashboard > li .imgBox {
		flex: 0 0 100px;
	}
	.dashboard > li .textBox {
		margin-left: 25px;
	}
	.dashboard > li .titleText .title {
		margin-right: 5px;
		font-size: 18px;
	}
	.dashboard > li .titleText .sub {
		font-size: 13px;
	}
	.dashboard > li .data {
		margin-top: 20px;
		font-size: 16px;
	}
	.dashboard > li dl + dl {
		margin-top: 5px;
	}
	.dashboard > li dd::before {
		width: 12px;
		height: 9px;
	}
	.scrollBox {
		padding-bottom: 5px;
	}
	.secDataTop .dataInfo > li {
		flex-direction: column;
	}
	.secDataTop .dataInfo > li .title, 
	.secDataTop .dataInfo > li .desc {
		width: 100%;
	}
	.secDataTop .dataInfo > li .desc {
		max-width: initial;
	}
	.secDataTop .dataInfo > li .title {
	    border-bottom: 1px solid #E0E0E0;
	}
	.secDataDetail .dataWrap > .title,
	.secDataDetail .tableItem > .title{
		font-size: 18px;
	}
	.secDataDetail .graphArea .sub {
		margin-top: 15px;
		font-size: 14px;
	}
	.secDataDetail .graphArea .simpleButton {
		height: 45px;
	}
	.secDataDetail .graphArea .simpleButton span {
		font-size: 14px;
	}
	.secDataDetail .graphArea .simpleButton .arrow {
		width: 18px;
		height: 18px;
	}
	.secDataDetail .dataInfo {
		margin-top: 15px;
	}
	.secDataDetail .dataInfo > li {
		font-size: 14px;
	}
	
	.libraryList > li {
		width: 100%;
	}
	.libraryData > li .imgBox {
		margin: 0 auto;
	}
	.libraryData > li .infoBox {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
}
@media (max-width: 640px) {
	.secDataDetail {
		--content-gap: 40px;
	}
	.dataTab > a {
		width: calc(50% - 5px);
	}
	.libraryInfo {
		padding: 30px;
	}
	.libraryInfo > .title {
		padding-left: 2.5em;
	}
	.libraryInfo > .title::before {
		width: 40px;
		height: 25px;
	}
	.libraryInfo .stepList > li {
		width: 100%;
	}
	.libraryInfo .stepList > li:nth-child(3) {
		order: initial;
	}
	.libraryInfo .stepList > li:nth-child(1)::after,
	.libraryInfo .stepList > li:nth-child(3)::after{
		right: 50%;
		top: calc(100% + 20px);
		transform: translate(50%, -50%) rotate(90deg);
	}
	.libraryInfo .stepList > li .box {
		min-height: 90px;
	}
	.libraryInfo .stepList > li .box .text > br {
		display: inline;
	}
	
	.copyrightNotice > .title {
		font-size: 15px;
	}
	.copyrightNotice > .title::before {
		width: 15px;
		height: 15px;
	}
	.copyrightNotice > ul > li {
		font-size: 15px;
	}
}