.home-kv {
  background: center/cover no-repeat url("../images/home/kv-bg.webp");
  overflow: hidden;
}

.home-kv-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 70px 40px 35px;
}
@media only screen and (max-width: 768px) {
  .home-kv-inner {
    padding: 60px 16px 16px;
    gap: 24px;
  }
}

.home-kv-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-kv-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-kv-title-sub {
  width: 230px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .home-kv-title-sub {
    width: 160px;
  }
}

.home-kv-title-text {
  font-size: 66px;
  font-weight: 700;
  line-height: 76px;
  letter-spacing: 2%;
  text-align: center;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-kv-title-text {
    font-size: 32px;
    line-height: 38px;
  }
}

.home-kv-description {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-kv-description {
    font-size: 14px;
  }
}

.home-kv-lottie {
  position: relative;
  width: 100%;
  height: 150px;
}
@media only screen and (max-width: 768px) {
  .home-kv-lottie {
    height: 100px;
  }
}

.home-kv-lottie-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  z-index: 10;
  width: 150px;
  height: 150px;
  cursor: pointer;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.2));
}
@media only screen and (max-width: 768px) {
  .home-kv-lottie-btn {
    width: 100%;
    height: 100%;
  }
}

.home-kv-lottie-btn-inner {
  position: relative;
  display: block;
  width: 90%;
  height: 90%;
  background-color: transparent !important;
}
@media only screen and (max-width: 768px) {
  .home-kv-lottie-btn-inner {
    width: 100%;
    height: 100%;
  }
}

.home-kv-lottie-btn-inner::before {
  display: none !important;
}

#btn-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.2s, transform 0s 0.2s;
  pointer-events: auto;
}
@media only screen and (max-width: 768px) {
  #btn-canvas {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
  }
}

.home-kv-lottie-btn-inner.is-play {
  pointer-events: none;
}

.home-kv-lottie-btn-inner.is-play #btn-canvas {
  opacity: 0;
  pointer-events: none;
}

.home-kv-lottie-btn-inner.is-pause #btn-canvas {
  transition: opacity 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-kv-lottie-btn-inner.is-pause #btn-canvas {
    transform: translateX(-100px);
  }
}

#btns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.2s;
  pointer-events: none;
  background: #E6E6E6;
  border-radius: 100%;
}
@media only screen and (max-width: 768px) {
  #btns {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    transform: translateX(-100px);
    transition: opacity 0.2s;
  }
}

.home-kv-lottie-btn-inner.is-play + #btns {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 768px) {
  .home-kv-lottie-btn-inner.is-play + #btns {
    transition: opacity 0.2s 1s;
  }
}

@media only screen and (max-width: 768px) {
  .home-kv-lottie-btn-inner.is-play.is-replay + #btns {
    transition: opacity 0.2s;
  }
}

#pause {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30%;
  height: 30%;
  background: center/contain no-repeat url("../images/home/player-pause.svg");
}

#back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5%;
  margin: auto;
  width: 20%;
  height: 20%;
  background: center/contain no-repeat url("../images/home/player-back.svg");
}

#next {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  width: 20%;
  height: 20%;
  background: center/contain no-repeat url("../images/home/player-next.svg");
}

#player-canvas {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  width: 1920px;
  height: 100%;
}

.home-kv-cta {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-kv-cta {
    gap: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .home-kv-cta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.home-kv-cta-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-kv-cta-labels {
    gap: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .home-kv-cta-labels {
    gap: 12px;
  }
}

.home-kv-cta-label {
  width: 100%;
  max-width: 178px;
  height: auto;
}

.home-kv-cta-btns {
  grid-area: 1/2/2/3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .home-kv-cta-btns {
    grid-area: auto;
    margin-top: 12px;
  }
}

.home-kv-cta-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.home-kv-cta-btn-lead {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
  color: #444464;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-kv-cta-btn-lead {
    font-size: 12px;
  }
}

.home-kv-cta-btn-lead::before {
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 1px;
  height: 20px;
  background-color: #444464;
  rotate: -30deg;
  content: "";
}

.home-kv-cta-btn-lead::after {
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 1px;
  height: 20px;
  background-color: #444464;
  rotate: 30deg;
  content: "";
}

.home-kv-btn {
  width: 260px;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-kv-btn {
    width: 180px;
    height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .home-kv-btn {
    width: 100%;
    height: 50px;
    padding: 0;
    min-width: auto;
  }
}

.home-user {
  padding: 30px 0;
}

.home-user-list-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 40px;
}
@media only screen and (max-width: 768px) {
  .home-user-list-item {
    margin: 0 16px;
  }
}

.home-user-list-item-img {
  display: block;
  max-width: 100%;
}

.home-sample {
  background: center/cover no-repeat url("../images/home/sample-bg.webp");
}

.home-sample-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 30px 40px;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-sample-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .home-sample-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 16px;
  }
}

.home-sample-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-sample-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .home-sample-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.home-sample-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #444464;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-sample-title {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .home-sample-title {
    font-size: 20px;
    letter-spacing: 0.03em;
    text-align: center;
  }
}

.home-sample-title-strong {
  color: #F67C4D;
}

.home-sample-arrow {
  grid-area: 1/2/2/3;
  place-self: center;
  display: block;
  width: 35px;
  height: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-sample-arrow {
    width: 65px;
    grid-area: auto;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .home-sample-arrow {
    grid-area: auto;
    width: 65px;
    margin: 0 auto;
  }
}

.home-sample-column {
  grid-column: span 2;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.1490196078);
}

.home-sample-column-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1px;
  color: #444464;
}
@media only screen and (max-width: 768px) {
  .home-sample-column-title {
    gap: 8px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}
.home-sample-column-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: center/contain no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M20%200C8.94602%200%200%208.945%200%2020C0%2031.0538%208.945%2040%2020%2040C31.054%2040%2040%2031.055%2040%2020C40%208.94602%2031.055%200%2020%200ZM19.4082%2029.3609C18.2762%2029.3609%2017.4074%2028.4131%2017.4074%2027.3337C17.4074%2026.228%2018.3025%2025.3066%2019.4082%2025.3066C20.514%2025.3066%2021.4352%2026.228%2021.4352%2027.3338C21.4352%2028.413%2020.5402%2029.3609%2019.4082%2029.3609ZM22.4093%2019.12C20.9614%2020.252%2020.935%2021.0418%2020.935%2022.4107C20.935%2022.911%2020.6717%2023.4902%2019.3818%2023.4902C18.3023%2023.4902%2017.9339%2023.0952%2017.9339%2021.7263C17.9339%2019.4623%2018.9343%2018.3829%2019.6977%2017.7248C20.5665%2016.9876%2022.0408%2016.1716%2022.0408%2014.75C22.0408%2013.5389%2020.9877%2012.9598%2019.6714%2012.9598C16.9862%2012.9598%2017.5654%2014.987%2016.1437%2014.987C15.4329%2014.987%2014.5641%2014.513%2014.5641%2013.4863C14.5641%2012.0648%2016.1963%209.95859%2019.7504%209.95859C23.1201%209.95859%2025.3578%2011.8278%2025.3578%2014.3024C25.3578%2016.777%2023.1201%2018.5672%2022.4093%2019.12Z%22%20fill%3D%22%23444464%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .home-sample-column-title::before {
    width: 22.5px;
    height: 22.5px;
  }
}

.home-sample-column-description {
  font-size: 14px;
  line-height: 24px;
  margin-top: 4px;
  color: #444464;
}

.home-sample-column-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.6px;
  text-align: center;
  color: #2930E3;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-sample-column-more {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 0px;
  }
}
.home-sample-column-more::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #2930E3;
  border-right: solid 2px #2930E3;
  rotate: 45deg;
  content: "";
  transform: translateY(2px);
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-sample-column-more::after {
    width: 8px;
    height: 8px;
    transform: translateY(1px);
  }
}
@media (any-hover: hover) {
  .home-sample-column-more {
    cursor: pointer;
  }
  .home-sample-column-more:hover {
    color: #F67C4D;
  }
  .home-sample-column-more:hover::after {
    border-color: #F67C4D;
  }
}

.home-sample-modal {
  position: relative;
  width: 100%;
  max-width: 846px;
  max-height: 100%;
  overflow-y: scroll;
  background-color: #FFF;
  border-radius: 20px;
  padding: 60px 30px 25px;
}
@media only screen and (max-width: 768px) {
  .home-sample-modal {
    padding: 32px 16px 24px;
  }
}

.home-sample-modal-description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
  color: #444464;
}

.home-sample-column-subtitle {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  color: #444464;
}

.home-sample-column-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .home-sample-column-boxes {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
}

.home-sample-column-box {
  border-radius: 12px;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
}

.home-sample-column-box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  width: 100%;
  height: 75px;
  color: #FFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}

.home-sample-column-box-title-small {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
}

