#top .common-title-wrapper {
  text-align: center;
}
#top .common-title-wrapper p {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
}
#top .common-title-wrapper p::before {
  position: absolute;
  top: 50%;
  left: -1rem;
  width: 0.5rem;
  height: 1.7rem;
  content: "";
  background-image: url("../img/common/icon_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
#top .common-title-wrapper p::after {
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 0.6rem;
  height: 1.8rem;
  content: "";
  background-image: url("../img/common/icon_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) scaleX(-1);
}
#top .common-title-wrapper h2 {
  margin: 0.5rem 0 0;
  font-size: 2.8rem;
}
#top .cta-box {
  position: fixed;
  bottom: 5vh;
  right: 0;
  z-index: 100;
}
#top .cta-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--color-orange);
  text-align: center;
  border-radius: 1rem 0 0 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  position: relative;
}
#top .cta-box a p {
  position: absolute;
  top: -1rem;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
  color: var(--color-white);
  background-color: var(--color-yellow);
  padding: 0rem 1rem;
  border-radius: 0.5rem;
  color: var(--color-black);
  font-weight: 500;
}
#top .cta-box a h2 {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 2.5rem 3rem 1rem;
}
#top #main-visual {
  padding: 12rem 0 2rem;
  position: relative;
  background-image: radial-gradient(circle, #f5f5f5 1px, transparent 1px);
  background-position: 0 0;
  background-size: 12px 12px;
}
@media screen and (max-width: 970px) {
  #top #main-visual {
    padding: 8rem 0 2rem;
  }
}
#top #main-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18vw;
  background-image: url("../img/top/img_main_bg_top_pc.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 970px) {
  #top #main-visual::before {
    background-image: url("../img/top/img_main_bg_top_sp.svg");
    height: 36vw;
  }
}
#top #main-visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vw;
  background-image: url("../img/top/img_main_bg_bottom_pc.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 970px) {
  #top #main-visual::after {
    background-image: url("../img/top/img_main_bg_bottom_sp.svg");
    height: 36vw;
  }
}
#top #main-visual .inner-900 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 970px) {
  #top #main-visual .inner-900 {
    flex-direction: column;
    align-items: center;
  }
}
#top #main-visual .text-wrapper {
  text-align: center;
  width: 55%;
}
@media screen and (max-width: 970px) {
  #top #main-visual .text-wrapper {
    width: 100%;
  }
}
#top #main-visual .text-wrapper p.main-copy {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 900;
}
@media screen and (max-width: 970px) {
  #top #main-visual .text-wrapper p.main-copy {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}
#top #main-visual .text-wrapper h2 {
  white-space: nowrap;
  font-size: 3.2rem;
  font-weight: 900;
  margin: 1rem 0 0;
}
@media screen and (max-width: 970px) {
  #top #main-visual .text-wrapper h2 {
    white-space: normal;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin: 1.5rem 0 0;
  }
}
#top #main-visual .text-wrapper h2 span {
  font-size: 4rem;
}
@media screen and (max-width: 970px) {
  #top #main-visual .text-wrapper h2 span {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
}
#top #main-visual .text-wrapper h2 span.bg-gradient {
  border-radius: 0.6rem;
  padding: 0 0.8rem;
}
@media screen and (max-width: 970px) {
  #top #main-visual .text-wrapper h2 span.bg-gradient {
    padding: 0 0.5rem;
  }
}
#top #main-visual .text-wrapper .btn-cta-wrapper {
  margin: 2rem 0 0;
}
#top #main-visual .text-wrapper .gamie-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0 0;
}
#top #main-visual .text-wrapper .gamie-wrapper img {
  width: 10rem;
  transform: scale(-1, 1);
}
#top #main-visual .text-wrapper .gamie-wrapper p {
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 970px) {
  #top #main-visual .text-wrapper .gamie-wrapper p {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
  }
}
#top #main-visual .image-wrapper {
  width: 45%;
}
@media screen and (max-width: 970px) {
  #top #main-visual .image-wrapper {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0;
  }
  #top #main-visual .image-wrapper img {
    max-width: 40rem;
  }
}
#top #function {
  background-color: var(--color-navy);
  padding: 2rem 0;
}
#top #function ul.function-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 970px) {
  #top #function ul.function-list {
    row-gap: 1rem;
  }
}
#top #function ul.function-list li {
  width: 16%;
  background-color: var(--color-white);
  border-radius: 0.6rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 1rem;
}
@media screen and (max-width: 970px) {
  #top #function ul.function-list li {
    width: 32%;
  }
}
@media screen and (max-width: 480px) {
  #top #function ul.function-list li {
    width: 49%;
  }
}
#top #function ul.function-list li img {
  height: 2.8rem;
}
#top #function ul.function-list li h4 {
  font-size: 1.3rem;
  height: 100%;
  text-align: center;
}
#top #worries {
  padding: 5rem 0;
  background-color: var(--color-bg-gray);
}
#top #worries h2 {
  font-size: 2.4rem;
  text-align: center;
}
#top #worries .worries-wrapper {
  margin: 4rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #top #worries .worries-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}
