@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap";
html {
  font-size: 14px;
  scroll-padding-top: 4rem;
  scroll-behavior: smooth;
}
@media (width >= 768px) {
  html {
    font-size: 16px;
    scroll-padding-top: 5rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2e2627;
}

.container {
  max-width: 1280px;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
.container--sm {
  max-width: 1120px;
}
.container--xs {
  max-width: 1024px;
}

.page-heading {
  color: #f5f5f5;
}
.page-heading--pink {
  color: transparent;
  background: linear-gradient(120deg, #f7b662 15%, #fe5196 80%);
  background-clip: text;
}
.page-heading--center {
  text-align: center;
}
.page-heading__en {
  font-family: "Outfit", sans-serif;
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 0.2rem;
}
@media (width >= 768px) {
  .page-heading__en {
    font-size: 5rem;
  }
}
.page-heading__ja {
  margin-top: -1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
@media (width >= 768px) {
  .page-heading__ja {
    font-size: 20px;
  }
}

.common-btn {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  background: white;
  border-radius: 9999px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.05), -4px -4px 4px 0 rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}
.common-btn:hover {
  transform: scale(105%);
  transition: 0.3s;
}
.common-btn--other {
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border: 1px solid #e97470;
}
.common-btn .text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 175%;
  color: #e97470;
  letter-spacing: 0.1rem;
}
@media (width >= 768px) {
  .common-btn .text {
    font-size: 18px;
  }
}
.common-btn .arrow img {
  width: 2rem;
}
.common-btn .arrow img--other {
  width: 1.25rem;
}

.common__card {
  padding: 1rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  background-color: #fff;
  border-radius: 2rem;
}
@media (width >= 768px) {
  .common__card {
    padding: 2.5rem 4rem;
    border-radius: 4rem;
  }
}

.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.main-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainvisual {
  position: relative;
}
.mainvisual__img img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0 0 2rem 2rem;
}
@media (width >= 768px) {
  .mainvisual__img img {
    aspect-ratio: auto;
    border-radius: 4rem;
  }
}
.mainvisual__heading {
  position: absolute;
  inset: auto 0 0;
  padding: 0.5rem 1.5rem;
  color: #f5f5f5;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (width >= 768px) {
  .mainvisual__heading {
    padding: 1rem 3rem;
  }
}
.mainvisual__ja {
  font-size: 1.25rem;
}
.mainvisual__en {
  margin-top: -0.25em;
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
}
@media (width >= 768px) {
  .mainvisual__en {
    font-size: 6rem;
  }
}

.category-badge {
  padding: 0.1rem 0.5rem;
  margin-right: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: #e2e2e2;
  border-radius: 0.25rem;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  padding-block: 0.25rem;
}
@media (width >= 768px) {
  .header {
    position: sticky;
    padding-block: 0.5rem;
  }
}
.header .container {
  max-width: 100%;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  padding-inline: 1.5rem;
  background-color: rgba(254, 252, 252, 0.8666666667);
  border-radius: 9999px;
}
@media (width >= 768px) {
  .header__content {
    padding-inline: 2rem 1rem;
    background-color: rgba(254, 252, 252, 0.8666666667);
  }
}
.header__logo img {
  width: 6.5rem;
}
.header__navigation {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.header__list {
  display: none;
}
@media (width >= 1024px) {
  .header__list {
    display: flex;
    gap: 1.2vw;
  }
}
.header__list-column {
  position: relative;
}
.header__list-children {
  position: absolute;
  top: 2.6rem;
  left: -1rem;
  display: none;
  width: 200px;
  padding: 1rem;
  background-color: rgba(254, 252, 252, 0.8666666667);
  border-radius: 8px;
  transition: 0.3sec;
}
.header__item {
  position: relative;
  transition: 0.3s;
}
.header__item::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(120deg, #f7b662 15%, #fe5196 80%);
  opacity: 0;
}
.header__item:hover::after {
  opacity: 1;
  transition: 0.3s;
}
.header__item-cld {
  display: block;
  line-height: 170%;
  transition: 0.3s;
}
.header__item-cld:hover {
  color: #ff6685;
}
.header__contact {
  display: none;
  padding: 0.5rem 2rem;
  font-size: 18px;
  font-weight: 500;
  color: white;
  background: linear-gradient(120deg, #f7b662 15%, #fe5196 80%);
  border-radius: 9999px;
  transition: 0.3s;
}
.header__contact:hover {
  transform: scale(105%);
  transition: 0.3s;
}
@media (width >= 1024px) {
  .header__contact {
    display: block;
  }
}
.header .toggle-button {
  display: block;
  padding: 10px;
}
@media (width >= 1024px) {
  .header .toggle-button {
    display: none;
  }
}
.header .toggle-button__hamburger {
  position: relative;
  width: 1.75rem;
  height: 20px;
}
.header .toggle-button__hamburger span {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background-color: #e97470;
  border-radius: 1rem;
}
.header .toggle-button__hamburger span:first-child {
  top: 0;
}
.header .toggle-button__hamburger span:nth-child(2) {
  top: calc(50% - 1px);
}
.header .toggle-button__hamburger span:last-child {
  bottom: 0;
}
.header .toggle-button.open span:first-child {
  top: calc(50% - 1px);
  transform: rotateZ(45deg);
}
.header .toggle-button.open span:nth-child(2) {
  display: none;
}
.header .toggle-button.open span:last-child {
  top: calc(50% - 1px);
  transform: rotateZ(-45deg);
}

.header-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 20rem;
  padding: 1.5rem 0.75rem;
  background-color: #fff;
  transform: translateX(-100%);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-property: transform;
}
.header-menu.open {
  transform: translateX(0);
}
.header-menu__logo {
  width: 8rem;
}
.header-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
}
.header-menu__item {
  display: block;
  padding-block: 0.5rem;
}
.header-menu__contact {
  display: block;
  padding-block: 0.75rem;
  margin-top: 2rem;
  font-weight: 500;
  color: white;
  text-align: center;
  background: linear-gradient(120deg, #f7b662 15%, #fe5196 80%);
  border-radius: 9999px;
}

.footer-before {
  padding-block: 4rem 3rem;
  background: linear-gradient(120deg, #f7b662 15%, #fe5196 80%);
  border-radius: 2rem;
  background-blend-mode: multiply;
}
@media (width >= 768px) {
  .footer-before {
    padding-block: 6rem 5rem;
    border-radius: 4rem;
  }
}
.footer-before__content {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  align-items: start;
  justify-content: space-between;
  margin-top: 2rem;
}
@media (width >= 768px) {
  .footer-before__content {
    flex-direction: row;
  }
}
.footer-before__string {
  flex: 0 0 45%;
}
.footer-before__title {
  margin-bottom: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
  line-height: 175%;
  color: white;
  letter-spacing: 0.1rem;
}
@media (width >= 768px) {
  .footer-before__title {
    font-size: 2.5rem;
    line-height: 150%;
  }
}
.footer-before__text {
  font-family: "Noto Sans JP";
  line-height: 200%;
  color: white;
}
.footer-before__img {
  flex: 0 0 45%;
}
.footer-before__activities {
  max-width: 60rem;
  margin-inline: auto;
}
.footer-before__btns {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media (width >= 768px) {
  .footer-before__btns {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-before__btn {
  display: flex;
  flex: 0 0 46.5%;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 9999px;
  transition: 0.3s;
}
.footer-before__btn:hover {
  transform: scale(105%);
  transition: 0.3s;
}
.footer-before__btn-img img {
  width: 2.5rem;
  height: 2.5rem;
}
.footer-before__btn-arrow img {
  width: 2.5rem;
  height: 2.5rem;
}
.footer-before__tels-img img {
  width: 2.5rem;
  height: 2.5rem;
}
.footer-before__btn-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #e97470;
}
.footer-before__btn-text--green {
  color: #4caf50;
}
.footer-before__tels {
  display: flex;
  flex-direction: column;
  padding-block: 1.5rem;
  margin-inline: auto;
  margin-top: 3rem;
  border: 1px solid white;
  border-radius: 1.5rem;
  transition: 0.3s;
}
.footer-before__tels:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media (width >= 768px) {
  .footer-before__tels {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
  }
}
.footer-before__tels-left {
  display: flex;
  flex: 0 0 30%;
  gap: 4%;
  align-items: center;
  justify-content: center;
}
.footer-before__tels-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 175%;
  color: white;
}
@media (width >= 768px) {
  .footer-before__tels-text {
    font-size: 1.5rem;
  }
}
.footer-before__tels-right {
  flex: 0 0 55%;
  gap: 4%;
  text-align: center;
}
.footer-before__tels-number {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1rem;
}
@media (width >= 768px) {
  .footer-before__tels-number {
    font-size: 3rem;
  }
}
.footer-before__tels-time {
  font-weight: 500;
  color: white;
}

.footer-wrapper {
  padding-block: 6rem 45px;
  background-color: #f5f5f5;
}

.footer__img img {
  width: 10rem;
}
.footer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (width >= 768px) {
  .footer__list {
    grid-template-columns: repeat(3, 1fr);
    width: 50rem;
  }
}
@media (width >= 1024px) {
  .footer__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__item {
  color: #e97470;
  transition: color 0.3s;
}
.footer__item:hover {
  color: rgb(226.2, 73.0363636364, 67.8);
}
.footer__string {
  margin-top: 4.5rem;
  font-size: 0.85rem;
  line-height: 175%;
  color: gray;
}
.footer__string::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 4rem;
  content: "";
  background-color: white;
}
.footer__string::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4rem;
  margin-bottom: 4rem;
  content: "";
  background-color: white;
}
.footer__logos {
  display: flex;
  gap: 4rem;
}
.footer__logos a {
  font-size: 0.8rem;
  color: gray;
}
.footer__logos img {
  margin-top: 8px;
}
.footer__service-logo {
  width: 14rem;
}
.footer__group-company-logo {
  width: 14rem;
}
.footer__copyright {
  margin-top: 6rem;
  font-size: 0.8rem;
  color: #878787;
  text-align: center;
}
.footer__privacy-policy {
  color: #e97470;
  text-decoration: underline;
}

@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0);
  }
}
.top-firstview__card {
  position: relative;
  height: 45rem;
  overflow: hidden;
  background: #fff;
  border-radius: 2rem;
}
@media (width >= 640px) {
  .top-firstview__card {
    border-radius: 4rem;
  }
}
.top-firstview__img-1 {
  position: absolute;
  top: -47.5%;
  left: -17.5%;
  width: 15rem;
  animation: rotate 48s linear infinite;
}
@media (width >= 640px) {
  .top-firstview__img-1 {
    top: -47.5%;
    left: -2.5%;
    width: 27.5%;
  }
}
.top-firstview__img-2 {
  position: absolute;
  top: 20%;
  left: -12.5%;
  width: 15rem;
  animation: rotate 48s linear infinite reverse;
}
@media (width >= 640px) {
  .top-firstview__img-2 {
    top: 0;
    left: 37.5%;
    width: 25%;
  }
}
.top-firstview__img-3 {
  position: absolute;
  right: -20%;
  bottom: 5%;
  width: 22.5rem;
  animation: rotate 72s linear infinite;
}
@media (width >= 640px) {
  .top-firstview__img-3 {
    right: 2.5%;
    bottom: -22.5%;
    width: 42.5%;
  }
}
.top-firstview__img-4 {
  position: absolute;
  bottom: -55%;
  left: 0;
  width: 20rem;
  animation: rotate 48s linear infinite;
}
@media (width >= 640px) {
  .top-firstview__img-4 {
    bottom: -20%;
    left: -2.5%;
    width: 32.5%;
  }
}
.top-firstview__content {
  position: absolute;
  inset: auto 0 0;
  padding-inline: 6%;
  padding-bottom: 2rem;
}
@media (width >= 640px) {
  .top-firstview__content {
    padding-bottom: 4rem;
  }
}
.top-firstview__heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
}
@media (width >= 640px) {
  .top-firstview__heading {
    font-size: 4rem;
    font-weight: 300;
  }
}
.top-firstview__text {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 175%;
}
@media (width >= 640px) {
  .top-firstview__text {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 200%;
  }
}
.top-firstview__button {
  display: block;
  padding: 0.75rem 2.5rem;
  margin-top: 1rem;
  font-weight: 500;
  color: white;
  text-align: center;
  background: linear-gradient(120deg, #f7b662 15%, #fe5196 80%);
  border-radius: 9999px;
  transition: 0.3s;
}
.top-firstview__button:hover {
  transform: scale(105%);
  transition: 0.3s;
}
@media (width >= 768px) {
  .top-firstview__button {
    display: inline-block;
    margin-top: 2rem;
  }
}

.top-news {
  padding-block: 4rem 2rem;
}
.top-news__row {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  justify-content: space-between;
}
@media (width >= 768px) {
  .top-news__row {
    flex-direction: row;
  }
}
.top-news__text {
  display: flex;
  flex: 0 30%;
  flex-direction: column;
  row-gap: 1.5rem;
  justify-content: space-between;
}
@media (width >= 768px) {
  .top-news__text {
    row-gap: 0;
  }
}
.top-news__text .page-heading {
  margin-bottom: auto;
}
.top-news__content {
  flex: 0 65%;
}
.top-news__date {
  color: #878787;
}
.top-news__title {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 175%;
}
.top-news__card {
  padding: 1.75rem 2.5rem;
  background-color: #fff;
  border-top: 1px solid #e2e2e2;
  transition: 0.3s;
}
.top-news__card:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.top-news__card:last-child {
  border-bottom: 1px solid #e2e2e2;
}

.top-gallery {
  overflow-x: scroll;
}
@media (width >= 1024px) {
  .top-gallery {
    overflow-x: auto;
  }
}
.top-gallery__content {
  display: flex;
  gap: 2%;
  justify-content: center;
  margin-top: 3rem;
}
.top-gallery__item {
  position: relative;
  flex: 0 0 15rem;
  overflow: hidden;
  border-radius: 1rem;
  transition: 0.3s;
}
.top-gallery__item:hover {
  opacity: 0.7;
}
.top-gallery__picture {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
.top-gallery__picture:hover {
  transform: scale(1.05);
}

.top-about {
  padding-block: 4rem 2rem;
}
@media (width >= 768px) {
  .top-about {
    padding-block: 128px 4rem;
  }
}
.top-about__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width >= 768px) {
  .top-about__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.top-about__string {
  flex: 0 0 45%;
}
.top-about__title {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 150%;
  color: #e97470;
  letter-spacing: 1px;
}
@media (width >= 768px) {
  .top-about__title {
    font-size: 2.25rem;
  }
}
.top-about__text {
  margin-top: 1.5rem;
  line-height: 200%;
}
.top-about .common-btn {
  margin-top: 2rem;
  margin-left: auto;
}
.top-about__img {
  flex: 0 0 45%;
}
.top-about__img img {
  border-radius: 20rem 20rem 0 0;
}
.top-about__banner {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
}
.top-about__banner .marquee-inner {
  padding-inline: 4rem;
  font-family: "Outfit", sans-serif;
  font-size: 6rem;
  font-weight: thin;
  color: rgba(235, 165, 163, 0.15);
  text-align: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}

.top-service {
  padding-block: 4rem;
  background: rgba(250, 154, 157, 0.5019607843);
  border-radius: 2rem;
  background-blend-mode: multiply;
}
@media (width >= 768px) {
  .top-service {
    padding-block: 7rem;
    border-radius: 4rem;
  }
}
.top-service__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 768px) {
  .top-service__top {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}
.top-service__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 75px;
}
@media (width >= 768px) {
  .top-service__content {
    flex-direction: row;
  }
}
.top-service__column {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px 4.2%;
  background: white;
  border-radius: 2rem;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.top-service__dots {
  position: absolute;
  top: 1.75rem;
  left: 32px;
  display: flex;
  gap: 15px;
}
.top-service__dot {
  width: 1rem;
  height: 1rem;
  background: rgba(235, 165, 163, 0.3);
  border-radius: 50%;
}
.top-service__dot--thick {
  background: #eba5a3;
}
.top-service__img {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
.top-service__img img {
  width: auto;
}
.top-service__title {
  margin-top: 1.5rem;
  font-size: 1.75rem;
  font-weight: 300;
  color: #e97470;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media (width >= 768px) {
  .top-service__title {
    font-size: 2.5rem;
  }
}
.top-service__text {
  margin-top: 1rem;
  line-height: 200%;
}
.top-service .common-btn--other {
  margin-inline: auto;
  margin-top: 1.5rem;
}

.top-works {
  padding-block: 5rem 7rem;
}
.top-works__content {
  display: grid;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (width >= 768px) {
  .top-works__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 1024px) {
  .top-works__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.top-works__img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.top-works__title {
  margin-top: 1rem;
  font-weight: bold;
}
.top-works__excerpt {
  margin-top: 0.5rem;
  line-height: 175%;
}
.top-works__card {
  height: 100%;
  padding: 1.75rem 2rem;
  background-color: #fff;
  border-radius: 2.5rem;
  transition: 0.3s;
}
.top-works__card:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.top-works__button {
  margin-top: 4rem;
  text-align: center;
}

.top-blog {
  padding-block: 5rem 7rem;
  background-color: #fff;
  border-radius: 4rem;
}
.top-blog__content {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (width >= 768px) {
  .top-blog__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 1024px) {
  .top-blog__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.top-blog__card {
  padding: 1.5rem 1.75rem;
  background-color: #fff;
  border-radius: 1.75rem;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.05), -4px -4px 4px 0 #fff;
  transition: 0.3s;
}
.top-blog__card:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.top-blog__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.top-blog__date {
  margin-top: 1rem;
  color: #878787;
}
.top-blog__title {
  margin-top: 0.5rem;
  font-weight: bold;
  line-height: 175%;
}
.top-blog__button {
  margin-top: 4rem;
  text-align: center;
}

.top-company {
  padding-block: 4rem;
  margin-top: 2rem;
  background: rgba(255, 249, 251, 0.75);
  border-radius: 4rem;
}
@media (width >= 768px) {
  .top-company {
    padding-block: 4rem 6rem;
  }
}
.top-company__content {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin-top: 4rem;
}
@media (width >= 768px) {
  .top-company__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.top-company__string {
  flex: 0 0 45%;
}
.top-company__string .common-btn {
  margin-top: 1.5rem;
  margin-left: auto;
}
.top-company__img {
  flex: 0 0 45%;
}
.top-company__img img {
  border-radius: 2rem;
}

.top-voice {
  padding-block: 4rem 2rem;
}
.top-voice__row {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  justify-content: space-between;
}
@media (width >= 768px) {
  .top-voice__row {
    flex-direction: row;
  }
}
.top-voice__text {
  display: flex;
  flex: 0 30%;
  flex-direction: column;
  row-gap: 1.5rem;
  justify-content: space-between;
}
@media (width >= 768px) {
  .top-voice__text {
    row-gap: 0;
  }
}
.top-voice__text .page-heading {
  margin-bottom: auto;
}
.top-voice__content {
  display: grid;
  flex: 0 65%;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3rem;
}
@media (width >= 768px) {
  .top-voice__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
  }
}
.top-voice__card {
  transition: 0.3s;
}
.top-voice__card:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.top-voice__thumbnail {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 1.5rem;
}
@media (width >= 768px) {
  .top-voice__thumbnail {
    aspect-ratio: 4/3;
  }
}
.top-voice__title {
  padding-left: 0.5rem;
  margin-top: 0.75rem;
}

.top-recruit {
  padding-block: 6rem;
}
.top-recruit__card {
  position: relative;
  padding: 1rem 2rem;
  overflow: hidden;
  border-radius: 2rem;
  transition: 0.3s;
}
.top-recruit__card:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media (width >= 768px) {
  .top-recruit__card {
    padding: 3rem 6rem;
    border-radius: 4rem;
  }
}
.top-recruit__card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-color: rgba(227, 129, 123, 0.2509803922);
}
.top-recruit__link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.top-recruit__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 100%;
  object-fit: cover;
}
.top-recruit__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-recruit__button {
  width: 3rem;
}
@media (width >= 768px) {
  .top-recruit__button {
    width: 4rem;
  }
}
.top-recruit__button img {
  width: 100%;
}
.top-recruit__message {
  margin-top: 4rem;
  font-size: 1.75rem;
  line-height: 175%;
  color: #f5f5f5;
}
@media (width >= 768px) {
  .top-recruit__message {
    font-size: 2.5rem;
  }
}

.blog {
  padding-block: 2rem 9rem;
}
.blog__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.5rem 4rem;
  margin-top: 4rem;
}
@media (width >= 768px) {
  .blog__content--magazine {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 768px) {
  .blog__img {
    flex: 0 25rem;
  }
}
@media (width >= 768px) {
  .blog__img--works {
    flex: 0 50%;
  }
}
.blog__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
}
.blog__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width >= 768px) {
  .blog__column {
    flex-direction: row;
    gap: 3.5rem;
  }
}
@media (width >= 768px) {
  .blog__column--works {
    flex-direction: row-reverse;
  }
}
.blog__column--magazine {
  display: block;
}
.blog__flex {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.blog__text {
  flex: 1;
  margin-left: 0.5rem;
}
@media (width >= 768px) {
  .blog__text {
    margin-top: 1rem;
  }
}
.blog__text--news {
  margin-top: 0;
  margin-left: 0;
}
.blog__date {
  font-size: 0.875rem;
  color: #878787;
}
.blog__title {
  margin-top: 0.25rem;
  font-weight: bold;
  line-height: 175%;
  letter-spacing: 0.1rem;
}
.blog__excerpt {
  margin-top: 0.5rem;
  line-height: 175%;
}
.blog__readmore {
  margin-top: 1.5rem;
  color: #e97470;
  text-align: end;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 5rem;
}
.pagination__item .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.5rem;
  color: #e97470;
  text-align: center;
}
.pagination__item .page-numbers.current {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.company {
  padding-block: 4rem;
}
@media (width >= 768px) {
  .company {
    padding-block: 90px;
  }
}
.company__title {
  color: #e97470;
  font-weight: 300;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
@media (width >= 768px) {
  .company__title {
    font-size: 3rem;
    line-height: 150%;
  }
}
.company__text {
  margin-block: 40px;
  line-height: 200%;
}
@media (width >= 768px) {
  .company__text {
    line-height: 250%;
  }
}
.company__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width >= 768px) {
  .company__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.company__string {
  flex: 0 0 55%;
}
.company__img {
  flex: 0 0 42%;
}

.company-info {
  background: rgba(255, 255, 255, 0.75);
  padding: 70px 1rem;
  border-radius: 2rem;
}
@media (width >= 768px) {
  .company-info {
    border-radius: 4rem;
  }
}
.company-info__list {
  display: flex;
  max-width: 800px;
  margin-inline: auto;
  line-height: 200%;
}
.company-info__list--first {
  margin-top: 3.5rem;
}
.company-info__title {
  flex: 0 0 23%;
  border-top: 1px solid #e7b7b5;
  padding: 0.5rem;
}
@media (width >= 768px) {
  .company-info__title {
    padding-left: 0.5rem;
    padding-block: 1rem;
  }
}
.company-info__title--last {
  border-bottom: 1px solid #e7b7b5;
}
.company-info__text {
  flex: 0 0 77%;
  border-top: 1px solid #e2e2e2;
  padding: 0.5rem;
}
@media (width >= 768px) {
  .company-info__text {
    padding-left: 7.5%;
    padding-block: 1rem;
  }
}
.company-info__text--last {
  border-bottom: 1px solid #e2e2e2;
}
.company-info__text a {
  text-decoration: underline;
}

.company-access {
  padding-block: 90px 80px;
}
.company-access__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width >= 768px) {
  .company-access__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.company-access__string {
  flex: 0 0 35%;
}
.company-access__text {
  margin-top: 35px;
  color: #000;
  line-height: 250%;
  text-align: center;
}
.company-access__map {
  flex: 0 0 60%;
}
.company-access__map iframe {
  width: 100%;
}

.service-top {
  margin-block: 115px 8rem;
  text-align: center;
  color: #e97470;
  line-height: 175%;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
}
@media (width >= 768px) {
  .service-top {
    font-size: 44px;
  }
}
.service-top span {
  letter-spacing: 1rem;
  background: linear-gradient(transparent 67%, rgba(248, 212, 172, 0.81) 67%);
}

.service {
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.7);
  padding-block: 42px 6rem;
}
.service__heading {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.service__heading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 10px;
  left: 0;
  background: #e97470;
}
.service__heading p {
  color: #e97470;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
}
@media (width >= 768px) {
  .service__heading p {
    font-size: 44px;
  }
}
.service__heading img {
  display: inline-block;
  margin-inline: 10px 5px;
  width: 56px;
}
@media (width >= 768px) {
  .service__heading img {
    width: 97px;
  }
}
.service__banner {
  display: flex;
  align-items: center;
  margin-top: 6rem;
  flex-direction: column;
  padding: 35px 8% 1.5rem;
  gap: 2rem;
}
@media (width >= 768px) {
  .service__banner {
    padding: 70px 16% 50px;
    flex-direction: row-reverse;
    gap: 12%;
  }
}
.service__banner--reverse {
  position: relative;
}
@media (width >= 768px) {
  .service__banner--reverse {
    flex-direction: row;
  }
}
.service__banner--reverse::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  border-radius: 0 4rem 4rem 0;
  opacity: 0.75;
  background: #f3f1f1;
}
.service__banner--center {
  margin-top: 3rem;
}
.service__img {
  flex: 0 0 30%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.service__img img {
  width: 80%;
}
@media (width >= 768px) {
  .service__img img {
    width: 100%;
  }
}
.service__string {
  flex: 0 0 58%;
  position: relative;
  z-index: 1;
}
.service__titles {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0.75rem;
}
@media (width >= 768px) {
  .service__titles {
    margin-bottom: 2rem;
    gap: 40px;
  }
}
.service__number {
  color: #e97470;
  font-weight: 300;
  font-size: 1.75rem;
}
@media (width >= 768px) {
  .service__number {
    font-size: 40px;
  }
}
.service__line {
  width: 1px;
  height: 33px;
  background-color: #e97470;
}
.service__title {
  color: #e97470;
  font-weight: 600;
  font-size: 1.75rem;
}
@media (width >= 768px) {
  .service__title {
    font-size: 40px;
  }
}
.service__text {
  line-height: 200%;
}
@media (width >= 768px) {
  .service__text {
    line-height: 250%;
  }
}

.service-under {
  background: #f5f5f5;
  padding-block: 6rem;
}
.service-under__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 768px) {
  .service-under__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.service-under__content--reverse {
  margin-top: 140px;
}
@media (width >= 768px) {
  .service-under__content--reverse {
    flex-direction: row-reverse;
  }
}
.service-under__string {
  flex: 0 0 47.5%;
}
.service-under__title {
  margin-block: 3.5rem 1.5rem;
  line-height: 150%;
  font-size: 1.5rem;
}
@media (width >= 768px) {
  .service-under__title {
    font-size: 2.25rem;
  }
}
.service-under__text {
  line-height: 200%;
}
.service-under__img {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
}
.service-under__img img {
  width: 80%;
}
@media (width >= 768px) {
  .service-under__img img {
    width: 100%;
  }
}

.service-follow {
  background: #f5f5f5;
  padding-bottom: 120px;
}
.service-follow__content {
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 1.5rem;
  padding: 40px 6%;
  flex-direction: column;
  border-radius: 2rem;
}
@media (width >= 768px) {
  .service-follow__content {
    border-radius: 4rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
  }
}
.service-follow__img {
  flex: 0 0 53%;
}
.service-follow__img img {
  border-radius: 2rem;
}
.service-follow__string {
  flex: 0 0 40%;
}
.service-follow__title {
  color: #e97470;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
@media (width >= 768px) {
  .service-follow__title {
    font-size: 2rem;
  }
}
.service-follow__text {
  margin-top: 2rem;
  line-height: 200%;
}

.about-top {
  margin-top: 7rem;
  background: rgba(235, 165, 163, 0.7215686275);
  position: relative;
  padding-block: 45px 4rem;
}
@media (width >= 768px) {
  .about-top {
    padding-block: 90px 120px;
  }
}
.about-top__titles {
  gap: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  font-size: 44px;
  margin-bottom: 4rem;
}
@media (width >= 768px) {
  .about-top__titles {
    margin-bottom: 140px;
    font-size: 6rem;
    flex-direction: row;
    align-items: end;
  }
}
.about-top__title {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2rem;
}
.about-top__supplement {
  font-size: 1.25rem;
  letter-spacing: 1px;
  line-height: 150%;
}
@media (width >= 768px) {
  .about-top__supplement {
    font-size: 1.5rem;
  }
}
.about-top__cards {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
@media (width >= 768px) {
  .about-top__cards {
    flex-direction: row;
    justify-content: space-between;
  }
}
.about-top__card {
  flex: 0 0 30%;
  border-radius: 8px;
  background: white;
  box-shadow: 0 4px 17.7px -4px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-block: 1.25rem 1rem;
}
@media (width >= 768px) {
  .about-top__card {
    padding-block: 2.5rem 2rem;
  }
}
.about-top__heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-5.787deg);
  background: #e97470;
  color: white;
  letter-spacing: 0.1rem;
  padding: 0.25rem 0.5rem;
  top: -20px;
  font-size: 1.125rem;
}
@media (width >= 768px) {
  .about-top__heading {
    top: -1.125rem;
    padding-inline: 1.5rem;
    font-size: 1.5rem;
  }
}
.about-top__text {
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 175%;
}
@media (width >= 768px) {
  .about-top__text {
    font-size: 1.25rem;
  }
}
.about-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 3rem solid rgba(235, 165, 163, 0.7215686275);
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
}
@media (width >= 768px) {
  .about-top::after {
    border-top: 5rem solid rgba(235, 165, 163, 0.7215686275);
    border-left: 5rem solid transparent;
    border-right: 5rem solid transparent;
  }
}

.about {
  background: #f5f5f5;
  padding-block: 80px;
}
@media (width >= 768px) {
  .about {
    padding-block: 160px;
  }
}
.about__title {
  color: #e97470;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0.1rem;
  font-size: 1.75rem;
}
@media (width >= 768px) {
  .about__title {
    font-size: 2.5rem;
  }
}
.about__supplement {
  color: rgba(233, 116, 112, 0.7);
  text-align: center;
  font-weight: 300;
  line-height: 150%;
  margin-block: 1rem 26px;
  font-size: 20px;
}
@media (width >= 768px) {
  .about__supplement {
    font-size: 1.5rem;
  }
}
.about__title-text {
  text-align: center;
  line-height: 200%;
  word-break: keep-all;
}
@media (width >= 768px) {
  .about__title-text {
    line-height: 250%;
  }
}
.about__list {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (width >= 768px) {
  .about__list {
    margin-top: 8rem;
  }
}
.about__card {
  background-color: white;
  border-radius: 0 2rem 2rem 0;
  overflow: hidden;
  margin-inline: 0 auto;
  max-width: 90%;
}
@media (width >= 768px) {
  .about__card {
    border-radius: 0 3rem 3rem 0;
  }
}
.about__card--reverse {
  margin-inline: auto 0;
  border-radius: 2rem 0 0 2rem;
}
@media (width >= 768px) {
  .about__card--reverse {
    border-radius: 3rem 0 0 3rem;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 1024px;
}
@media (width >= 768px) {
  .about__content {
    flex-direction: row;
  }
}
.about__content--reverse {
  align-self: flex-end;
  border-radius: 2rem 0 0 2rem;
}
@media (width >= 768px) {
  .about__content--reverse {
    flex-direction: row-reverse;
  }
}
.about__img {
  flex: 40%;
}
.about__img img {
  height: 100%;
  object-fit: cover;
}
.about__string {
  flex: 60%;
  padding: 1.25rem;
}
@media (width >= 768px) {
  .about__string {
    padding: 2rem;
    padding-right: 3rem;
  }
}
@media (width >= 768px) {
  .about__string--reverse {
    padding-left: 3rem;
  }
}
.about__heading {
  color: #e97470;
  font-weight: 300;
  letter-spacing: 0.1rem;
  line-height: 175%;
  font-size: 1.25rem;
}
@media (width >= 768px) {
  .about__heading {
    font-size: 1.75rem;
  }
}
.about__text {
  margin-top: 1rem;
  line-height: 200%;
}

.recruit-personnel {
  padding-block: 5rem 3rem;
}
.recruit-personnel__content {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (width >= 768px) {
  .recruit-personnel__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.recruit-personnel__img {
  flex: 0 0 45%;
}
.recruit-personnel__img img {
  border-radius: 2rem;
}
@media (width >= 768px) {
  .recruit-personnel__img img {
    border-radius: 4rem;
  }
}
.recruit-personnel__string {
  flex: 0 0 50%;
}
.recruit-personnel__string div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  font-size: 1.25rem;
  margin-left: 0.5rem;
}
@media (width >= 768px) {
  .recruit-personnel__string div {
    margin-left: 0;
  }
}
.recruit-personnel__string div img {
  width: 1.5rem;
}

.recruit-detail {
  padding-block: 4rem;
}
.recruit-detail__content {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (width >= 768px) {
  .recruit-detail__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.recruit-detail__column {
  background-color: white;
  border-radius: 2rem;
  padding: 1.5rem 2rem;
}
.recruit-detail__heading {
  text-align: center;
  margin-top: 2rem;
  color: #e97470;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
.recruit-detail__img {
  display: flex;
  justify-content: center;
}
.recruit-detail__img img {
  aspect-ratio: 5/4;
  object-fit: contain;
  width: 80%;
}
@media (width >= 768px) {
  .recruit-detail__img img {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.recruit-detail__text {
  margin-top: 1rem;
  line-height: 200%;
}

.recruit-entry {
  padding-block: 3rem 5rem;
}
@media (width >= 768px) {
  .recruit-entry {
    padding-block: 6rem 10rem;
  }
}
@media (width >= 768px) {
  .recruit-entry__content {
    position: relative;
  }
}
.recruit-entry__img img {
  object-fit: cover;
  border-radius: 2rem;
  aspect-ratio: 4/3;
}
@media (width >= 768px) {
  .recruit-entry__img img {
    aspect-ratio: 2/1;
    border-radius: 4rem;
  }
}
.recruit-entry__activities {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (width >= 768px) {
  .recruit-entry__activities {
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(50%);
    padding-inline: 9rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
.recruit-entry__link {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 2rem;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  transition: 0.3s;
}
.recruit-entry__link:hover {
  transition: 0.3s;
  transform: scale(105%);
}
.recruit-entry__link-string {
  text-align: center;
  flex: 1 1 0%;
}
.recruit-entry__link-title {
  color: #e97470;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
}
.recruit-entry__link-text {
  color: #e97470;
}
@media (width >= 768px) {
  .recruit-entry__link-text {
    margin-top: 0.25rem;
    font-size: 1.25rem;
  }
}
.recruit-entry__link-arrow img {
  width: 3rem;
}

.recruit-welfare {
  padding-block: 4rem;
}
.recruit-welfare__content {
  display: grid;
  margin-top: 52px;
  background: #e2e2e2;
  padding: 1px;
  gap: 1px;
}
@media (width >= 768px) {
  .recruit-welfare__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.recruit-welfare__column {
  background-color: white;
  padding: 1.5rem;
}
@media (width >= 768px) {
  .recruit-welfare__column {
    padding: 2.5rem 2rem;
  }
}
.recruit-welfare__flex {
  display: flex;
}
.recruit-welfare__string {
  flex: 1 1 0%;
}
.recruit-welfare__index {
  font-weight: 300;
}
.recruit-welfare__heading {
  font-weight: 300;
  font-size: 1.5rem;
  margin-top: 0.75rem;
}
@media (width >= 768px) {
  .recruit-welfare__heading {
    font-size: 2rem;
    margin-top: 1rem;
  }
}
.recruit-welfare__text {
  margin-top: 0.75rem;
}
@media (width >= 768px) {
  .recruit-welfare__text {
    margin-top: 18px;
  }
}
.recruit-welfare__img img {
  width: 56px;
}
@media (width >= 768px) {
  .recruit-welfare__img img {
    width: 92px;
  }
}

.recruit-flow {
  padding-block: 4rem 6rem;
}
@media (width >= 768px) {
  .recruit-flow {
    padding-block: 6rem 140px;
  }
}
.recruit-flow__content {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  gap: 52px;
  margin-top: 1.5rem;
  flex-direction: column;
}
@media (width >= 768px) {
  .recruit-flow__content {
    flex-direction: row;
  }
}
.recruit-flow__circle {
  width: 100%;
  background-color: #eba5a3;
  display: grid;
  place-items: center;
  position: relative;
  padding-block: 0.75rem;
  border-radius: 9999px;
}
@media (width >= 768px) {
  .recruit-flow__circle {
    aspect-ratio: 1/1;
  }
}
.recruit-flow__circle:not(:last-child)::after {
  content: url("../public/img/common/allow.svg");
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg) scale(75%);
}
@media (width >= 768px) {
  .recruit-flow__circle:not(:last-child)::after {
    top: 50%;
    left: calc(100% + 26px);
    transform: translate(-50%, -50%) rotate(0);
  }
}
.recruit-flow__text {
  color: white;
  font-weight: 300;
  letter-spacing: 0.1rem;
  font-size: 20px;
}
@media (width >= 768px) {
  .recruit-flow__text {
    font-size: 2rem;
  }
}
.recruit-flow__bubble {
  margin-top: 4rem;
  max-width: 1080px;
  margin-inline: auto;
  padding-block: 0.75rem;
  background-color: white;
  border-radius: 9999px;
  position: relative;
  text-align: center;
  padding-inline: 1.5rem;
}
@media (width >= 768px) {
  .recruit-flow__bubble {
    font-size: 20px;
  }
}
.recruit-flow__bubble::before {
  content: "";
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 1.5rem solid white;
  position: absolute;
  left: 4rem;
  bottom: 100%;
}

.requirement .page-heading {
  margin-top: 8rem;
}
.requirement__card {
  margin-top: 6rem;
  margin-bottom: 8rem;
  background-color: #fff;
  padding-block: 4rem;
  border-radius: 4rem;
}
.requirement__table {
  max-width: 60rem;
  margin-inline: auto;
  margin-top: 4rem;
}
.requirement__table tbody tr th,
.requirement__table tbody tr td {
  padding-block: 2rem;
}
.requirement__table tbody tr th {
  width: 20%;
  border-top: 1px solid #e97470;
}
.requirement__table tbody tr th:last-of-type {
  border-bottom: 1px solid #e97470;
}
.requirement__table tbody tr td {
  border-top: 1px solid #e2e2e2;
  line-height: 250%;
}
.requirement__table tbody tr td:last-of-type {
  border-bottom: 1px solid #e2e2e2;
}
.requirement__button {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notfound .page-heading {
  margin-top: 8rem;
}
.notfound__card {
  padding-block: 4rem;
  margin-top: 6rem;
  margin-bottom: 8rem;
  background-color: #fff;
  border-radius: 4rem;
}
.notfound__table {
  max-width: 60rem;
  margin-inline: auto;
  margin-top: 4rem;
}
.notfound__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.single__flex {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.single__date {
  font-size: 0.875rem;
  color: #878787;
}
.single__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: thin;
}
@media (width >= 768px) {
  .single__title {
    font-size: 2rem;
  }
}
.single__thumbnail {
  margin-top: 1.25rem;
  border-radius: 2rem;
}
.single__content {
  margin-top: 3rem;
  line-height: 200%;
}
.single__content h2 {
  padding-block: 1rem;
  margin-block: 2rem 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 1px solid #878787;
}
@media (width >= 768px) {
  .single__content h2 {
    font-size: 2rem;
  }
}
.single__content h2:not(:first-of-type) {
  margin-top: 5rem;
}
.single__content h3 {
  padding-block: 0.5rem;
  margin-block: 2.5rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #878787;
}
@media (width >= 768px) {
  .single__content h3 {
    font-size: 1.5rem;
  }
}
.single__content .voice-ctj-title {
  display: flex;
  gap: 0.75rem;
  align-items: end;
  justify-content: center;
}
.single__content .voice-ctj-title img {
  width: 3rem;
  height: 3rem;
}
.single__content p {
  margin-top: 1rem;
}
.single__content p img {
  display: inline-block;
}
.single__content a {
  color: skyblue;
  text-decoration: underline;
}
.single__content figure {
  padding-block: 1rem;
}
.single__content .wp-block-vk-blocks-table-of-contents-new {
  padding: 0.75rem 1.5rem 1.5rem;
  margin-top: 1rem;
  background: #f5f5f5;
  border-radius: 2rem;
}
.single__content .vk_tableOfContents_list_item {
  font-size: 0.875rem;
}
.single__content .vk_tableOfContents_title {
  font-weight: bold;
  text-align: center;
}
.single__content .wp-block-vk-blocks-balloon {
  align-items: center;
}
.single__content .vk_balloon_content {
  background-color: #e2e2e2 !important;
}
.single__content .vk_balloon_content_before {
  border-right-color: #e2e2e2 !important;
}
.single__content .vk_balloon_icon_image {
  border-radius: 1000px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.single__content .vk_balloon_icon_name {
  line-height: 150%;
}
.single__content .cans-access img {
  width: 10rem;
}
.single__content .related-works-ribbon {
  display: none;
}
.single__content .related-works-2column {
  gap: 1.5rem;
}
.single__content .related-works-right-box p {
  margin-top: 0;
  font-weight: bold;
}
.single__content .related-works-right-box a {
  padding: 0;
  margin-top: 0.5rem;
}
.single__content .related-works-left-colmun img {
  border-radius: 2rem;
}
.single__content .wp-block-columns {
  justify-content: space-between;
}
.single__content .voice-othercustomer-background {
  display: none;
}
.single__content input {
  display: none;
}
.single__button {
  margin-bottom: 6rem;
  text-align: center;
}

.contact {
  padding-top: 6rem;
}
@media (width >= 768px) {
  .contact {
    padding-top: 0;
  }
}
.contact__message {
  margin-top: 2rem;
  line-height: 200%;
  text-align: center;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 2rem;
}
@media (width >= 768px) {
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact__field {
  padding-block: 1rem;
}
.contact__field--approval {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.contact__label {
  margin-left: 0.3rem;
}
.contact__label a {
  color: #0d6efd;
  text-decoration: underline;
}
.contact__required {
  margin-left: 0.5em;
  font-size: 0.8rem;
  font-weight: 500;
  color: #e74c3c;
}
.contact__control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #e2e2e2;
  border-radius: 0.5rem;
}
.contact__control:focus {
  outline: 4px solid skyblue;
}
.contact__control--select {
  padding-right: 2.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.contact__control--textarea {
  height: 12rem;
  line-height: 175%;
}
.contact__checkbox {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  appearance: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #878787;
  border-radius: 0.25rem;
}
.contact__checkbox:checked {
  background-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  border-color: #0d6efd;
}
.contact__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.contact__button-wrapper span.wpcf7-spinner {
  display: none;
}
.contact__button {
  display: block;
  padding: 0.75rem 4rem;
  color: white;
  text-align: center;
  background: linear-gradient(120deg, #f7b662 15%, #fe5196 80%);
  border-radius: 9999px;
  transition: 0.3s;
}
.contact__button:hover {
  cursor: pointer;
  transform: scale(105%);
  transition: 0.3s;
}
@media (width >= 768px) {
  .contact__button {
    display: inline-block;
  }
}

.contact-completed {
  padding: 1rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
  line-height: 200%;
  background-color: #fff;
  border-radius: 2rem;
}
@media (width >= 768px) {
  .contact-completed {
    padding: 6rem;
    border-radius: 4rem;
  }
}
.contact-completed__message {
  font-size: 1.5rem;
  line-height: 200%;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