.home-sample-column-box-title-wave {
  background-color: #444464;
}
.home-sample-column-box-title-wave::before {
  content: "";
  width: 43px;
  height: 43px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2244%22%20height%3D%2243%22%20viewBox%3D%220%200%2044%2043%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_2144_652)%22%3E%3Cpath%20d%3D%22M35.0034%207.28955C33.9076%207.28955%2033.0161%208.18306%2033.0161%209.28141V33.7314C33.1164%2036.3747%2036.8987%2036.3652%2036.9983%2033.7314V9.28141C36.9983%208.18314%2036.1035%207.28955%2035.0034%207.28955Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M22%207.28955C20.9%207.28955%2020.0051%208.18306%2020.0051%209.28141V33.7314C20.1057%2036.371%2023.8954%2036.3689%2023.995%2033.7314V9.28141C23.995%208.18314%2023.1%207.28955%2022%207.28955Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M28.5016%2014.5728C27.4058%2014.5728%2026.5144%2015.4663%2026.5144%2016.5646V26.4485C26.6147%2029.0919%2030.3969%2029.0821%2030.4965%2026.4485V16.5646C30.4965%2015.4663%2029.6016%2014.5728%2028.5016%2014.5728Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M41.5051%2018.2144C40.4093%2018.2144%2039.5178%2019.1079%2039.5178%2020.2062V22.8069C39.6181%2025.4502%2043.4003%2025.4405%2043.4999%2022.8069V20.2062C43.4999%2019.1079%2042.6051%2018.2144%2041.5051%2018.2144Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M2.49496%2018.2144C1.39494%2018.2144%200.5%2019.1079%200.5%2020.2061V22.8068C0.600613%2025.4424%204.38285%2025.4482%204.48212%2022.8068V20.2061C4.48212%2019.1079%203.59071%2018.2144%202.49496%2018.2144Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M8.99667%2010.9312C7.89665%2010.9312%207.00171%2011.8247%207.00171%2012.923V30.0899C7.10232%2032.7257%2010.8846%2032.7312%2010.984%2030.0899V12.923C10.984%2011.8247%2010.0925%2010.9312%208.99667%2010.9312Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M15.4983%200.00634766C14.3983%200.00634766%2013.5034%200.899858%2013.5034%201.99821V41.0145C13.6039%2043.6502%2017.3862%2043.6558%2017.4855%2041.0145V1.99821C17.4855%200.899858%2016.594%200.00634766%2015.4983%200.00634766Z%22%20fill%3D%22white%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_2144_652%22%3E%3Crect%20width%3D%2243%22%20height%3D%2243%22%20fill%3D%22white%22%20transform%3D%22translate(0.5)%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.home-sample-column-box-title-dnn {
  background-color: #2930E3;
}
.home-sample-column-box-title-dnn::before {
  content: "";
  width: 43px;
  height: 43px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2242%22%20height%3D%2243%22%20viewBox%3D%220%200%2042%2043%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M39.6776%2023.407C39.9689%2023.6442%2040.2589%2023.6412%2040.5476%2023.3979L41.7107%2022.2102C42.0944%2021.8186%2042.0944%2021.1814%2041.7108%2020.7899L40.5476%2019.6022C40.3101%2019.3596%2039.9204%2019.3553%2039.6776%2019.5931C39.4349%2019.8308%2039.4308%2020.2204%2039.6686%2020.4631L40.0816%2020.8848H36.856C36.5803%2019.7789%2035.5794%2018.9569%2034.3899%2018.9569C34.12%2018.9569%2033.8599%2018.9997%2033.6156%2019.0781L30.3582%2013.8109L32.6894%2011.3529C33.1401%2011.7598%2033.7366%2012.0079%2034.39%2012.0079C35.5794%2012.0079%2036.5804%2011.186%2036.8561%2010.0801H40.0817L39.6687%2010.5018C39.431%2010.7445%2039.435%2011.134%2039.6777%2011.3718C39.969%2011.609%2040.259%2011.606%2040.5477%2011.3627L41.7108%2010.175C42.0945%209.78343%2042.0945%209.14623%2041.7109%208.7547L40.5476%207.567C40.3101%207.32435%2039.9204%207.32009%2039.6776%207.55789C39.4349%207.79561%2039.4308%208.18517%2039.6686%208.4279L40.0816%208.84961H36.856C36.5802%207.74369%2035.5793%206.92175%2034.3899%206.92175C33.6631%206.92175%2033.007%207.22912%2032.5434%207.72015L25.4265%203.71637C25.4854%203.50195%2025.5175%203.27653%2025.5175%203.04365C25.5175%201.64135%2024.3773%200.500488%2022.9758%200.500488C21.7864%200.500488%2020.7854%201.32242%2020.5097%202.42834H16.4188C16.2983%201.96717%2016.0454%201.53832%2015.685%201.20028C15.1677%200.715159%2014.478%200.462099%2013.7935%200.50623C13.4544%200.527968%2013.1971%200.820567%2013.219%201.15959C13.2408%201.49862%2013.5344%201.75636%2013.8723%201.73413C14.5974%201.68827%2015.2679%202.31596%2015.2684%203.04283C15.2684%203.76116%2014.6755%204.3562%2013.9572%204.3562C13.5615%204.3562%2013.1882%204.16565%2012.933%203.83343C12.6766%203.49965%2012.5882%203.08844%2012.6904%202.70528C12.778%202.37699%2012.583%202.03985%2012.2547%201.95216C11.9267%201.86464%2011.5893%202.05962%2011.5017%202.3879C11.3844%202.82742%2011.3923%203.28186%2011.5155%203.7112L4.38963%207.71998C3.92592%207.22895%203.26993%206.92167%202.54307%206.92167C1.14159%206.92167%200.00146484%208.06245%200.00146484%209.46475C0.00146484%2010.867%201.14159%2012.0078%202.54307%2012.0078C3.19651%2012.0078%203.79303%2011.7597%204.24378%2011.3528L6.57498%2013.8108L3.31759%2019.078C3.07322%2018.9996%202.81319%2018.9569%202.54315%2018.9569C1.14167%2018.9569%200.00154687%2020.0977%200.00154687%2021.4999C0.00154687%2022.9022%201.14167%2024.043%202.54315%2024.043C2.81319%2024.043%203.07322%2024.0003%203.31759%2023.9219L6.27582%2028.7052L3.79369%2031.3225C3.42414%2031.1126%202.99759%2030.9921%202.54315%2030.9921C1.14167%2030.9921%200.00154687%2032.1328%200.00154687%2033.5351C0.00154687%2034.9374%201.14167%2036.0782%202.54315%2036.0782C3.27001%2036.0782%203.926%2035.7709%204.38971%2035.2799L11.5066%2039.2837C11.4477%2039.4981%2011.4156%2039.7235%2011.4156%2039.9564C11.4156%2041.3587%2012.5557%2042.4995%2013.9572%2042.4995C15.1466%2042.4995%2016.1474%2041.6775%2016.4231%2040.5716H20.514C20.6366%2041.042%2020.897%2041.4779%2021.2692%2041.819C21.7874%2042.2941%2022.4951%2042.5508%2023.1975%2042.4894C23.536%2042.4599%2023.7866%2042.1615%2023.7569%2041.823C23.7274%2041.4845%2023.4295%2041.2349%2023.0906%2041.2635C22.3551%2041.3274%2021.6644%2040.6949%2021.6644%2039.9564C21.6644%2039.2326%2022.2526%2038.6438%2022.9756%2038.6438C23.7659%2038.6438%2024.4106%2039.4263%2024.2633%2040.202C24.2001%2040.5359%2024.4193%2040.8577%2024.7532%2040.9211C25.0873%2040.9843%2025.4089%2040.7651%2025.4723%2040.4313C25.5449%2040.0484%2025.5239%2039.6582%2025.4181%2039.2883L32.5432%2035.2799C33.0068%2035.7709%2033.6629%2036.0783%2034.3897%2036.0783C35.5791%2036.0783%2036.58%2035.2564%2036.8557%2034.1504H40.0814L39.6684%2034.5722C39.4306%2034.8149%2039.4347%2035.2044%2039.6774%2035.4422C39.9687%2035.6794%2040.2586%2035.6764%2040.5474%2035.4331L41.7105%2034.2454C42.0941%2033.8538%2042.0941%2033.2166%2041.7106%2032.8251L40.5474%2031.6374C40.3098%2031.3947%2039.9202%2031.3905%2039.6774%2031.6283C39.4347%2031.866%2039.4306%2032.2556%2039.6684%2032.4983L40.0814%2032.92H36.8557C36.58%2031.8141%2035.5791%2030.9921%2034.3897%2030.9921C33.9352%2030.9921%2033.5087%2031.1126%2033.1391%2031.3226L30.657%2028.7055L33.6152%2023.922C33.8595%2024.0004%2034.1196%2024.0432%2034.3896%2024.0432C35.579%2024.0432%2036.58%2023.2213%2036.8557%2022.1153H40.0813L39.6683%2022.537C39.4308%2022.7797%2039.4349%2023.1692%2039.6776%2023.407ZM25.5172%2030.7197C25.516%2030.3401%2025.4308%2029.9801%2025.2799%2029.6565L27.8742%2027.5591L29.1122%2028.8644L27.6417%2031.2422L25.5172%2030.7197ZM20.5097%2039.3413H16.4232C16.3591%2039.0844%2016.256%2038.8428%2016.1204%2038.6233L18.4665%2036.2227L20.8125%2038.6233C20.6769%2038.8428%2020.5738%2039.0844%2020.5097%2039.3413ZM15.2408%2037.7629C14.8638%2037.5412%2014.4253%2037.4134%2013.9573%2037.4134C13.6873%2037.4134%2013.4271%2037.4561%2013.1829%2037.5346L9.97157%2032.342L11.71%2031.9145C12.1368%2032.7207%2012.9838%2033.2713%2013.9572%2033.2713C14.4252%2033.2713%2014.8637%2033.1436%2015.2407%2032.9219L17.6061%2035.3424L15.2408%2037.7629ZM11.4159%2012.2804C11.4171%2012.66%2011.5022%2013.0201%2011.6532%2013.3435L9.48784%2015.0942L8.12008%2013.6519L9.29138%2011.7579L11.4159%2012.2804ZM16.4234%203.65879H20.5097C20.5623%203.86968%2020.6409%204.07041%2020.7425%204.25694L18.4032%206.71258L16.1205%204.37671C16.2562%204.15728%2016.3593%203.9157%2016.4234%203.65879ZM21.5767%205.16517C21.9783%205.4312%2022.4592%205.58664%2022.9759%205.58664C23.2459%205.58664%2023.506%205.5439%2023.7503%205.46548L26.9615%2010.658L25.2231%2011.0856C24.7963%2010.2794%2023.9493%209.72872%2022.9759%209.72872C22.5079%209.72872%2022.0694%209.85644%2021.6923%2010.0782L19.2639%207.59325L21.5767%205.16517ZM31.9239%2020.8848H25.4418C25.3285%2020.43%2025.0927%2020.0231%2024.7712%2019.7017L27.5556%2016.7657L32.0857%2020.4283C32.018%2020.5737%2031.9634%2020.7262%2031.9239%2020.8848ZM12.6461%2021.5C12.6461%2020.7762%2013.2344%2020.1874%2013.9573%2020.1874C14.6691%2020.1874%2015.2684%2020.7864%2015.2684%2021.5C15.2684%2022.2239%2014.6802%2022.8127%2013.9573%2022.8127C13.2344%2022.8127%2012.6461%2022.2239%2012.6461%2021.5ZM20.5097%2020.8848H16.4232C16.3591%2020.6279%2016.256%2020.3864%2016.1204%2020.1669L18.4665%2017.7662L20.8125%2020.1668C20.6769%2020.3863%2020.5738%2020.6279%2020.5097%2020.8848ZM16.4233%2022.1152H20.5098C20.5739%2022.3722%2020.677%2022.6137%2020.8127%2022.8333L18.4666%2025.2338L16.1205%2022.8332C16.2561%2022.6137%2016.3592%2022.3722%2016.4233%2022.1152ZM21.6681%2021.5707C21.7525%2020.833%2022.1245%2020.1873%2022.9759%2020.1873C23.6988%2020.1873%2024.287%2020.7762%2024.287%2021.4999C24.287%2022.2237%2023.6988%2022.8126%2022.9759%2022.8126C22.2766%2022.8127%2021.7051%2022.2616%2021.6681%2021.5707ZM23.6855%2019.0586C23.4601%2018.9929%2023.2221%2018.9569%2022.9758%2018.9569C22.5077%2018.9569%2022.0692%2019.0848%2021.6922%2019.3064L19.3267%2016.886L21.6922%2014.4654C22.0692%2014.6872%2022.5077%2014.8149%2022.9758%2014.8149C23.5501%2014.8149%2024.0803%2014.6231%2024.5064%2014.3005L26.5958%2015.9898L23.6855%2019.0586ZM16.4233%2012.887H20.5098C20.5739%2013.1439%2020.677%2013.3855%2020.8127%2013.605L18.4666%2016.0056L16.1206%2013.6049C16.2561%2013.3855%2016.3592%2013.1439%2016.4233%2012.887ZM24.287%2012.2718C24.287%2012.9791%2023.6967%2013.5844%2022.9759%2013.5844C22.2529%2013.5844%2021.6646%2012.9956%2021.6646%2012.2718C21.6646%2011.548%2022.2529%2010.9592%2022.9759%2010.9592C23.6988%2010.9592%2024.287%2011.548%2024.287%2012.2718ZM25.2799%2013.3435C25.4308%2013.02%2025.5159%2012.66%2025.5172%2012.2803L27.6417%2011.7579L28.8131%2013.6519L27.4453%2015.0942L25.2799%2013.3435ZM20.8126%2010.9386C20.6769%2011.1581%2020.5738%2011.3997%2020.5097%2011.6566H16.4232C16.3565%2011.3889%2016.2471%2011.1381%2016.1029%2010.9113L18.4145%208.48474L20.8126%2010.9386ZM15.2685%2012.2718C15.2685%2012.9956%2014.6803%2013.5844%2013.9574%2013.5844C13.244%2013.5844%2012.6462%2012.9775%2012.6462%2012.2718C12.6462%2011.548%2013.2345%2010.9592%2013.9574%2010.9592C14.6803%2010.9592%2015.2685%2011.548%2015.2685%2012.2718ZM12.4267%2014.3004C12.8528%2014.623%2013.383%2014.8148%2013.9573%2014.8148C14.4253%2014.8148%2014.8638%2014.6871%2015.2407%2014.4653L17.6062%2016.8859L15.2408%2019.3064C14.8638%2019.0847%2014.4253%2018.9569%2013.9573%2018.9569C13.711%2018.9569%2013.473%2018.9929%2013.2476%2019.0586L10.3372%2015.9898L12.4267%2014.3004ZM12.1618%2019.7017C11.8404%2020.023%2011.6047%2020.43%2011.4912%2020.8848H5.0092C4.96966%2020.7262%204.91511%2020.5737%204.84735%2020.4283L9.37743%2016.7658L12.1618%2019.7017ZM5.0092%2022.1152H11.4912C11.5584%2022.3848%2011.6689%2022.6372%2011.8146%2022.8652L8.94842%2025.8875L4.84735%2022.5717C4.91511%2022.4264%204.96966%2022.2738%205.0092%2022.1152ZM12.7067%2023.7126C13.0762%2023.9225%2013.5029%2024.0431%2013.9573%2024.0431C14.4253%2024.0431%2014.8638%2023.9153%2015.2408%2023.6937L17.6063%2026.1141L15.2408%2028.5346C14.8638%2028.3129%2014.4254%2028.1852%2013.9574%2028.1852C13.3831%2028.1852%2012.8529%2028.377%2012.4268%2028.6996L9.90833%2026.6634L12.7067%2023.7126ZM20.5097%2030.113H16.4232C16.3591%2029.8561%2016.256%2029.6145%2016.1204%2029.3951L18.4665%2026.9944L20.8126%2029.395C20.6769%2029.6145%2020.5738%2029.8561%2020.5097%2030.113ZM14.8731%2031.6654C14.6388%2031.8909%2014.2774%2032.0409%2013.9573%2032.0409C13.2344%2032.0409%2012.6461%2031.4521%2012.6461%2030.7283C12.6461%2030.0209%2013.2365%2029.4156%2013.9573%2029.4156C14.6686%2029.4156%2015.2684%2030.0144%2015.2684%2030.7283C15.2685%2031.0529%2015.111%2031.4336%2014.8731%2031.6654ZM11.6532%2029.6565C11.5023%2029.9801%2011.4172%2030.3401%2011.4159%2030.7196L9.29138%2031.2421L7.82084%2028.8643L9.05875%2027.559L11.6532%2029.6565ZM16.1204%2032.0614C16.256%2031.8419%2016.3592%2031.6004%2016.4232%2031.3435H20.5097C20.5738%2031.6004%2020.6769%2031.842%2020.8126%2032.0615L18.4665%2034.4621L16.1204%2032.0614ZM21.6681%2030.7989C21.7508%2030.0767%2022.1325%2029.4156%2022.9759%2029.4156C23.6892%2029.4156%2024.287%2030.0226%2024.287%2030.7283C24.287%2031.4521%2023.6988%2032.0409%2022.9759%2032.0409C22.2766%2032.0409%2021.7051%2031.4898%2021.6681%2030.7989ZM24.5065%2028.6996C24.0804%2028.377%2023.5502%2028.1852%2022.9759%2028.1852C22.5079%2028.1852%2022.0694%2028.3129%2021.6923%2028.5346L19.3269%2026.1141L21.6923%2023.6937C22.0693%2023.9154%2022.5078%2024.0431%2022.9759%2024.0431C23.4303%2024.0431%2023.8569%2023.9226%2024.2264%2023.7126L27.0249%2026.6634L24.5065%2028.6996ZM25.1185%2022.8653C25.2642%2022.6373%2025.3746%2022.3849%2025.4418%2022.1152H31.9239C31.9634%2022.2738%2032.018%2022.4264%2032.0857%2022.5717L27.9846%2025.8875L25.1185%2022.8653ZM31.9647%2018.7482L28.4051%2015.8702L29.4824%2014.7342L31.9647%2018.7482ZM28.8975%2011.4491L31.512%2010.8062L29.6887%2012.7287L28.8975%2011.4491ZM34.3899%208.15219C35.1129%208.15219%2035.7011%208.741%2035.7011%209.46483C35.7011%2010.1887%2035.1129%2010.7775%2034.3899%2010.7775C33.6669%2010.7775%2033.0788%2010.1887%2033.0788%209.46483C33.0788%208.741%2033.6669%208.15219%2034.3899%208.15219ZM31.9392%208.79211C31.8811%209.00391%2031.8492%209.22645%2031.8485%209.4563L28.2172%2010.3493L24.7955%204.81647C24.8045%204.8072%2024.8134%204.79776%2024.8223%204.78833L31.9392%208.79211ZM22.9758%201.73093C23.6987%201.73093%2024.2869%202.31982%2024.2869%203.04357C24.2869%203.76731%2023.6987%204.35612%2022.9758%204.35612C22.2528%204.35612%2021.6645%203.76731%2021.6645%203.04357C21.6645%202.31982%2022.2528%201.73093%2022.9758%201.73093ZM15.2408%205.2372L17.554%207.60416L15.2127%2010.062C14.8421%209.85037%2014.4137%209.72872%2013.9573%209.72872C12.9838%209.72872%2012.1368%2010.2795%2011.71%2011.0857L9.97157%2010.6581L13.185%205.46204C13.4316%205.54325%2013.6912%205.58664%2013.9573%205.58664C14.4253%205.58664%2014.8638%205.45892%2015.2408%205.2372ZM12.1253%204.78005C12.1323%204.78751%2012.139%204.79539%2012.146%204.80269L8.71586%2010.3492L5.08467%209.45622C5.08393%209.22637%205.0521%209.00383%204.99394%208.79202L12.1253%204.78005ZM2.54323%2010.7775C1.8203%2010.7775%201.23207%2010.1887%201.23207%209.46483C1.23207%208.741%201.82022%208.15219%202.54323%208.15219C3.26624%208.15219%203.85439%208.741%203.85439%209.46483C3.85439%2010.1887%203.26615%2010.7775%202.54323%2010.7775ZM5.42115%2010.8061L8.03568%2011.449L7.24442%2012.7285L5.42115%2010.8061ZM8.52802%2015.8702L4.96843%2018.7481L7.45072%2014.7342L8.52802%2015.8702ZM1.23199%2021.5C1.23199%2020.7762%201.82022%2020.1874%202.54315%2020.1874C3.25656%2020.1874%203.85431%2020.7943%203.85431%2021.5C3.85431%2022.2074%203.26394%2022.8127%202.54315%2022.8127C1.82022%2022.8127%201.23199%2022.2239%201.23199%2021.5ZM4.96843%2024.252L8.099%2026.7831L7.15156%2027.7821L4.96843%2024.252ZM8.03568%2031.5509L4.79043%2032.349C4.75802%2032.2877%204.723%2032.2282%204.68584%2032.1699L6.94518%2029.7876L8.03568%2031.5509ZM2.54323%2034.8479C1.8203%2034.8479%201.23207%2034.259%201.23207%2033.5352C1.23207%2032.8114%201.8203%2032.2226%202.54323%2032.2226C3.26615%2032.2226%203.85439%2032.8114%203.85439%2033.5352C3.85439%2034.259%203.26615%2034.8479%202.54323%2034.8479ZM4.99386%2034.208C5.05202%2033.9962%205.08385%2033.7737%205.08458%2033.5438L8.71578%2032.6509L12.1375%2038.1837C12.1285%2038.1929%2012.1196%2038.2024%2012.1107%2038.2118L4.99386%2034.208ZM13.9573%2041.2691C13.2344%2041.2691%2012.6461%2040.6802%2012.6461%2039.9565C12.6461%2039.2327%2013.2344%2038.6439%2013.9573%2038.6439C14.6686%2038.6439%2015.2684%2039.2427%2015.2684%2039.9565C15.2685%2040.6802%2014.6803%2041.2691%2013.9573%2041.2691ZM21.6923%2037.7629L19.3268%2035.3423L21.6923%2032.9218C22.0693%2033.1434%2022.5078%2033.2713%2022.9758%2033.2713C23.9493%2033.2713%2024.7963%2032.7205%2025.223%2031.9144L26.9614%2032.3419L23.7476%2037.5386C23.5004%2037.4569%2023.2405%2037.4133%2022.9757%2037.4133C22.5078%2037.4134%2022.0693%2037.5411%2021.6923%2037.7629ZM24.8086%2038.2195C24.8016%2038.212%2024.7942%2038.2048%2024.7871%2038.1974L28.2172%2032.6509L31.8485%2033.5438C31.8492%2033.7737%2031.8811%2033.9962%2031.9392%2034.2079L24.8086%2038.2195ZM35.7011%2033.5352C35.7011%2034.259%2035.1129%2034.8479%2034.3899%2034.8479C33.6669%2034.8479%2033.0788%2034.259%2033.0788%2033.5352C33.0788%2032.8114%2033.6669%2032.2226%2034.3899%2032.2226C35.1129%2032.2226%2035.7011%2032.8115%2035.7011%2033.5352ZM32.2472%2032.17C32.2101%2032.2282%2032.1751%2032.2878%2032.1427%2032.349L28.8974%2031.5509L29.9878%2029.7877L32.2472%2032.17ZM28.8341%2026.7831L31.9647%2024.252L29.7816%2027.7821L28.8341%2026.7831ZM34.3899%2022.8127C33.6764%2022.8127%2033.0788%2022.2058%2033.0788%2021.5C33.0788%2020.7762%2033.6669%2020.1874%2034.3899%2020.1874C35.1129%2020.1874%2035.7011%2020.7763%2035.7011%2021.5C35.7011%2022.2238%2035.1129%2022.8127%2034.3899%2022.8127Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
}