#top #worries .worries-wrapper ul.worries-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  #top #worries .worries-wrapper ul.worries-list {
    width: 100%;
  }
}
#top #worries .worries-wrapper ul.worries-list li {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 2rem 2rem 2rem 5rem;
  background-color: var(--color-white);
  border-radius: 0.6rem;
}
@media screen and (max-width: 767px) {
  #top #worries .worries-wrapper ul.worries-list li {
    font-size: 1.6rem;
  }
}
#top #worries .worries-wrapper ul.worries-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 2rem;
  height: 100%;
  background-image: url("../img/common/icon_checkbox.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#top #worries .worries-wrapper .image-wrapper {
  width: 35%;
}
@media screen and (max-width: 767px) {
  #top #worries .worries-wrapper .image-wrapper {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0;
  }
  #top #worries .worries-wrapper .image-wrapper img {
    max-width: 25rem;
  }
}
#top #solution {
  margin: 5rem 0 0;
}
#top #solution .icon-wrapper {
  text-align: center;
}
#top #solution .icon-wrapper img {
  width: 4.6rem;
}
#top #solution .solution-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#top #solution .solution-wrapper .top-text {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 2rem 0 0;
}
#top #solution .solution-wrapper .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
#top #solution .solution-wrapper .logo-wrapper img {
  width: 18rem;
}
#top #solution .solution-wrapper .logo-wrapper p {
  font-size: 2.4rem;
  font-weight: 700;
}
#top #solution .solution-wrapper h2 {
  font-size: 3.2rem;
  margin: 1rem 0 0;
}
#top #solution .solution-wrapper p.read-text {
  text-align: center;
  font-size: 1.6rem;
  margin: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  #top #solution .solution-wrapper p.read-text {
    font-size: 1.4rem;
    text-align: left;
  }
}
#top #solution .point-wrapper {
  margin: 4rem 0 0;
}
#top #solution .point-wrapper ul.point-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#top #solution .point-wrapper ul.point-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(180, 180, 180, 0.05);
  border-radius: 2rem;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  #top #solution .point-wrapper ul.point-list li {
    flex-direction: column;
    padding: 2rem 5%;
  }
}
#top #solution .point-wrapper ul.point-list li .text-wrapper {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #top #solution .point-wrapper ul.point-list li .text-wrapper {
    width: 100%;
  }
}
#top #solution .point-wrapper ul.point-list li .text-wrapper h3 {
  font-size: 2.4rem;
  display: inline-flex;
  position: relative;
  padding: 1rem;
  top: -3rem;
  left: -3rem;
}
@media screen and (max-width: 767px) {
  #top #solution .point-wrapper ul.point-list li .text-wrapper h3 {
    top: -2rem;
    left: -5%;
    font-size: 2rem;
  }
}
#top #solution .point-wrapper ul.point-list li .text-wrapper h3::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/common/icon_corner.svg");
}
#top #solution .point-wrapper ul.point-list li .image-wrapper {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #top #solution .point-wrapper ul.point-list li .image-wrapper {
    width: 100%;
  }
}
#top .cta {
  position: relative;
  padding: 4rem 0 2.5rem;
  margin: 6rem 0 0;
  background: linear-gradient(to right, rgba(74, 144, 226, 0.2), rgba(0, 212, 170, 0.2));
}
#top .cta::before {
  position: absolute;
  top: -2rem;
  left: 0;
  width: 100%;
  height: 4.2rem;
  content: "";
  background-image: url("../img/common/img_cta_title.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#top .cta p {
  text-align: center;
}
#top .cta .btn-wrapper {
  margin: 2rem 0 0;
  text-align: center;
}
#top #function-list {
  padding: 5rem 0;
}
#top #function-list .function-title {
  margin: 3rem 0 0;
  text-align: center;
  position: relative;
}
#top #function-list .function-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-blue);
  z-index: -1;
}
#top #function-list .function-title h3 {
  display: inline-flex;
  padding: 0.2rem 2rem;
  border-radius: 5rem;
  font-size: 2rem;
}
#top #function-list ul.function-list {
  margin: 3rem 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2rem;
  position: relative;
}
#top #function-list ul.function-list::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  #top #function-list ul.function-list::after {
    width: 48%;
  }
}
#top #function-list ul.function-list li {
  width: 31%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  #top #function-list ul.function-list li {
    width: 48%;
  }
}
#top #function-list ul.function-list li .image-wrapper img {
  border: 1px solid var(--color-bg-gray);
}
#top #function-list ul.function-list li h4 {
  font-size: 1.8rem;
  margin: 0.5rem 0 0;
}
#top #function-list ul.function-list li p {
  border-top: 1px solid var(--color-bg-gray);
  padding: 1rem 0 0;
  flex-grow: 1;
}
#top #price {
  padding: 5rem 0;
  background-color: rgba(180, 180, 180, 0.05);
}
#top #price .pricing-wrapper {
  margin: 3rem 0 0;
}
#top #price .pricing-table {
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-bg-gray);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#top #price .pricing-table thead,
#top #price .pricing-table tbody,
#top #price .pricing-table tr {
  display: contents;
}
#top #price .pricing-table thead tr {
  display: flex;
  justify-content: flex-end;
}
#top #price .pricing-table thead tr th {
  width: 25%;
}
@media screen and (max-width: 767px) {
  #top #price .pricing-table thead tr th {
    width: 100%;
  }
}
#top #price .pricing-table thead tr th:nth-child(1) {
  border-left: 1px solid var(--color-bg-gray);
}
@media screen and (max-width: 767px) {
  #top #price .pricing-table thead tr th:nth-child(1) {
    border-radius: 1rem 0 0;
    border-left: none;
  }
}
#top #price .pricing-table thead tr th:nth-child(3) {
  border-radius: 0 1rem 0 0;
}
#top #price .pricing-table tbody {
  display: flex;
  flex-wrap: wrap;
}
#top #price .pricing-table tbody tr.feature-head th {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (max-width: 767px) {
  #top #price .pricing-table tbody tr.feature-head th {
    width: 100%;
    border-bottom: none;
  }
}
#top #price .pricing-table tbody tr.feature-body td {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  #top #price .pricing-table tbody tr.feature-body td {
    width: 33.3333333333%;
  }
}
#top #price .pricing-table tbody tr.feature-body td:nth-child(2) {
  background: linear-gradient(to right, rgba(220, 236, 255, 0.2), rgba(79, 255, 220, 0.2));
}
#top #price .pricing-table th,
#top #price .pricing-table td {
  padding: 1.5rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #top #price .pricing-table th,
  #top #price .pricing-table td {
    padding: 1rem;
  }
}
#top #price .pricing-table th:nth-child(1), #top #price .pricing-table th:nth-child(2),
#top #price .pricing-table td:nth-child(1),
#top #price .pricing-table td:nth-child(2) {
  border-right: 1px solid var(--color-bg-gray);
  border-bottom: 1px solid var(--color-bg-gray);
}
#top #price .pricing-table th:nth-child(3),
#top #price .pricing-table td:nth-child(3) {
  border-bottom: 1px solid var(--color-bg-gray);
}
#top #price .pricing-table td.two-layer {
  font-size: 1.2rem;
  line-height: 1.5;
}
#top #price .pricing-table .plan-header {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}
#top #price .pricing-table .plan-header span {
  display: inline-block;
  margin: 0.8rem 0 0;
  font-size: 1.2rem;
}
#top #price .pricing-table .plan-header.is-standard {
  color: var(--color-white);
  background: linear-gradient(90deg, #2e9dff 0%, #00d5cc 100%);
}
#top #price .pricing-table .feature-name {
  grid-column: 1/-1;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: var(--color-bg-gray);
}
#top #price .pricing-table .plan-mark img {
  width: 2rem;
  height: 2rem;
}
#top #price .pricing-table .ng-mark img {
  width: 1.5rem;
  height: 1.5rem;
}
#top #price .pricing-table .price-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
#top #price .pricing-table .price-text.gradient-text {
  font-size: 2rem;
  font-weight: 700;
}
#top #price .pricing-table .price-text span {
  color: #737373;
  font-size: 1.2rem;
  font-weight: 400;
}
#top #price .pricing-table .last-item {
  border-bottom: none !important;
}
#top #step {
  padding: 5rem 0;
}
#top #step ul.step-list {
  margin: 3rem 0 0;
  display: flex;
  align-items: flex-start;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #top #step ul.step-list {
    flex-direction: column;
    row-gap: 2rem;
  }
}
#top #step ul.step-list li {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #top #step ul.step-list li {
    width: 100%;
    flex-direction: row;
    gap: 2rem;
  }
}
#top #step ul.step-list li.step-arrow-wrapper {
  width: 5%;
  height: 100%;
}
#top #step ul.step-list li.step-arrow-wrapper img {
  width: 3rem;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  #top #step ul.step-list li.step-arrow-wrapper img {
    transform: rotate(0deg);
  }
}
#top #step ul.step-list li .left-wrapper img {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  #top #step ul.step-list li .left-wrapper img {
    width: 10rem;
  }
}
#top #step ul.step-list li .right-wrapper {
  margin: 2rem 0 0;
}
#top #step ul.step-list li .right-wrapper h3 {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top #step ul.step-list li .right-wrapper h3 {
    font-size: 1.6rem;
    text-align: left;
  }
}
#top #step ul.step-list li .right-wrapper p {
  margin: 1rem 0 0;
  flex-grow: 1;
}
#top #step ul.step-list li .right-wrapper a {
  color: var(--color-blue);
}
#top #news {
  padding: 5rem 0;
  background-color: rgba(180, 180, 180, 0.05);
}
#top #news ul.news-list {
  margin: 3rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #top #news ul.news-list {
    flex-direction: column;
    row-gap: 2rem;
  }
}
#top #news ul.news-list li {
  width: 32%;
}
@media screen and (max-width: 767px) {
  #top #news ul.news-list li {
    width: 100%;
  }
}
#top #news ul.news-list li a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: var(--color-white);
  border-radius: 1rem;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
}
#top #news ul.news-list li a:hover {
  transform: translateY(-1rem);
}
#top #news ul.news-list li a .image-wrapper img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
#top #news ul.news-list li a .text-wrapper {
  padding: 1rem 2rem 2rem;
}
#top #news ul.news-list li a .text-wrapper p.category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#top #news ul.news-list li a .text-wrapper p.category span {
  font-size: 1.2rem;
  border: 1px solid var(--color-bg-gray);
  border-radius: 0.6rem;
  padding: 0rem 0.6rem;
  margin: 1rem 0 0;
  display: inline-flex;
}
#top #news ul.news-list li a .text-wrapper h3 {
  font-size: 1.6rem;
  margin: 1rem 0 0;
}
#top #news ul.news-list li a .text-wrapper p.date {
  border-top: 1px solid var(--color-bg-gray);
  padding: 1rem 0 0;
  margin: 1rem 0 0;
  font-size: 1.2rem;
  color: #8b8b8b;
}
#top #news .btn-wrapper {
  margin: 3rem 0 0;
}
#top #faq {
  padding: 5rem 0;
}
#top #faq .faq-title {
  margin: 3rem 0 0;
}
#top #faq .faq-title p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
#top #faq ul.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin: 1rem 0 0;
}
#top #faq ul.faq-list li.faq-item {
  padding: 0 1.5rem;
  cursor: pointer;
  background-color: var(--color-bg-gray);
  border-radius: 1rem;
}
#top #faq ul.faq-list li.faq-item.is-open .faq-question h3::after {
  transform: translateY(-50%) rotate(-45deg);
}
#top #faq ul.faq-list li.faq-item .faq-question h3 {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  font-size: 1.6rem;
}
#top #faq ul.faq-list li.faq-item .faq-question h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  color: transparent;
  content: "Q";
  background: linear-gradient(to right, #4a90e2, #00d4aa);
  -webkit-background-clip: text;
          background-clip: text;
  transform: translateY(-50%);
}
#top #faq ul.faq-list li.faq-item .faq-question h3::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transition: transform 0.3s ease;
  transform: translateY(-50%) rotate(135deg);
}
#top #faq ul.faq-list li.faq-item .faq-answer .faq-answer-inner {
  margin: 0 0 2rem;
  padding: 0 2rem;
}
#top #faq ul.faq-list li.faq-item .faq-answer p {
  font-size: 1.4rem;
}
#top #faq ul.faq-list li.faq-item .faq-answer a {
  color: var(--color-blue);
}
#top #faq ul.faq-list li.faq-item .faq-answer ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}
#top #faq ul.faq-list li.faq-item .faq-answer ul li {
  font-size: 1.4rem;
  margin: 0 0 0 1.5rem;
}
#top #faq ul.faq-list li.faq-item .faq-answer ol {
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}
#top #faq ul.faq-list li.faq-item .faq-answer ol li {
  font-size: 1.4rem;
  margin: 0 0 0 1.5rem;
}
#top #contact {
  padding: 5rem 0;
  background-color: rgba(180, 180, 180, 0.05);
}
#top #contact .contact-message {
  max-width: 80rem;
  margin: 2.5rem auto 0;
  padding: 1rem 1.4rem;
  font-size: 1.4rem;
  border-radius: 0.8rem;
}
#top #contact .contact-message.is-success {
  color: #0f5132;
  border: 1px solid #badbcc;
  background-color: #d1e7dd;
}
#top #contact .contact-message.is-error {
  color: #842029;
  border: 1px solid #f5c2c7;
  background-color: #f8d7da;
}
#top #contact form {
  margin: 3rem auto 0;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.8rem 2%;
  border-radius: 2rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  #top #contact form {
    padding: 2rem 5%;
    gap: 1.4rem;
  }
}
#top #contact form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
#top #contact form .form-group.half-width {
  width: 49%;
}
@media screen and (max-width: 767px) {
  #top #contact form .form-group.half-width {
    width: 100%;
  }
}
#top #contact form .form-group.full-width {
  width: 100%;
}
#top #contact form .form-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
}
#top #contact form .form-group label .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
  border-radius: 0.4rem;
  background-color: #ff5a5f;
}
#top #contact form .form-group input[type=text],
#top #contact form .form-group input[type=email],
#top #contact form .form-group input[type=tel],
#top #contact form .form-group select,
#top #contact form .form-group textarea {
  width: 100%;
  padding: 1.1rem 1.2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  border: 1px solid #d7dee8;
  border-radius: 0.8rem;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#top #contact form .form-group input[type=text]:focus,
