.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-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: grid;
  grid-template-columns: 1fr 35px 1fr;
  align-items: center;
  justify-content: center;
  gap: 25px;
  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 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .home-sample-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 16px;
  }
}

.home-sample-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  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: 22px;
    letter-spacing: 0.03em;
    text-align: center;
  }
}

.home-sample-arrow {
  display: block;
  width: 35px;
  height: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .home-sample-arrow {
    width: 65px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .home-sample-arrow {
    width: 65px;
    margin: 0 auto;
  }
}

#newsframe {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #newsframe {
    width: 100%;
  }
}
@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 {
    grid-template-columns: 1fr;
    place-items: center;
    margin-top: 16px;
  }
}

.home-point-list-item {
  width: 640px;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-point-list-item {
    width: 100%;
    max-width: 480px;
  }
}

@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-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;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          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;
}
@media only screen and (max-width: 768px) {
  .home-video-inner {
    padding: 32px 16px;
    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: 80px 40px;
}
@media only screen and (max-width: 768px) {
  .home-step-inner {
    padding: 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-scene {
  background-color: #EEE;
}

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

.home-scene-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, auto));
  align-items: flex-start;
  justify-content: center;
  gap: 20px 24px;
  width: 100%;
}

.home-scene-list-item {
  width: 400px;
  max-width: 100%;
  height: 100%;
  background-color: #FFF;
}

.home-scene-list-thumbnail-wrapper {
  width: 100%;
}

.home-scene-list-thumbnail {
  width: 100%;
  height: auto;
}

.home-scene-list-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  height: -moz-max-content;
  height: max-content;
  border-top: solid 4px #F67C4D;
}
@media only screen and (max-width: 768px) {
  .home-scene-list-content {
    padding: 16px;
  }
}

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

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

.home-scene-list-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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-scene-list-link {
    margin-top: 8px;
    font-size: 14px;
    align-self: flex-end;
  }
}

.home-scene-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-scene-list-item-inner:hover .home-scene-list-link {
  color: #F67C4D;
}

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

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

.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 0;
  }
}

.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-wrapper {
  margin-top: 40px;
  width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media only screen and (max-width: 768px) {
  .home-case-list-wrapper {
    margin-top: 24px;
    padding: 0 16px;
  }
}

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

.home-case-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-case-list {
    grid-template-columns: 1fr 1fr 1fr 1px;
    gap: 32px;
  }
}

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

.home-case-list-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

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

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

.home-case-list-title {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #111;
}

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

.home-case-list-btn {
  flex-shrink: 0;
  margin-top: 16px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-case-list-btn {
    min-width: 300px;
  }
}

.home-case-btn-container {
  margin-top: 40px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home-case-btn-container {
    margin-top: 24px;
    padding: 0 16px;
  }
}

.home-case-btn {
  width: 100%;
}

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

.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: 120px 40px;
}
@media only screen and (max-width: 768px) {
  .home-product-inner {
    padding: 32px 16px;
  }
}

@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-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 80px;
  padding: 24px;
  border-radius: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #111;
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.2s;
}
.home-product-link::after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: solid 2px #111;
  border-right: solid 2px #111;
  rotate: 45deg;
}
@media only screen and (max-width: 768px) {
  .home-product-link::after {
    width: 12px;
    height: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .home-product-link {
    font-size: 16px;
    font-weight: 700;
    margin-top: 32px;
  }
}
@media (any-hover: hover) {
  .home-product-link:hover {
    background-color: #EEE;
  }
}

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

.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;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          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;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          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-color: #FFF;
}

.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: #EEE;
}
@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: 0 40px 120px;
}
@media only screen and (max-width: 768px) {
  .home-topics-inner {
    padding: 0 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-container.is-on {
  opacity: 1;
  pointer-events: auto;
}/*# sourceMappingURL=home.css.map */