.home {
  position: relative;
  width: 100%;
}

.home__intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.home__intro__list {
  position: relative;
  width: 100%;
  height: 100%;
}

.home__intro__list__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.home__intro__list__item.active {
  opacity: 1;
  z-index: 1;
}

.home__intro__list__item__background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__intro__list__item__contents {
  position: relative;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 210px 0;
  height: 100vh;
}

.home__intro__list__item__contents__slogan {
  color: #fff;
  float: right;
  text-align: right;
  font-family: Raleway, sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 140%;
  max-width: 1022px;
}

.home__intro__list__item__contents__title {
  position: absolute;
  color: #fff;
  color: color(display-p3 1 1 1);
  font-family: "Noto Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
  left: 0;
  bottom: 174px;
  max-width: 567px;
}

.home__intro__list__item__contents__title span {
  font-weight: 600;
}

.home__intro__navigation {
  position: absolute;
  top: 500px;
  left: calc(50% + 690px);
  transform: translateX(-50%);
  z-index: 2;
}

.home__intro__navigation__dots {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home__intro__navigation__dots__item {
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
}

.home__intro__navigation__dots__item__circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.home__intro__navigation__dots__item.active
  .home__intro__navigation__dots__item__circle {
  width: 22px;
  height: 22px;
  background: #fa0;
}

.home__intro__navigation__dots__item__progress {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-90deg) scale(1.5);
  background: conic-gradient(#fff 0deg, transparent 0deg);
  transition: background 0.3s linear;
}

.home__intro__navigation__dots__item__progress circle {
  fill: none;
  stroke: #00d096;
  stroke-width: 3;
  stroke-linecap: round;
}

.home__division {
  position: relative;
}

.home__division__list {
  display: flex;
  position: relative;
}

.home__division__list__item {
  position: relative;
  width: 33.33%;
  display: flex;
  flex-direction: column;
  padding: 0 76px;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
}

.home__division__list__item:hover .home__division__list__item__background {
  transform: scale(1);
}

.home__division__list__item__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  transform: scale(1.2);
}

.home__division__list__item__background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__division__list__item__title {
  position: relative;
  color: #fff;
  color: color(display-p3 1 1 1);
  font-family: Pretendard;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.9px;
}

.home__division__list__item__title svg {
  position: relative;
  top: 3px;
}

.home__division__list__item__paragraph {
  position: relative;
  color: #fff;
  color: color(display-p3 1 1 1);
  font-family: Pretendard;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.44px;
  margin-top: 30px;
}

.home__division__list__item__paragraph span {
  font-weight: 600;
}

.home__division__list__item__button {
  cursor: pointer;
  position: relative;
  width: fit-content;
  display: inline-flex;
  padding: 16px 24px;
  align-items: center;
  gap: 18px;
  border-radius: 50px;
  border: 1px solid #fff;
  border: 1px solid color(display-p3 1 1 1);
  margin-top: 67px;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 0;
}

.home__division__list__item__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  transition: width 0.4s ease;
  width: var(--before-width, 0%);
}

.home__division__list__item:nth-of-type(1)
  .home__division__list__item__button::before {
  background: #10bf86;
}

.home__division__list__item:nth-of-type(2)
  .home__division__list__item__button::before {
  background: #fa0;
}

.home__division__list__item:nth-of-type(3)
  .home__division__list__item__button::before {
  background: #00acac;
}

.home__division__list__item__button a {
  color: inherit;
  text-decoration: none;
}
/* 텍스트/아이콘 색 변화 */
.home__division__list__item__button span,
.home__division__list__item__button img {
  position: relative;
  z-index: 1;
  transition: filter 0.4s ease;
}

.home__division__list__item__button span {
  color: #fff;
  color: color(display-p3 1 1 1);
  font-family: Pretendard;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.52px;
}

.home__division__list__item__button img {
  width: 6px;
  height: 12px;
}

.home__service {
  position: relative;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 207px 0;
}

.home__service__title {
  color: #000;
  color: color(display-p3 0 0 0);
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
}

.home__service__title svg {
  position: relative;
  top: 3px;
}

.home__service__title span {
  display: inline-block;
}

.home__service__paragraph {
  color: #656565;
  color: color(display-p3 0.3942 0.3942 0.3942);
  font-family: "Noto Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.44px;
  margin-top: 30px;
}

.home__service__button {
  cursor: pointer;
  position: absolute;
  top: 207px;
  right: 0;
  display: inline-flex;
  padding: 16px 24px;
  align-items: center;
  gap: 18px;
  border-radius: 50px;
  overflow: hidden;
  background: #cff7f8;
  transition: color 0.3s ease;
}
.home__service__button a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

/* 배경 마스크 애니메이션 */
.home__service__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00a9aa;
  transition: left 0.6s ease;
  z-index: 0;
}

