@charset "UTF-8";
/* =========================
 *メディアクエリ
 * ========================= */
/* =========================
 * レイアウト
 * ========================= */
/* =========================
 * Flexbox Center
  * @include flex-center(0);
 * ========================= */
/* =========================
 * タイポグラフィ
 *  通常
 * @include fontSize(14);
 * calc
 * @include fontSize(calc(14px + 0.2vw));
 * clamp
 * @include fontSize(clamp(14px, 1.2vw, 18px));
 * CSS変数
 * @include fontSize(var(--font-size-md));
 * ========================= */
/* =========================
 * Media
  * @include fontSize(14);
 * ========================= */
html.lenis,
html.lenis body {
  height: auto;
}

iframe {
  width: 100%;
  height: 100%;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

#body_wrap.home #content {
  position: relative;
}
#body_wrap.home #content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 175px;
  background-image: url("../images/icon/yellow_accent.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  transition: top 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 599px) {
  #body_wrap.home #content::before {
    width: 34vw;
    height: 34vw;
  }
}
#body_wrap.home #content.is-accent-visible::before {
  top: -1%;
}

.l-section {
  padding-top: 200px;
  padding-bottom: 100px;
}
@media screen and (max-width: 599px) {
  .l-section {
    padding-top: 100px;
  }
}

.l-section__inner {
  margin-inline: auto;
  padding-inline: var(--swl-pad_container, 0);
  max-width: calc(var(--container_size, 0px) + var(--swl-pad_container, 0px) * 2);
}

.p-lead .p-lead__text {
  margin: 0 auto;
  line-height: 2.5;
  font-size: clamp(1rem, 0.107rem + 0.95vw, 1.25rem);
}

