.round-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff100;
  border: 2px solid #1d2362;
  border-radius: 50px;
  color: #1d2362;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-break: normal;
}
.round-button:hover {
  background-color: #1d2362;
  color: #fff100;
}
.round-button.primary.invoice {
  background-color: #eb6ea5;
  color: #ffffff;
}
.round-button.primary.invoice:hover {
  background-color: #ffffff;
  color: #eb6ea5;
}
.round-button.secondary {
  background-color: #1d2362;
  color: #fff;
  border: 0;
}
.round-button.secondary:hover {
  background-color: #ffffff;
  color: #1d2362;
  border: 2px solid #1d2362;
}

.user-voice {
  padding: 90px 0 !important;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .user-voice {
    padding: 60px 0 !important;
  }
}
.user-voice__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: static;
  width: auto;
  line-height: normal;
  margin-bottom: 24px;
}
.user-voice__title {
  color: #1d2362;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .user-voice__title {
    font-size: 46px;
  }
}
.user-voice__subtitle {
  color: #1d2362;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
  position: static;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .user-voice__subtitle {
    font-size: 18px;
  }
}
.user-voice__contents {
  overflow: visible !important;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .user-voice__contents {
    padding: 0;
  }
}
.user-voice__contents * .slick-track {
  -moz-column-gap: 30px;
       column-gap: 30px;
  position: relative;
  overflow: visible;
}
.user-voice__contents * .slick-slide {
  width: 270px !important;
}
@media screen and (min-width: 768px) {
  .user-voice__contents * .slick-slide {
    width: 300px !important;
  }
}
.user-voice__contents .slick-dots {
  bottom: -45px;
}
.user-voice__contents__arrow-button {
  width: 54px !important;
  height: 54px !important;
  background-color: #1f286f !important;
  border: 1px solid transparent !important;
  cursor: pointer;
  z-index: 2;
  border: 1px solid transparent !important;
}
.user-voice__contents__arrow-button::after {
  color: #ffffff;
  font-size: 20px;
}
.user-voice__contents__arrow-button.slick-prev {
  left: 5px;
}
.user-voice__contents__arrow-button.slick-next {
  left: 970px;
}
@media screen and (min-width: 768px) and (max-width: 1037px) {
  .user-voice__contents__arrow-button.slick-next {
    left: 646px;
  }
}
@media screen and (max-width: 767px) {
  .user-voice__contents__arrow-button.slick-next {
    top: 156px;
    left: 333px;
  }
}
.user-voice__content {
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 0 16px;
  border: 1px solid #1d2362;
}
.user-voice__content--name {
  padding-top: 16px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  line-height: 1.1;
}
.user-voice__content--image {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 150px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.user-voice__content--summary {
  line-height: 1.4;
  font-size: 17px;
  font-weight: bold;
  color: #1d2362;
  margin-bottom: 5px;
  text-align: left;
  min-height: 70px;
}
.user-voice__content--text {
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .user-voice__content--text {
    display: block !important;
  }
}
.user-voice__content--detail-button {
  margin-bottom: 10px;
  align-self: self-end;
  width: auto;
  font-size: 14px;
  padding: 8px 10px;
}
.user-voice__content--detail-button :hover {
  background-color: #1f286f;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .user-voice__content--detail-button {
    display: none !important;
  }
}
.user-voice__dialog {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-voice__dialog--overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.user-voice__dialog--content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.user-voice__dialog--close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: #1f286f;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.user-voice__dialog--close:hover {
  background: #3243a0;
}
.user-voice__dialog--contents {
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  display: block !important;
}

.movie {
  padding: 90px 0 !important;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .movie {
    padding: 60px 0 !important;
  }
}
.movie__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: static;
  width: auto;
  line-height: normal;
  margin-bottom: 24px;
}
.movie__title {
  color: #1d2362;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .movie__title {
    font-size: 46px;
  }
}
.movie__subtitle {
  color: #1d2362;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .movie__subtitle {
    font-size: 18px;
  }
}
.movie__contents {
  overflow: visible !important;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 30px;
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .movie__contents {
    padding: 0;
    width: 100%;
  }
}
.movie__contents * .slick-track {
  -moz-column-gap: 30px;
       column-gap: 30px;
  position: relative;
  overflow: visible;
}
.movie__contents * .slick-slide {
  width: 270px !important;
}
@media screen and (min-width: 768px) {
  .movie__contents * .slick-slide {
    width: 300px !important;
  }
}
.movie__contents .slick-dots {
  bottom: -45px;
}
.movie__contents__arrow-button {
  width: 54px !important;
  height: 54px !important;
  background-color: #1f286f !important;
  border: 1px solid transparent !important;
  cursor: pointer;
  z-index: 2;
  border: 1px solid transparent !important;
}
.movie__contents__arrow-button::after {
  color: #ffffff;
  font-size: 20px;
}
.movie__contents__arrow-button.slick-prev {
  left: 5px;
}
.movie__contents__arrow-button.slick-next {
  left: 970px;
}
@media screen and (min-width: 768px) and (max-width: 1037px) {
  .movie__contents__arrow-button.slick-next {
    left: 646px;
  }
}
@media screen and (max-width: 767px) {
  .movie__contents__arrow-button.slick-next {
    top: 156px;
    left: 333px;
  }
}
.movie__content {
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #8f94b7;
  padding: 20px 20px 40px 20px;
}
.movie__content__link {
  text-decoration: none;
}
.movie__content__img {
  height: 150px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.movie__content__title {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 15px;
}
.movie__content__detail {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #1d2362;
  line-height: 1.7;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
}/*# sourceMappingURL=invoice-lp-asp.css.map */