@charset "UTF-8";
img {
  display: block;
  width: 100%;
}

body {
  font-family: "Noto Sans", sans-serif;
}

.c-wrap {
  margin: 0 auto;
  padding-inline: 25px;
  max-width: 900px;
}
@media screen and (min-width: 1080px) {
  .c-wrap {
    max-width: 1250px;
  }
}

.s-hidden {
  display: none !important;
}

.s-md-hidden {
  display: none;
}
@media screen and (min-width: 1080px) {
  .s-md-hidden {
    display: inline-block;
  }
}

@media screen and (min-width: 1080px) {
  .s-lg-hidden {
    display: none !important;
  }
}

.s-hover {
  transition: 0.3s;
}
.s-hover:hover {
  opacity: 0.7;
}

.in-view {
  opacity: 0;
  transition: 0.6s;
}
.in-view.is-show {
  opacity: 1;
}

.in-left {
  opacity: 0;
  transition: 0.5s;
}
@media screen and (min-width: 1080px) {
  .in-left {
    transform: translateX(-5%);
  }
}
.in-left.is-show {
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  .in-left.is-show {
    transform: translateX(0%);
  }
}

.in-right {
  opacity: 0;
  transition: 0.5s;
}
@media screen and (min-width: 1080px) {
  .in-right {
    transform: translateX(5%);
    transition-delay: 0.2s;
  }
}
.in-right.is-show {
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  .in-right.is-show {
    transform: translateX(0%);
  }
}

