:root {
  --color-orange: #FAA74B;
  --color-mint: #00B3AB;
  --color-brown: #594A41;
  --color-pink: #F3ACCB;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: "Pretendard", sans-serif;
}

.font70 {
  --fontsize: 7.0rem;
  font-size: var(--fontsize);
}

.font64 {
  --fontsize: 6.4rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

.font38 {
  --fontsize: 3.8rem;
  font-size: var(--fontsize);
}

.font34 {
  --fontsize: 3.4rem;
  font-size: var(--fontsize);
}

.sub-visual {
  width: 100%;
  height: 550px;
  position: relative;
}
.sub-visual .bg-box,
.sub-visual .bg,
.sub-visual .flex-box {
  width: 100%;
  height: 100%;
}
.sub-visual .bg-box {
  overflow: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sub-visual .bg {
  transition: all 1.2s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  filter: grayscale(0.6) blur(2px);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.sub-visual .flex-box,
.sub-visual .text {
  display: flex;
  flex-direction: column;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-visual .text {
  row-gap: 25px;
  text-align: center;
  margin-top: auto;
}
.sub-visual .text * {
  color: var(--color-white);
}
.sub-visual h2,
.sub-visual .path-box {
  opacity: 0;
  transition: all 1.2s;
}
.sub-visual h2 {
  font-weight: 800;
  transform: translateY(-60px);
}
.sub-visual .path-box,
.sub-visual .path-box .path {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-visual .path {
  column-gap: 6px;
}
.sub-visual .path::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("/img/sub/arrow_path.png") no-repeat center;
	margin: 0 5px;
}
.sub-visual .path a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  font-weight: 500;
}
.sub-visual .lnb-box {
  width: 100%;
  height: 75px;
  margin-top: 120px;
}
.sub-visual .lnb-box *:not(img) {
  width: 100%;
  height: 100%;
}
.sub-visual .lnb-box ul {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-visual .lnb-box ul * {
  transition: all 0.4s;
}
.sub-visual .lnb-box ul li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.sub-visual .lnb-box ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-visual .lnb-box ul li:hover, .sub-visual .lnb-box ul li.on {
  background: var(--color-orange);
}
.sub-visual .lnb-box ul li:hover a, .sub-visual .lnb-box ul li.on a {
  color: var(--color-white);
}
.sub-visual.sv01 .bg {
  background-image: url("/img/sub/bg_sub_01.jpg");
}
.sub-visual.sv02 .bg {
  background-image: url("/img/sub/bg_sub_02.jpg");
}
.sub-visual.sv03 .bg {
  background-image: url("/img/sub/bg_sub_03.jpg");
}
.sub-visual.sv04 .bg {
  background-image: url("/img/sub/bg_sub_04.jpg");
}
.sub-visual.sv05 .bg {
  background-image: url("/img/sub/bg_sub_05.jpg");
}
.sub-visual.sv06 .bg {
  background-image: url("/img/sub/bg_sub_06.jpg");
}
.sub-visual.on .bg {
  transform: translate(-50%, -50%) scale(1);
  filter: inherit;
}
.sub-visual.on h2,
.sub-visual.on .path-box {
  opacity: 1;
}
.sub-visual.on h2 {
  transform: translateY(0);
}
.sub-visual.on .path-box {
  transition-delay: 0.4s;
}

.sub-contents .sub-page {
  padding: 150px 0;
}
.sub-contents .sub-page.bottom-x {
  padding: 150px 0 0;
}
.sub-contents .sub-page .sub-flex {
  display: flex;
}
.sub-contents .sub-page .sub-flex > * {
  width: 100%;
}
.sub-contents .sub-page .sub-flex > *:first-child {
  max-width: 300px;
  flex-shrink: 0;
}
.sub-contents .sub-page .bg-gray {
  position: relative;
}
.sub-contents .sub-page .bg-gray::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f9f9f9;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .sub-page .page-title {
  color: #222;
  font-weight: 700;
  text-align: center;
}
.sub-contents .sub-page .contents {
  margin-top: 90px;
}
.sub-contents .sub-page .padding {
  padding: 120px 0;
}
.sub-contents .sub-page .padding.top-x {
  padding: 0 0 120px;
}
.sub-contents .sub-page .plus-title {
  color: #222;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .sub-page .plus-title::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background: url("/img/svg/plus.svg") no-repeat center/100%;
  transform: translateY(0.3em);
}
.sub-contents .sub-page .plus-title h5 {
  color: #222;
  font-weight: 600;
}
.sub-contents .sub-page .plus-title span {
  display: block;
  color: #555;
  font-size: 0.7055em;
  font-weight: 300;
  margin-top: 5px;
}
.sub-contents .sub-page .dot-list > * {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .sub-page .dot-list > *::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 0.55em 0 0;
}
.sub-contents .sub-page .dot-list.orange > *::before {
  background: var(--color-orange);
}
.sub-contents .sub-page .dot-list.mint > *::before {
  background: var(--color-mint);
}
.sub-contents .sub-page .dot-list.pink > *::before {
  background: var(--color-pink);
}
.sub-contents .sub-page .icon-title {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .sub-page .icon-title .icon {
  width: 25px;
  flex-shrink: 0;
}
.sub-contents .sub-page .icon-title h6 {
  color: #222;
  font-size: 2rem;
  font-weight: 500;
}
.sub-contents .sub-depth3 {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}
.sub-contents .sub-depth3 li,
.sub-contents .sub-depth3 li a {
  transition: all 0.4s;
}
.sub-contents .sub-depth3 li {
  width: 100%;
  max-width: 370px;
  height: 64px;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.sub-contents .sub-depth3 li a {
  color: #bbb;
  font-size: 1.7rem;
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .sub-depth3 li:hover a, .sub-contents .sub-depth3 li.on a {
  color: var(--color-white);
}
.sub-contents .sub-depth3.orange li:hover, .sub-contents .sub-depth3.orange li.on {
  background: var(--color-orange);
  border-color: var(--color-orange);
}
.sub-contents .sub-depth3.orange li:hover a, .sub-contents .sub-depth3.orange li.on a {
  color: var(--color-white);
}
.sub-contents .sub-depth3.mint li:hover, .sub-contents .sub-depth3.mint li.on {
  background: var(--color-mint);
  border-color: var(--color-mint);
}
.sub-contents .sub-depth3.mint li:hover a, .sub-contents .sub-depth3.mint li.on a {
  color: var(--color-white);
}
.sub-contents .service-item {
  width: 100%;
}
.sub-contents .service-item .icon-title {
  margin-bottom: 35px;
}
.sub-contents .service-item ul,
.sub-contents .service-item ul li {
  width: 100%;
}
.sub-contents .service-item ul {
  display: flex;
  column-gap: 20px;
}
.sub-contents .service-item ul li {
  display: flex;
  flex-direction: column;
}
.sub-contents .service-item ul span {
  width: 100px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 100px;
  color: var(--color-white);
  font-size: 1.7rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .service-item ul span.pink {
  background: var(--color-pink);
}
.sub-contents .service-item ul span.mint {
  background: var(--color-mint);
}
.sub-contents .service-item ul .dot-list {
  height: 100%;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .service-item ul p {
  color: #222;
  font-weight: 300;
  line-height: 1.5;
}
.sub-contents .service-item ul p a {
  color: #222;
  font-weight: 300;
}
.sub-contents .service-item ul p b {
  font-weight: 500;
}
.sub-contents .promotion .info .item-box {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 40px;
  align-items: center;
  justify-content: center;
}
.sub-contents .promotion .info .item {
  width: 100%;
  max-width: 560px;
}
.sub-contents .promotion .info h5,
.sub-contents .promotion .info .text {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .promotion .info h5 {
  width: 180px;
  height: 55px;
  background: linear-gradient(180deg, #F6BD2A 0%, #FA952A 100%);
  border: 1px solid #DFDFDF;
  border-radius: 100px;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 auto -20px;
  position: relative;
  z-index: 1;
}
.sub-contents .promotion .info .text {
  width: 100%;
  height: 250px;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  text-align: center;
  padding-top: 10px;
}
.sub-contents .promotion .info .text * {
  font-family: "Cafe24Ssurround";
}
.sub-contents .promotion .info p {
  color: #222;
  font-size: 3.2rem;
  font-weight: 700;
}
.sub-contents .promotion .info p em {
  color: var(--color-orange);
}
.sub-contents .promotion .tasks {
  position: relative;
}
.sub-contents .promotion .tasks::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  background: url("/img/sub/bg_promotion.jpg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .promotion .tasks .plus-title {
  font-weight: 700;
  justify-content: center;
}
.sub-contents .promotion .tasks .plus-title::before {
  width: 31px;
  height: 31px;
}
.sub-contents .promotion .tasks .item-box {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
}
.sub-contents .promotion .tasks .item,
.sub-contents .promotion .tasks .item > * {
  width: 100%;
}
.sub-contents .promotion .tasks .item > * {
  border-radius: 10px;
}
.sub-contents .promotion .tasks .item h6 {
  height: 80px;
  background: var(--color-mint);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .promotion .tasks .item .text {
  height: 330px;
  background: var(--color-white);
  padding: 0 25px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .promotion .tasks .item .text p {
  height: 100%;
  color: #222;
  font-weight: 300;
  text-align: center;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .promotion .tasks .item .text hr {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1px dotted #999;
  flex-shrink: 0;
  margin: 0;
}
.sub-contents .promotion .tasks .item.color h6 {
  background: var(--color-brown);
}
.sub-contents .promotion .tasks .item.color .text {
  background: linear-gradient(180deg, #F6BD2A 0%, #FA952A 100%);
}
.sub-contents .promotion .tasks .item.color .text p {
  color: var(--color-white);
	font-weight: 600;
}
.sub-contents .promotion .tasks .item.on:nth-child(1) {
  transition-delay: 0.15s;
}
.sub-contents .promotion .tasks .item.on:nth-child(2) {
  transition-delay: 0.3s;
}
.sub-contents .promotion .tasks .item.on:nth-child(3) {
  transition-delay: 0.45s;
}
.sub-contents .promotion .tasks .item.on:nth-child(4) {
  transition-delay: 0.6s;
}
.sub-contents .business .content {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .business .content > hr {
  width: 100%;
  height: 1px;
  border-top: 1px dotted #bbb;
}
.sub-contents .business .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0;
  column-gap: 25px;
}
.sub-contents .business .text {
  background: var(--color-white);
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  padding: 40px;
}
.sub-contents .business .text h6 {
  display: inline-block;
  border-radius: 100px;
  color: var(--color-white);
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  padding: 14px 20px;
}
.sub-contents .business .text h6.mint {
  background: var(--color-mint);
}
.sub-contents .business .text h6.orange {
  background: var(--color-orange);
}
.sub-contents .business .text .p-box {
  margin: 25px 0 0;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .business .text .p-box p {
	color: #222;
}
.sub-contents .status .item-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 50px;
  column-gap: 30px;
}
.sub-contents .status .item,
.sub-contents .status .item::before {
  border-radius: 30px;
}
.sub-contents .status .item {
  text-align: center;
  padding: 55px 20px 50px;
  position: relative;
}
.sub-contents .status .item::before {
  content: "";
  display: block;
  background: var(--color-white);
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .status .item .text {
  margin: 35px 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 0;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .status .item .text p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
}
.sub-contents .status .item .text span {
  color: var(--color-mint);
  font-size: 2.5rem;
  font-weight: 600;
}
.sub-contents .status .item button {
  width: 170px;
  height: 45px;
  border: 1px solid #dfdfdf;
  border-radius: 100px;
  margin: 0 auto;
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}
.sub-contents .status .item button * {
  transition: all 0.4s;
}
.sub-contents .status .item button span {
  display: inline-block;
  color: #999;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateX(12px);
}
.sub-contents .status .item button img {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: rotate(-270deg);
  filter: brightness(0) invert(1);
}
.sub-contents .status .item button:hover {
  background: var(--color-mint);
  border-color: var(--color-mint);
}
.sub-contents .status .item button:hover span {
  color: var(--color-white);
  transform: translateX(0);
}
.sub-contents .status .item button:hover img {
  opacity: 1;
  transform: rotate(0deg);
}
.sub-contents .status .item:hover::before {
  border-color: rgba(0, 179, 171, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.sub-contents .status .item.on:nth-child(1) {
  transition-delay: 0.15s;
}
.sub-contents .status .item.on:nth-child(2) {
  transition-delay: 0.3s;
}
.sub-contents .status .item.on:nth-child(3) {
  transition-delay: 0.45s;
}
.sub-contents .status .item.on:nth-child(4) {
  transition-delay: 0.6s;
}
.sub-contents .status .item.on:nth-child(5) {
  transition-delay: 0.75s;
}
.sub-contents .status .item.on:nth-child(6) {
  transition-delay: 0.9s;
}
.sub-contents .status-popup {
  width: 100%;
  height: 100vh;
  max-width: 1400px;
  max-height: calc(100vh - 80px);
  z-index: 3;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .status-popup .inner,
.sub-contents .status-popup .inner > .scrollable {
  width: 100%;
  height: 100%;
}
.sub-contents .status-popup .inner {
  background: var(--color-white);
  border-radius: 50px;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 0;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .status-popup .inner > .scrollable {
  padding: 0 40px;
  overflow-x: clip;
  overflow-y: scroll;
}
.sub-contents .status-popup .inner > .scrollable::-webkit-scrollbar {
  width: 8px;
}
.sub-contents .status-popup .inner > .scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.sub-contents .status-popup .inner > .scrollable::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.sub-contents .status-popup .top {
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 40px;
  position: relative;
}
.sub-contents .status-popup h5 {
  color: #222;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}
.sub-contents .status-popup .close {
  position: absolute;
  top: 50%;
  left: auto;
  right: 20px;
  transform: translateY(-50%);
}
.sub-contents .status-popup .close i {
  color: var(--color-black);
  font-size: 2.4rem;
}
.sub-contents .status-popup .content {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .status-popup .content > * {
  width: 100%;
}
.sub-contents .status-popup .border {
  border: 1px solid #dfdfdf;
  border-radius: 15px;
}
.sub-contents .status-popup .map,
.sub-contents .status-popup .graph {
  width: 100%;
  text-align: center;
  padding: 30px 20px;
}
.sub-contents .status-popup .item6 {
  display: none;
}
.sub-contents .status-popup .item6 h5 {
  margin: 60px 0 15px;
}
.sub-contents .status-popup .table {
  width: 100%;
}
.sub-contents .status-popup .table > div {
  display: none;
}
.sub-contents .status-popup .table span,
.sub-contents .status-popup .table .note {
  font-size: 1.5rem;
  font-weight: 300;
}
.sub-contents .status-popup .table span {
  display: block;
  color: #888;
  text-align: right;
}
.sub-contents .status-popup .table .note {
  color: #222;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .status-popup .table .note::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  margin: 0.55em 0 0;
}
.sub-contents .status-popup .table .note.mint::before {
  background: var(--color-mint);
}
.sub-contents .status-popup .table .note.orange::before {
  background: var(--color-orange);
}
.sub-contents .status-popup .table-box {
  margin: 15px 0;
}
.sub-contents .status-popup .table-box table {
  border: 1px solid #DFDFDF;
  border-radius: 15px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #DFDFDF;
  overflow: hidden;
}
.sub-contents .status-popup .table-box table th,
.sub-contents .status-popup .table-box table td {
  height: 55px;
  border: 1px solid #DFDFDF;
  color: #222;
  font-size: 1.5rem;
  font-weight: 300;
}
.sub-contents .status-popup .table-box table th {
  background: #f9f9f9;
}
.sub-contents .status-popup .table-box table th.bg {
  color: var(--color-white);
  font-weight: 600;
}
.sub-contents .status-popup .table-box table th.mint {
  background: var(--color-mint);
}
.sub-contents .status-popup .table-box table th.orange {
  background: var(--color-orange);
}
.sub-contents .status-popup .table-box table td {
  text-align: center;
}
.sub-contents .status-popup .table-box table td.bg {
  font-weight: 500;
}
.sub-contents .status-popup .table-box table td.mint {
  background: #F2FBFB;
}
.sub-contents .status-popup .table-box table td.orange {
  background: #FEFAF6;
}
.sub-contents .status-popup .table-box table tr.point > *{
	position: relative;
}
.sub-contents .status-popup .table-box table tr.point > *::before{
	content: "";
	width: calc(100% + 1px);
	height: calc(100% + 1px);
	border: 4px solid var(--color-orange);
	border-right: none;
	border-left: none;
	box-sizing: border-box;
	position: absolute;
	top: -1px;
	left: -1px;
}
.sub-contents .status-popup .table-box table tr.point > *:first-child::before{
	border-left: 4px solid var(--color-orange);
	left: 0;
}
.sub-contents .status-popup .table-box table tr.point > *:last-child::before{
	border-right: 4px solid var(--color-orange);
}
.sub-contents .information .definition .shadow,
.sub-contents .information .definition .shadow::before {
  border-radius: 30px;
}
.sub-contents .information .definition .shadow {
  text-align: center;
  padding: 65px 0;
  position: relative;
}
.sub-contents .information .definition .shadow::before {
  content: "";
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .information .definition .shadow > p {
  color: #222;
  font-size: 2rem;
  font-weight: 500;
}
.sub-contents .information .definition .shadow > p .orange {
  color: #F59A10;
}
.sub-contents .information .definition .shadow > p .mint {
  color: #00B5AD;
}
.sub-contents .information .definition h6 {
  display: inline-block;
  background: var(--color-brown);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 500;
  padding: 16px 35px;
  margin-bottom: 35px;
}
.sub-contents .information .definition .diagram {
  width: 100%;
  max-width: 61%;
  margin: 55px auto;
  position: relative;
}
.sub-contents .information .definition .circle-box {
  display: grid;
  grid-template-columns: 64.95% 64.95%;
  justify-content: center;
}
.sub-contents .information .definition .circle .inner,
.sub-contents .information .definition .circle::before {
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .information .definition .circle {
  padding: 50% 0;
  position: relative;
}
.sub-contents .information .definition .circle::before {
  content: "";
  display: block;
  border: 1px dashed transparent;
  width: 100%;
  height: 100%;
}
.sub-contents .information .definition .circle .inner {
  width: 86.2385%;
  padding: 43.11925% 0;
  transition: all 0.6s;
}
.sub-contents .information .definition .circle.orange {
  transform: translateX(23.01495%);
}
.sub-contents .information .definition .circle.orange::before {
  border-color: var(--color-orange);
}
.sub-contents .information .definition .circle.orange .inner {
  background: var(--color-orange);
}
.sub-contents .information .definition .circle.mint {
  transform: translateX(-23.01495%);
}
.sub-contents .information .definition .circle.mint::before {
  border-color: var(--color-mint);
}
.sub-contents .information .definition .circle.mint .inner {
  background: var(--color-mint);
}
.sub-contents .information .definition .circle:hover .inner {
  width: 100%;
  padding: 50% 0;
}
.sub-contents .information .definition .text-box {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 64%;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .information .definition .text-box p {
  color: var(--color-white);
  font-size: 1.9rem;
  font-weight: 600;
}
.sub-contents .information .definition .who {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .information .definition .who p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.75;
}
.sub-contents .information .definition .who p b {
  font-weight: 500;
}
.sub-contents .information .signal .top {
  color: #222;
  font-size: 1.8rem;
  line-height: 1.9;
  text-align: center;
}
.sub-contents .information .signal .top b {
  font-weight: 600;
}
.sub-contents .information .signal .item-box {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .information .signal .item {
  width: 100%;
  display: grid;
  grid-template-columns: 20.25% 8.15% 71.6%;
  align-items: center;
}
.sub-contents .information .signal .item.reverse {
  grid-template-columns: 71.6% 8.15% 20.25%;
}
.sub-contents .information .signal .circle,
.sub-contents .information .signal .text {
  background: var(--color-white);
}
.sub-contents .information .signal .circle {
  border-radius: 50%;
  padding: 50% 0;
  position: relative;
  transition: all 0.4s;
}
.sub-contents .information .signal .circle img,
.sub-contents .information .signal .circle p {
  transition: all 0.4s;
}
.sub-contents .information .signal .circle .inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .information .signal .circle .icon {
  height: 69px;
  position: relative;
}
.sub-contents .information .signal .circle .icon img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.sub-contents .information .signal .circle .icon img:last-child {
  opacity: 0;
}
.sub-contents .information .signal .circle p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 15px;
}
.sub-contents .information .signal .line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .information .signal .line hr {
  width: 90px;
  height: 1px;
  border-top: 1px dotted #ccc;
}
.sub-contents .information .signal .line span {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 -2.5px;
}
.sub-contents .information .signal .text {
  height: 285px;
  border-radius: 20px;
  padding: 0 50px;
  position: relative;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .information .signal .text::before {
  content: "";
  display: block;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .information .signal .dot-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .information .signal .dot-list p {
  color: #222;
  font-weight: 300;
}
.sub-contents .information .signal .dot-list p b {
  font-weight: 600;
}
.sub-contents .information .signal .item:hover .circle {
  background: var(--color-orange);
}
.sub-contents .information .signal .item:hover .circle .icon img:first-child {
  opacity: 0;
}
.sub-contents .information .signal .item:hover .circle .icon img:last-child {
  opacity: 1;
}
.sub-contents .information .signal .item:hover .circle p {
  color: var(--color-white);
}
.sub-contents .information .signal .item:hover .line hr {
  border-color: var(--color-orange);
}
.sub-contents .information .signal .item:hover .line span {
  background: var(--color-orange);
}
.sub-contents .information .signal .item:hover .text::before {
  opacity: 1;
}
.sub-contents .information .guide .item-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0;
  column-gap: 60px;
}
.sub-contents .information .guide .item,
.sub-contents .information .guide .item::before {
  border-radius: 20px;
  transition: all 0.4s;
}
.sub-contents .information .guide .item {
  height: 460px;
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .information .guide .item::before {
  content: "";
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .information .guide .item dl {
  margin-bottom: 70px;
}
.sub-contents .information .guide .item dl dt {
  color: #222;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
}
.sub-contents .information .guide .item dl dt span {
  display: inline-block;
  color: var(--color-mint);
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 10px;
}
.sub-contents .information .guide .item dl dd {
  color: #555;
  font-weight: 300;
  line-height: 1.6;
}
.sub-contents .information .guide .item:nth-child(even) {
  margin-top: 60px;
}
.sub-contents .information .guide .item:hover {
  border-color: rgba(0, 179, 171, 0.5);
}
.sub-contents .information .guide .item:hover::before {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.sub-contents .region .top {
  color: #222;
  margin-bottom: 80px;
}
.sub-contents .region .top p {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.sub-contents .region .flex-box {
  display: flex;
  column-gap: 110px;
}
.sub-contents .region .map-box {
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
}
.sub-contents .region .tab {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
}
.sub-contents .region .tab li {
  width: calc((100% - 40px) / 5);
  height: 50px;
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.4s;
}
.sub-contents .region .tab li button {
  font-size: 1.5rem;
  font-weight: 300;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .region .tab li.all {
  width: 100%;
}
.sub-contents .region .tab li.on {
  background: var(--color-orange);
  border-color: var(--color-orange);
}
.sub-contents .region .tab li.on button {
  color: var(--color-white);
}
.sub-contents .region .tab-contents {
  margin-top: 50px;
}
.sub-contents .region h5 {
  color: #222;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 25px;
}
.sub-contents .region .flex-column {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .region .plus-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.sub-contents .region .plus-title::before {
  width: 15px;
  height: 15px;
}
.sub-contents .region .table-box table {
  border-top: 1px solid #e0e0e0;
}
.sub-contents .region .table-box table th,
.sub-contents .region .table-box table td {
  min-height: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 10px;
}
.sub-contents .region .table-box table th:last-child,
.sub-contents .region .table-box table td:last-child {
  border-left: 1px solid #e0e0e0;
}
.sub-contents .region .table-box table th:not(:last-child),
.sub-contents .region .table-box table td:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}
.sub-contents .region .table-box table th {
  background: #f9f9f9;
  color: #333;
  font-weight: 400;
}
.sub-contents .region .table-box table td {
  color: #555;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
}
.sub-contents .region .table-box table .link {
  color: var(--color-orange);
  font-size: 1.4rem;
}
.sub-contents .survivors .contents {
  text-align: center;
}
.sub-contents .survivors p {
  font-size: 1.8rem;
  font-weight: 300;
}
.sub-contents .survivors p b {
  font-weight: 500;
}
.sub-contents .survivors .top {
  color: #555;
  line-height: 1.8;
}
.sub-contents .survivors .top b {
  color: #222;
}
.sub-contents .survivors .recovery {
  padding: 80px 0;
  margin-top: 80px;
  position: relative;
}
.sub-contents .survivors .recovery * {
  color: var(--color-white);
}
.sub-contents .survivors .recovery::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url("/img/sub/bg_survivors.jpg") no-repeat center/cover;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .survivors .recovery > p {
  line-height: 1.75;
}
.sub-contents .survivors .recovery .item-box {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .survivors .recovery .item {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 30px;
  align-items: center;
  justify-content: center;
}
.sub-contents .survivors .recovery .item > div {
  width: 470px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  padding: 10px;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .survivors .recovery .item > div.border {
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.sub-contents .survivors .recovery .item p {
  font-size: 1.7rem;
  line-height: 1.6;
}
.sub-contents .survivors .recovery .item p b {
  font-weight: 600;
}
.sub-contents .survivors .brand > p {
  color: #555;
  font-size: 2.3rem;
  line-height: 1.85;
}
.sub-contents .survivors .brand > p b {
  color: #222;
  font-weight: 600;
}
.sub-contents .survivors .brand > p .mint {
  color: var(--color-mint);
}
.sub-contents .survivors .brand > p .pink {
  color: var(--color-pink);
}
.sub-contents .survivors .brand .item-box {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 40px;
  align-items: center;
  justify-content: center;
}
.sub-contents .survivors .brand .item {
  width: 100%;
}
.sub-contents .survivors .brand .item h6 {
  color: #222;
  font-size: 2.4rem;
  font-weight: 700;
}
.sub-contents .survivors .brand .grid,
.sub-contents .survivors .brand .grid::before,
.sub-contents .survivors .brand .grid::after {
  border-radius: 50px;
}
.sub-contents .survivors .brand .grid {
  width: 100%;
  height: 300px;
  margin-top: 30px;
  position: relative;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .survivors .brand .grid::before, .sub-contents .survivors .brand .grid::after {
  content: "";
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .survivors .brand .grid::before {
  background-image: linear-gradient(90deg, #efefef 1px, rgba(255, 255, 255, 0) 1px), linear-gradient(0deg, #efefef 1px, rgba(255, 255, 255, 0) 1px);
  background-size: 20px 20px;
}
.sub-contents .survivors .brand .grid::after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}
.sub-contents .survivors .color *:not(h4) {
  text-align: left;
}
.sub-contents .survivors .color h4 {
  color: #222;
  font-weight: 700;
}
.sub-contents .survivors .color .item-box {
  margin: 60px 0 30px;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 25px;
  align-items: center;
  justify-content: center;
}
.sub-contents .survivors .color .item,
.sub-contents .survivors .color .item::before,
.sub-contents .survivors .color dl {
  border-radius: 20px;
}
.sub-contents .survivors .color .item {
  width: 100%;
  height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 0;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .survivors .color .item::before {
  content: "";
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .survivors .color dl {
  width: 100%;
  flex-shrink: 0;
  padding: 35px;
}
.sub-contents .survivors .color dl * {
  color: var(--color-white);
}
.sub-contents .survivors .color dl.mint {
  background: var(--color-mint);
}
.sub-contents .survivors .color dl.pink {
  background: var(--color-pink);
}
.sub-contents .survivors .color dl.orange {
  background: var(--color-orange);
}
.sub-contents .survivors .color dl dt {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.sub-contents .survivors .color dl dd {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .survivors .color dl p {
  font-size: 1.7rem;
}
.sub-contents .survivors .color .p-box {
  height: 100%;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .survivors .color .p-box p {
  color: #555;
  font-size: 1.6rem;
  line-height: 1.6;
}
.sub-contents .survivors .color span {
  display: block;
  color: #888;
  font-weight: 300;
}
.sub-contents .emotional .img {
  margin-top: 20px;
}
.sub-contents .environmental .item-box {
  display: flex;
  flex-direction: column;
  row-gap: 130px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .apply .step {
  display: grid;
  grid-template-columns: 15.60% 8px 15.60% 8px 15.60% 8px 15.60% 8px 15.60%;
  justify-content: space-between;
}
.sub-contents .apply .step .angle {
  width: 8px;
  display: flex;
  align-items: center;
}
.sub-contents .apply .step .angle .svg {
  width: 8px;
  height: 14px;
}
.sub-contents .apply .step .angle-cls {
  stroke: var(--color-mint);
}
.sub-contents .apply .step .item,
.sub-contents .apply .step .inner {
  display: flex;
  flex-direction: column;
}
.sub-contents .apply .step .item {
  width: 100%;
  align-items: center;
  text-align: center;
}
.sub-contents .apply .step .circle {
  width: 100%;
  background: #fff;
  border-radius: 50%;
  padding: 50% 0;
  margin-bottom: 20px;
  position: relative;
}
.sub-contents .apply .step .circle::before,
.sub-contents .apply .step .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);	
}
.sub-contents .apply .step .circle::before {
  content: "";
  display: block;
  border-radius: 50%;
  box-shadow: 0px 4px 18px rgba(191, 200, 217, 0.20);
  z-index: -1;
}
.sub-contents .apply .step .inner {
  justify-content: center;
  row-gap: 20px;
}
.sub-contents .apply .step .item span {
  color: #999;
  font-weight: 300;
}
.sub-contents .apply .step .item span em {
  color: var(--color-mint);
}
.sub-contents .apply .step .item .icon {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-contents .apply .step .item p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
.sub-contents .apply .step .item.on.item1 {
  transition-delay: 0.15s;
}
.sub-contents .apply .step .item.on.item2 {
  transition-delay: 0.3s;
}
.sub-contents .apply .step .item.on.item3 {
  transition-delay: 0.45s;
}
.sub-contents .apply .step .item.on.item4 {
  transition-delay: 0.6s;
}
.sub-contents .apply .step .item.on.item5 {
  transition-delay: 0.75s;
}
.sub-contents .apply .area {
  margin-top: 80px;
}
.sub-contents .apply .area .item-box,
.sub-contents .apply .area dl {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
  align-items: center;
  justify-content: center;
}
.sub-contents .apply .area .item {
  width: 100%;
  max-width: 425px;
  height: 500px;
  padding: 40px;
  position: relative;
}
.sub-contents .apply .area .item::before, .sub-contents .apply .area .item::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.sub-contents .apply .area .item::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .apply .area .item::after {
  width: 37px;
  height: 37px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sub-contents .apply .area .item.mint::before {
  background-image: url("/img/sub/point_apply_mint.png");
}
.sub-contents .apply .area .item.mint::after {
  background-image: url("/img/sub/dot_apply_mint.png");
  right: -13px;
}
.sub-contents .apply .area .item.mint h6 {
  background: var(--color-mint);
  margin-bottom: 60px;
}
.sub-contents .apply .area .item.pink::before {
  background-image: url("/img/sub/point_apply_pink.png");
}
.sub-contents .apply .area .item.pink::after {
  background-image: url("/img/sub/dot_apply_pink.png");
  left: -13px;
}
.sub-contents .apply .area .item.pink h6 {
  background: var(--color-pink);
  margin-bottom: 25px;
}
.sub-contents .apply .area .inner,
.sub-contents .apply .area .inner::before {
  border-radius: 30px;
}
.sub-contents .apply .area .inner {
  text-align: center;
  padding: 70px 20px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .apply .area .inner::before {
  content: "";
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.17);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .apply .area .inner h6 {
  border-radius: 100px;
  color: var(--color-white);
  font-size: 1.7rem;
  font-weight: 600;
  padding: 10px 25px;
}
.sub-contents .apply .area .inner p {
  color: #222;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 2.1;
}
.sub-contents .apply .area .icon {
  margin-top: 25px;
}
.sub-contents .apply .area .line {
  display: inline-block;
  width: 70px;
  height: 1px;
  background: url("/img/sub/line_apply.png") no-repeat center;
}
.sub-contents .apply .area dl {
  margin-top: 70px;
}
.sub-contents .apply .area dl dt,
.sub-contents .apply .area dl dd {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .apply .area dl dt span {
  color: #222;
  font-size: 3rem;
  font-weight: 300;
}
.sub-contents .apply .area dl dd {
  color: var(--color-brown);
  font-size: 3.6rem;
  font-weight: 600;
}
.sub-contents .apply .area dl dd::before {
  content: "";
  width: 1px;
  height: 20px;
  background: #dfdfdf;
}
.sub-contents .autopsy .process p {
  line-height: 1.7;
}
.sub-contents .autopsy .process .top {
  color: #222;
  font-size: 1.8rem;
  font-weight: 500;
}
.sub-contents .autopsy .process .item-box {
  margin-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .autopsy .process .item-box::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #cfcfcf;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 85px;
}
.sub-contents .autopsy .process .item {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 30px;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .autopsy .process .item p {
  color: #555;
}
.sub-contents .autopsy .process .icon-box,
.sub-contents .autopsy .process .icon-box::before {
  border-radius: 15px;
}
.sub-contents .autopsy .process .icon-box {
  width: 170px;
  height: 120px;
  flex-shrink: 0;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .autopsy .process .icon-box::before {
  content: "";
  display: block;
  background: var(--color-white);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .autopsy .process .icon-box span {
  color: #222;
  font-size: 1.7rem;
  font-weight: 500;
}
.sub-contents .autopsy .through dl {
  color: #222;
}
.sub-contents .autopsy .through dl dt {
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.sub-contents .autopsy .through dl dd {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .autopsy .through dl dd p {
  font-weight: 300;
  line-height: 1.75;
}
.sub-contents .autopsy .howto .item-box {
  display: grid;
  grid-template-columns: 22.27% 2.725% 22.27% 2.725% 22.27% 2.725% 22.27%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.sub-contents .autopsy .howto .circle {
  border-radius: 50%;
  padding: 50% 0;
  position: relative;
}
.sub-contents .autopsy .howto .circle.bg1 {
  background: rgba(243, 172, 203, 0.55);
}
.sub-contents .autopsy .howto .circle.bg2 {
  background: rgba(243, 172, 203, 0.75);
}
.sub-contents .autopsy .howto .circle.bg2 p b,
.sub-contents .autopsy .howto .circle.bg2 p span {
  font-size: 1.7rem;
}
.sub-contents .autopsy .howto .circle.bg2 p span {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 5px;
  align-items: center;
  justify-content: center;
}
.sub-contents .autopsy .howto .circle.bg3 {
  background: #f3accb;
}
.sub-contents .autopsy .howto .circle.border {
  border: 1px solid #F3ACCB;
}
.sub-contents .autopsy .howto .circle.border * {
  color: var(--color-pink);
}
.sub-contents .autopsy .howto .circle.on.circle1 {
  transition-delay: 0.15s;
}
.sub-contents .autopsy .howto .circle.on.circle2 {
  transition-delay: 0.3s;
}
.sub-contents .autopsy .howto .circle.on.circle3 {
  transition-delay: 0.45s;
}
.sub-contents .autopsy .howto .circle.on.circle4 {
  transition-delay: 0.6s;
}
.sub-contents .autopsy .howto .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .autopsy .howto .inner .p-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sub-contents .autopsy .howto .inner .p-box.gap15 {
  row-gap: 15px;
}
.sub-contents .autopsy .howto .inner .p-box.gap10 {
  row-gap: 10px;
}
.sub-contents .autopsy .howto .inner p {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.sub-contents .autopsy .howto .inner p b {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.sub-contents .autopsy .howto a {
  width: 340px;
  height: 70px;
  background: var(--color-brown);
  border-radius: 100px;
  color: var(--color-white);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}
.sub-contents .support .top-img .img-box {
  position: relative;
}
.sub-contents .support .top-img .img-box img {
  width: 100%;
}
.sub-contents .support .top-img .img-box p {
  min-width: 100%;
  color: var(--color-white);
  font-size: 1.7rem;
  line-height: 1.8;
  text-align: center;
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .support .top-img span {
  display: block;
  color: #999;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: right;
  margin-top: 20px;
}
.sub-contents .support .item-box {
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .support .item-box .dot-list:not(.text) > *::before {
  width: 4px;
  height: 4px;
}
.sub-contents .support .item-box h6 {
  color: #222;
  font-size: 2rem;
  font-weight: 600;
}
.sub-contents .support .item-box h6 .pink {
  color: var(--color-pink);
}
.sub-contents .support .item-box .item,
.sub-contents .support .item-box .text {
  width: 100%;
}
.sub-contents .support .item-box .text {
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  padding: 40px 35px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: center;
}
.sub-contents .support .item-box .text p {
  color: #555;
  font-weight: 300;
}
.sub-contents .book .content {
  max-width: calc(100% - 300px);
}
.sub-contents .book .top {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .book .button-box {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
  align-items: center;
  justify-content: flex-end;
}
.sub-contents .book .button-box * {
  transition: all 0.4s;
}
.sub-contents .book .button-box button {
  width: 44px;
  height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .book .button-box button svg {
  width: 8px;
  height: 16px;
}
.sub-contents .book .button-box button .angle-cls {
  stroke: #d9d9d9;
}
.sub-contents .book .button-box button:hover {
  border-color: var(--color-pink);
}
.sub-contents .book .button-box button:hover .angle-cls {
  stroke: var(--color-pink);
}
.sub-contents .book .slide-box {
  margin-top: 35px;
  overflow: hidden;
}
.sub-contents .book .swiper-slide {
  height: auto;
}
.sub-contents .book .item {
  border: 1px solid #efefef;
  border-radius: 15px;
  text-align: center;
  padding: 30px;
  width: 100%;
  height: 100%;
}
.sub-contents .book .img-box {
  position: relative;
}
.sub-contents .book .img-box::before {
  content: "";
  display: block;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.13);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .book .img {
  width: 100%;
  max-width: 200px;
  padding: 67.495% 0;
  position: relative;
  overflow: hidden;
}
.sub-contents .book .img img {
  min-height: 100%;
  max-width: inherit;
  min-height: 100%;
  max-height: inherit;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .book .text {
  margin-top: 30px;
}
.sub-contents .book .text > * {
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.sub-contents .book .text h6,
.sub-contents .book .text span {
  color: var(--color-black);
}
.sub-contents .book .text h6 {
  color: var(--color-black);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.sub-contents .book .text p,
.sub-contents .book .text span {
  font-size: 1.6rem;
  font-weight: 300;
}
.sub-contents .book .text p {
  color: #555;
}
.sub-contents .book .text span {
  margin-top: 5px;
}
.sub-contents .agency h6 {
  color: #222;
  font-size: 2rem;
  font-weight: 600;
}
.sub-contents .agency .list-box .icon-title {
  margin-bottom: 25px;
}
.sub-contents .agency .list-box .table,
.sub-contents .agency .list-box .table::before {
  border-radius: 15px;
}
.sub-contents .agency .list-box .table {
  border: 1px solid #E7E7E7;
  position: relative;
}
.sub-contents .agency .list-box .table::before {
  content: "";
  display: block;
  border-top: 2px solid #F3ACCB;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.sub-contents .agency .list-box table tr:not(:last-child) td {
  border-bottom: 1px solid #E7E7E7;
}
.sub-contents .agency .list-box table td {
  height: 70px;
  color: #222;
  text-align: center;
}
.sub-contents .agency .list-box table td:not(:last-child) {
  border-right: 1px solid #E7E7E7;
}
.sub-contents .agency .item-box {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .agency .item-box .item,
.sub-contents .agency .item-box .item::before {
  border-radius: 15px;
}
.sub-contents .agency .item-box .item {
  width: 100%;
  padding: 40px 45px;
  position: relative;
}
.sub-contents .agency .item-box .item::before {
  content: "";
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-contents .agency .item-box .item p {
  color: #555;
  margin: 40px 0 30px;
}
.sub-contents .agency .item-box .item b {
  color: #222;
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
}
.sub-contents .agency .item-box .item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  background: var(--color-pink);
  border-radius: 100px;
  padding: 10px 20px;
}
.sub-contents .agency .item-box .item a span {
  color: var(--color-white);
  font-weight: 500;
}
.sub-contents .request h4 {
  color: #222;
  font-weight: 700;
  text-align: center;
  margin-bottom: 90px;
}
.sub-contents .request em {
  color: #FF2323;
  font-size: 1.4rem;
}
.sub-contents .request .flex-column {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.sub-contents .request .agree button {
  background: #f5f5f5;
  color: #222;
}
.sub-contents .request .top {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: space-between;
}
.sub-contents .request .top span {
  color: #777;
  font-size: 1.5rem;
  font-weight: 300;
}
.sub-contents .request .top span em {
  font-size: 1.5rem;
}
.sub-contents .request .content {
  margin-top: 25px;
}
.sub-contents .confirm .form-box {
  width: 100%;
  max-width: 635px;
  margin: 0 auto;
}
.sub-contents .confirm .form-box .info {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-contents .confirm .form-box .info select,
.sub-contents .confirm .form-box .info input {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 0 20px;
  width: 100%;
  height: 100%;
}
.sub-contents .confirm .form-box .info dl {
  width: 100%;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
  align-items: center;
  justify-content: flex-start;
}
.sub-contents .confirm .form-box .info dl dt,
.sub-contents .confirm .form-box .info dl dd {
  width: 100%;
  height: 60px;
  font-size: 1.5rem;
}
.sub-contents .confirm .form-box .info dl dt {
  max-width: 170px;
  flex-shrink: 0;
  background: var(--color-pink);
  border-radius: 8px;
  color: var(--color-white);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.sub-contents .confirm .form-box .info dl dd select,
.sub-contents .confirm .form-box .info dl dd input {
  color: #555;
  font-size: 1.5rem;
}
.sub-contents .confirm .form-box .flex-box {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.sub-contents .confirm .form-box .phone span {
  width: 10px;
  height: 1px;
  flex-shrink: 0;
  background: #dfdfdf;
}
.sub-contents .confirm .form-box .agreement {
  margin: 20px 0 60px;
}
.sub-contents .confirm .form-box .agree {
  justify-content: space-between;
}
.sub-contents .confirm .form-box .agree button {
  background: var(--color-mint);
  color: var(--color-white);
}
.sub-contents .confirm .list-box h4 {
  color: #222;
  font-weight: 700;
  text-align: center;
}
.sub-contents .confirm .table-box {
  border-top: 1px solid var(--color-pink);
  margin: 80px 0 70px;
}
.sub-contents .confirm .table-box table th,
.sub-contents .confirm .table-box table td {
  height: 70px;
  border: 1px solid #dfdfdf;
  color: #222;
}
.sub-contents .confirm .table-box table th {
  background: #f9f9f9;
  font-weight: 600;
}
.sub-contents .confirm .table-box table td {
  font-weight: 300;
  text-align: center;
	padding: 20px;
}