.p-concept {
  position: relative;
}
.p-concept .p-concept__items {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  gap: 5em;
  padding-inline: clamp(24px, 5vw, 96px);
  position: relative;
}
.p-concept .p-concept__itemList {
  order: 1;
  max-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-concept .p-concept__item {
  cursor: pointer;
  opacity: 0.35;
  transform: scale(0.75);
  transform-origin: left center;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.p-concept .p-concept__item:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}
.p-concept .p-concept__item.is-active {
  opacity: 1;
  transform: scale(1);
}
.p-concept .p-concept__items > .p-concept {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: min(720px, 100vh - 40px);
}
.p-concept .p-concept__article {
  position: absolute;
  inset: 0;
  filter: blur(18px);
  opacity: 0;
  transform: none;
  transform-origin: center center;
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: opacity, filter;
}
.p-concept .p-concept__article.is-active {
  opacity: 1;
  filter: blur(0);
  z-index: 3;
  pointer-events: auto;
}
.p-concept .p-concept__article.is-stacked {
  opacity: 0.4;
  z-index: 2;
}
.p-concept .p-concept__content {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2em;
}
.p-concept .p-concept__image {
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-concept .p-concept__image {
    flex: 1;
  }
}
.p-concept .p-concept__image img {
  display: block;
  width: 100%;
  border-radius: 0 999px 999px 0;
  margin-left: -100px;
  height: 41.6666666667vw;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  .p-concept .p-concept__icon {
    width: 100px;
  }
}
.p-concept .reverse-mask {
  --duration01: 7s;
  --duration02: 1.5s;
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  background-color: var(--c-white-03, #fff);
  pointer-events: none;
  -webkit-mask-image: url("../images/mmask.png");
  mask-image: url("../images/mmask.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 180%;
  mask-size: 100% 180%;
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
  transition: opacity var(--duration02) linear, mask-size var(--duration01) var(--easing-easeOut02), mask-position var(--duration01) var(--easing-easeOut02), -webkit-mask-size var(--duration01) var(--easing-easeOut02), -webkit-mask-position var(--duration01) var(--easing-easeOut02);
}
.p-concept .reverse-mask.-show {
  -webkit-mask-size: 100% 150%;
  mask-size: 100% 150%;
  -webkit-mask-position: 0% 180%;
  mask-position: 0% 180%;
}
.p-concept .p-concept__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, -11rem + 13.33vw, 5rem);
  order: 0;
}
@media (max-width: 1023px) {
  .p-concept .p-concept__items {
    flex-direction: column;
    gap: 2.5em;
    padding-inline: 0;
  }
  .p-concept .p-concept__itemList {
    display: none;
  }
  .p-concept .p-concept__items > .p-concept {
    min-height: auto;
    width: 100%;
  }
  .p-concept .p-concept__article {
    position: relative;
    inset: auto;
    background: #fff;
    margin-bottom: 2.5rem;
    pointer-events: auto;
    transition: opacity 0.8s ease, filter 1s ease;
  }
  .p-concept .p-concept__article:last-child {
    margin-bottom: 0;
  }
  .p-concept .p-concept__article.is-active {
    z-index: auto;
  }
  .p-concept .p-concept__content {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25em;
  }
  .p-concept .p-concept__image img {
    margin-left: 0;
    border-radius: 24px;
    height: auto;
    aspect-ratio: 4/3;
  }
  .p-concept .p-concept__body {
    gap: 2em;
  }
}
@media (min-width: 1024px) {
  .p-concept .reverse-mask {
    --duration01: 9s;
  }
  .p-concept .reverse-mask.-show {
    -webkit-mask-size: 130% 300%;
    mask-size: 130% 300%;
  }
}

.p-facility {
  padding-top: 400px;
}
@media (min-width: 961px) and (max-width: 1500px) {
  .p-facility .l-section__inner {
    padding-left: calc(var(--swl-pad_container, 0) + var(--site-side-header-width));
  }
}
@media screen and (max-width: 960px) {
  .p-facility {
    padding-top: 200px;
  }
}
.p-facility .p-facility__items {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.p-facility .p-facility__item {
  flex: 1 1 calc(50% - 1em);
  display: flex;
  flex-direction: column;
  gap: 1em;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-facility .p-facility__item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.p-facility .p-facility__image {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-facility .p-facility__image img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.p-facility .p-facility__img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 599px) {
  .p-facility .p-facility__item {
    flex-basis: 100%;
  }
}

@media (min-width: 961px) and (max-width: 1500px) {
  .p-point .p-point__flex {
    padding-left: calc(var(--swl-pad_container, 0) + var(--site-side-header-width));
  }
}
.p-point .p-point__flex {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 5em;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-point .p-point__flex.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.p-point .p-point__slider,
.p-point .p-point__contents {
  width: 50%;
  min-width: 0;
}
@media screen and (max-width: 960px) {
  .p-point .p-point__slider {
    order: 1;
  }
}
@media screen and (max-width: 960px) {
  .p-point .p-point__contents {
    order: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-point .p-point__flex {
    flex-direction: column;
    gap: 2.5em;
  }
  .p-point .p-point__slider,
  .p-point .p-point__contents {
    width: 100%;
  }
}

:root {
  --site-side-header-width: clamp(96px, 10.625vw, 180px);
  --site-mobile-header-height: 96px;
  --site-mobile-header-offset: env(safe-area-inset-top, 0px);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.42);
  transition: background-color 0.5s ease-in-out;
}
@media screen and (min-width: 1px) {
  #header {
    top: var(--site-mobile-header-offset);
    width: 100%;
    height: calc(var(--site-mobile-header-height) + var(--site-mobile-header-offset));
  }
}
@media screen and (max-width: 960px) {
  #header {
    top: var(--site-mobile-header-offset);
    width: 100%;
    height: calc(var(--site-mobile-header-height) + var(--site-mobile-header-offset));
  }
}
@media screen and (min-width: 961px) {
  #header {
    width: var(--site-side-header-width);
    height: 100dvh;
  }
}
#header .l-header__inner {
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}
@media screen and (max-width: 960px) {
  #header .l-header__inner {
    padding-top: var(--site-mobile-header-offset);
  }
}
@media screen and (min-width: 961px) {
  #header .l-header__inner {
    flex-direction: column;
  }
}
#header .l-header__gnav {
  display: none !important;
}
#header .sp_,
#header .c-spBtn,
#header .l-header__spBtn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
#header .l-header__logo {
  order: 0;
}
@media screen and (min-width: 961px) {
  #header .l-header__logo {
    margin: 0 auto;
  }
}
#header .c-headLogo {
  margin: auto;
}
#header .c-headLogo__img {
  width: 7vw;
}
@media screen and (max-width: 960px) {
  #header .c-headLogo__img {
    width: 20vw;
  }
}
#header .l-header__ctaNav {
  order: 2;
  width: 100%;
  background-color: var(--color_main);
  color: #fff;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  #header .l-header__ctaNav {
    width: 20vw;
    height: 100%;
  }
}
@media screen and (min-width: 961px) {
  #header .l-header__ctaNav::after {
    content: "";
    background-image: url("../images/icon/icon-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: clamp(0.5rem, -4.857rem + 5.71vw, 2rem);
    width: 9px;
    height: 9px;
  }
}
#header .l-header__ctaNav a .ttl {
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.107rem + 0.95vw, 1.25rem);
}
@media screen and (max-width: 960px) {
  #header .l-header__ctaNav a .ttl {
    font-size: 0.85rem;
  }
}
#header .l-header__menuBtn {
  order: 1;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
}
@media screen and (max-width: 960px) {
  #header .l-header__menuBtn {
    width: auto;
    margin: 0 2em;
  }
}
@media screen and (max-width: 599px) {
  #header .l-header__menuBtn {
    margin: 0 1em;
  }
}
#header .l-header__customBtn {
  display: none !important;
}
#header .c-iconBtn {
  width: 96px;
  margin: 0 auto;
  gap: 0.5em;
}
@media screen and (max-width: 960px) {
  #header .c-iconBtn {
    width: 75px;
  }
}
@media screen and (max-width: 599px) {
  #header .c-iconBtn {
    width: 45px;
  }
}
#header .c-iconBtn__label {
  order: 0;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  #header .c-iconBtn__label {
    font-size: 0.75rem;
  }
}
#header .c-iconBtn__icon {
  order: 1;
}
#header .c-iconBtn__icon,
#header .c-spBtn__icon {
  width: 96px;
  height: 24px;
  position: relative;
  display: inline-block;
  transition: background-size 0.25s ease, transform 0.25s ease;
}
@media screen and (max-width: 960px) {
  #header .c-iconBtn__icon,
  #header .c-spBtn__icon {
    width: 75px;
  }
}
@media screen and (max-width: 599px) {
  #header .c-iconBtn__icon,
  #header .c-spBtn__icon {
    width: 45px;
  }
}
#header .c-iconBtn__icon::before,
#header .c-iconBtn__icon::after,
#header .c-spBtn__icon::before,
#header .c-spBtn__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 96px;
  height: 1px;
  background: currentColor;
  transition: top 0.25s ease, bottom 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
