@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
body {
  position: relative;
  position: relative;
  width: 100%;
  margin-inline: auto;
  height: 100vh;
}
body * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.home-wrapper {
  --padding-inline: 86px;
}
.home-wrapper .top-bar {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 4;
  border-bottom: 1px solid #D9D9D9;
}
.home-wrapper .top-bar .top-bar-wrapper {
  padding-inline: var(--padding-inline);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content {
  display: flex;
  align-items: center;
  gap: 64.29px;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .logo {
  cursor: pointer;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #323C55;
  cursor: pointer;
  display: flex;
  gap: 8px;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .item:hover {
  font-weight: 500;
  color: #35A1DA;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .item:hover > img {
  content: url(../../assets/images/icon/arrow-aqua.svg);
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown {
  position: relative;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown:has(input[type=checkbox]:checked) + .dropdown-wrapper {
  display: grid;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown:has(input[type=checkbox]:checked) {
  color: #34499D;
  font-weight: 500;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown:has(input[type=checkbox]:checked) img {
  content: url(../../assets/images/icon/arrow-blue.svg);
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown input[type=checkbox] {
  display: none;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100dvw - var(--padding-inline) * 2);
  max-width: calc(1440px - var(--padding-inline) * 2);
  background-color: white;
  z-index: 2;
  border: 0.5px solid rgba(217, 217, 217, 0.9);
  padding: 30px 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 20px;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 4px;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item:hover {
  background-color: #E0F8FA;
  text-decoration: unset;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item:hover .content .title {
  color: #34499D;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item:hover .content .description {
  color: #35A1DA;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .image {
  width: 24px;
  height: 24px;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .content .title {
  color: #323C55;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.home-wrapper .top-bar .top-bar-wrapper .left-content .list-item-wrapper .dropdown-wrapper .item .content .description {
  color: rgba(50, 60, 85, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.home-wrapper .top-bar .top-bar-wrapper .right-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
.home-wrapper .top-bar .top-bar-wrapper .right-content .item {
  color: #302F2F;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.home-wrapper .top-bar .top-bar-wrapper .right-content .item:hover {
  text-decoration: underline;
}
.home-wrapper .top-bar .top-bar-wrapper .right-content .toggle-menu {
  cursor: pointer;
  display: none;
}
.home-wrapper .top-bar .top-bar-wrapper .right-content .toggle-menu input[id=toggle-mobile-menu] {
  display: none;
}
.home-wrapper .top-bar .dropdown-mobile {
  display: none;
}
.home-wrapper .banner-feature {
  background-color: #F1FFFF;
}
.home-wrapper .banner-feature .bg16 {
  width: 100%;
  object-fit: contain;
}
.home-wrapper .banner-feature .banner-feature-wrapper {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--padding-inline);
  padding-block: 40px;
  position: relative;
}
.home-wrapper .banner-feature .banner-feature-wrapper .title-1 {
  color: #000C2C;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
}
.home-wrapper .banner-feature .banner-feature-wrapper .title-2 {
  color: #424242;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 10px;
  padding-bottom: 37px;
}
.home-wrapper .banner-feature .banner-feature-wrapper .dots2 {
  position: absolute;
  top: 0;
  right: var(--padding-inline);
}
.home-wrapper .online-schedule-management {
  margin-top: 49.84px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--padding-inline);
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item {
  padding-inline: 20px;
  padding-top: 59px;
  padding-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 68px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item.image-to-left .content-1 {
  order: 1;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 {
  display: flex;
  flex-direction: column;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1.vertical-center {
  justify-content: center;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .title-1 {
  color: #000C2C;
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: -0.6px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .mark-1 {
  border-radius: 100vw;
  width: 54.779px;
  height: 12px;
  background-color: #35A1DA;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .description-1 {
  margin-top: 30px;
  color: #424242;
  font-size: 18px;
  font-weight: 400;
  line-height: 27.4px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .list-check-mark {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 32px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .list-check-mark__item {
  padding-inline: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .list-check-mark__item .icon-wrapper {
  height: 24px;
  width: 24px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .list-check-mark__item .icon-wrapper img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-1 .list-check-mark__item .text {
  color: #424242;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-2 {
  padding-right: 21px;
}
.home-wrapper .online-schedule-management .online-schedule-management-wrapper .list-item-wrapper .item .content-2 .bg17 {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.home-wrapper .bottom-bar {
  background-color: #E0F8FA;
  padding-block: 68px;
  margin-top: 50px;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper {
  max-width: 1440px;
  padding-inline: 150px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-areas: "a c c" "b c c";
  align-items: center;
  row-gap: 48px;
  column-gap: 100px;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .first-item {
  grid-area: a;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .second-item {
  grid-area: b;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .second-item .subject {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #5C7184;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .second-item .list-icon-store {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item {
  grid-area: c;
  display: flex;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item {
  display: flex;
  flex-direction: column;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item .text-wrapper {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.408px;
  color: #585757;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item .text-wrapper .image-wrapper {
  min-width: 38px;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item .text-wrapper:hover {
  text-decoration: underline;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item .text-wrapper:first-child {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #424242;
  margin-bottom: 16px;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item:nth-child(2) {
  margin-left: 55.33px;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item:nth-child(3) {
  margin-left: 60.33px;
}
.home-wrapper .bottom-bar .bottom-bar-wrapper .third-item .item:nth-child(4) {
  margin-left: 36.33px;
}
.home-wrapper .copy-right-bar {
  background-color: white;
  height: 80.67px;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #1D242A;
  padding-top: 22px;
}

.button {
  padding-inline: 30px;
  background-color: #FF5252;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 4px;
  height: 39px;
  display: flex;
  align-items: center;
  width: max-content;
}
.button:hover {
  background-color: rgba(255, 82, 82, 0.7803921569);
}

.hiddenAnimation11 {
  transition: all 0.9s;
  transform: translateY(10%);
  opacity: 0.5;
}

.showWithAnimation11 {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=feature.css.map */