#top #contact form .form-group input[type=email]:focus,
#top #contact form .form-group input[type=tel]:focus,
#top #contact form .form-group select:focus,
#top #contact form .form-group textarea:focus {
  border-color: var(--color-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}
#top #contact form .form-group textarea {
  min-height: 16rem;
  resize: vertical;
}
#top #contact form .form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #7b8794 50%), linear-gradient(135deg, #7b8794 50%, transparent 50%);
  background-position: calc(100% - 1.8rem) calc(50% - 0.2rem), calc(100% - 1.2rem) calc(50% - 0.2rem);
  background-size: 0.6rem 0.6rem, 0.6rem 0.6rem;
  background-repeat: no-repeat;
}
#top #contact form .form-group.privacy-policy-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.8rem;
}
#top #contact form .form-group.privacy-policy-group #privacy-policy {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#top #contact form .form-group.privacy-policy-group #privacy-policy + label {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  line-height: 1.8;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
}
#top #contact form .form-group.privacy-policy-group #privacy-policy + label::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  border: 1px solid #b9c4d3;
  border-radius: 0.5rem;
  background-color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
#top #contact form .form-group.privacy-policy-group #privacy-policy + label::after {
  position: absolute;
  top: 0.75rem;
  left: 0.7rem;
  width: 0.5rem;
  height: 0.9rem;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.2s ease;
}
#top #contact form .form-group.privacy-policy-group #privacy-policy + label a {
  text-decoration: underline;
  color: var(--color-blue);
}
#top #contact form .form-group.privacy-policy-group #privacy-policy + label .required {
  margin-left: 0.6rem;
  vertical-align: middle;
}
#top #contact form .form-group.privacy-policy-group #privacy-policy:checked + label::before {
  border-color: var(--color-blue);
  background-color: var(--color-blue);
}
#top #contact form .form-group.privacy-policy-group #privacy-policy:checked + label::after {
  opacity: 1;
}
#top #contact form .form-group.privacy-policy-group #privacy-policy:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}
#top #contact form .btn-wrapper {
  margin-top: 0.8rem;
  text-align: center;
}
#top #contact form .btn-wrapper .btn-submit {
  min-width: 22rem;
  padding: 1.4rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  border: 0;
  border-radius: 99rem;
  cursor: pointer;
  background: linear-gradient(90deg, #2e9dff 0%, #00d5cc 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#top #contact form .btn-wrapper .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.12);
}/*# sourceMappingURL=top.css.map */