@charset "utf-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap";

.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
}

.screen-reader-response,
.wpcf7-not-valid-tip {
  display: none;
}


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  padding:0;
  margin:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  border:0;
  outline:0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .7;
  color: inherit;
  filter: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

:root {
  --color-brand: rgba(215, 50, 35, 1);
  --color-accent: rgba(175, 171, 171, 1);
  --color-base: rgba(55, 45, 45, 1);
}

body {
  text-align: left;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  background: rgba(239, 238, 238, 1);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
}

.heading-primary {
  position: relative;
  margin: auto;
  max-width: 1120px;
  padding-left: 16px;
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.heading-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 100%;
  height: 8px;
  background: var(--color-accent);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transform: translateY(-50%);
}

.heading-primary--reverse {
  margin: auto;
  max-width: 1120px;
  width: 100%;
}

.heading-primary--reverse span {
  position: relative;
  padding-right: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.heading-primary--reverse span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100vw;
  height: 8px;
  background: var(--color-accent);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  transform: translateY(-50%);
}

@media (max-width: 960px) {
  .heading-primary {
    padding-left: 8px;
    font-size: 24px;
  }
}

a.go-top {
  display: inline-block;
  text-align: center;
  width: 176px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 1);
  background: var(--color-base);
  border-radius: 24px;
}

/* header */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  margin: auto;
  background: rgba(255, 255, 255, 0.95);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1280px;
  height: 80px;
}

.header__logo img {
  width: 112px;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 1.56vw;
}

.header__menu-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
}

.header__menu-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.015em;
  color: var(--color-base);
}

.header__menu-link.active {
  color: var(--color-brand);
}

.header__menu-link:hover {
  opacity: 1;
  color: var(--color-brand);
}

.hamburger {
  display: none;
}

.header_after {
  height: 80px;
}

@media (max-width: 960px) {
  .header__container {
    padding: 0 0 0 24px;
  }

  .header__content {
    position: absolute;
    right: 16px;
  }

  .header__menu-list {
    flex-direction: column;
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 2;
    overflow-y: auto;
	padding: 16px 16px 40px;
    max-height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    transform: translateX(100%);
  }

  .header__menu.toggle {
    transform: translateX(0);
  }

  .hamburger {
    display: block;
    padding: 16px;
    width: 56px;
    height: auto;
    cursor: pointer;
    z-index: 3;
  }

  .hamburger.toggle {
    width: 48px;
  }

  .no-scroll {
    position: fixed;
    top: 0;
    overflow: hidden;
    width: 100%;
  }
}
/* home */
/* home-fv */
.home-fv {
  text-align: center;
  background: var(--color-base);
}

.home-fv__image {
  max-width: 1120px;
  width: 100%;
}

@media (max-width: 960px) {
  .home-fv__image {
    height: 600px;
    object-fit: cover;
  }
}

/* home-about */
.home-about {
  overflow: hidden;
  padding: 80px 16px 80px;
}

.home-about__container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 80px auto 40px;
  max-width: 1120px;
  width: 100%;
}

.home-about__text-block {
  width: 735px;
}

.home-about__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

.home-about__highlight {
  color: var(--color-brand);
}

.home-about__text + .home-about__text {
  margin-top: 24px;
}

.home-about__image {
  position: relative;
}

.home-about__image::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 204px;
  background: rgba(255, 255, 255, 1);
}

.home-about__image img {
  width: 363px;
  height: 204px;
  object-fit: cover;
  border-top-left-radius: 102px;
  border-bottom-left-radius: 102px;
}

.home-about__link {
  margin: auto;
  max-width: 1120px;
  width: 100%;
}

.home-about__link a {
  display: inline-block;
  text-align: center;
  width: 119px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 1);
  background: var(--color-base);
  border-radius: 24px;
}

@media (max-width: 960px) {
  .home-about__container {
    flex-direction: column;
    gap: 40px;
  }

  .home-about__text-block {
    max-width: 100%;
  }
}

/* home-service */
.home-service {
  overflow: hidden;
  margin-top: -80px;
  padding: 160px 16px 80px;
}

.home-service__container {
  margin: 80px auto 0;
  max-width: 1120px;
  width: 100%;
}

a.home-service__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-brand);
  text-decoration: underline;
}

.home-service__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

/* home-news-list */
.home-news-list {
  padding: 80px 16px;
  background: rgba(255, 255, 255, 1);
}

.home-news-list__title {
  margin-bottom: 80px;
}

.home-news-list__link {
  margin: auto;
  max-width: 1120px;
  width: 100%;
}