.header {
  background: #fff;
  width: 100%;
}
.header__inner {
  padding-left: 36px;
  padding-bottom: 55px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (min-width: 1080px) {
  .header__inner {
    padding-bottom: 57px;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1380px) {
  .header__inner {
    padding-left: 150px;
    gap: 41px;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .header__container {
    padding-bottom: 50px;
    width: 100%;
  }
}
.header__logo {
  display: block;
  width: 279px;
  flex-shrink: 0;
}
.header__drawer-icon {
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #000;
  cursor: pointer;
}
.header__drawer-icon span {
  display: block;
  width: 33px;
  height: 1px;
  background: #fff;
}
@media screen and (min-width: 1080px) {
  .header__drawer-icon {
    display: none;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1080px) {
  .header__nav {
    display: block;
  }
}
.header__lists {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1280px) {
  .header__lists {
    gap: 40px;
  }
}
.header__link {
  position: relative;
  font-size: 22px;
  font-weight: 500;
}
.header__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 50%;
  height: 2px;
  background: #000000;
  left: 50%;
  margin-left: -23%;
  bottom: -11px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
}
.header__link.current::after {
  transform: scale(1.1);
}
.header__link:hover::after {
  transform: scale(1.1);
}
.header__link-instagram {
  display: block;
  width: 39px;
}
.header__link-contact {
  display: none;
}
@media screen and (min-width: 1080px) {
  .header__link-contact {
    width: 170px;
    height: 170px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
  }
}
.header__link-contact span {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.drawer-nav {
  position: fixed;
  z-index: 100;
  height: 100dvh;
  width: 100%;
  inset: 0;
  left: 0;
  top: 0;
  background-color: #efefef;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
@media screen and (min-width: 1080px) {
  .drawer-nav {
    display: none;
  }
}
.drawer-nav.is-checked {
  opacity: 1;
  pointer-events: all;
}
.drawer-nav__icon {
  position: absolute;
  right: 33px;
  top: 30px;
  width: 33px;
  height: 29px;
  cursor: pointer;
}
.drawer-nav__icon span {
  display: block;
  background: #000;
  width: 44px;
  height: 1px;
}
.drawer-nav__icon span:nth-of-type(1) {
  transform: rotate(-40deg);
}
.drawer-nav__icon span:nth-of-type(2) {
  transform: rotate(40deg);
}
.drawer-nav__inner {
  padding-top: 140px;
}
.drawer-nav__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 137px;
}
.drawer-nav__lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.drawer-nav__link {
  position: relative;
  font-size: 30px;
  font-weight: 500;
}
.drawer-nav__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 50%;
  height: 2px;
  background: #000000;
  left: 50%;
  margin-left: -23%;
  bottom: -11px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.drawer-nav__link.current::after {
  transform: scale(1.1);
}
.drawer-nav__link:hover::after {
  transform: scale(1.1);
}
.drawer-nav__instagram {
  display: block;
  width: 52px;
}
.drawer-nav__link-contact {
  padding-block: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000;
  border-radius: 30px;
  width: 348px;
}
.drawer-nav__link-contact span {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}
.drawer-nav__link-icon {
  display: block;
  width: 35px;
}
.loading {
  position: fixed;
  z-index: 999;
  inset: 0;
  background: #000;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
}
.loading__logo {
  position: absolute;
  display: block;
  width: 128px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home .hero {
  position: relative;
  z-index: 0;
}
.home .hero__title {
  position: absolute;
  display: block;
  width: 445px;
  z-index: 2;
  right: 8px;
  top: -46px;
}
@media screen and (min-width: 1080px) {
  .home .hero__title {
    right: calc(50% - 517px);
    top: -94px;
  }
}
.home .hero #hero-swiper {
  padding-top: 60px;
}
@media screen and (min-width: 1080px) {
  .home .hero #hero-swiper {
    padding-top: 7px;
    height: 642px;
  }
}
.home .hero__image {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .home .hero__image {
    width: 100%;
    height: 100%;
  }
}
.home .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home .about {
  padding-block: 62px 30px;
}
.home .about__title {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
.home .about__title span:nth-of-type(1), .home .about__title span:nth-of-type(3) {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
  .home .about__title span:nth-of-type(1), .home .about__title span:nth-of-type(3) {
    font-size: 42px;
  }
}
.home .about__image {
  display: block;
  width: 55px;
}
.home .about__text {
  margin-top: 37px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 217%;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1080px) {
  .home .about__text {
    font-size: 26px;
    line-height: 200%;
  }
}
.home .lead {
  margin-top: 44px;
}
@media screen and (min-width: 1080px) {
  .home .lead {
    margin-top: 31px;
    overflow: hidden;
  }
  .home .lead .c-wrap {
    padding: 0;
    max-width: 100%;
    position: relative;
    height: 507px;
  }
}
.home .lead__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (min-width: 1080px) {
  .home .lead__inner {
    flex-direction: row;
    justify-content: center;
    min-width: 1500px;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.home .lead__item {
  display: block;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .home .lead__item {
    overflow: hidden;
    width: 56%;
    height: 453px;
    height: fit-content;
    flex-shrink: 0;
  }
  .home .lead__item:nth-of-type(1) {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
  }
  .home .lead__item:nth-of-type(1) .lead__title {
    transform: translate(-54%, -71%);
  }
  .home .lead__item:nth-of-type(2) {
    margin-top: 57px;
    margin-left: -200px;
    right: 0;
    clip-path: polygon(21% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .home .lead__item:nth-of-type(2) .lead__title {
    transform: translate(-45%, -50%);
  }
}
.home .lead__item:hover .lead__title::after {
  opacity: 1;
}
.home .lead__item::before {
  position: absolute;
  content: "";
  width: calc(100% - 26px);
  height: calc(100% - 26px);
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 1080px) {
  .home .lead__item::before {
    display: none;
  }
}
.home .lead__title {
  position: absolute;
  font-size: 36px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  transform-origin: center;
  display: inline-block;
}
.home .lead__title::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 234%;
  top: 50%;
  left: 50%;
  transform: translate(-52%, -50%);
  border: 1px solid #fff;
  opacity: 0;
  transition: 0.2s;
}
.home .lead__image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 700/400;
}
@media screen and (min-width: 1080px) {
  .home .lead__image {
    aspect-ratio: auto;
    height: 480px;
  }
}
.home .lead__image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.35;
  top: 0;
  left: 0;
}
.home .lead__image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.home .gallery {
  margin-top: 65px;
}
@media screen and (min-width: 1080px) {
  .home .gallery {
    margin-top: 94px;
  }
}
.home .gallery .swiper-wrapper {
  transition-timing-function: linear;
}
.home .gallery .swiper-slide {
  width: auto;
}
.home .gallery__image {
  overflow: hidden;
  display: block;
  width: 434px;
  aspect-ratio: 434/310;
  border-radius: 16px;
}
@media screen and (min-width: 1080px) {
  .home .gallery__image {
    width: 350px;
    aspect-ratio: 350/250;
  }
}
.home .gallery__image img {
  object-fit: cover;
  object-position: center;
}
.home .recruit {
  margin-top: 63px;
  padding-block: 70px 80px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .home .recruit {
    margin-top: 87px;
    padding-block: 146px 125px;
  }
}
.home .recruit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .recruit__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.home .recruit__title span:nth-of-type(1) {
  display: block;
  width: 57px;
}
.home .recruit__title span:nth-of-type(2) {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}
.home .recruit__text {
  margin-top: 33px;
  text-align: center;
  font-size: 24px;
  line-height: 214%;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .home .recruit__text {
    font-size: 26px;
    line-height: 200%;
  }
}
.home .recruit__button {
  margin-top: 50px;
  padding-block: 10px 10px;
  background: #fff;
  font-size: 24px;
  font-weight: 700;
  color: #231815;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 512px;
  text-align: center;
  border-radius: 30px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .home .recruit__button {
    margin-top: 60px;
  }
}
.home .recruit__button::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-right.svg) no-repeat center center/contain;
  width: 10px;
  height: 21px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.home .recruit__bg {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  scale: 1.02;
  z-index: -2;
}
@media screen and (min-width: 1080px) {
  .home .recruit__bg {
    scale: 1;
  }
}
.home .recruit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .recruit__bg::after {
  position: absolute;
  content: "";
  background-color: #000;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.fv {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .fv {
    height: 450px;
  }
}
.fv::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
.fv--services {
  background: url(../img/fv-services.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1080px) {
  .fv--services {
    background: url(../img/fv-services-pc.webp) no-repeat center center/cover;
  }
}
.fv--recruit {
  background: url(../img/fv-recruit.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1080px) {
  .fv--recruit {
    background: url(../img/fv-recruit-pc.webp) no-repeat center center/cover;
  }
}
.fv--contact {
  background: url(../img/fv-contact.webp) no-repeat center center/cover;
}
.fv--company {
  background: url(../img/fv-company.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1080px) {
  .fv--company {
    background: url(../img/fv-company-pc.webp) no-repeat center center/cover;
  }
}
.fv__title {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}
.section-about {
  padding-block: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 47px;
}
@media screen and (min-width: 1080px) {
  .section-about {
    padding-block: 55px 52px;
  }
}
.section-about__desc {
  font-size: 32px;
  font-weight: 500;
  line-height: 175%;
  text-align: center;
}
.section-about span {
  display: block;
  width: 80px;
  height: 8px;
  background: #000;
}
.page {
  /* services */
  /* recruit */
}
@media screen and (min-width: 1080px) {
  .page .services {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .page .services .c-wrap {
    padding-inline: 0;
    max-width: 1500px;
  }
}
.page .services__items {
  margin-top: 31px;
  display: flex;
  flex-direction: column;
  gap: 77px;
}
@media screen and (min-width: 1080px) {
  .page .services__items {
    margin-top: 9px;
    gap: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .page .services__item {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .page .services__item:nth-of-type(1) {
    flex-direction: row-reverse;
  }
  .page .services__item:nth-of-type(1) .services__body {
    padding-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .page .services__item:nth-of-type(1) .services__body {
    padding-left: 0;
    padding-right: 56px;
  }
}
.page .services__item:nth-of-type(1) .services__title {
  color: #008bb8;
}
.page .services__item:nth-of-type(1) .services__title::after {
  background: #008bb8;
}
@media screen and (min-width: 1080px) {
  .page .services__body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
  }
}
@media screen and (min-width: 1280px) {
  .page .services__body {
    padding-left: 56px;
  }
}
.page .services__title {
  position: relative;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #138c57;
}
.page .services__title::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 6px;
  background: #138c57;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
}
.page .services__desc {
  margin-top: 67px;
  font-size: 22px;
  font-weight: 500;
  line-height: 194%;
}
@media screen and (min-width: 1080px) {
  .page .services__desc {
    letter-spacing: 0.02em;
    font-size: 20px;
  }
}
.page .services__image {
  margin-top: 27px;
  display: block;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .page .services__image {
    max-width: 720px;
    width: 48%;
    aspect-ratio: 720/545;
    flex-shrink: 0;
  }
  .page .services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.page .works {
  margin-top: 40px;
  padding-block: 56px 75px;
  background: #efefef;
}
@media screen and (min-width: 1080px) {
  .page .works {
    padding-block: 56px 92px;
    background: #fff;
  }
  .page .works .c-wrap {
    padding-inline: 25px;
    margin-top: 6px;
    max-width: 1260px;
  }
}
.page .works__content-sp {
  padding-bottom: 70px;
  position: relative;
  padding-inline: 10px;
}
@media screen and (min-width: 1080px) {
  .page .works__content-sp {
    display: none;
  }
}
.page .works__content-pc {
  display: none;
}
@media screen and (min-width: 1080px) {
  .page .works__content-pc {
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.page .works__head {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .page .works__head {
    display: flex;
    align-items: center;
    gap: 55px;
  }
}
.page .works__head > span {
  display: none;
}
@media screen and (min-width: 1080px) {
  .page .works__head > span {
    display: block;
    width: 34%;
    height: 1px;
    background-color: #000;
  }
}
.page .works__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 19px;
  flex-shrink: 0;
}
.page .works__title span:nth-of-type(1) {
  display: block;
  width: 57px;
}
.page .works__title span:nth-of-type(2) {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.1em;
}
.page .works__text {
  margin-top: 60px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .page .works__text {
    margin-top: 93px;
  }
}
.page .works #works-swiper {
  margin-top: 46px;
}
.page .works #works-pagination {
  bottom: 0px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.page .works #works-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.page .works #works-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
.page .works #works-prev,
.page .works #works-next {
  width: 60px;
  height: 60px;
  top: 40%;
}
.page .works #works-prev::after,
.page .works #works-next::after {
  display: none;
}
.page .works #works-prev {
  left: -15px;
}
.page .works #works-next {
  right: -15px;
}
.page .works #works-next img {
  rotate: 180deg;
}
.page .works__slider {
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 680/550;
}
@media screen and (min-width: 1080px) {
  .page .works__slider {
    width: calc((100% - 80px) / 3);
  }
}
.page .works__slider img {
  object-fit: cover;
  object-position: center;
}
.page .recruit {
  padding-bottom: 19px;
}
@media screen and (min-width: 1080px) {
  .page .recruit {
    padding-bottom: 87px;
  }
}
.page .recruit__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: 190%;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1080px) {
  .page .recruit__desc {
    font-size: 20px;
    text-align: center;
    line-height: 231%;
    font-feature-settings: "palt" 0;
  }
}
.page .recruit__content {
  margin: 55px auto 17px;
  max-width: 760px;
}
@media screen and (min-width: 1080px) {
  .page .recruit__content {
    margin: 73px auto 32px;
  }
}
.page .recruit__title {
  margin-bottom: 13px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page .recruit__lead {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 192%;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .page .recruit__lead {
    font-size: 20px;
  }
}
.page .company {
  padding-block: 46px 15px;
}
@media screen and (min-width: 1080px) {
  .page .company {
    padding-block: 71px 89px;
  }
  .page .company .table {
    margin: 0 auto;
    width: 760px;
  }
  .page .company .table th {
    width: 220px;
  }
  .page .company .table td {
    padding-left: 43px;
    width: auto;
  }
}
.page .table tr {
  border-bottom: 1px solid #dddddd;
}
.page .table th {
  padding-left: 27px;
  padding-right: 24px;
  padding-block: 24px 25px;
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  background: #efefef;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
  width: 191px;
}
@media screen and (min-width: 1080px) {
  .page .table th {
    font-size: 20px;
    padding-right: 34px;
  }
}
.page .table td {
  padding-left: 17px;
  padding-block: 20px 21px;
  font-size: 22px;
  font-weight: 500;
  line-height: 192%;
  text-align: left;
  font-feature-settings: "palt" 1;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .page .table td {
    padding-left: 33px;
    font-size: 20px;
  }
}
.page .contact {
  padding-bottom: 84px;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1080px) {
  .page .contact {
    padding-bottom: 57px;
  }
}
.page .contact__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: 190%;
}
@media screen and (min-width: 1080px) {
  .page .contact__desc {
    text-align: center;
    font-size: 20px;
    line-height: 230%;
    font-feature-settings: "palt" 0;
    letter-spacing: 0.06em;
  }
}
.page .form__block {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media screen and (min-width: 1080px) {
  .page .form__block {
    margin: 58px auto 0;
    max-width: 760px;
    gap: 54px;
  }
}
.page .form__row {
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 1080px) {
  .page .form__row {
    gap: 58px;
  }
}
.page .form__term {
  display: flex;
  flex-direction: column;
}
.page .form__head {
  display: flex;
  justify-content: start;
  gap: 2px;
  width: 210px;
  flex-shrink: 0;
}
.page .form__label {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.page .form__tag {
  padding-top: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #df0000;
  letter-spacing: -0.01em;
  font-feature-settings: "palt" 1;
}
.page .form__sub {
  font-size: 15px;
  font-weight: 600;
}
.page .form__text {
  padding: 3px 10px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #c6c6c6;
  background: #efefef;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .page .form__text {
    padding: 8px 10px;
  }
}
.page .form__text:focus {
  border: 1px solid #000;
}
.page .form__text.wpcf7-not-valid {
  border: 1px solid #df0000;
}
.page .form__textarea {
  height: 210px;
}
@media screen and (min-width: 1080px) {
  .page .form__textarea {
    height: 150px;
  }
}
.page .form__item {
  width: 100%;
}
.page .form__item-radio input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.page .form__item-radio input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.page .form__item-radio .wpcf7-list-item-label {
  position: relative;
}
.page .form__item-radio .wpcf7-list-item-label::before, .page .form__item-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page .form__item-radio .wpcf7-list-item-label::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #c6c6c6;
  left: -22px;
}
.page .form__item-radio .wpcf7-list-item-label::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  left: -19px;
  opacity: 0;
}
.page .form__item-radio .wpcf7-list-item {
  padding-left: 22px;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.page .form__item-radio .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
}
.page .form__item-radio .wpcf7-radio {
  display: flex;
  gap: 29px;
}
.page .form__submit {
  position: relative;
  margin: 70px auto 0;
  width: 356px;
}
@media screen and (min-width: 1080px) {
  .page .form__submit {
    margin: 60px auto 0;
  }
}
.page .form__submit-button {
  padding-block: 10px 10px;
  position: relative;
  background: #000;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5em;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.page .form__submit-button:hover {
  opacity: 0.7;
}

.wpcf7-form {
  position: relative;
}

.screen-reader-response,
.wpcf7-not-valid-tip {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: 13px;
  right: -40px;
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
}
.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.wpcf7-response-output {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* footer.php */
.footer-wrap .instagram {
  margin-top: 30px;
  margin-bottom: 62px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .instagram {
    margin-top: 50px;
    margin-bottom: 101px;
  }
}
.footer-wrap .instagram__link {
  position: relative;
  display: block;
  width: 610px;
}
.footer-wrap .instagram__banner {
  display: block;
  width: 100%;
}
.footer-wrap .contact {
  padding-block: 50px 60px;
  background: #EFEFEF;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .contact {
    padding-block: 56px 82px;
  }
}
.footer-wrap .contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-wrap .contact__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer-wrap .contact__title span:nth-of-type(1) {
  display: block;
  width: 44px;
}
.footer-wrap .contact__title span:nth-of-type(2) {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.1em;
}
.footer-wrap .contact__text {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 186%;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .contact__text {
    font-size: 26px;
    letter-spacing: 0.1em;
  }
}
.footer-wrap .contact__button {
  margin-top: 46px;
  padding-block: 10px 10px;
  position: relative;
  background: #000;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 512px;
  text-align: center;
  border-radius: 30px;
}
.footer-wrap .contact__button::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-right-white.svg) no-repeat center center/contain;
  width: 10px;
  height: 21px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1080px) {
  .footer-wrap .contact__button {
    margin-top: 57px;
    letter-spacing: 0.1em;
  }
}
.footer-wrap .footer {
  padding-top: 38px;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .footer {
    padding-top: 28px;
  }
}
.footer-wrap .footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .footer__head {
    margin-left: -43px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.footer-wrap .footer__logo {
  display: block;
  width: 423px;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .footer__logo {
    width: 470px;
  }
}
.footer-wrap .footer__term {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .footer__term {
    flex-direction: row;
    gap: 30px;
  }
}
.footer-wrap .footer__text {
  font-size: 20px;
  font-weight: 500;
}
.footer-wrap .footer__copy {
  margin-top: 44px;
  padding-block: 10px 10px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  background: #000;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .footer-wrap .footer__copy {
    margin-top: 69px;
  }
}