.home-sample-column-box-description {
  padding: 20px 16px;
  font-size: 14px;
  line-height: 24px;
  color: #444464;
}

.home-modal-close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  width: 160px;
  height: 40px;
  border: solid 1px #444464;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 1.6px;
  text-align: center;
  color: #444464;
  transition: all 0.2s ease-out;
}
@media (any-hover: hover) {
  .home-modal-close-button {
    cursor: pointer;
  }
  .home-modal-close-button:hover {
    background: #2930E3;
    border-color: #2930E3;
    color: #FFF;
  }
}

#newsframe {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media only screen and (max-width: 532px) {
  #newsframe {
    height: 720px;
  }
}

.home-point {
  background: linear-gradient(180deg, #444464 0%, #37374B 100%);
}

.home-point-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 80px 40px;
}
@media only screen and (max-width: 768px) {
  .home-point-inner {
    padding: 32px 16px;
  }
}

.home-point-title {
  color: #FFF;
}

.home-point-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, auto));
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .home-point-list {
    margin-top: 16px;
  }
}

.home-point-list-item {
  width: 640px;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  .home-point-list-item:not(:first-child) {
    padding-top: 24px;
    border-top: solid 1px #FFF;
  }
}

.home-point-list-img-wrapper {
  width: 100%;
  height: auto;
}