.home-news-list__link a {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 16px 0 0 auto;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.015em;
  color: var(--color-base);
}

.home-news-list__link a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/wp-content/uploads/img/arrow-right-dark.svg");
}

/* home-recruit */
.home-recruit {
  overflow: hidden;
  padding: 80px 16px 80px;
}

.home-recruit__image-link {
  display: block;
  margin: 80px auto 0;
  max-width: 1120px;
  width: 100%;
}

/* home-contact */
.home-contact {
  padding: 80px 16px 160px;
}

.home-contact__container {
  margin: 80px auto 0;
  max-width: 1120px;
  width: 100%;
}

a.home-contact__link {
  display: inline-block;
  text-align: center;
  width: 190px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 1);
  background: var(--color-base);
  border-radius: 24px;
}

/* privacy-policy */
.privacy-policy {
  padding: 80px 16px 160px;
}

.privacy-policy__container {
  margin: 80px auto 0;
  max-width: 742px;
  width: 100%;
  color: var(--color-base);
}

.privacy-policy__heading {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-brand);
}

.privacy-policy__section + .privacy-policy__section {
  margin-top: 24px;
}

.privacy-policy__subheading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-brand);
}

.privacy-policy__list {
  list-style-position: inside;
}

.privacy-policy__list--round {
  list-style-type: none;
}

.privacy-policy__list--paren {
  list-style: none;
  counter-reset: number;
}

.privacy-policy__list--paren li {
  counter-increment: number;
}

.privacy-policy__list--paren li::before {
  display: inline-block;
  content: "(" counter(number) ")";
  margin-right: 0.3em;
}

p + .privacy-policy__list--paren {
  margin-top: 24px;
}

.privacy-policy address {
  margin-top: 24px;
  font-style: normal;
}

.privacy-policy__revision {
  margin-top: 24px;
}

.mt-24 {
  margin-top: 24px;
}

/* news-list */
.news-fv {
  padding: 80px 16px;
}

.news-list {
  margin-bottom: 80px;
  padding: 80px 16px;
  background: rgba(255, 255, 255, 1);
}

.news-list__container {
  margin: auto;
  max-width: 1120px;
  width: 100%;
  border-bottom: solid 2px rgba(215, 213, 213, 1);
}

.news-list__item-wrapper {
  border-top: solid 2px rgba(215, 213, 213, 1);
}

.news-list__item {
  display: flex;
  gap: 16px;
  position: relative;
  padding: 16px 0;
}

.news-list__info {
  margin-right: 72px;
  width: 100px;
}

.news-list__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-list__category {
  text-align: center;
  width: 100px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 1);
  background: var(--color-brand);
  border-radius: 4px;
}

.news-list__date {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

.news-list__image {
  width: 174px;
  aspect-ratio: 343 / 194;
  object-fit: cover;
  border-radius: 4px;
}

.news-list__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  align-self: center;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

@media (max-width: 960px) {
  .news-fv__title {
    padding-left: 8px;
    font-size: 24px;
  }

  .news-list__item {
    flex-direction: column;
    align-items: center;
  }

  .news-list__image {
    order: 1;
    width: 343px;
  }

  .news-list__info {
    order: 2;
    align-self: flex-start;
  }

  .news-list__text {
    order: 3;
    align-self: flex-start;
  }
}

/* news-pagination */
.pagination {
  margin-top: 56px;
}

.pagination__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.015em;
  color: var(--color-accent);
  list-style-type: none;
}

.pagination__item--current {
  color: var(--color-base);
}

.pagination__number {
  padding: 0 12px;
}

.pagination__icon--left-double {
  width: 24px;
  height: 16px;
  transform: scale(-1, 1);
}

.pagination__icon--left {
  width: 16px;
  height: 16px;
  transform: scale(-1, 1);
}

.pagination__icon--right {
  width: 16px;
  height: 16px;
}

.pagination__icon--right-double {
  width: 24px;
  height: 16px;
}

/* news-single */
.news-single {
  margin: 80px auto;
  padding: 80px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(0, 0, 0, 1);
  background: rgba(255, 255, 255, 1);
}

.news-single__content {
  display: flex;
  justify-content: center;
  gap: 110px;
  margin: auto;
  max-width: 1120px;
  width: 100%;
}

.news-single__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  max-width: 742px;
  width: calc(100% - 378px);
}

.news-single h1 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

.news-single__image {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.news-single__image img {
  border-radius: 4px;
}

.news-single__category {
  text-align: center;
  width: 100px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 1);
  background: var(--color-brand);
  border-radius: 4px;
}