@media screen and (max-width: 960px) {
  #header .c-iconBtn__icon::before,
  #header .c-iconBtn__icon::after,
  #header .c-spBtn__icon::before,
  #header .c-spBtn__icon::after {
    width: 75px;
  }
}
@media screen and (max-width: 599px) {
  #header .c-iconBtn__icon::before,
  #header .c-iconBtn__icon::after,
  #header .c-spBtn__icon::before,
  #header .c-spBtn__icon::after {
    width: 45px;
  }
}
#header .c-iconBtn__icon::before,
#header .c-spBtn__icon::before {
  top: 0;
}
#header .c-iconBtn__icon::after,
#header .c-spBtn__icon::after {
  bottom: 0;
}
#header .c-iconBtn__icon,
#header .c-spBtn__icon {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 96px 1px;
  background-position: 0 50%;
  transition: background-size 0.25s ease;
}
@media screen and (max-width: 960px) {
  #header .c-iconBtn__icon,
  #header .c-spBtn__icon {
    background-size: 75px 1px;
  }
}
@media screen and (max-width: 599px) {
  #header .c-iconBtn__icon,
  #header .c-spBtn__icon {
    background-size: 45px 1px;
  }
}

@media screen and (max-width: 599px) {
  #body_wrap:not(.home) #header {
    position: sticky;
  }
}