.home-point-list-img {
  width: 100%;
  height: auto;
}

.home-point-list-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .home-point-list-texts {
    align-items: center;
    gap: 8px;
  }
}

.home-point-list-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .home-point-list-heading {
    align-items: center;
    gap: 4px;
  }
}

.home-point-list-label {
  display: block;
  padding: 4px 8px 2px;
  background-color: #F67C4D;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-point-list-label {
    font-size: 12px;
    line-height: 1;
  }
}

.home-point-list-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .home-point-list-title {
    text-align: center;
  }
}

.home-point-list-description {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.7;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .home-point-list-description {
    font-size: 14px;
  }
}

.home-point-list-link {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: flex-end;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  color: #FFF;
  transition: all 0.2s;
}
.home-point-list-link::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  rotate: 45deg;
  content: "";
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-point-list-link {
    margin-top: 8px;
    font-size: 14px;
    justify-self: center;
  }
}
@media (any-hover: hover) {
  .home-point-list-link:hover {
    color: #F67C4D;
  }
  .home-point-list-link:hover::after {
    border-color: #F67C4D;
  }
}

.home-point-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  border: solid 2px #FFF;
  border-radius: 9999px;
  background-color: #FFF;
  overflow: hidden;
  z-index: 10;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-point-btn {
    margin-top: 32px;
  }
}
.home-point-btn::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #444464;
  border-right: solid 2px #444464;
  rotate: 45deg;
  content: "";
  transition: all 0.2s;
}
@media (any-hover: hover) {
  .home-point-btn:hover {
    color: #FFF;
    background-color: transparent;
  }
  .home-point-btn:hover::after {
    border-color: #FFF;
  }
}

.home-case {
  background-color: #EEE;
}

.home-case-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 120px 40px;
}
@media only screen and (max-width: 768px) {
  .home-case-inner {
    padding: 32px 20px;
  }
}

.home-case-title-sub {
  margin-top: 16px;
}

.home-case-description {
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .home-case-description {
    padding: 0 16px;
  }
}

.home-case-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .home-case-list {
    gap: 32px;
    margin-top: 24px;
  }
}

.home-case-list-item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 64px) / 3);
  background: #FFF;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2509803922);
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-case-list-item {
    width: calc((100% - 32px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .home-case-list-item {
    width: 100%;
  }
}

.home-case-list-thumbnail-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
}

.home-case-list-thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.home-case-list-content {
  padding: 24px;
}

.home-case-list-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1px;
  text-align: center;
  color: #111;
}

.home-case-list-description {
  margin-top: 16px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #111;
}

.home-case-list-subtitle {
  margin-top: 8px;
  padding: 4px;
  width: 100%;
  background: #BBB;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #111;
}

.home-case-list-sub-description {
  margin-top: 4px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #555;
}

.home-case-list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.6px;
  text-align: center;
  color: #2930E3;
  transition: all 0.2s;
}
.home-case-list-link::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #2930E3;
  border-right: solid 2px #2930E3;
  rotate: 45deg;
  content: "";
  transform: translateY(2px);
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-case-list-link::after {
    width: 8px;
    height: 8px;
    transform: translateY(1px);
  }
}
@media (any-hover: hover) {
  .home-case-list-link {
    cursor: pointer;
  }
  .home-case-list-link:hover {
    color: #F67C4D;
  }
  .home-case-list-link:hover::after {
    border-color: #F67C4D;
  }
}