.news-single__date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0.005em;
  color: rgba(135, 129, 129, 1);
}

.news-single p.news-single__lead {
  color: var(--color-base);
}

#ez-toc-container {
  margin-bottom: 80px;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(135, 129, 129, 1);
  background: rgba(239, 238, 238, 1);
  border-radius: 4px;
}

.ez-toc-list.ez-toc-list-level-1 {
  font-weight: 700;
  list-style-type: decimal;
}

.news-single h2 {
  margin: 40px 0px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--color-brand);
  border-bottom: 2px solid;
}

.news-single h3 {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: rgba(135, 129, 129, 1);
}

.news-single h3::before {
  flex-shrink: 0;
  content: '';
  margin-top: 4px;
  width: 8px;
  height: 20px;
  background: var(--color-brand);
  border-radius: 4px;
}

.news-single__bold {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(0, 0, 0, 1);
}

.news-single__color {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-brand);
}

.news-single ul {
  list-style-position: inside;
}

.news-single__marker {
  background: linear-gradient(transparent 20%, rgba(235, 152, 145, 0.5) 20%);
}

a.news-single__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(85, 160, 240, 1);
  text-decoration: underline;
}

.news-single__box {
  margin: 40px auto;
  padding: 16px;
  background: rgba(239, 238, 238, 1);
  border-radius: 4px;
}

.news-single__figure {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.news-single__caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.005em;
  color: rgba(135, 129, 129, 1);
}

.news-single__table-wrap {
  margin-top: 40px;
}

.news-single__table-scroll {
  padding-bottom: 12px;
}

.news-single__table {
  min-width: 740px;
  border-collapse: collapse;
  border: 1px solid rgba(215, 213, 213, 1);
}

.news-single__table th, .news-single__table td {
  width: 148px;
  height: 36px;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0.005em;
  color: rgba(0, 0, 0, 1);
  border: 1px solid rgba(215, 213, 213, 1);
}

.news-single__table th {
  background: rgba(239, 238, 238, 1);
}

a.news-single__btn {
  display: inline-block;
  text-align: center;
  margin: 40px auto;
  padding: 0px 24px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 1);
  background: var(--color-base);
  border-radius: 24px;
}

.news-single__aside {
  flex-shrink: 0;
  width: 268px;
  color: var(--color-base);
}

.news-single__aside .news-single__aside-title {
  margin: 0 0 16px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-accent);
  border-bottom: none;
}

.news-single__latest-list {
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(215, 213, 213, 1);
}

.news-single__latest-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(215, 213, 213, 1);
}

.news-single__latest-img {
  border-radius: 4px;
}

.news-single__latest-info {
  margin: 16px auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-single__latest-category {
  text-align: center;
  width: 100px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 1);
  background: var(--color-brand);
  border-radius: 4px;
}

.news-single__latest-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

.news-single__latest-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; 
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.005em;
}

.news-single__latest-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0 auto;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.015em;
  color: var(--color-base);
}

.news-single__latest-more::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/wp-content/uploads/img/arrow-right-dark.svg");
}

@media (max-width: 960px) {
  .news-single {
    padding: 80px 16px;
  }

  .news-single__content {
    flex-direction: column;
    align-items: center;
    gap: 120px;
  }

  .news-single__body {
    max-width: 100%;
    width: 100%;
  }

  .news-single__aside {
    max-width: 343px;
    width: 100%;
  }
}

/*about*/
.about__intro {
  padding: 80px 16px;
}

.about__message {
  margin: 80px auto 0;
  max-width: 742px;
  width: 100%;
}

.about__heading {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--color-brand);
}

.about__heading::before {
  content: '';
  width: 8px;
  height: 20px;
  margin-top: 4px;
  background: var(--color-brand);
  border-radius: 4px;
}

.about__text {
  margin: 20px auto;
  max-width: 742px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

.about__ceo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  margin-top: 40px;
}

.about__ceo-image {
  max-width: 360px;
  width: 100%;
  border-radius: 4px;
}

.about__ceo-name {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

.about__overview {
  margin-bottom: 80px;
  padding: 80px 16px;
  background: rgba(255, 255, 255, 1);
}

.about__overview-container {
  margin: auto;
  max-width: 742px;
  width: 100%;
}

.about__overview-list {
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(215, 213, 213, 1);
}

.about__overview-term {
  margin-top: 20px;
  padding: 16px 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-accent);
  border-top: 2px solid rgba(215, 213, 213, 1);
}

.about__overview-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--color-base);
}