#sp_menu {
  display: block !important;
  transition-delay: 0s !important;
}
#sp_menu .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  animation: headerFadeIn 0.5s ease-in-out forwards;
  left: var(--site-side-header-width);
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: 0;
  width: calc(100% - var(--site-side-header-width));
}
@media screen and (max-width: 960px) {
  #sp_menu .p-spMenu__inner {
    top: calc(var(--site-mobile-header-height) + var(--site-mobile-header-offset));
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--site-mobile-header-height) - var(--site-mobile-header-offset));
  }
}
#sp_menu .p-spMenu__closeBtn {
  display: none !important;
}
#sp_menu .p-spMenu__body {
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
}
@media screen and (max-width: 960px) {
  #sp_menu .p-spMenu__body {
    align-items: flex-start;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 1500px) and (max-height: 900px) {
  #sp_menu .p-spMenu__body {
    align-items: flex-start;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.c-widget__title.-spmenu {
  display: none;
}

.menu_linkBlock .wp-block-image {
  margin-top: 20px;
}
.menu_linkBlock .wp-block-image img {
  object-fit: cover;
  width: 100% !important;
}

html[data-spmenu=opened] {
  overflow: hidden;
}
html[data-spmenu=opened] body {
  overflow: hidden;
  height: 100dvh;
}
html[data-spmenu=opened] #header {
  background-color: #605e5f;
}
html[data-spmenu=opened] #header .c-iconBtn__icon {
  background-image: none;
}
html[data-spmenu=opened] #header .c-iconBtn__icon::before,
html[data-spmenu=opened] #header .c-spBtn__icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  background: #fff;
}
html[data-spmenu=opened] #header .c-iconBtn__icon::after,
html[data-spmenu=opened] #header .c-spBtn__icon::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-15deg);
  background: #fff;
}
html[data-spmenu=opened] #header .c-iconBtn__label {
  color: transparent;
}
html[data-spmenu=opened] #header .c-iconBtn__label::after {
  content: "閉じる";
  position: absolute;
  inset: 0;
  color: #fff;
  padding-bottom: 10px;
}
@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

html[data-spmenu=closed] .p-spMenu {
  transition-delay: 0s !important;
}

.p-spMenu__overlay {
  background: transparent !important;
}

.nav_openMenu_text {
  font-size: clamp(0.75rem, -0.143rem + 0.95vw, 1rem);
}

.c-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.p-lead__text > span {
  display: block;
  will-change: transform, filter, opacity;
}