.home-case-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-case-btn-container {
    margin-top: 24px;
  }
}

.home-case-btn {
  background: transparent;
  min-width: 310px;
}

.home-case-btn::after {
  display: none;
}

.home-service {
  background-color: #FFF;
}

.home-service-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 120px 40px;
}
@media only screen and (max-width: 768px) {
  .home-service-inner {
    padding: 32px 16px;
  }
}

.home-service-title-sub {
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .home-service-title-sub {
    margin-top: 8px;
  }
}

.home-service-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, auto));
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-service-feature-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, auto));
    gap: 12px;
    margin-top: 24px;
  }
}

.home-service-feature-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 320px;
  max-width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 24px;
  background-color: #FFF;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2509803922);
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .home-service-feature-list-item {
    gap: 24px;
    padding: 24px 4px;
  }
}

.home-service-feature-list-img {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .home-service-feature-list-img {
    width: 80px;
  }
}

.home-service-feature-list-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-service-feature-list-title {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 768px) {
  .home-service-feature-list-title-small {
    font-size: 15px;
  }
}

.home-service-feature-list-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #2930E3;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-service-feature-list-link {
    font-size: 14px;
  }
}

.home-service-feature-list-link::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #2930E3;
  border-right: solid 2px #2930E3;
  rotate: 45deg;
  content: "";
  transition: all 0.2s;
}

.home-service-feature-list-item:hover .home-service-feature-list-link {
  color: #F67C4D;
}

.home-service-feature-list-item:hover .home-service-feature-list-link::after {
  border-color: #F67C4D;
}

.home-service-title-sub:not(:first-of-type) {
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .home-service-title-sub:not(:first-of-type) {
    margin-top: 40px;
  }
}

.home-service-description {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .home-service-description {
    margin-top: 12px;
  }
}

.home-service-emotion-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list {
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.home-service-emotion-list-item {
  border-radius: 20px;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
}

.home-service-emotion-list-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-title {
    height: 40px;
    font-size: 18px;
  }
}

.home-service-emotion-list-title-yellow {
  background-color: #FFF4D8;
}

.home-service-emotion-list-title-red {
  background-color: #FFD8DA;
}

.home-service-emotion-list-title-blue {
  background-color: #D8DAFF;
}

.home-service-emotion-list-title-green {
  background-color: #D8FFE8;
}

.home-service-emotion-list-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 30px 24px 24px;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-content {
    padding: 16px 8px;
  }
}

.home-service-emotion-list-img {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-img {
    width: 80px;
  }
}

.home-service-emotion-list-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 54px;
  height: 54px;
  border-radius: 27px;
  border: solid 2px #444464;
  padding: 0 14px;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 0 10px;
  }
}

.home-service-emotion-list-button::after {
  display: block;
  width: 17px;
  height: 24px;
  background-color: #444464;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-button::after {
    width: 13px;
    height: 20px;
  }
}

.home-service-emotion-list-button::before {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #444464;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  content: "STOP";
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-button::before {
    font-size: 16px;
  }
}

.home-service-emotion-list-button-text {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #444464;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-button-text {
    font-size: 16px;
  }
}

.home-service-emotion-list-item-inner:hover .home-service-emotion-list-button {
  width: 100%;
  padding: 0 24px;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-item-inner:hover .home-service-emotion-list-button {
    padding: 0 16px;
  }
}
.home-service-emotion-list-item-inner:hover .home-service-emotion-list-button-text {
  width: auto;
}

.home-service-emotion-list-item-inner.stop .home-service-emotion-list-button {
  justify-content: center;
  width: 100%;
  padding: 0 24px;
}
@media only screen and (max-width: 768px) {
  .home-service-emotion-list-item-inner.stop .home-service-emotion-list-button {
    padding: 0 16px;
  }
}
.home-service-emotion-list-item-inner.stop .home-service-emotion-list-button-text {
  width: 0;
}
.home-service-emotion-list-item-inner.stop .home-service-emotion-list-button::before {
  width: auto;
}
.home-service-emotion-list-item-inner.stop .home-service-emotion-list-button::after {
  width: 0;
}

.home-service-emotion-list-item-inner::before {
  display: none !important;
}

.home-video {
  background-color: #FFF;
}

.home-video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 80px 40px 0;
}
@media only screen and (max-width: 768px) {
  .home-video-inner {
    padding: 32px 16px 0;
    gap: 24px;
  }
}

.home-video-content {
  width: 100%;
  max-width: 780px;
  height: auto;
  aspect-ratio: 1.77;
}

.home-step {
  background: linear-gradient(100deg, #EEE 0%, #D8DAFF 100%);
}

.home-step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 0 40px 80px;
}
@media only screen and (max-width: 768px) {
  .home-step-inner {
    padding: 0 32px 32px;
  }
}

@media only screen and (max-width: 768px) {
  .home-step-title {
    flex-direction: column;
    text-align: center;
  }
}

.home-step-annotation {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #444464;
}
@media only screen and (max-width: 768px) {
  .home-step-annotation {
    font-size: 14px;
  }
}

.home-step-list {
  width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .home-step-list {
    margin-top: 16px;
  }
}

.home-step-list .slick-track {
  align-items: flex-start;
}

.home-step-list-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 0 12px;
}
@media only screen and (max-width: 768px) {
  .home-step-list-item {
    flex-direction: column;
    gap: 24px;
  }
}

.home-step-list-item-img-wrapper {
  width: 100%;
  max-width: 690px;
}

.home-step-list-item-img {
  width: 100%;
  height: auto;
}

.home-step-list-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-step-list-texts {
    align-items: center;
    gap: 4px;
  }
}

.home-step-list-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 4px;
  font-size: 26px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.03em;
  background-color: #444464;
}
@media only screen and (max-width: 768px) {
  .home-step-list-label {
    font-size: 12px;
    padding: 4px 8px;
    letter-spacing: 0.1em;
  }
}

.home-step-list-description {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #444464;
}
@media only screen and (max-width: 768px) {
  .home-step-list-description {
    font-size: 16px;
    text-align: center;
  }
}

.home-step-list .slide-arrow {
  width: 45px;
  height: auto;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-step-list .slide-arrow {
    width: 16px;
  }
}

.home-step-list .slick-disabled {
  opacity: 0;
}

.home-product {
  background-color: #FFF;
}

.home-product-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 0 40px 120px;
}
@media only screen and (max-width: 768px) {
  .home-product-inner {
    padding: 0 16px 32px;
  }
}

@media only screen and (max-width: 768px) {
  .home-product-title {
    letter-spacing: 0;
  }
}

.home-product-title-sub {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .home-product-title-sub {
    margin-top: 8px;
  }
}

.home-product-description {
  margin-top: 16px;
}

.home-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, auto));
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-product-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, auto));
    gap: 12px;
    margin-top: 32px;
  }
}

.home-product-list-item {
  width: 640px;
  max-width: 100%;
  height: 100%;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2509803922);
}

.home-product-list-item-inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 100%;
  padding: 32px 16px 24px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .home-product-list-item-inner {
    padding: 24px 8px;
  }
}

.home-product-list-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-product-list-title {
    flex-direction: column;
    font-size: 16px;
    text-align: center;
  }
}

.home-product-list-icon {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .home-product-list-icon {
    width: 70px;
  }
}

.home-product-list-description {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #111;
  width: 100%;
}

.home-product-list-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #2930E3;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-product-list-link {
    font-size: 14px;
  }
}

.home-product-list-link::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #2930E3;
  border-right: solid 2px #2930E3;
  rotate: 45deg;
  content: "";
  transition: all 0.2s;
}

.home-product-list-item-inner:hover .home-product-list-link {
  color: #F67C4D;
}

.home-product-list-item-inner:hover .home-product-list-link::after {
  border-color: #F67C4D;
}

.home-product-title-sub:not(:first-of-type) {
  margin-top: 52px;
}
@media only screen and (max-width: 768px) {
  .home-product-title-sub:not(:first-of-type) {
    margin-top: 24px;
  }
}

.home-product-list:not(:first-of-type) {
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .home-product-list:not(:first-of-type) {
    margin-top: 24px;
  }
}

.home-product-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 16px 32px 20px;
  border-radius: 20px;
  width: 100%;
  background-color: #EEE;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-product-download {
    gap: 12px;
    margin-top: 24px;
    padding: 16px 16px;
    flex-direction: column;
  }
}

.home-product-download:hover {
  background-color: #D9D9D9;
}

.home-product-download-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-product-download-title {
    font-size: 16px;
    text-align: center;
  }
}

.home-product-download-description {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-product-download-description {
    font-size: 14px;
    text-align: center;
  }
}

.home-product-download-icon {
  width: 20px;
  height: auto;
}

.home-magazine {
  background-color: #E1E2FB;
}

.home-magazine-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 120px 40px;
}
@media only screen and (max-width: 768px) {
  .home-magazine-inner {
    padding: 32px 0;
  }
}

.home-magazine-title-sub {
  margin-top: 10px;
}

.home-magazine-description {
  margin-top: 10px;
  color: #444464;
}