@media (max-width: 960px) {
  .about__ceo {
    flex-direction: column;
  }

  .about__ceo-image {
    order: 1;
  }

  .about__ceo-name {
    order: 2;
  }
}

/* contact */
.contact {
  padding: 80px 16px 160px;
}

.contact__container {
  margin: 80px auto 0;
  width: 100%;
  max-width: 740px;
  color: var(--color-base);
}

.contact__message {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.contact__instruction {
  margin: 40px auto 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.005em;
}

#wpcf7-f5751-o1 .label_title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.005em;
  color: var(--color-brand);
}

.label_require {
  color: var(--color-brand);
}

#wpcf7-f5751-o1 .label_sub_title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0.005em;
  color: var(--color-brand);
}

#wpcf7-f5751-o1 .document_form div {
  margin-bottom: 16px;
}

#wpcf7-f5751-o1 .wpcf7-form-control::placeholder {
  color: rgba(234, 229, 227, 1);
}

#wpcf7-f5751-o1 .wpcf7-form input[type="text"], #wpcf7-f5751-o1 .wpcf7-form input[type="email"], #wpcf7-f5751-o1 .wpcf7-form select {
  width: 100%;
  height: 40px;
  padding: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: rgba(255, 255, 255, 1);
  border: none;
  border-radius: 4px;
}

#wpcf7-f5751-o1 .form-select .wpcf7-form-control-wrap {
  position: relative;
}

#wpcf7-f5751-o1 .form-select .wpcf7-form-control-wrap::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  background: url("/wp-content/uploads/img/arrow-drop.svg") no-repeat center/contain;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  pointer-events: none;
}

#wpcf7-f5751-o1 .wpcf7-form select {
  color: var(--color-base);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

#wpcf7-f5751-o1 .wpcf7-form #from_your-message {
  width: 100%;
  height: 108px;
  padding: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  border: none;
  border-radius: 4px;
}

#wpcf7-f5751-o1 .form-select .wpcf7-form-control-wrap {
  position: relative;
}

#wpcf7-f5751-o1 div.consent_check {
  margin: 20px 0 12px 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

#wpcf7-f5751-o1 .consent_check .wpcf7-form-control-wrap {
  margin-right: 8px;
}

#wpcf7-f5751-o1 .consent_check input {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: 2px solid rgba(190, 177, 170, 1);
  border-radius: 50%;
  outline: none;
}

#wpcf7-f5751-o1 .wpcf7-list-item.first.last {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 20px;
  height: 20px;
}

#wpcf7-f5751-o1 .wpcf7-list-item-label {
  position: absolute;
  left: 0;
  width: 20px;
  line-height: 20px;
  visibility: hidden;
}

#wpcf7-f5751-o1 .consent_check input:checked + .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  visibility: visible;
  content: '';
  background: var(--color-brand);
  border-radius: 50%;
  transform: translateY(-50%);
}

#wpcf7-f5751-o1 .consent-text {
  margin-bottom: 40px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.005em;
}

#wpcf7-f5751-o1 .consent-text a {
  color: var(--color-brand);
  border-bottom: 1px solid;
}

#wpcf7-f5751-o1 .wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 77px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 48px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  letter-spacing: 0.015em;
  cursor: pointer;
  background: var(--color-base);
  border: none;
  border-radius: 24px;
}

#wpcf7-f5751-o1 .wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  opacity: .5;
}

#wpcf7-f5751-o1 .document_form #form_submit {
  margin-bottom: 0;
}

/* contact-thanks */
.contact-thanks {
  padding: 80px 16px 160px;
}

.contact-thanks__container {
  margin: auto;
  max-width: 742px;
  width: 100%;
}

.contact-thanks__image {
  margin-bottom: 40px;
}

/* page-404 */
.page-404 {
  padding: 80px 16px 160px;
}

.page-404__container {
  margin: auto;
  max-width: 742px;
  width: 100%;
}

.page-404__image {
  margin-bottom: 40px;
}

/*footer*/
.footer {
  background: var(--color-base);
}

.footer__container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: auto;
  padding: 16px;
  max-width: 1248px;
  width: 100%;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 1);
  list-style: none;
}

.footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.footer__link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/wp-content/uploads/img/arrow-right-white.svg");
}

.footer__copyright {
  margin-left: auto;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.005em;
  color: var(--color-accent);
}

.footer__logo {
  width: 112px;
}

@media (max-width: 960px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .footer__links {
    order: 1;
    align-self: flex-start;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .footer__logo {
    order: 2;
  }

  .footer__copyright {
    order: 3;
  }
}