/* hover 시 마스크가 오른쪽으로 이동 */
.home__service__button:hover::before {
  left: 0;
}

/* 텍스트 색상 전환 */
.home__service__button span {
  position: relative;
  z-index: 1;
  font-family: Pretendard;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.52px;
  color: #000000;
  transition: color 0.6s ease;
}

.home__service__button:hover span {
  color: #ffffff;
}

/* 아이콘 전환 */
.home__service__button img {
  width: 6px;
  height: 12px;
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* 기본 상태 — 첫 번째 아이콘 보임 */
.home__service__button img:nth-of-type(1) {
  opacity: 1;
}

/* hover 시 — 두 번째 아이콘이 나타남 */
.home__service__button:hover img:nth-of-type(1) {
  opacity: 0;
}

.home__service__button img:nth-of-type(2) {
  position: absolute;
  right: 24px;
  opacity: 0;
}

.home__service__button:hover img:nth-of-type(2) {
  opacity: 1;
}

.home__service__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 73px 85px;
  margin-top: 100px;
  justify-content: center;
}

.home__service__list__item {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  cursor: pointer;
  position: relative;
  width: calc(33.33% - 56.666px);
}

.home__service__list__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.home__service__list__item:nth-of-type(3n-2) {
  top: 135px;
}

.home__service__list__item:nth-of-type(3n) {
  top: 135px;
}

.home__service__list__item:nth-of-type(7) {
  top: 0;
}

.home__service__list__item:hover
  .home__service__list__item__background__gradient {
  opacity: 1;
}

.home__service__list__item:hover .home__service__list__item__button {
  background: #00a9aa;
  color: #ffffff;
}

.home__service__list__item__background {
  position: relative;
  padding-top: 80%;
  overflow: hidden;
  border-radius: 30px;
}

.home__service__list__item__background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__service__list__item__background__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    color(display-p3 0 0.4588 0.4275 / 0) 50%,
    color(display-p3 0 0.4588 0.4275) 110%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.home__service__list__item__title {
  position: absolute;
  top: 41px;
  left: 30px;
  color: #fff;
  color: color(display-p3 1 1 1);
  font-family: Pretendard;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.56px;
  max-width: 70%;
}

.home__service__list__item__button {
  position: absolute;
  bottom: 31px;
  left: 30px;
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #fff;
  background: color(display-p3 1 1 1);
  color: #656565;
  color: color(display-p3 0.3942 0.3942 0.3942);
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.36px;
  transition: color 0.4s, background 0.4s;
}
.home__service__list__item__button a {
  color: inherit;
  text-decoration: none;
}

.home__about {
  display: flex;
  position: relative;
  background: #e3f9f9;
  background: color(display-p3 0.9056 0.9755 0.976);
  flex-direction: column;
  justify-content: center;
}

.home__about__title {
  position: relative;
  padding-top: 84px;
  padding-left: 15px;
  text-align: center;
  color: #000;
  color: color(display-p3 0 0 0);
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 20px;
}

.home__about__title svg {
  position: relative;
  top: 3px;
}

.home__about__title span {
  display: inline-block;
}

.home__about__paragraph {
  color: #656565;
  color: color(display-p3 0.3942 0.3942 0.3942);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  margin-top: 14px;
  text-align: center;
  padding-bottom: 84px;
}

.home__about__list {
  position: relative;
  display: flex;
}

.home__about__list__item {
  position: relative;
  width: 23%;
  display: flex;
  flex-direction: column;
  padding: 15rem 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}
.home__about__list__item a {
  text-decoration: none;
}

.home__about__list__item:nth-of-type(1) {
  background: #00776d;
}

.home__about__list__item:nth-of-type(2)
  .home__about__list__item__line
  img:nth-of-type(1) {
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
}

.home__about__list__item:nth-of-type(2)
  .home__about__list__item__line
  img:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
}

.home__about__list__item:nth-of-type(3) {
  background: #006b96;
}

.home__about__list__item:nth-of-type(4)
  .home__about__list__item__line
  img:nth-of-type(1) {
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
}

.home__about__list__item:nth-of-type(4) {
  width: 27%;
}

.home__about__list__item:nth-of-type(2) {
  width: 29%;
}

.home__about__list__item:hover .home__about__list__item__background {
  transform: scale(1);
}

.home__about__list__item__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  transform: scale(1.2);
}

.home__about__list__item__background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__about__list__item__title {
  display: block;
  position: relative;
  width: 100%;
  color: #fff;
  color: color(display-p3 1 1 1);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.56px;
}

.home__about__list__item__icon {
  position: relative;
  display: block;
  margin-top: 32px;
  text-align: center;
}

.home__about__list__item__icon img {
  width: auto;
  height: 139px;
}

.home__about__list__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: #00776d;
}