.home-magazine-list-container {
  width: 100%;
  margin-top: 40px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media only screen and (max-width: 768px) {
  .home-magazine-list-container {
    margin-top: 24px;
    padding: 0 16px;
  }
}

.home-magazine-list-container::-webkit-scrollbar {
  display: none;
}

.home-magazine-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  justify-content: center;
  gap: 75px;
}
@media only screen and (max-width: 768px) {
  .home-magazine-list {
    grid-template-columns: 1fr 1fr 1fr 1px;
    justify-content: flex-start;
    gap: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .home-magazine-list::after {
    display: block;
    width: auto;
    height: 100%;
    content: "";
  }
}

.home-magazine-list-item {
  width: 100%;
  height: 100%;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .home-magazine-list-item {
    width: 300px;
  }
}

.home-magazine-list-item-inner {
  width: 100%;
  height: 100%;
}

.home-magazine-list-thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 33/20;
}

.home-magazine-list-thumbnail {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-magazine-list-content {
  width: 100%;
  padding: 24px 12px;
}

.home-magazine-list-label {
  width: 100%;
  padding: 4px;
  background-color: #444464;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .home-magazine-list-label {
    font-size: 14px;
    font-weight: 400;
  }
}

.home-magazine-list-title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-magazine-list-title {
    font-size: 20px;
  }
}

.home-magazine-list-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #2930E3;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-magazine-list-link {
    font-size: 14px;
  }
}

.home-magazine-list-link::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #2930E3;
  border-right: solid 2px #2930E3;
  rotate: 45deg;
  content: "";
  transition: all 0.2s;
}

.home-magazine-list-item-inner:hover .home-magazine-list-link {
  color: #F67C4D;
}

.home-magazine-list-item-inner:hover .home-magazine-list-link::after {
  border-color: #F67C4D;
}

.home-magazine-btn {
  margin-top: 32px;
  width: 350px;
}

.home-technology {
  background: linear-gradient(155deg, #B3B3DF 0%, #FFCFBC 100%);
}

.home-technology-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 120px 40px;
}
@media only screen and (max-width: 768px) {
  .home-technology-inner {
    padding: 32px 16px;
  }
}

.home-technology-box {
  border-radius: 24px;
  background-color: #FFF;
  overflow: hidden;
}

.home-technology-title-container {
  width: 100%;
  background: center/cover no-repeat url("../images/home/technology-bg.webp");
  padding: 60px 95px;
}
@media only screen and (max-width: 768px) {
  .home-technology-title-container {
    padding: 32px 24px;
  }
}

.home-technology-title-img {
  width: 100%;
  max-width: 530px;
  height: auto;
}

.home-technology-description {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .home-technology-description {
    font-size: 14px;
    font-weight: 400;
  }
}

.home-technology-content {
  padding: 40px 32px;
}
@media only screen and (max-width: 768px) {
  .home-technology-content {
    padding: 16px 24px;
  }
}

.home-technology-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-technology-list {
    gap: 16px;
  }
}

.home-technology-list-item {
  width: 100%;
  border-bottom: solid 3px #111;
}

.home-technology-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-heading {
    padding-bottom: 16px;
  }
}

.home-technology-list-heading:hover {
  cursor: pointer;
}

.home-technology-list-heading-texts {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-heading-texts {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.home-technology-list-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-title {
    font-size: 22px;
  }
}

.home-technology-list-lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  color: #2930E3;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-lead {
    font-size: 14px;
  }
}

.home-technology-list-heading-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-heading-icon {
    width: 20px;
    height: 20px;
  }
}

.home-technology-list-heading-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 3px;
  background-color: #111;
  content: "";
  transition: all 0.2s;
}

.home-technology-list-heading-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 3px;
  height: 100%;
  background-color: #111;
  content: "";
  transition: all 0.2s;
}

.home-technology-list-heading:hover .home-technology-list-heading-icon::before,
.home-technology-list-heading:hover .home-technology-list-heading-icon::after {
  background-color: #2930E3;
}

.home-technology-list-item.is-on .home-technology-list-heading-icon::before {
  rotate: 45deg;
}

.home-technology-list-item.is-on .home-technology-list-heading-icon::after {
  rotate: -135deg;
}

.home-technology-list-content {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  overflow: hidden;
  transition: all 0.6s;
}

.home-technology-list-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  transition: all 0.6s;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-technology-list-content-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .home-technology-list-content-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.home-technology-list-item.is-on .home-technology-list-content {
  grid-template-rows: 1fr;
}

.home-technology-list-item.is-on .home-technology-list-content-inner {
  padding: 16px 0 60px;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-technology-list-item.is-on .home-technology-list-content-inner {
    padding: 0 0 16px;
  }
}
@media only screen and (max-width: 768px) {
  .home-technology-list-item.is-on .home-technology-list-content-inner {
    padding: 0 0 16px;
  }
}

.home-technology-list-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-texts {
    align-items: center;
  }
}

.home-technology-list-flow-wrapper {
  width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-technology-list-flow-wrapper::-webkit-scrollbar {
  display: none;
}

.home-technology-list-flow {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-flow {
    grid-template-columns: auto 20px auto 20px auto;
    justify-content: flex-start;
  }
}

.home-technology-list-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-technology-list-flow-icon {
  width: 80px;
  height: auto;
}

.home-technology-list-flow-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #2930E3;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-flow-title {
    white-space: nowrap;
  }
}

.home-technology-list-flow-arrow {
  width: 100%;
  height: auto;
}

.home-technology-list-description {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #111;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-description {
    font-size: 14px;
  }
}

* + .home-technology-list-description {
  margin-top: 24px;
}

.home-technology-list-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #2930E3;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-link {
    margin-top: 4px;
    font-size: 14px;
  }
}

.home-technology-list-link::after {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #2930E3;
  border-right: solid 2px #2930E3;
  rotate: 45deg;
  content: "";
}

.home-technology-list-annotation {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #111;
}

.home-technology-list-sample {
  position: relative;
  padding: 12px 32px;
  border: solid 4px #111;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-technology-list-sample {
    width: 100%;
    padding: 0 16px;
  }
}
@media only screen and (max-width: 768px) {
  .home-technology-list-sample {
    width: 100%;
    padding: 0 16px;
  }
}

.home-technology-list-sample-title {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 8px 16px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-sample-title {
    top: -16px;
    font-size: 12px;
    padding: 8px;
  }
}

.home-technology-list-sample-list {
  width: 100%;
}

.home-technology-list-sample-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-sample-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.home-technology-list-sample-list-item:not(:first-child) {
  border-top: solid 4px #111;
}

.home-technology-list-sample-list-texts {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-sample-list-texts {
    justify-content: center;
  }
}

.home-technology-list-sample-list-icon {
  width: 50px;
  height: auto;
}

.home-technology-list-sample-list-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.home-technology-list-sample-list-title-main {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #111;
}

.home-technology-list-sample-list-title-sub {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}

.home-technology-list-sample-list-label {
  padding: 0 12px 2px;
  border-radius: 10px;
  background-color: #8C8C8C;
  font-size: 13px;
  line-height: 1.5;
  color: #FFF;
}

@media only screen and (max-width: 768px) {
  .home-technology-list-sample-list-btn-wrapper {
    width: 100%;
  }
}

.home-technology-list-sample-list-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 165px;
  height: 44px;
  border-radius: 22px;
  border: solid 4px #2930E3;
  background-color: #2930E3;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .home-technology-list-sample-list-btn {
    width: 100%;
  }
}

.home-technology-list-sample-list-btn:hover {
  background-color: #FFF;
  color: #2930E3;
}

.home-technology-list-sample-list-btn::before {
  display: block;
  width: 10px;
  height: 14.5px;
  background-color: #FFF;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

#lab .lab-item.end_to_end {
  display: none !important;
}

#kv {
  height: 250px;
  background: url("../images/readspeaker-technology/kv.jpg.webp") no-repeat center bottom/cover;
}

#kv img {
  width: 262px;
}

#lab {
  background-color: #FFF;
  color: #000;
}

#lab .lab-item:not(:last-child) {
  margin-bottom: 120px;
}

#lab .lab-item .lab-item-text-header {
  margin-bottom: 30px;
}

#lab .lab-item .lab-item-text-header-index {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 10.1rem;
  line-height: 1;
  margin-right: 20px;
}

#lab .lab-item .lab-item-text-header-title {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

#lab .lab-item .lab-item-text-header-title::before {
  content: "";
  width: 30px;
  height: 28px;
  background: no-repeat center/contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: bottom;
}

#lab .lab-item.end_to_end .lab-item-text-header-title::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4OC40MDYiIGhlaWdodD0iODEiIHZpZXdCb3g9IjAgMCA4OC40MDYgODEiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6ICM0MGE4Zjc7CiAgICAgICAgZmlsbC1ydWxlOiBldmVub2RkOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBpZD0iZW5kLXRvLWVuZC1pY29uLnN2ZyIgY2xhc3M9ImNscy0xIiBkPSJNMzI0LjkxOSwxMjYxLjdhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDEzLDQuMDEzLDAsMCwxLDMyNC45MTksMTI2MS43Wm0tMTYuMDI4LDYuM2E0LjAyLDQuMDIsMCwwLDEtNC4xMjktMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMzA4Ljg5MSwxMjY4Wm0tMTYuMDIzLDE0Ljg2YTQuMDE0LDQuMDE0LDAsMCwxLTQuMTMtMy44OXYtNzMuMjFhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNiwwdjczLjIxQTQuMDE0LDQuMDE0LDAsMCwxLDI5Mi44NjgsMTI4Mi44NlptLTQ4LjA4Mi0yMS4xNmE0LjAxMyw0LjAxMywwLDAsMS00LjEyOS0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDE0LDQuMDE0LDAsMCwxLDI0NC43ODYsMTI2MS43Wm0xNi4wMjgsNi4zYTQuMDIxLDQuMDIxLDAsMCwxLTQuMTMtMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMjYwLjgxNCwxMjY4Wm0xNi4wMjcsMTQuODZhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di03My4yMWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjczLjIxQTQuMDEzLDQuMDEzLDAsMCwxLDI3Ni44NDEsMTI4Mi44NloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNDAuNjU2IC0xMjAxLjg4KSIvPgo8L3N2Zz4K");
}

