@charset "UTF-8";

.bg-beige {
  padding: 60px 0;
  background-color: #f6f3eb;
  border-radius: 24px;
}

.color-primary {
  color: #fd312e;
}

@media screen and (max-width: 767px) {
  .guide-main {
    padding-top: 46px;
  }
}
.guide-section {
  position: relative;
  width: 100%;
  margin-bottom: 120px;
}
.guide-section .inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px;
}
.guide-section .list-container {
  position: relative;
  display: flex;
  flex-direction: column;
}
.guide-section .card-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  overflow-x: auto;
  padding: 0 20px;
}
.guide-section .card-list::-webkit-scrollbar {
  display: none;
}
.guide-section .card-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.guide-section .tab-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.guide-section .tab-btn {
  padding: 10px 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #6f6f6f;
  cursor: pointer;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 99px;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}
.guide-section .tab-btn[aria-selected=true] {
  background: #000;
  color: #fff;
  border-color: #000;
}
.guide-section .tab-panel {
  display: none;
  padding: 0;
}
.guide-section .tab-panel.is-active {
  display: block;
}
.guide-section .guide-headline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 42px;
}
.guide-section .guide-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: left;
  letter-spacing: -1px;
  word-break: keep-all;
}
.guide-section .guide-title strong {
  font-weight: 700;
}
.guide-section .guide-title-h3 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
.guide-section .guide-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
.guide-section .guide-details {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  padding: 14px 24px;
  background-color: #f3f3f3;
  border: 1px solid #ececec;
  border-radius: 24px;
}
.guide-section .guide-details::details-content {
  display: block;
  block-size: auto;
  overflow: hidden;
  transition-property: block-size, content-visibility;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-behavior: allow-discrete;
}
.guide-section .guide-details::marker {
  content: "";
}
.guide-section .guide-details[open] {
  gap: 14px;
}
.guide-section .guide-details[open]::details-content {
  block-size: auto;
  block-size: calc-size(auto, size);
}
.guide-section .guide-details[open] .guide-summary::after {
  transform: rotate(180deg);
}
.guide-section .guide-details .guide-summary {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  letter-spacing: -0.5px;
}
.guide-section .guide-details .guide-summary::after {
  content: "";
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-left: auto;
  background-image: url("../img/care-solutions-guide/icons/icon-arrow-ud.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-section .guide-details .guide-summary .icon {
  display: inline-flex;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  background-image: url("../img/care-solutions-guide/icons/icon-alert-circle-20.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.guide-section .guide-details .guide-summary-info > ul li {
  position: relative;
  padding-left: 8px;
  font-weight: 400;
  font-size: 11px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}
.guide-section .guide-details .guide-summary-info > ul li strong {
  font-weight: 400;
}
.guide-section .guide-details .guide-summary-info > ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.guide-section .guide-details .guide-summary-info > ul li + li {
  margin-top: 6px;
}
.guide-section .guide-details .guide-summary-info > ul li em {
  font-weight: 500;
}
.guide-section .guide-details .guide-summary-info > ul li ul li {
  margin-top: 0;
}
.guide-section .guide-details .guide-summary-info > ul li ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .guide-section .guide-details {
    display: none;
  }
}
.guide-section .guide-disclaimer {
  margin-top: 60px;
}
.guide-section .guide-disclaimer > li {
  position: relative;
  display: flex;
  padding-left: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}
.guide-section .guide-disclaimer > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.guide-section .guide-disclaimer > li strong {
  width: 140px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}
.guide-section .guide-disclaimer > li em {
  margin-left: 4px;
  font-weight: 500;
}
.guide-section .guide-disclaimer > li p {
  flex: 1;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}
.guide-section .guide-disclaimer > li ul li {
  position: relative;
  margin-top: 0;
  padding-left: 10px;
}
.guide-section .guide-disclaimer > li ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
.guide-section .guide-disclaimer > li + li {
  margin-top: 8px;
}
.guide-section.guide-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 324px;
  margin: 0 auto;
  background-color: #f6f3eb;
  border-radius: 0 0 48px 48px;
}
.guide-section.guide-hero .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  padding-top: 324px;
}
.guide-section.guide-hero .hero-visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: bottom;
}
.guide-section.guide-hero .hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 45.67%, rgba(0, 0, 0, 0.1) 76.11%);
}
.guide-section.guide-hero .hero-title-group {
  position: absolute;
  top: calc(30% + 31px);
  display: flex;
  gap: 14px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
}
.guide-section.guide-hero .hero-title-group .hero-title {
  position: relative;
  font-weight: 700;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 52px;
  letter-spacing: -3px;
}
.guide-section.guide-hero .hero-title-group .hero-title::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  width: 80px;
  height: 39px;
  background-image: url("../img/care-solutions-guide/img_eyebrow.png");
  background-size: cover;
  background-position: center;
  transform: translateX(-50%);
}
.guide-section.guide-hero .hero-title-group .hero-desc {
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 21px;
  letter-spacing: -0.5px;
}
.guide-section.guide-info {
  margin: 0 auto;
}
.guide-section.guide-info .guide-info-list {
  margin-top: 40px;
}
.guide-section.guide-info .guide-info-list li {
  position: relative;
  padding-left: 23px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  letter-spacing: -0.5px;
  word-break: keep-all;
  opacity: 0.5;
}
.guide-section.guide-info .guide-info-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 3px;
  height: 3px;
  background-color: #000000;
  border-radius: 50%;
  transform: translateY(-50%);
}
.guide-section.guide-info .guide-header {
  padding: 40px 0;
}
.guide-section.guide-info .guide-header .guide-header-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -1px;
}
.guide-section.guide-intro .list-container {
  margin-top: 40px;
}
.guide-section.guide-intro .intro-item {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
}
.guide-section.guide-intro .intro-item.is-playing .intro-video-wrap::after {
  opacity: 0;
}
.guide-section.guide-intro .intro-item.is-playing .intro-control {
  opacity: 0;
}
.guide-section.guide-intro .intro-item.is-playing:hover .intro-control {
  opacity: 1;
}
.guide-section.guide-intro .intro-item video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 320/498;
  object-fit: cover;
}
.guide-section.guide-intro .card-link {
  width: 100%;
  height: 100%;
}
.guide-section.guide-intro .intro-title {
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
  text-align: center;
  letter-spacing: -0.5px;
}
.guide-section.guide-intro .intro-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 155.625%;
  overflow: hidden;
  border-radius: 24px;
}
.guide-section.guide-intro .intro-video-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.31%, rgba(0, 0, 0, 0.6) 100%), var(--opacity-opacity-30, rgba(0, 0, 0, 0.3));
}
.guide-section.guide-intro .intro-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.guide-section.guide-intro .intro-text {
  position: absolute;
  bottom: 40px;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: -0.5px;
}
.guide-section.guide-intro .intro-control {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.guide-section.guide-intro .intro-play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.guide-section.guide-intro .intro-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin-left: 2px;
  background: rgba(19, 19, 19, 0.3);
  backdrop-filter: blur(4.8px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.guide-section.guide-intro .intro-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 28px;
  height: 34px;
  margin-left: 3px;
  transform: translate(-50%, -50%);
  background-image: url("../img/care-solutions-guide/icons/icon-play-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.guide-section.guide-intro .intro-play.pause::after {
  margin-left: 2px;
  background-image: url("../img/care-solutions-guide/icons/icon-pause-white.svg");
  filter: invert(1);
}
.guide-section.guide-intro .intro-play {
  transition: transform 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-section.guide-service .care-service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.guide-section.guide-service .tab-container {
  display: flex;
}
.guide-section.guide-service .tab-layout-container {
  width: 100%;
}
.guide-section.guide-service .tab-container-top {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.guide-section.guide-service .tab-layout-col {
  width: 100%;
  max-width: 640px;
}
.guide-section.guide-service .tab-layout-col + .tab-layout-col {
  margin-top: 10px;
}
.guide-section.guide-service .tab-content-wrap {
  position: relative;
  width: 100%;
  padding-top: calc(67.5% + 60px);
}
.guide-section.guide-service .tab-content-item {
  position: absolute;
  top: 0;
  display: flex;
  z-index: 1;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.guide-section.guide-service .tab-content-item.active {
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .guide-section.guide-service .tab-content-item .swiper-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
.guide-section.guide-service .tab-layout {
  position: relative;
  display: flex;
  flex-flow: wrap;
  z-index: 1;
  width: 100%;
  min-height: 37em;
}
.guide-section.guide-service .filter-bar {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
  padding: 0 25px 12px;
}
.guide-section.guide-service .filter-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.guide-section.guide-service .filter-button.active {
  color: #000000;
}
.guide-section.guide-service .filter-button.active .icon {
  opacity: 1;
}
.guide-section.guide-service .filter-button.active .button-text {
  color: #000;
}
.guide-section.guide-service .filter-button .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 71px;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: opacity 0.3s ease;
}
.guide-section.guide-service .filter-button .button-text {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: -0.35px;
  transition: all 0.35s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-section.guide-service .filter-button.airconditioner .icon {
  background-image: url("../img/care-solutions-guide/icons/icon-air-conditioners.svg");
}
.guide-section.guide-service .filter-button.humidifier .icon {
  background-image: url("../img/care-solutions-guide/icons/icon-humidifiers.svg");
}
.guide-section.guide-service .filter-button.airpurifier .icon {
  background-image: url("../img/care-solutions-guide/icons/icon-air-purifiers.svg");
}
.guide-section.guide-service .swiper {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}
.guide-section.guide-service .swiper .swiper-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 67.5%;
  border-radius: 24px;
  aspect-ratio: 320/216;
}
.guide-section.guide-service .swiper .swiper-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}
.guide-section.guide-service .swiper .swiper-content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.guide-section.guide-service .swiper .swiper-content-wrap .swiper-text {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  letter-spacing: -0.5px;
}
.guide-section.guide-service .swiper .swiper-content-wrap .text-sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.guide-section.guide-service .swiper .swiper-content-wrap .text-sub::before {
  content: "";
  width: 1px;
  height: 13px;
  margin: 0 12px;
  background-color: #000000;
}
.guide-section.guide-service .swiper .swiper-pagination {
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  opacity: 1;
}
.guide-section.guide-service .swiper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  background-color: #d9d9d9;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-section.guide-service .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 16px;
  background-color: #fd312e;
}
.guide-section.guide-service .tab-visual-wrap {
  position: relative;
  width: 100%;
  padding-top: calc(108.75% + 60px);
}
.guide-section.guide-service .tab-visual-item {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.guide-section.guide-service .tab-visual-item.active {
  visibility: visible;
}
.guide-section.guide-service .tab-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}
.guide-section.guide-service .visual-image-wrap {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.guide-section.guide-service .visual-image-wrap.before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) calc(100% - 2px), #000 calc(100% - 1px), #000 calc(100% - 1px), transparent calc(100% - 2px));
}
.guide-section.guide-service .visual-image-wrap.after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
  clip-path: inset(0 0 0 50%);
}
.guide-section.guide-service .visual-image-wrap.after .visual-label {
  left: auto;
  right: 16px;
}
.guide-section.guide-service .visual-caption {
  position: relative;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  letter-spacing: -0.5px;
}
.guide-section.guide-service .visual-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}
.guide-section.guide-service .visual-image {
  max-width: 100%;
  aspect-ratio: 320/348;
}
.guide-section.guide-service .handle-bar {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}
.guide-section.guide-service .handle-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #000;
}
.guide-section.guide-service .handle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 38px;
  height: 38px;
  background-image: url("../img/care-solutions-guide/icons/icon-control-bar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.guide-section.guide-comparison .compare-table {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.guide-section.guide-comparison .compare-table .table-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.guide-section.guide-comparison .compare-table .table-col.subscription .table-header {
  background-color: #e73532;
  border: 2px solid #e73532;
  border-width: 2px 0 0 0;
  border-radius: 24px 0 0 0;
}
.guide-section.guide-comparison .compare-table .table-col.subscription .table-header::after {
  background-color: rgba(255, 255, 255, 0.1);
}
.guide-section.guide-comparison .compare-table .table-col.subscription .table-list {
  background-color: #e73532;
  border-radius: 0 0 0 24px;
}
.guide-section.guide-comparison .compare-table .table-col.subscription .table-list-item::before {
  background-color: rgba(255, 255, 255, 0.1);
}
.guide-section.guide-comparison .compare-table .table-col.subscription .table-header,
.guide-section.guide-comparison .compare-table .table-col.subscription .table-item-value {
  color: #FFFFFF;
}
.guide-section.guide-comparison .compare-table .table-col.subscription .table-item-label {
  color: #FFFFFF;
  opacity: 0.5;
}
.guide-section.guide-comparison .compare-table .table-col.subscription .table-item-value .icon {
  width: 18px;
  height: 18px;
  background-image: url("../img/care-solutions-guide/icons/icon-comparison-subs.svg");
}
.guide-section.guide-comparison .compare-table .table-col.purchase .table-header {
  border: 2px solid #ececec;
  border-width: 2px 2px 0 0;
  border-radius: 0 24px 0 0;
}
.guide-section.guide-comparison .compare-table .table-col.purchase .table-header::after {
  background-color: rgba(0, 0, 0, 0.06);
}
.guide-section.guide-comparison .compare-table .table-col.purchase .table-list {
  border: 2px solid #ececec;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 24px 0;
}
.guide-section.guide-comparison .compare-table .table-col.purchase .table-list-item::before {
  background-color: rgba(225, 225, 225, 0.4);
}
.guide-section.guide-comparison .compare-table .table-col.purchase .table-header,
.guide-section.guide-comparison .compare-table .table-col.purchase .table-item-value {
  color: #000000;
}
.guide-section.guide-comparison .compare-table .table-col.purchase .table-item-label {
  color: #000000;
  opacity: 0.4;
}
.guide-section.guide-comparison .compare-table .table-col.purchase .table-item-value .icon {
  background-image: url("../img/care-solutions-guide/icons/icon-comparison-purc.svg");
}
.guide-section.guide-comparison .compare-table .table-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 26px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  letter-spacing: -0.35px;
}
.guide-section.guide-comparison .compare-table .table-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.guide-section.guide-comparison .compare-table .table-list {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.guide-section.guide-comparison .compare-table .table-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  font-weight: 400;
}
.guide-section.guide-comparison .compare-table .table-list-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.guide-section.guide-comparison .compare-table .table-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.guide-section.guide-comparison .compare-table .table-item-label {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.35px;
}
.guide-section.guide-comparison .compare-table .table-item-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.35px;
  word-break: keep-all;
}
.guide-section.guide-comparison .compare-table .table-item-value .icon {
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.guide-section.guide-comparison .table-description {
  margin-top: 16px;
  padding: 0 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  text-align: center;
  word-break: keep-all;
  letter-spacing: -0.5px;
}
.guide-section.guide-comparison .guide-summary-info li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guide-section.guide-comparison .guide-summary-info li strong {
  font-weight: 400;
  font-size: 11px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}
.guide-section.guide-comparison .guide-summary-info li p {
  font-weight: 400;
  font-size: 11px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}
.guide-section.guide-choice {
  --bg-highlight: #ffece5;
}
.guide-section.guide-choice.bg-beige {
  position: relative;
  margin-bottom: 0;
  padding: 50px 0 35px;
}
.guide-section.guide-choice.bg-beige::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/care-solutions-guide/bg_coin_mo.png") no-repeat center bottom;
  background-size: 100% auto;
}
.guide-section.guide-choice .guide-headline {
  margin-bottom: 30px;
}
.guide-section.guide-choice .receipt-container {
  position: relative;
  margin: 0 -10px;
}
.guide-section.guide-choice .receipt-container::before {
  content: "";
  z-index: -1;
  display: block;
  width: 100%;
  height: 48px;
  background-color: #e9e6de;
  border-radius: 50px;
}
.guide-section.guide-choice .receipt-body {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 654px;
  margin: 0 auto;
  margin-top: -28px;
}
.guide-section.guide-choice .receipt-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  z-index: 1;
  display: block;
  width: calc(100% - 24px);
  height: 12px;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.49) 0%, rgba(205, 202, 202, 0) 100%);
}
.guide-section.guide-choice .receipt-content {
  overflow: hidden;
  padding: 45px 24px 55px;
  background: url("../img/care-solutions-guide/bg_receipt_mo.svg") no-repeat center bottom;
  background-size: 100% auto;
  will-change: clip-path;
}
.guide-section.guide-choice .receipt-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  z-index: 1;
  display: block;
  width: calc(100% - 24px);
  height: 53px;
  background: linear-gradient(180deg, rgba(103, 101, 101, 0.39) 0%, rgba(205, 202, 202, 0) 100%);
  mix-blend-mode: multiply;
}
.guide-section.guide-choice .receipt-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.guide-section.guide-choice .receipt-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
}
.guide-section.guide-choice .receipt-description {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
}
.guide-section.guide-choice .receipt-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  padding: 0 10px;
}
.guide-section.guide-choice .receipt-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.guide-section.guide-choice .receipt-item-inner,
.guide-section.guide-choice .receipt-item-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.guide-section.guide-choice .receipt-item-label,
.guide-section.guide-choice .receipt-item-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.35px;
}
.guide-section.guide-choice .receipt-item-option-label,
.guide-section.guide-choice .receipt-item-option-value {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #494949;
  letter-spacing: -0.35px;
}
.guide-section.guide-choice .receipt-summary {
  position: relative;
  margin-top: 41px;
  padding: 0 10px;
}
.guide-section.guide-choice .receipt-summary::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgba(93, 93, 93, 0.7);
}
.guide-section.guide-choice .receipt-summary .summary-list {
  display: flex;
  flex-direction: column;
}
.guide-section.guide-choice .receipt-summary .summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.guide-section.guide-choice .receipt-summary .summary-item dt,
.guide-section.guide-choice .receipt-summary .summary-item dd {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.35px;
}
.guide-section.guide-choice .receipt-summary .summary-item.additional dt,
.guide-section.guide-choice .receipt-summary .summary-item.additional dd {
  font-size: 12px;
  line-height: 17px;
}
.guide-section.guide-choice .receipt-summary .summary-item.highlight {
  width: calc(100% + 20px);
  margin: 0 -10px;
  margin-top: 18px;
  padding: 6px 8px 6px 10px;
  background-repeat: no-repeat;
  background-size: 0 100%;
  border-radius: 8px;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.guide-section.guide-choice .receipt-summary .summary-item.highlight.active {
  color: #fd312e;
  background-image: linear-gradient(120deg, #ffece5 0%, #ffece5 100%);
}
.guide-section.guide-choice .receipt-summary .summary-item.highlight .total-value {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.guide-section.guide-choice .receipt-summary .summary-item.highlight .total-value span {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.35px;
}
.guide-section.guide-point .point-benefit {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
}
.guide-section.guide-point .point-benefit .point-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.guide-section.guide-point .point-benefit .point-tab {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.guide-section.guide-point .point-benefit .point-tab::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 26px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  background-image: url("../img/care-solutions-guide/icons/icon-plus-20.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px auto;
}
.guide-section.guide-point .point-benefit .point-tab.active::after {
  background-image: url("../img/care-solutions-guide/icons/icon-minus-20.svg");
  background-color: #000;
  border-color: #000;
}
.guide-section.guide-point .point-benefit .point-tab.active .point-num {
  font-weight: 700;
  color: #000;
}
.guide-section.guide-point .point-benefit .point-tab.active .point-desc {
  color: #000;
}
.guide-section.guide-point .point-benefit .point-tab.active .point-desc .desc-sub {
  display: block;
  color: #000;
}
.guide-section.guide-point .point-benefit .point-tab.active .color-primary {
  color: #fd312e;
}
.guide-section.guide-point .point-benefit .point-tab .point-num {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .point-benefit .point-tab .point-desc {
  display: block;
  margin-top: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}
.guide-section.guide-point .point-benefit .point-tab .point-desc .desc-sub {
  display: none;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.3);
}
.guide-section.guide-point .point-benefit .point-tab .color-primary {
  color: rgba(0, 0, 0, 0.3);
}
.guide-section.guide-point .point-benefit .point-panel {
  margin-top: 30px;
  padding: 32px 0 40px;
  background-color: #ededed;
  border-radius: 24px;
}
.guide-section.guide-point .point-benefit .point-panel[hidden] {
  display: none;
}
.guide-section.guide-point .card-promotion {
  text-align: center;
}
.guide-section.guide-point .card-promotion .card-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guide-section.guide-point .card-promotion .card-headline .card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.35px;
}
.guide-section.guide-point .card-promotion .card-headline .card-description {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  opacity: 0.7;
}
.guide-section.guide-point .card-promotion .card-content {
  padding: 18px 24px 0;
}
.guide-section.guide-point .card-promotion.point2 .card-content {
  padding-top: 10px;
}
.guide-section.guide-point .card-promotion.point2 .guide-box {
  margin-top: 0;
}
.guide-section.guide-point .card-promotion.point3 .card-content {
  padding-top: 40px;
}
.guide-section.guide-point .card-promotion.point3 .guide-box {
  margin-top: 0;
}
.guide-section.guide-point .card-swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 25px 0;
}
.guide-section.guide-point .card-swiper .swiper-wrapper {
  align-items: center;
}
.guide-section.guide-point .card-swiper .swiper-slide {
  display: flex;
  width: auto;
}
.guide-section.guide-point .card-swiper .swiper-slide-active {
  z-index: 2;
}
.guide-section.guide-point .card-swiper .swiper-slide-active .card-link::after {
  opacity: 1;
}
.guide-section.guide-point .card-swiper .swiper-slide-active .card-thumb {
  opacity: 1;
  box-shadow: 8px 10px 14px -5px rgba(0, 0, 0, 0.25);
}
.guide-section.guide-point .card-swiper .swiper-slide-active .card-thumb::before {
  display: none;
}
.guide-section.guide-point .card-swiper [class*=swiper-button-] {
  width: 48px;
  height: 48px;
  background-image: url("../img/care-solutions-guide/icons/icon-card-arrow-lr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
}
.guide-section.guide-point .card-swiper .swiper-button-prev {
  left: 0;
}
.guide-section.guide-point .card-swiper .swiper-button-next {
  right: 0;
  transform: rotate(180deg);
}
.guide-section.guide-point .card-swiper .swiper-pagination {
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.guide-section.guide-point .card-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #000;
  opacity: 0.3;
}
.guide-section.guide-point .card-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.guide-section.guide-point .card-wrapper {
  position: relative;
  z-index: 1;
  width: 34.44vw;
  height: 54.9929vw;
  max-height: 383px;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .guide-section.guide-point .card-wrapper {
    will-change: auto;
    transform: none;
  }
}
.guide-section.guide-point .card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.guide-section.guide-point .card-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background-image: url("../img/care-solutions-guide/icons/icon-card-shortcut-btn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}
.guide-section.guide-point .card-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  box-shadow: 5px 7px 10px -5px rgba(0, 0, 0, 0.2);
}
.guide-section.guide-point .card-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.56);
}
.guide-section.guide-point .card-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
}
.guide-section.guide-point .card-benefit-desc {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .card-benefit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 20px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  background: #000;
  border-radius: 50px;
}
.guide-section.guide-point .card-benefit-btn::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-image: url("../img/care-solutions-guide/icons/icon-circle-arrow-white-20.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.guide-section.guide-point .guide-box {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.guide-section.guide-point .guide-box .apply-step-list .apply-step-item {
  padding: 18px 20px;
  text-align: left;
}
.guide-section.guide-point .guide-box .apply-step-list .apply-step-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.guide-section.guide-point .guide-box .apply-step-list .apply-step-item .step-content .step-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #494949;
  word-break: keep-all;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .guide-box .apply-step-list .apply-step-item .step-content .step-desc-title {
  display: block;
}
.guide-section.guide-point .guide-box .apply-step-list .apply-step-item .step-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.guide-section.guide-point .card-benefit-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.35px;
}
.guide-section.guide-point .card-benefit-text {
  margin-top: 4px;
  padding: 20px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .benefit-item {
  padding: 16px 0;
}
.guide-section.guide-point .benefit-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.guide-section.guide-point .benefit-item strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .benefit-item ul {
  margin-top: 16px;
  text-align: left;
}
.guide-section.guide-point .benefit-item ul li {
  position: relative;
  padding-left: 22px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  letter-spacing: -0.35px;
}
.guide-section.guide-point .benefit-item ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
}
.guide-section.guide-point .discount-step {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #000;
  border-radius: 12px;
}
.guide-section.guide-point .discount-step.step1 {
  padding: 16px 12px;
}
.guide-section.guide-point .discount-step.step2 {
  padding: 30px 12px;
}
.guide-section.guide-point .discount-step + .discount-step {
  margin-top: 32px;
}
.guide-section.guide-point .discount-step .step-title {
  position: absolute;
  top: -17px;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  padding: 0 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #fd312e;
  white-space: nowrap;
  letter-spacing: -0.35px;
  background-color: #ededed;
  transform: translateX(-50%);
}
.guide-section.guide-point .discount-step .step-title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 17px;
  height: 21px;
  background-image: url("../img/care-solutions-guide/icons/icon-arrow-down-red.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.guide-section.guide-point .discount-step .step-desc {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .table-content {
  display: flex;
  flex-direction: column;
}
.guide-section.guide-point .table-content + .table-content {
  margin-top: 24px;
}
.guide-section.guide-point .table-wrapper {
  margin-top: 12px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.guide-section.guide-point .discount-table {
  width: 100%;
  border-collapse: collapse;
}
.guide-section.guide-point .discount-table tbody tr:first-child th,
.guide-section.guide-point .discount-table tbody tr:first-child td {
  border-top: none;
}
.guide-section.guide-point .discount-table tbody th {
  padding: 12px;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.5px;
  background: rgba(253, 49, 46, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.guide-section.guide-point .discount-table tbody td {
  padding: 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #494949;
  letter-spacing: -0.5px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.guide-section.guide-point .footnote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  vertical-align: middle;
  background-color: #494949;
  border-radius: 4px;
}
.guide-section.guide-point .footnote-badge a {
  font-size: 10px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .table-note {
  margin-top: 8px;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: #6f6f6f;
  text-align: left;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .footnote-list {
  margin-top: 12px;
}
.guide-section.guide-point .footnote-list li {
  position: relative;
  padding-left: 20px;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  color: #6f6f6f;
  text-align: left;
  letter-spacing: -0.5px;
}
.guide-section.guide-point .footnote-list li .footnote-badge {
  position: absolute;
  top: 0;
  left: 0;
}
.guide-section.guide-scenario .scenario-card {
  width: 100%;
}
.guide-section.guide-scenario .scenario-message {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #6f6f6f;
  text-align: center;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .scenario-card-before {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 34px 40px;
  margin: 0 10px;
  text-align: center;
  background: #f6f3eb;
  border-radius: 24px;
}
.guide-section.guide-scenario .scenario-card-before .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 60px;
  margin-top: 14px;
  background-image: url("../img/care-solutions-guide/icons/icon-arrow-union.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transform: rotate(90deg);
  transform-origin: center;
}
.guide-section.guide-scenario .product-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}
.guide-section.guide-scenario .product-card .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
}
.guide-section.guide-scenario .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.guide-section.guide-scenario .product-card .product-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-direction: column;
}
.guide-section.guide-scenario .product-card .product-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.35px;
}
.guide-section.guide-scenario .product-card .product-sku {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  color: #6f6f6f;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .contract-info,
.guide-section.guide-scenario .price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #cbc8c2;
}
.guide-section.guide-scenario .contract-info .contract-item {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #fd312e;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guide-section.guide-scenario .price-info .price {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .price-info .price-total {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .scenario-card-after {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -28px;
  padding: 38px 24px;
  text-align: center;
  background: #e6e1d6;
  border-radius: 24px;
}
.guide-section.guide-scenario .scenario-card-after .discount-label {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.5019607843);
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .scenario-card-after .price-info {
  margin: 0;
  padding: 0;
  border: none;
}
.guide-section.guide-scenario .scenario-card-after .price-discounted-monthly {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-price-discount);
  letter-spacing: -0.03em;
}
.guide-section.guide-scenario .scenario-card-after .price-discounted-total {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}
.guide-section.guide-scenario .scenario-card-after .points-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 10px;
  margin: 36px 0 50px;
}
.guide-section.guide-scenario .scenario-card-after .point-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.guide-section.guide-scenario .scenario-card-after .point-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
  z-index: 1;
  width: 62px;
  height: 20px;
  background-image: url("../img/care-solutions-guide/icon-coin01.png");
  background-repeat: no-repeat;
  background-size: 100% 20px;
}
.guide-section.guide-scenario .scenario-card-after .point-card .icon + .icon {
  order: 2;
  z-index: 2;
  margin-bottom: -7px;
  background-image: url("../img/care-solutions-guide/icon-coin02.png");
}
.guide-section.guide-scenario .scenario-card-after .point-card .icon + .icon + .icon {
  order: 1;
  z-index: 3;
  background-image: url("../img/care-solutions-guide/icon-coin03.png");
}
.guide-section.guide-scenario .scenario-card-after .point-card .plus {
  position: absolute;
  bottom: 0;
  right: -13px;
  font-weight: 300;
  font-size: 25px;
  line-height: 1;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .scenario-card-after .point-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  margin-bottom: 6px;
  padding: 0 6px 22px;
  aspect-ratio: 84/163;
  background-image: url("../img/care-solutions-guide/icons/icon-speech-bubble.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
.guide-section.guide-scenario .scenario-card-after .point-card-inner .label {
  margin-top: 16px;
  padding-bottom: 2px;
  font-weight: 700;
  font-size: 14px;
  line-height: 10px;
  border-bottom: 2px solid #000;
}
.guide-section.guide-scenario .scenario-card-after .point-card-inner .value {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .scenario-card-after .point-card-inner .sub {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.4;
  color: #000;
  letter-spacing: -0.5px;
}
.guide-section.guide-scenario .scenario-card-after .discount-rate {
  display: flex;
  align-items: center;
}
.guide-section.guide-scenario .scenario-card-after .discount-rate .num,
.guide-section.guide-scenario .scenario-card-after .discount-rate .unit {
  font-weight: 900;
  font-size: 90px;
  line-height: 64px;
  color: #fd312e;
  letter-spacing: -6px;
}
.guide-section.guide-scenario .scenario-description {
  margin-top: 50px;
  padding: 18px 2px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  letter-spacing: -0.5px;
  border-top: 1px solid rgba(113, 111, 106, 0.5);
}
.guide-section.guide-review .review-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.guide-section.guide-review .hashtag {
  padding: 10px 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #6f6f6f;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 99px;
}
.guide-section.guide-review .review-swiper {
  margin: 0 -20px;
  padding: 0 20px;
}
.guide-section.guide-review .review-swiper .swiper-slide {
  height: auto;
}
.guide-section.guide-review .review-swiper .swiper-pagination {
  position: relative;
  bottom: inherit;
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 24px;
}
.guide-section.guide-review .review-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #d9d9d9;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-section.guide-review .review-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 16px;
  background: #fd312e;
}
.guide-section.guide-review .review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  height: 100%;
  padding: 24px;
  background: #f6f3eb;
  border-radius: 24px;
  transition: transform 0.25s ease;
}
.guide-section.guide-review .review-card-thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 81.617647%;
  background: #f0eeec;
  border-radius: 12px;
}
.guide-section.guide-review .review-card-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}
.guide-section.guide-review .review-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-section.guide-review .review-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.guide-section.guide-review .review-card-date {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #000;
}
.guide-section.guide-review .review-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide-section.guide-review .review-card-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
}
.guide-section.guide-review .review-card-stars .star {
  width: 14px;
  height: 14px;
  background-image: url("../img/care-solutions-guide/icons/icon-star-full.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.guide-section.guide-review .review-card-score {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #fd312e;
}
.guide-section.guide-review .review-card-text {
  font-size: 12px;
  line-height: 1.4;
  color: #494949;
  word-break: keep-all;
  /* @include truncate-lines(6); */
}
.guide-section.guide-ai-chat {
  padding: 50px 0 47px;
  background-color: #000;
}
.guide-section.guide-ai-chat .guide-headline {
  margin-bottom: 30px;
}
.guide-section.guide-ai-chat .guide-title {
  font-weight: 400;
  font-size: 30px;
  line-height: 39px;
  color: #fff;
  letter-spacing: -0.5px;
}
.guide-section.guide-ai-chat .ai-chat-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-section.guide-ai-chat .ai-chat-cta .cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 58px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.5px;
  background-color: #fff;
  border-radius: 50px;
}
.guide-section.guide-ai-chat .ai-chat-cta .cta::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-image: url("../img/care-solutions-guide/icons/icon-chevron-lr-25.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.guide-section.guide-ai-chat .ai-chat-cta .cta:focus-within {
  outline: 2px dashed #fff;
  outline-offset: 2px;
}
.guide-section.guide-recommend .tab-btn[aria-selected=true] {
  background-color: #fd312e;
  border-color: #fd312e;
}
.guide-section.guide-recommend .recommend-swiper {
  margin: 0 -20px;
  padding: 0 20px;
}
.guide-section.guide-recommend .recommend-swiper .swiper-slide {
  height: auto;
}
.guide-section.guide-recommend .recommend-swiper .swiper-pagination {
  position: relative;
  bottom: inherit;
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 24px;
}
.guide-section.guide-recommend .recommend-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #d9d9d9;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-section.guide-recommend .recommend-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 16px;
  background: #fd312e;
}
.guide-section.guide-recommend .recommend-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  height: 100%;
  padding: 20px 24px;
  background: #f3f3f3;
  border: 1px solid #ececec;
  border-radius: 24px;
  transition: transform 0.25s ease;
}
.guide-section.guide-recommend .product-image {
  position: relative;
  width: 100%;
  max-width: 196px;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.guide-section.guide-recommend .product-image img {
  max-width: 100%;
  mix-blend-mode: multiply;
}
.guide-section.guide-recommend .product-title-wrap {
  display: flex;
  align-items: center;
}
.guide-section.guide-recommend .product-title-wrap .product-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  letter-spacing: -0.35px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
.guide-section.guide-recommend .product-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guide-section.guide-recommend .product-cta .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 8px 6px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #6f6f6f;
  letter-spacing: -0.5px;
  background-color: #fff;
  border-radius: 50px;
}
.guide-section.guide-recommend .product-cta .cta .icon {
  width: 20px;
  height: 20px;
  background-image: url("../img/care-solutions-guide/icons/icon-arrow-product.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.guide-section.guide-faq {
  margin-top: -30px;
}
.guide-section.guide-faq .guide-content {
  margin: 0 -20px;
}
.guide-section.guide-faq .accordion-list {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.guide-section.guide-faq .accordion-item {
  border-bottom: 1px solid #e1e1e1;
}
.guide-section.guide-faq .accordion-item:last-child {
  border-bottom: none;
}
.guide-section.guide-faq .accordion-item.is-active {
  background-color: #f3f3f3;
}
.guide-section.guide-faq .accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 24px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  text-align: left;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
.guide-section.guide-faq .accordion-header::after {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../img/care-solutions-guide/icons/icon_arrow_ud_18.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transition: all 0.3s;
}
.guide-section.guide-faq .accordion-header[aria-expanded=true] {
  font-weight: 700;
}
.guide-section.guide-faq .accordion-header[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.guide-section.guide-faq .accordion-panel .accordion-panel-inner {
  padding: 0 20px 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  text-align: left;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
.guide-section.guide-faq .accordion-panel .accordion-panel-inner .num-list li {
  position: relative;
  padding-left: 14px;
  text-indent: -14px;
  word-break: keep-all;
}
.guide-section.guide-faq .accordion-panel .accordion-panel-inner a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .guide-section {
    width: 1888px;
    margin: 0 auto;
    margin-bottom: 200px;
  }
  .guide-section .guide-headline {
    margin-bottom: 80px;
  }
  .guide-section .guide-title {
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  .guide-section .guide-title-h3 {
    margin-bottom: 50px;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }
  .guide-section .guide-description {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }
  .guide-section .tab-list {
    gap: 12px;
    margin-bottom: 50px;
  }
  .guide-section .tab-btn {
    padding: 16px 32px;
    font-size: 20px;
    line-height: 1.4;
  }
  .guide-section .guide-disclaimer > li::before {
    width: 4px;
    height: 4px;
  }
  .guide-section .guide-disclaimer > li ul li {
    position: relative;
    margin-top: 0;
    padding-left: 10px;
  }
  .guide-section .guide-disclaimer > li ul li::before {
    top: 10px;
    width: 4px;
    height: 1px;
  }
  .guide-section.guide-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 324px;
    background-color: #f6f3eb;
    border-radius: 0 0 48px 48px;
  }
  .guide-section.guide-hero .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    padding-top: 324px;
  }
  .guide-section.guide-hero .hero-title-group {
    top: calc(30% + 21px);
    gap: 12px;
  }
  .guide-section.guide-hero .hero-title-group .hero-title {
    font-size: 70px;
    line-height: 91px;
  }
  .guide-section.guide-hero .hero-title-group .hero-title::before {
    top: -40px;
    width: 111px;
    height: 61px;
  }
  .guide-section.guide-hero .hero-title-group .hero-desc {
    font-size: 24px;
    line-height: 31px;
  }
  .guide-section.guide-info .guide-info-list {
    margin-top: 56px;
  }
  .guide-section.guide-info .guide-info-list li {
    padding-left: 30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
  }
  .guide-section.guide-info .guide-info-list li::before {
    top: 15px;
    left: 13px;
    width: 4px;
    height: 4px;
  }
  .guide-section.guide-info .guide-header {
    padding: 70px 0;
  }
  .guide-section.guide-info .guide-header .guide-header-title {
    font-size: 58px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  .guide-section.guide-intro {
    padding: 110px 0 100px;
  }
  .guide-section.guide-intro .list-container {
    margin-top: 60px;
  }
  .guide-section.guide-intro .intro-list {
    margin: 0 auto;
  }
  .guide-section.guide-intro .intro-item {
    width: 360px;
    height: auto;
  }
  .guide-section.guide-intro .card-link {
    width: 100%;
    height: 100%;
  }
  .guide-section.guide-intro .card-link::after {
    width: 78px;
    height: 78px;
  }
  .guide-section.guide-intro .intro-title {
    margin-bottom: 24px;
  }
  .guide-section.guide-intro .intro-text {
    bottom: 40px;
    font-size: 16px;
    line-height: 1.4;
  }
  .guide-section.guide-service .guide-headline {
    margin-bottom: 79px;
  }
  .guide-section.guide-service .care-service {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 50px;
  }
  .guide-section.guide-service .tab-container-top {
    flex: 1;
    align-self: center;
    margin-top: -68px;
    margin-right: 112px;
    margin-bottom: 0;
  }
  .guide-section.guide-service .tab-container-top .filter-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 61px;
    padding: 0;
  }
  .guide-section.guide-service .tab-container-top .filter-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    width: 100%;
  }
  .guide-section.guide-service .tab-container-top .filter-button.active {
    color: #000000;
  }
  .guide-section.guide-service .tab-container-top .filter-button .icon {
    width: 110px;
    height: 119px;
    background-size: cover;
  }
  .guide-section.guide-service .tab-container-top .filter-button .button-text {
    font-size: 20px;
    line-height: 30px;
  }
  .guide-section.guide-service .tab-container-top .filter-button + .filter-button::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
  }
  .guide-section.guide-service .tab-visual-wrap {
    width: 730px;
    padding-top: calc(100% + 68px);
  }
  .guide-section.guide-service .tab-image {
    aspect-ratio: 1;
    border-radius: 32px;
  }
  .guide-section.guide-service .visual-caption {
    margin-top: 38px;
    font-size: 20px;
    line-height: 1.5;
  }
  .guide-section.guide-service .visual-label {
    top: 25px;
    left: 25px;
    padding: 8px 12px;
    font-size: 20px;
    line-height: 1.3;
  }
  .guide-section.guide-service .visual-image-wrap.after .visual-label {
    right: 25px;
  }
  .guide-section.guide-service .visual-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
  }
  .guide-section.guide-service .handle-ring {
    width: 70px;
    height: 70px;
  }
  .guide-section.guide-service .tab-layout-col {
    flex: 1;
    max-width: 730px;
  }
  .guide-section.guide-service .tab-layout-col + .tab-layout-col {
    margin-top: 0;
    margin-left: 55px;
  }
  .guide-section.guide-service .tab-layout-col .tab-layout-title {
    margin-bottom: 15px;
    padding: 15px 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    text-align: center;
    letter-spacing: -0.35px;
    background: #f3f3f3;
    border-radius: 30px;
  }
  .guide-section.guide-service .tab-content-wrap {
    width: 270px;
    padding-top: 100%;
  }
  .guide-section.guide-service .tab-content-item {
    flex-direction: column;
  }
  .guide-section.guide-service .tab-content-item .swiper-title {
    order: 2;
    margin-top: 14px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: -0.5px;
  }
  .guide-section.guide-service .tab-content-item .swiper {
    order: 1;
  }
  .guide-section.guide-service .swiper {
    flex: 0 0 auto;
    height: 752px;
    margin: 0;
    padding: 0;
  }
  .guide-section.guide-service .swiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    transform: none;
  }
  .guide-section.guide-service .swiper .swiper-slide {
    flex: 0 0 auto;
    width: 270px;
    height: auto;
  }
  .guide-section.guide-service .swiper .swiper-image {
    padding-top: 59.259%;
    aspect-ratio: 270/160;
  }
  .guide-section.guide-service .swiper .swiper-content-wrap {
    margin-top: 4px;
  }
  .guide-section.guide-service .swiper .swiper-content-wrap .swiper-text {
    display: none;
  }
  .guide-section.guide-service .swiper .swiper-content-wrap .text-sub {
    font-size: 15px;
    line-height: 1.5;
  }
  .guide-section.guide-service .swiper .swiper-content-wrap .text-sub::before {
    display: none;
  }
  .guide-section.guide-service .swiper .swiper-pagination {
    display: none;
  }
  .guide-section.guide-comparison .compare-tbl {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .guide-section.guide-comparison .compare-tbl thead th {
    position: relative;
    padding: 44px 12px 63px;
    font-weight: 700;
    font-size: 28px;
    line-height: 39px;
    text-align: center;
    letter-spacing: -0.35px;
  }
  .guide-section.guide-comparison .compare-tbl thead th.th-subs {
    color: #FFFFFF;
    background-color: #e73532;
    border: 4px solid #e73532;
    border-width: 4px 0 0 0;
    border-radius: 24px 0 0;
  }
  .guide-section.guide-comparison .compare-tbl thead th.th-purc {
    color: #000000;
    border: 4px solid #c8c8c8;
    border-width: 4px 4px 0 0;
    border-radius: 0 24px 0 0;
  }
  .guide-section.guide-comparison .compare-tbl tbody tr:last-child td {
    padding-bottom: 44px;
  }
  .guide-section.guide-comparison .compare-tbl tbody tr:last-child td:last-child {
    border-bottom: 4px solid #c8c8c8;
    border-radius: 0 0 24px 0;
  }
  .guide-section.guide-comparison .compare-tbl tbody tr:last-child td.td-subs {
    border-radius: 0 0 0 24px;
  }
  .guide-section.guide-comparison .compare-tbl tbody tr + tr th {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
  .guide-section.guide-comparison .compare-tbl tbody tr + tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }
  .guide-section.guide-comparison .compare-tbl tbody tr + tr td.td-subs {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .guide-section.guide-comparison .compare-tbl tbody th {
    padding: 24px 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
    letter-spacing: -0.35px;
  }
  .guide-section.guide-comparison .compare-tbl tbody td {
    padding: 20px 52px;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: right;
    color: #000000;
    letter-spacing: -0.35px;
    word-break: keep-all;
  }
  .guide-section.guide-comparison .compare-tbl tbody td:last-child {
    border-right: 4px solid #c8c8c8;
  }
  .guide-section.guide-comparison .compare-tbl tbody td.td-subs {
    color: #FFFFFF;
    background-color: #e73532;
  }
  .guide-section.guide-comparison .compare-tbl tbody td.td-subs .td-inner .icon {
    width: 32px;
    height: 32px;
    background-image: url("../img/care-solutions-guide/icons/icon-comparison-subs-pc.svg");
  }
  .guide-section.guide-comparison .compare-tbl tbody td .td-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    word-break: keep-all;
  }
  .guide-section.guide-comparison .compare-tbl tbody td .td-inner .icon {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    background-image: url("../img/care-solutions-guide/icons/icon-comparison-purc-pc.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .guide-section.guide-comparison .compare-tbl .table-item-label {
    font-size: 14px;
    line-height: 20px;
  }
  .guide-section.guide-comparison .table-description {
    margin-top: 20px;
    margin-left: 338px;
    padding: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
  }
  .guide-section.guide-choice.bg-beige {
    position: relative;
    padding: 110px 20px 58px;
  }
  .guide-section.guide-choice.bg-beige::before {
    background-image: url("../img/care-solutions-guide/bg_coin_pc.png");
  }
  .guide-section.guide-choice .guide-headline {
    margin-bottom: 80px;
  }
  .guide-section.guide-choice .receipt-container::before {
    height: 120px;
    border-radius: 60px;
  }
  .guide-section.guide-choice .receipt-body {
    width: 700px;
    max-width: 100%;
    margin-top: -69px;
  }
  .guide-section.guide-choice .receipt-body::before {
    right: 23px;
    left: 23px;
    width: calc(100% - 46px);
    height: 27px;
  }
  .guide-section.guide-choice .receipt-content {
    width: 700px;
    margin-right: auto;
    margin-left: auto;
    padding: 60px 58px 96px;
    background: url("../img/care-solutions-guide/bg_receipt_pc.svg") no-repeat center bottom;
  }
  .guide-section.guide-choice .receipt-content::before {
    right: 23px;
    left: 23px;
    width: calc(100% - 46px);
    height: 118px;
  }
  .guide-section.guide-choice .receipt-title {
    font-size: 32px;
    line-height: 45px;
  }
  .guide-section.guide-choice .receipt-description {
    font-size: 20px;
    line-height: 28px;
  }
  .guide-section.guide-choice .receipt-list {
    gap: 14px;
    margin-top: 50px;
    padding: 0;
  }
  .guide-section.guide-choice .receipt-item {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .guide-section.guide-choice .receipt-item-inner,
  .guide-section.guide-choice .receipt-item-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .guide-section.guide-choice .receipt-item-label,
  .guide-section.guide-choice .receipt-item-value {
    font-size: 24px;
    line-height: 1.4;
  }
  .guide-section.guide-choice .receipt-item-option-label,
  .guide-section.guide-choice .receipt-item-option-value {
    font-size: 16px;
    line-height: 1.4;
  }
  .guide-section.guide-choice .receipt-summary {
    margin: 0 -10px;
    margin-top: 62px;
    padding: 0;
  }
  .guide-section.guide-choice .receipt-summary::before {
    top: -31px;
  }
  .guide-section.guide-choice .receipt-summary .summary-list {
    padding: 0 10px;
  }
  .guide-section.guide-choice .receipt-summary .summary-item dt,
  .guide-section.guide-choice .receipt-summary .summary-item dd {
    gap: 0;
    font-size: 32px;
    line-height: 1.4;
  }
  .guide-section.guide-choice .receipt-summary .summary-item.additional dt,
  .guide-section.guide-choice .receipt-summary .summary-item.additional dd {
    font-size: 16px;
    line-height: 1.5;
  }
  .guide-section.guide-choice .receipt-summary .summary-item.highlight {
    width: calc(100% + 20px);
    margin: 0 -10px;
    margin-top: 23px;
    padding: 10px 13px;
    border-radius: 12px;
  }
  .guide-section.guide-choice .receipt-summary .summary-item.highlight .total-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .guide-section.guide-choice .receipt-summary .summary-item.highlight .total-value span {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -0.35px;
  }
  .guide-section.guide-point .guide-headline {
    margin-bottom: 60px;
  }
  .guide-section.guide-point .guide-disclaimer {
    margin-top: 40px;
  }
  .guide-section.guide-point .point-benefit {
    position: relative;
    display: flex;
    align-items: center;
    width: 1330px;
    height: 1086px;
  }
  .guide-section.guide-point .point-benefit .point-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
  }
  .guide-section.guide-point .point-benefit .point-nav > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .guide-section.guide-point .point-benefit .point-tab {
    flex: 0 0 auto;
  }
  .guide-section.guide-point .point-benefit .point-tab::after {
    display: none;
  }
  .guide-section.guide-point .point-benefit .point-tab.active .point-num {
    font-weight: 700;
    color: #000;
  }
  .guide-section.guide-point .point-benefit .point-tab.active .point-num::after {
    width: 69px;
    height: 40px;
    background-image: url("../img/care-solutions-guide/icons/icon-minus-20.svg");
    background-color: #000;
    border-color: #000;
  }
  .guide-section.guide-point .point-benefit .point-tab.active .point-desc {
    margin-top: 18px;
    font-size: 28px;
    line-height: 42px;
  }
  .guide-section.guide-point .point-benefit .point-tab .point-num {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
  }
  .guide-section.guide-point .point-benefit .point-tab .point-num::after {
    content: "";
    flex: 0 0 auto;
    width: 70px;
    height: 41px;
    background-image: url("../img/care-solutions-guide/icons/icon-plus-20.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px auto;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50px;
  }
  .guide-section.guide-point .point-benefit .point-tab .point-desc {
    margin-top: 18px;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
  }
  .guide-section.guide-point .point-benefit .point-tab .point-desc .desc-sub {
    margin-top: 0;
    font-size: 28px;
    line-height: 42px;
  }
  .guide-section.guide-point .point-benefit .point-panel {
    position: absolute;
    top: 50%;
    right: 0;
    width: 678px;
    margin-top: 0;
    border-radius: 24px;
    transform: translateY(-50%);
  }
  .guide-section.guide-point .point-benefit .point-panel[hidden] {
    display: none;
  }
  .guide-section.guide-point .point-benefit .point-panel.point-panel1 {
    padding: 50px 0 40px;
  }
  .guide-section.guide-point .point-benefit .point-panel.point-panel2 {
    padding: 80px 0;
  }
  .guide-section.guide-point .point-benefit .point-panel.point-panel3 {
    padding: 32px 0 40px;
  }
  .guide-section.guide-point .card-promotion .card-headline .card-title {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }
  .guide-section.guide-point .card-promotion .card-headline .card-description {
    font-size: 16px;
    line-height: 1.5;
  }
  .guide-section.guide-point .card-promotion .card-content {
    padding: 0 32px;
  }
  .guide-section.guide-point .card-promotion.point2 .card-content {
    padding-top: 64px;
  }
  .guide-section.guide-point .card-promotion.point2 .guide-box {
    margin-top: 0;
  }
  .guide-section.guide-point .card-promotion.point3 .card-content {
    padding-top: 64px;
  }
  .guide-section.guide-point .card-promotion.point3 .card-benefit-title {
    font-size: 32px;
    line-height: 48px;
  }
  .guide-section.guide-point .card-swiper {
    width: 100%;
    padding: 75px 0 60px;
  }
  .guide-section.guide-point .card-swiper [class*=swiper-button-] {
    width: 98px;
    height: 64px;
    background-size: 28px auto;
  }
  .guide-section.guide-point .card-wrapper {
    width: 240px;
    height: 383px;
  }
  .guide-section.guide-point .card-link::after {
    background-size: 62px auto;
  }
  .guide-section.guide-point .card-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-radius: 12px;
    box-shadow: 3px 5px 23px -5px rgba(0, 0, 0, 0.26);
  }
  .guide-section.guide-point .card-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.56);
  }
  .guide-section.guide-point .card-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
  }
  .guide-section.guide-point .card-benefit-desc {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 30px;
  }
  .guide-section.guide-point .card-benefit-btn {
    gap: 10px;
    padding: 4px 32px;
    font-size: 16px;
    line-height: 24px;
  }
  .guide-section.guide-point .card-benefit-btn::after {
    width: 30px;
    height: 30px;
  }
  .guide-section.guide-point .guide-box {
    display: flex;
    flex-direction: column;
    margin-top: 26px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .guide-section.guide-point .guide-box .apply-step-list .apply-step-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 12px 24px 5px;
    text-align: left;
  }
  .guide-section.guide-point .guide-box .apply-step-list .apply-step-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }
  .guide-section.guide-point .guide-box .apply-step-list .apply-step-item + .apply-step-item {
    padding: 12px 24px 18px;
  }
  .guide-section.guide-point .guide-box .apply-step-list .apply-step-item .step-content .step-desc {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -1px;
  }
  .guide-section.guide-point .guide-box .apply-step-list .apply-step-item .step-content .step-desc-title {
    display: block;
  }
  .guide-section.guide-point .guide-box .apply-step-list .apply-step-item .step-img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 268px;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .guide-section.guide-point .card-benefit-title {
    font-size: 32px;
    line-height: 59px;
  }
  .guide-section.guide-point .card-benefit-text {
    margin-top: 24px;
    padding: 0;
    font-size: 28px;
    line-height: 42px;
  }
  .guide-section.guide-point .benefit-item {
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 44px 45px;
  }
  .guide-section.guide-point .benefit-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }
  .guide-section.guide-point .benefit-item strong {
    flex: 0 0 auto;
    width: 140px;
    font-size: 28px;
    line-height: 1.3;
  }
  .guide-section.guide-point .benefit-item ul {
    margin-top: 0;
  }
  .guide-section.guide-point .benefit-item ul li {
    padding-left: 32px;
    font-size: 20px;
    line-height: 30px;
  }
  .guide-section.guide-point .benefit-item ul li::before {
    top: 14px;
    left: 13px;
    width: 4px;
    height: 4px;
  }
  .guide-section.guide-point .discount-step {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
    border-radius: 12px;
  }
  .guide-section.guide-point .discount-step.step1 {
    padding: 28px 32px 24px;
  }
  .guide-section.guide-point .discount-step.step2 {
    padding: 44px 32px;
  }
  .guide-section.guide-point .discount-step + .discount-step {
    margin-top: 50px;
  }
  .guide-section.guide-point .discount-step .step-title {
    top: -22px;
    gap: 18px;
    padding: 0 32px;
    font-weight: 900;
    font-size: 32px;
    line-height: 48px;
  }
  .guide-section.guide-point .discount-step .step-title .icon {
    width: 30px;
    height: 29px;
    background-size: contain;
  }
  .guide-section.guide-point .discount-step .step-desc {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
  }
  .guide-section.guide-point .table-content + .table-content {
    margin-top: 42px;
  }
  .guide-section.guide-point .table-wrapper {
    margin-top: 24px;
  }
  .guide-section.guide-point .discount-table thead th {
    padding: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.5px;
    background: rgba(253, 49, 46, 0.08);
  }
  .guide-section.guide-point .discount-table thead th:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.18);
  }
  .guide-section.guide-point .discount-table tbody td {
    padding: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
  }
  .guide-section.guide-point .discount-table tbody td:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.18);
  }
  .guide-section.guide-point .footnote-badge {
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
  }
  .guide-section.guide-point .table-note {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.5;
  }
  .guide-section.guide-scenario .guide-headline {
    margin-bottom: 130px;
  }
  .guide-section.guide-scenario .scenario-message {
    margin-bottom: -140px;
    padding-left: 54px;
    font-size: 24px;
    line-height: 36px;
    text-align: left;
  }
  .guide-section.guide-scenario .scenario-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
  }
  .guide-section.guide-scenario .scenario-card-before {
    position: absolute;
    top: 50%;
    left: 0;
    align-items: flex-start;
    width: 100%;
    padding: 53px 60px 56px 53px;
    margin: 0;
    text-align: left;
    border-radius: 32px;
    transform: translateY(-50%);
  }
  .guide-section.guide-scenario .scenario-card-before .icon {
    position: absolute;
    top: 219px;
    left: 36.23%;
    width: 136px;
    height: 117px;
    margin-top: 0;
    transform: rotate(0);
  }
  .guide-section.guide-scenario .scenario-card-before .product-card,
  .guide-section.guide-scenario .scenario-card-before .contract-info,
  .guide-section.guide-scenario .scenario-card-before .price-info {
    width: 469px;
  }
  .guide-section.guide-scenario .product-card {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }
  .guide-section.guide-scenario .product-card .product-image {
    order: 2;
    width: 130px;
    height: 130px;
  }
  .guide-section.guide-scenario .product-card .product-info {
    align-items: flex-start;
    flex: 1;
    order: 1;
    gap: 4px;
  }
  .guide-section.guide-scenario .product-card .product-name {
    font-size: 24px;
    line-height: 36px;
  }
  .guide-section.guide-scenario .product-card .product-sku {
    font-size: 16px;
  }
  .guide-section.guide-scenario .contract-info,
  .guide-section.guide-scenario .price-info {
    align-items: flex-start;
    flex: 1;
    margin-top: 25px;
    padding-top: 25px;
  }
  .guide-section.guide-scenario .contract-info .contract-item {
    font-size: 20px;
  }
  .guide-section.guide-scenario .price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .guide-section.guide-scenario .price-info .price {
    font-weight: 500;
    font-size: 44px;
    line-height: 57px;
  }
  .guide-section.guide-scenario .price-info .price-total {
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
  }
  .guide-section.guide-scenario .scenario-card-after {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 620px;
    margin-top: 0;
    margin-right: 60px;
    margin-left: auto;
    padding: 56px 24px 67px;
    text-align: center;
    background: #e6e1d6;
    border-radius: 32px;
  }
  .guide-section.guide-scenario .scenario-card-after .discount-label {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 31px;
  }
  .guide-section.guide-scenario .scenario-card-after .price-info {
    align-items: center;
  }
  .guide-section.guide-scenario .scenario-card-after .price-info .price {
    font-size: 58px;
    line-height: 50px;
  }
  .guide-section.guide-scenario .scenario-card-after .price-info .price-total {
    margin-top: 14px;
    font-size: 40px;
    line-height: 36px;
  }
  .guide-section.guide-scenario .scenario-card-after .points-grid {
    margin: 60px 0 80px;
  }
  .guide-section.guide-scenario .scenario-card-after .point-card .icon {
    width: 97px;
    height: 32px;
    background-size: 100% auto;
  }
  .guide-section.guide-scenario .scenario-card-after .point-card .icon + .icon {
    margin-bottom: -12px;
  }
  .guide-section.guide-scenario .scenario-card-after .point-card .plus {
    right: -17px;
    font-weight: 300;
    font-size: 37px;
    line-height: 1;
  }
  .guide-section.guide-scenario .scenario-card-after .point-card-inner {
    width: 150px;
    padding: 0 14px 32px;
    background-image: url("../img/care-solutions-guide/icons/icon-speech-bubble-pc.svg");
    aspect-ratio: 150/201;
  }
  .guide-section.guide-scenario .scenario-card-after .point-card-inner .label {
    margin-top: 20px;
    font-size: 16px;
    line-height: 12px;
  }
  .guide-section.guide-scenario .scenario-card-after .point-card-inner .value {
    font-size: 24px;
    line-height: 1.2;
  }
  .guide-section.guide-scenario .scenario-card-after .point-card-inner .sub {
    font-size: 15px;
    line-height: 1.4;
  }
  .guide-section.guide-scenario .scenario-card-after .discount-rate .num,
  .guide-section.guide-scenario .scenario-card-after .discount-rate .unit {
    font-size: 130px;
    line-height: 92px;
  }
  .guide-section.guide-scenario .scenario-description {
    margin-top: 40px;
    padding-top: 27px;
    font-size: 15px;
    line-height: 1.5;
  }
  .guide-section.guide-review .review-tags {
    gap: 12px;
    margin-bottom: 50px;
  }
  .guide-section.guide-review .hashtag {
    padding: 16px 32px;
    font-size: 20px;
    line-height: 1.4;
  }
  .guide-section.guide-review .review-swiper {
    margin: 0;
    padding: 0;
  }
  .guide-section.guide-review .review-swiper .swiper-wrapper {
    justify-content: space-between;
    gap: 16px;
  }
  .guide-section.guide-review .review-swiper .swiper-slide {
    flex: 1;
    max-width: 446px;
  }
  .guide-section.guide-review .review-swiper .swiper-pagination {
    display: none;
  }
  .guide-section.guide-review .review-card {
    gap: 16px;
    padding: 32px;
  }
  .guide-section.guide-review .review-card-thumbnail {
    border-radius: 12px;
  }
  .guide-section.guide-review .review-card-body {
    gap: 16px;
  }
  .guide-section.guide-review .review-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .guide-section.guide-review .review-card-date {
    font-size: 16px;
  }
  .guide-section.guide-review .review-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .guide-section.guide-review .review-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px;
  }
  .guide-section.guide-review .review-card-stars .star {
    width: 14px;
    height: 14px;
  }
  .guide-section.guide-review .review-card-score {
    font-size: 18px;
  }
  .guide-section.guide-review .review-card-text {
    font-size: 16px;
  }
  .guide-section.guide-ai-chat {
    padding: 82px 0 80px;
    background-color: #000;
    border-radius: 32px;
  }
  .guide-section.guide-ai-chat .guide-headline {
    margin-bottom: 37px;
  }
  .guide-section.guide-ai-chat .guide-title {
    font-weight: 500;
    font-size: 44px;
    line-height: 1.3;
  }
  .guide-section.guide-ai-chat .ai-chat-cta {
    flex-direction: row;
    gap: 20px;
  }
  .guide-section.guide-ai-chat .ai-chat-cta .cta {
    width: 100%;
    height: 58px;
    height: 108px;
    padding: 26px 82px;
    font-weight: 500;
    font-size: 40px;
    line-height: 52px;
  }
  .guide-section.guide-ai-chat .ai-chat-cta .cta::after {
    width: 40px;
    height: 40px;
  }
  .guide-section.guide-recommend .recommend-swiper {
    margin: 0;
    padding: 60px 24px;
    background: #f3f3f3;
    border-radius: 24px;
    border: 1px solid #ececec;
  }
  .guide-section.guide-recommend .recommend-swiper .swiper-slide {
    flex: 1;
    width: 50%;
  }
  .guide-section.guide-recommend .recommend-swiper .swiper-pagination {
    display: none;
  }
  .guide-section.guide-recommend .product-list {
    gap: 24px;
  }
  .guide-section.guide-recommend .recommend-product-card {
    gap: 20px;
    padding: 0;
    border: none;
  }
  .guide-section.guide-recommend .product-title-wrap {
    display: flex;
    align-items: center;
  }
  .guide-section.guide-recommend .product-title-wrap .product-name {
    font-size: 20px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .guide-section.guide-recommend .product-cta .cta {
    width: 140px;
    padding: 8px 6px;
  }
  .guide-section.guide-recommend .product-cta .cta .icon {
    width: 30px;
    height: 30px;
  }
  .guide-section.guide-faq {
    margin-top: -30px;
  }
  .guide-section.guide-faq .guide-content {
    margin: 0 -20px;
  }
  .guide-section.guide-faq .accordion-list {
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
  }
  .guide-section.guide-faq .accordion-item {
    border-bottom: 1px solid #e1e1e1;
  }
  .guide-section.guide-faq .accordion-item:last-child {
    border-bottom: none;
  }
  .guide-section.guide-faq .accordion-item.is-active {
    background-color: #f3f3f3;
  }
  .guide-section.guide-faq .accordion-header {
    gap: 40px;
    padding: 30px 40px 30px 96px;
    font-size: 24px;
  }
  .guide-section.guide-faq .accordion-header::before {
    content: "Q";
    position: absolute;
    top: 50%;
    left: 37px;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 28px;
    line-height: 1.5;
    color: #000;
    letter-spacing: -0.5px;
  }
  .guide-section.guide-faq .accordion-header::after {
    width: 30px;
    height: 30px;
  }
  .guide-section.guide-faq .accordion-panel .accordion-panel-inner {
    padding: 0 107px 30px 96px;
    font-size: 20px;
  }
  .guide-section.guide-faq .accordion-panel .accordion-panel-inner .num-list li {
    padding-left: 0;
    text-indent: 0;
  }
}

@keyframes revealRight {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes guideContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes height {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}