.home__about__list__background:nth-of-type(2) {
  left: 30%;
  width: 70%;
  background: #006b96;
}

.home__footer {
  position: relative;
  background: #000000;
}

.home__footer__contents {
  position: relative;
  padding: 130px 180px;
}

.home__footer__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.home__footer__background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__footer__contents__title {
  position: relative;
  color: color(display-p3 1 1 1);
  font-family: Raleway;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}

.home__footer__contents__title span:nth-of-type(1) {
  color: #fa0;
}

.home__footer__contents__title span:nth-of-type(2) {
  color: color(display-p3 0.242 0.6514 0.6538);
}

.home__footer__contents__paragraph {
  color: #c0c0c0;
  color: color(display-p3 0.7548 0.7548 0.7548);
  font-family: Pretendard;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.56px;
  margin-top: 33px;
}

.home__footer__contents__paragraph span {
  color: color(display-p3 0.9135 0.9135 0.9135);
  font-weight: 700;
}

.home__footer__contents__menu {
  display: inline-flex;
  padding: 50px 40px;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.8);
  background: color(display-p3 0 0 0 / 0.8);
  margin-top: 53px;
}

.home__footer__contents__menu__context {
  position: relative;
}

.home__footer__contents__menu__context__category {
  cursor: pointer;
  color: #dadada;
  color: color(display-p3 0.8558 0.8558 0.8558);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.36px;
}

.home__footer__contents__menu__context__list {
  display: flex;
  position: relative;
  margin-top: 25px;
  flex-direction: column;
  gap: 12px;
}

.home__footer__contents__menu__context__list__item {
  cursor: pointer;
  color: #848484;
  color: color(display-p3 0.5192 0.5192 0.5192);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
}
.home__footer__contents__menu__context__list__item a {
  color: inherit;
  text-decoration: none;
}

.home__footer__contents__information {
  position: absolute;
  top: 130px;
  right: 180px;
}

.home__footer__contents__information__list {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 8px;
}

.home__footer__contents__information__list__item {
  display: flex;
  color: color(display-p3 0.7885 0.7885 0.7885);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
  gap: 10px;
  justify-content: right;
}

.home__footer__contents__information__list__item span strong {
  font-weight: 600;
}

.home__footer__contents__information__copyright {
  color: #7c7c7c;
  color: color(display-p3 0.4856 0.4856 0.4856);
  font-family: Pretendard;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.25px;
  margin-top: 18px;
  text-align: right;
}

.home__footer__contents__shortcut {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  bottom: 130px;
  right: 180px;
}

.home__footer__contents__shortcut_en {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  bottom: 60px;
  right: 180px;
}

.home__footer__contents__shortcut__item {
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: #686868;
  background: color(display-p3 0.4087 0.4087 0.4087);
}
.home__footer__contents__shortcut__item:hover {
  background: #555;
}
.home__footer__contents__shortcut__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #dee2e6;
}

/* Top 버튼 스타일 */
.top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #00a9aa;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(10px);
}

.top-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-button:hover {
  background: #008b8d;
  transform: translateY(-2px);
}