#lab .lab-item.dnn .lab-item-text-header-title::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4OC40MDYiIGhlaWdodD0iODEiIHZpZXdCb3g9IjAgMCA4OC40MDYgODEiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6ICNmZjQ2MzY7CiAgICAgICAgZmlsbC1ydWxlOiBldmVub2RkOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBpZD0iaGVhZGxpbmUtaWNvbjAxLnN2ZyIgY2xhc3M9ImNscy0xIiBkPSJNMzI0LjkxOSwyNTI1LjdhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDEzLDQuMDEzLDAsMCwxLDMyNC45MTksMjUyNS43Wm0tMTYuMDI4LDYuM2E0LjAyLDQuMDIsMCwwLDEtNC4xMjktMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMzA4Ljg5MSwyNTMyWm0tMTYuMDIzLDE0Ljg2YTQuMDE0LDQuMDE0LDAsMCwxLTQuMTMtMy44OXYtNzMuMjFhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNiwwdjczLjIxQTQuMDE0LDQuMDE0LDAsMCwxLDI5Mi44NjgsMjU0Ni44NlptLTQ4LjA4Mi0yMS4xNmE0LjAxMyw0LjAxMywwLDAsMS00LjEyOS0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDE0LDQuMDE0LDAsMCwxLDI0NC43ODYsMjUyNS43Wm0xNi4wMjgsNi4zYTQuMDIxLDQuMDIxLDAsMCwxLTQuMTMtMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMjYwLjgxNCwyNTMyWm0xNi4wMjcsMTQuODZhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di03My4yMWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjczLjIxQTQuMDEzLDQuMDEzLDAsMCwxLDI3Ni44NDEsMjU0Ni44NloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNDAuNjU2IC0yNDY1Ljg4KSIvPgo8L3N2Zz4K");
}

#lab .lab-item.emotion .lab-item-text-header-title::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4OC40MDYiIGhlaWdodD0iODEiIHZpZXdCb3g9IjAgMCA4OC40MDYgODEiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6ICM3NTNlZTY7CiAgICAgICAgZmlsbC1ydWxlOiBldmVub2RkOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBpZD0iaGVhZGxpbmUtaWNvbjAyLnN2ZyIgY2xhc3M9ImNscy0xIiBkPSJNMzI0LjkxOSwzNzUwLjdhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDEzLDQuMDEzLDAsMCwxLDMyNC45MTksMzc1MC43Wm0tMTYuMDI4LDYuM2E0LjAyLDQuMDIsMCwwLDEtNC4xMjktMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMzA4Ljg5MSwzNzU3Wm0tMTYuMDIzLDE0Ljg2YTQuMDE0LDQuMDE0LDAsMCwxLTQuMTMtMy44OXYtNzMuMjFhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNiwwdjczLjIxQTQuMDE0LDQuMDE0LDAsMCwxLDI5Mi44NjgsMzc3MS44NlptLTQ4LjA4Mi0yMS4xNmE0LjAxMyw0LjAxMywwLDAsMS00LjEyOS0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDE0LDQuMDE0LDAsMCwxLDI0NC43ODYsMzc1MC43Wm0xNi4wMjgsNi4zYTQuMDIxLDQuMDIxLDAsMCwxLTQuMTMtMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMjYwLjgxNCwzNzU3Wm0xNi4wMjcsMTQuODZhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di03My4yMWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjczLjIxQTQuMDEzLDQuMDEzLDAsMCwxLDI3Ni44NDEsMzc3MS44NloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNDAuNjU2IC0zNjkwLjg4KSIvPgo8L3N2Zz4K");
}

#lab .lab-item.lomb .lab-item-text-header-title::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4OC40MDYiIGhlaWdodD0iODEiIHZpZXdCb3g9IjAgMCA4OC40MDYgODEiPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuY2xzLTEgewogICAgICAgIGZpbGw6ICMzZmJhN2M7CiAgICAgICAgZmlsbC1ydWxlOiBldmVub2RkOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBpZD0iaGVhZGxpbmUtaWNvbjAzLnN2ZyIgY2xhc3M9ImNscy0xIiBkPSJNMzI0LjkxOSw0NzkwLjdhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDEzLDQuMDEzLDAsMCwxLDMyNC45MTksNDc5MC43Wm0tMTYuMDI4LDYuM2E0LjAyLDQuMDIsMCwwLDEtNC4xMjktMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMzA4Ljg5MSw0Nzk3Wm0tMTYuMDIzLDE0Ljg2YTQuMDE0LDQuMDE0LDAsMCwxLTQuMTMtMy44OXYtNzMuMjFhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNiwwdjczLjIxQTQuMDE0LDQuMDE0LDAsMCwxLDI5Mi44NjgsNDgxMS44NlptLTQ4LjA4Mi0yMS4xNmE0LjAxMyw0LjAxMywwLDAsMS00LjEyOS0zLjg5di0zMC44OWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjMwLjg5QTQuMDE0LDQuMDE0LDAsMCwxLDI0NC43ODYsNDc5MC43Wm0xNi4wMjgsNi4zYTQuMDIxLDQuMDIxLDAsMCwxLTQuMTMtMy44OXYtNDMuNDhhNC4xMzcsNC4xMzcsMCwwLDEsOC4yNTksMHY0My40OEE0LjAyLDQuMDIsMCwwLDEsMjYwLjgxNCw0Nzk3Wm0xNi4wMjcsMTQuODZhNC4wMTQsNC4wMTQsMCwwLDEtNC4xMy0zLjg5di03My4yMWE0LjEzNyw0LjEzNywwLDAsMSw4LjI1OSwwdjczLjIxQTQuMDEzLDQuMDEzLDAsMCwxLDI3Ni44NDEsNDgxMS44NloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNDAuNjU2IC00NzMwLjg4KSIvPgo8L3N2Zz4K");
}

#lab .lab-item.end_to_end .lab-item-image,
#lab .lab-item.dnn .lab-item-image {
  width: 90%;
  margin-bottom: 20px;
}

#lab .lab-item .lab-item-text-detail {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

#lab .lab-item .lab-item-text .memo {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

#lab .lab-item .lab-item-sample {
  width: 100%;
}

#lab .lab-item:not(.end_to_end) .lab-item-sample {
  width: 100%;
  border: 3px solid #000;
  padding: 30px 15px;
  position: relative;
}

#lab .lab-item-sample h3 {
  font-size: 2rem;
  font-family: "Montserrat";
  letter-spacing: 0.025rem;
  background-color: #FFF;
  padding: 0 10px;
  top: -17px;
  left: 20px;
  position: absolute;
}

#lab .lab-item-sample .lab-item-sample-item:not(:last-child) {
  margin-bottom: 20px;
}

.lab-item-sample .lab-item-sample-item .emotion-label {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 5px;
}

.lab-item-sample .lab-item-sample-item:nth-of-type(1) .emotion-label {
  color: #f6ac2b;
}

.lab-item-sample .lab-item-sample-item:nth-of-type(2) .emotion-label {
  color: #6fbc5a;
}

.lab-item-sample .lab-item-sample-item:nth-of-type(3) .emotion-label {
  color: #ea543a;
}

.lab-item-sample .lab-item-sample-item:nth-of-type(4) .emotion-label {
  color: #65aadd;
}

.lab-item-sample .lab-item-sample-item .emotion-label-en {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #000;
}

.lab-item-sample .lab-item-sample-item .dnn-label {
  width: 68px;
  height: 20px;
  font-size: 1.3rem;
  color: #FFF;
  background-color: #8c8c8c;
  letter-spacing: 0.025em;
  border-radius: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: 20px;
}

#lab .lab-item.emotion .lab-item-sample .lab-item-sample-item .btn-play__btn {
  margin-left: auto;
}

#lab .lab-item.lomb .lab-item-sample {
  border: solid 4px #111;
}

#lab .lab-item.lomb .lab-item-sample .speaker-box {
  border: 2px solid #111;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 300;
  padding: 16px;
}

#lab .lab-item.lomb .lab-item-sample .speaker-box .speaker-box-title {
  font-weight: 700;
}

#lab .lab-item.lomb .lab-item-sample .speaker-box .speaker-box-text {
  font-weight: 300;
}

#lab .lab-item.lomb .lab-item-sample .list-audio {
  display: none;
  margin-top: 30px;
}

#lab .lab-item.lomb .lab-item-sample .list-audio.active {
  display: flex;
  gap: 16px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #lab .lab-item.lomb .lab-item-sample .list-audio.active {
    gap: 4px;
  }
}

#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn,
#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl {
  width: 100%;
}

#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn a,
#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl a {
  background-color: #2930E3;
  color: #FFF;
  border: solid 4px #2930E3;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn a,
  #lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl a {
    font-size: 12px;
    width: 100% !important;
  }
}