@media screen and (max-width: 960px) {
  .p-lead__text.c-vertical-text,
  .p-concept__body .c-vertical-text {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}

.c-text-shadow {
  text-shadow: 0px 0px 10px rgb(199, 200, 200);
}

.c-lv2 {
  margin-bottom: 10em;
  transform: scale(0.95) translateY(10);
  filter: blur(50px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0, 0.315, 0.155, 0.995) 0.4s, opacity 1s cubic-bezier(0, 0.315, 0.155, 0.995) 0.3s, filter 0.8s cubic-bezier(0, 0.315, 0.155, 0.995) 0.2s;
}
@media screen and (max-width: 960px) {
  .c-lv2 {
    margin-bottom: 2.5em;
  }
}
.c-lv2.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}
.c-lv2 .c-lv2__ttl {
  margin: 0 auto;
  font-size: clamp(1.6rem, 0.171rem + 1.52vw, 2rem);
  font-weight: 600;
}
.c-lv2 .c-lv2__ttl--primary {
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  font-weight: 900;
  font-size: 3rem;
}
@media screen and (max-width: 960px) {
  .c-lv2 .c-lv2__ttl--primary {
    font-size: 2.5rem;
  }
}
.c-lv2 .c-lv2__ttl--primary::before {
  content: "";
  width: 44px;
  height: 44px;
  display: inline-block;
  background-image: url("../images/icon/blue__accent.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.c-lv2 .c-lv2__ttl--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
  width: 15.625vw;
  height: 9.1146vw;
  display: inline-block;
  background-image: url("../images/top/facility_typography.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .c-lv2 .c-lv2__ttl--primary::after {
    width: 260px;
    height: 190px;
  }
}
@media screen and (max-width: 599px) {
  .c-lv2 .c-lv2__ttl--primary::after {
    width: 160px;
    height: 90px;
  }
}

.c-lv2--slash {
  position: relative;
}
.c-lv2--slash::before {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 0;
  transform: rotate(-45deg);
  width: 69px;
  height: 1px;
  background-color: var(--color_main);
}
@media screen and (max-width: 960px) {
  .c-lv2--slash::before {
    width: 45px;
  }
}
.c-lv2--slash .c-lv2__ttl {
  padding-top: 1em;
  font-size: 2.5rem;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .c-lv2--slash .c-lv2__ttl {
    font-size: 2.5rem;
  }
}

.c-lv3__heading {
  font-size: 1.85rem;
  font-weight: 600;
}

.c-mv-text {
  font-size: clamp(1.25rem, -3.214rem + 4.76vw, 2rem);
}
@media screen and (max-width: 599px) {
  .c-mv-text {
    font-size: 1.45rem;
  }
}

html {
  scrollbar-gutter: stable;
}

html.is-loading,
html.is-loading body,
body.is-loading {
  overflow: hidden;
}

.p-loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow: clip;
  background: radial-gradient(circle at top, rgba(96, 94, 95, 0.08), transparent 45%), rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
}

.p-loading__inner {
  position: relative;
}

.p-loading__label {
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.24, 1, 0.34, 1);
}
.p-loading__label img {
  display: block;
  width: 150px;
  height: auto;
}

.p-loading[hidden] {
  display: none;
}

.js-main-slider .swiper-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 397/410;
  object-fit: cover;
  object-position: bottom;
}

.swiper.js-thumbnail-slider {
  padding: 1em;
}
.swiper.js-thumbnail-slider .swiper-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 397/410;
  object-fit: cover;
  object-position: bottom;
}

.p-mainVisual {
  z-index: 2;
}
.p-mainVisual .p-mainVisual__textLayer {
  align-items: center;
}
.p-mainVisual .p-char {
  display: inline-block;
  will-change: transform, filter, opacity;
}
.p-mainVisual .p-mainVisual__imgLayer .u-obf-cover {
  object-position: bottom left;
}

.p-mainVisual__textLayer > .p-blogParts {
  margin-right: 50px;
}

input,
textarea {
  background-color: transparent;
}

input {
  width: 50%;
}
@media screen and (max-width: 960px) {
  input {
    width: 100%;
  }
}

textarea {
  width: 100%;
}

.p-contact-form__item {
  display: grid;
  align-items: center;
  grid-template-columns: 200px 1fr;
  margin-bottom: 2em;
}
@media screen and (max-width: 960px) {
  .p-contact-form__item {
    display: block;
  }
}

.p-contact-form__label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-contact-form__label .p-contact-form__optional,
.p-contact-form__label .p-contact-form__required {
  font-size: 0.65em;
  color: #fff;
  padding: 0 0.5em;
  border-radius: 3px;
}
.p-contact-form__label .p-contact-form__optional {
  background-color: #555;
}
.p-contact-form__label .p-contact-form__required {
  background-color: #D11C2C;
}

.p-contact-form__submit {
  margin: 3em auto;
  text-align: center;
}
.p-contact-form__submit input {
  width: 50%;
  background-color: var(--color_main);
  color: #fff;
  padding: 0.5em;
}

.wpcf7-spinner {
  position: absolute;
  top: 0;
  right: 0;
}

input:focus-visible,
textarea:focus-visible {
  outline: 1px solid #797979;
  outline-offset: 0;
  background-color: #eeeded;
}

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