.top-button img {
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  .top-button {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .top-button img {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 1680px) {
  .home__footer__contents {
    padding: 130px 40px;
  }
  .home__footer__contents__information {
    position: relative;
    right: unset;
    top: unset;
    text-align: left;
    margin-top: 80px;
  }
  .home__footer__contents__information__list__item {
    justify-content: start;
  }
  .home__footer__contents__information__copyright {
    text-align: left;
  }
  .home__footer__contents__shortcut {
    position: relative;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }
}

@media (max-width: 1440px) {
  .home__intro__list__item__contents {
    padding: 210px 40px;
    box-sizing: border-box;
  }
  .home__intro__list__item__contents__title {
    left: 40px;
  }
  .home__intro__navigation {
    left: auto;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
  .home__division__list__item {
    padding: 0 40px;
  }
  .home__service {
    padding: 207px 40px;
    box-sizing: border-box;
  }
  .home__service__button {
    position: relative;
    right: unset;
    top: unset;
    margin-top: 30px;
  }
}

/* --- 💻 태블릿 반응형 스타일 (1024px 이하) --- */
@media (max-width: 1024px) {
  .home__intro__list__item__contents__slogan {
    font-size: 60px;
  }
  .home__intro__list__item__contents__title {
    font-size: 32px;
    bottom: 120px;
  }

  .home__division__list {
    flex-direction: column; /* 세로로 쌓기 */
  }
  .home__division__list__item {
    width: 100%;
    height: 65vh; /* 높이 조정 */
    text-align: center;
    align-items: center;
  }

  .home__service {
    padding: 150px 40px;
  }
  .home__service__title {
    font-size: 42px;
  }
  .home__service__list {
    gap: 40px;
    justify-content: start;
  }
  .home__service__list__item {
    width: calc(50% - 20px); /* 2열 구조 */
  }
  .home__service__list__item__button {
    bottom: 20px;
  }
  .home__service__list__item__button a {
    font-size: 14px;
  }
  /* 지그재그 위치 초기화 */
  .home__service__list__item:nth-of-type(3n-2),
  .home__service__list__item:nth-of-type(3n),
  .home__service__list__item:nth-of-type(7) {
    top: 0;
  }
  .home__about__list__item {
    padding: 8rem 20px;
    box-sizing: border-box;
  }
  .home__about__list__background {
    display: none;
  }
  .home__about__list__item__title {
    font-size: 21px;
  }

  .home__about__list__item__icon img {
    height: 80px;
  }

  .home__footer__contents__menu {
    display: flex; /* flex로 변경 */
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }
  /* 푸터 정보 영역을 메뉴 아래로 이동 */
  .home__footer__contents__information {
    position: static; /* absolute 해제 */
    margin-top: 50px;
    text-align: left;
  }
  .home__footer__contents__information__list__item {
    justify-content: flex-start;
  }
  .home__footer__contents__information__copyright {
    text-align: left;
  }
  .home__footer__contents__shortcut {
    position: static; /* absolute 해제 */
    margin-top: 30px;
    justify-content: flex-start;
  }
  .home__footer__contents__shortcut_en {
    position: static; /* absolute 해제 */
    margin-top: 30px;
    justify-content: flex-start;
  }
}

/* --- 📱 모바일 반응형 스타일 (768px 이하) --- */
@media (max-width: 768px) {
  .home__intro {
    height: 100svh;
  }
  .home__intro__list__item__contents {
    padding: 200px 20px 100px;
    justify-content: center;
    align-items: center;
    text-align: right;
  }
  .home__intro__list__item__contents__slogan {
    position: relative;
    font-size: 10vw;
    float: none;
    margin-top: 20px;
    text-align: center;
  }
  .home__intro__list__item__contents__title {
    position: relative;
    font-size: 5vw;
    width: 90%;
    bottom: unset;
    left: unset;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
  }
  .home__intro__navigation {
    top: auto;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
  .home__intro__navigation__dots {
    flex-direction: row;
    justify-content: center;
  }

  .home__division__list__item {
    height: auto;
    padding: 100px 20px;
  }
  .home__division__list__item__title {
    font-size: 32px;
    text-align: center;
    word-break: break-all;
  }
  .home__division__list__item__title svg {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .home__division__list__item__paragraph {
    font-size: 18px;
    text-align: center;
  }
  .home__division__list__item__button {
    margin-top: 40px;
  }

  .home__service {
    padding: 100px 20px;
  }
  .home__service__title {
    font-size: 32px;
    text-align: center;
  }

  .home__service__title svg {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .home__service__paragraph {
    font-size: 18px;
    text-align: center;
  }
  .home__service__list {
    margin-top: 60px;
    gap: 30px;
  }
  .home__service__list__item {
    width: 100%; /* 1열 구조 */
  }
  .home__service__list__item__background {
    padding-top: 50%;
  }
  .home__service__list__item__title {
    top: 21px;
    font-size: 20px;
  }
  .home__service__button {
    left: 50%;
    transform: translateX(-50%);
  }

  .home__about__title {
    text-align: center;
    font-size: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home__about__title span {
    text-align: center;
    font-size: 32px;
    margin-left: 0;
  }

  .home__about__title svg {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .home__about__paragraph {
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home__about__list {
    flex-wrap: wrap;
  }

  .home__about__list__item {
    width: 50%; /* 1열 구조 */
    padding: 5rem 20px;
  }

  .home__about__list__item:nth-of-type(2) {
    width: 50%;
  }

  .home__about__list__item:nth-of-type(4) {
    width: 50%;
  }

  .home__about__list__item__title {
    font-size: 24px;
  }

  .home__about__list__item__line {
    display: none;
  }

  .home__about__list__item:hover .home__about__list__item__background {
    transform: scale(1.2);
  }

  .home__footer__contents {
    padding: 80px 20px;
  }
  .home__footer__contents__title {
    font-size: 36px;
    text-align: center;
  }
  .home__footer__contents__paragraph {
    font-size: 20px;
    text-align: center;
  }
  .home__footer__contents__menu {
    flex-direction: column;
    padding: 30px 20px;
    background: none;
    align-items: center;
    gap: 25px;
  }
  .home__footer__contents__menu__context__list {
    display: none;
  }
  .home__footer__contents__information__list__item {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .home__footer__contents__information__list__item,
  .home__footer__contents__information__copyright {
    text-align: center;
  }
  .home__footer__contents__shortcut {
    width: 100%;
    justify-content: center;
  }
  .home__footer__contents__shortcut_en {
    width: 100%;
    justify-content: center;
  }
}