#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn a:hover,
#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl a:hover {
  color: #2930E3;
  background-color: #FFF;
}

#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn a::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMC40MSIgaGVpZ2h0PSIyOS44NSIgdmlld0JveD0iMCAwIDIwLjQxIDI5Ljg1Ij4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiAjZmZmOwogICAgICAgIGZpbGwtcnVsZTogZXZlbm9kZDsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPHBhdGggaWQ9InNhbXBsZS1pY29uLnN2ZyIgY2xhc3M9ImNscy0xIiBkPSJNMTkyNi40MSw0MzIwLjAxbC0yMC40LDE0Ljkydi0yOS44NVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xOTA2IC00MzA1LjA5KSIvPgo8L3N2Zz4K");
}

#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn a.stop::before,
#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn a:hover::before {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjUuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjAuNCAyOS45IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyMC40IDI5Ljk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojMDAwMEZGO30KPC9zdHlsZT4KPHBhdGggaWQ9InNhbXBsZS1pY29uLnN2ZyIgY2xhc3M9InN0MCIgZD0iTTIwLjQsMTQuOUwwLDI5LjhWMEwyMC40LDE0Ljl6Ii8+Cjwvc3ZnPgo=");
}

#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl a::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMS43NiIgaGVpZ2h0PSIyOS45MSIgdmlld0JveD0iMCAwIDMxLjc2IDI5LjkxIj4KICA8ZGVmcz4KICAgIDxzdHlsZT4KICAgICAgLmNscy0xIHsKICAgICAgICBmaWxsOiAjZmZmOwogICAgICAgIGZpbGwtcnVsZTogZXZlbm9kZDsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPHBhdGggaWQ9ImRvd25sb2FkLWljb24uc3ZnIiBjbGFzcz0iY2xzLTEiIGQ9Ik0yMjIwLjE4LDQzMjcuNDN2My45MmgtMjQuMzV2LTMuOTJoLTMuNzFWNDMzNWgzMS43N3YtNy41N2gtMy43MVptLTIuMDctNy4zNC0yLjYyLTIuNTctNS42Myw1LjUydi0xNy45NWgtMy43MXYxNy45NWwtNS42My01LjUyLTIuNjIsMi41NywxMC4xLDkuOTJaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjE5Mi4xMiAtNDMwNS4wOSkiLz4KPC9zdmc+Cg==");
}

#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl a.stop::before,
#lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl a:hover::before {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjUuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzEuOCAyOS45IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMS44IDI5Ljk7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojMDAwMEZGO30KPC9zdHlsZT4KPHBhdGggaWQ9ImRvd25sb2FkLWljb24uc3ZnIiBjbGFzcz0ic3QwIiBkPSJNMjguMSwyMi4zdjMuOUgzLjd2LTMuOUgwdjcuNmgzMS44di03LjZIMjguMXogTTI2LDE1bC0yLjYtMi42TDE3LjcsMThWMEgxNHYxOAoJbC01LjYtNS41TDUuOCwxNWwxMC4xLDkuOUwyNiwxNXoiLz4KPC9zdmc+Cg==");
}

/*Styling Selectbox*/
.dropdown-area {
  margin-bottom: 20px;
}

.dropdown {
  width: 170px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  position: relative;
  height: 100%;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

.dropdown .select {
  cursor: pointer;
  display: block;
  width: 100%;
  position: relative;
}

.dropdown .select > i {
  width: 11px;
  height: 6px;
  background-color: #111;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  position: absolute;
  line-height: 20px;
}

.dropdown.active .select > i {
  transform: rotate(-180deg);
}

.dropdown .dropdown-menu {
  position: absolute;
  color: #000;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin-top: 1px;
  box-shadow: 0 1px 2px rgb(204, 204, 204);
  border-radius: 0 1px 2px 2px;
  overflow: hidden;
  display: none;
  max-height: 144px;
  overflow-y: auto;
  z-index: 9;
}

.dropdown .dropdown-menu li {
  padding: 10px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.dropdown .dropdown-menu {
  padding: 0;
  list-style: none;
}

.dropdown .dropdown-menu li:hover {
  background-color: #f2f2f2;
}

.dropdown .dropdown-menu li:active {
  background-color: #e2e2e2;
}

@media screen and (max-width: 768px) {
  .lab-item > .d-flex {
    flex-direction: column;
  }
  .btn.btn-blue.btn-arrow a,
  .btn.btn-blue.btn-arrow p {
    margin: auto;
  }
  #lab .lab-item-text {
    margin-bottom: 60px;
  }
  #lab .lab-item-sample-item img {
    margin-right: 10px;
  }
  #lab .lab-item-sample-item .btn-play__btn {
    margin-left: auto;
  }
  #lab .lab-item-sample-item .btn-play__btn a {
    width: 140px;
  }
  .dropdown-area {
    flex-direction: column;
  }
  .speaker-area {
    border-bottom: 1px solid #111;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .dropdown {
    width: 100%;
  }
  #lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__btn a,
  #lab .lab-item.lomb .lab-item-sample .list-audio .btn-play__dl a {
    width: 140px;
  }
  .speaker-area img {
    width: 35px;
  }
}
@media screen and (min-width: 769px) {
  #kv {
    height: 400px;
  }
  #kv img {
    width: 544px;
  }
  #lab .lab-item .lab-item-text-header-title {
    font-size: 4.3rem;
  }
  #lab .lab-item:not(.end_to_end) .lab-item-sample {
    border: 4px solid #000;
    padding: 32px;
  }
  #lab .lab-item-sample h3 {
    font-size: 3rem;
    top: -22px;
    left: 20px;
  }
  #lab .lab-item .lab-item-text-header-title::before {
    width: 44px;
    height: 40px;
    vertical-align: middle;
  }
  #lab .lab-item .lab-item-text-detail {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }
  #lab .lab-item .lab-item-text .memo {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  .dropdown-area {
    justify-content: center;
  }
  .speaker-area {
    border-right: 2px solid #111;
    padding-right: 20px;
  }
  .speaker-area img {
    margin-right: 10px;
  }
  .lomb-area {
    padding-left: 20px;
  }
  #lab .lab-item.lomb .lab-item-sample .speaker-box {
    font-size: 1.4rem;
  }
  #lab .lab-item.end_to_end .lab-item-sample .song_name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.025em;
  }
  #lab .lab-item.end_to_end .lab-item-sample .song_name span {
    font-size: 1.5rem;
    font-weight: 400;
  }
  #lab .lab-item.end_to_end .lab-item-sample .memo {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }
}
.home-flow {
  background: linear-gradient(100deg, #EEE 0%, #D8DAFF 100%);
}

.home-flow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 120px 40px;
}
@media only screen and (max-width: 768px) {
  .home-flow-inner {
    padding: 32px 16px;
  }
}

.home-flow-description {
  margin-top: 20px;
}

.home-flow-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px auto 0;
  width: 100%;
  max-width: 950px;
}

.home-flow-list-item {
  display: grid;
  grid-template-columns: 172px 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .home-flow-list-item {
    grid-template-columns: 1fr;
  }
}

.home-flow-list-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #2930E3;
}
@media only screen and (max-width: 768px) {
  .home-flow-list-num {
    flex-direction: row;
    gap: 4px;
    padding: 4px;
  }
}

.home-flow-list-num-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .home-flow-list-num-sub {
    font-size: 16px;
  }
}

.home-flow-list-num-main {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .home-flow-list-num-main {
    font-size: 20px;
  }
}

.home-flow-list-content {
  padding: 8px 24px;
}
@media only screen and (max-width: 768px) {
  .home-flow-list-content {
    padding: 8px 16px 16px;
  }
}

.home-flow-list-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #2930E3;
}
@media only screen and (max-width: 768px) {
  .home-flow-list-title {
    font-size: 16px;
    text-align: center;
  }
}

.home-flow-list-description {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-flow-list-description {
    font-size: 14px;
  }
}

.home-flow-list-arrow {
  width: 22px;
  height: auto;
}

.home-topics {
  background-color: #FFF;
}

.home-topics-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 120px 40px 120px;
}
@media only screen and (max-width: 768px) {
  .home-topics-inner {
    padding: 32px 16px 32px;
  }
}

.home-topics-content {
  margin-top: 40px;
}

#topics .tablist .tablist-inner .nav-item {
  padding: 0 12px;
}

.home-modals {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home-modal-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2509803922);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .home-modal-container {
    padding: 16px;
  }
}

.home-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 846px;
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px 48px;
}
@media only screen and (max-width: 768px) {
  .home-modal {
    padding: 24px 16px;
  }
}

.home-modal-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .home-modal-heading {
    flex-direction: column;
    gap: 16px;
  }
}

.home-modal-img {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .home-modal-img {
    width: 70px;
  }
}

.home-modal-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-modal-title {
    text-align: center;
    font-size: 20px;
  }
}

.home-modal-description {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .home-modal-description {
    font-size: 14px;
  }
}

.home-modal-close-text {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #2930E3;
  cursor: pointer;
}

.home-modal-close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.home-modal-close-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2930E3;
  rotate: 45deg;
}

.home-modal-close-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2930E3;
  rotate: -45deg;
}

.home-modal-close-icon-black::before {
  background-color: #444464;
}

.home-modal-close-icon-black::after {
  background-color: #444464;
}

.home-modal-container.is-on {
  opacity: 1;
  pointer-events: auto;
}/*# sourceMappingURL=home.css.map */