@charset "UTF-8";
:root {
  --clientWidth: var(--jsClientWidth, 100vw);
  --clientHight: var(--jsClientHeight, 100vh);
  --firstClientHeight: var(--jsFirstClientHeight, 100vh);
}

@media not all and (min-width: 1000px) {
  .onlyDesktop {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .onlyMobile {
    display: none !important;
  }
}

html {
  min-width: 375px;
  overflow-y: scroll;
}

@media not all and (min-width: 1000px) {
  html {
    --header-height: 60px;
  }
}
@media (min-width: 1000px) {
  html {
    --header-height: 45px;
  }
}

[id]:not([id=""]) {
  scroll-margin-top: var(--header-height, 0);
}

body {
  font-family: "Times New Roman", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
  color: #343434;
  letter-spacing: 0.056em;
  background-color: #fff;
}

img {
  vertical-align: bottom;
}

a[href]:not(.-defaultHover) {
  transition: opacity 0.3s ease;
}
a[href]:not(.-defaultHover):focus {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  a[href]:not(.-defaultHover):hover {
    opacity: 0.7;
  }
}

.navigation {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}

.navigation_bar {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto min-content;
  align-items: center;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(1.8) blur(8px);
          backdrop-filter: saturate(1.8) blur(8px);
  transition: background-color 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media not all and (min-width: 1000px) {
  .navigation_bar {
    padding-right: 18px;
    padding-left: 19px;
  }
}
@media (min-width: 1000px) {
  .navigation_bar {
    padding-top: 5px;
    padding-right: 21px;
    padding-left: 28px;
  }
}
body.-showMenu .navigation_bar {
  background-color: rgb(255, 255, 255);
}

.navigation_head {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: normal;
  font-feature-settings: "palt";
  white-space: nowrap;
}
.navigation_head a {
  color: inherit;
  text-decoration: none;
}
@media not all and (min-width: 1000px) {
  .navigation_head a {
    display: flex;
    flex-flow: column;
  }
}
@media not all and (min-width: 1000px) {
  .navigation_head span:first-of-type {
    font-size: 17px;
  }
}

.navigation_button {
  display: flex;
  align-items: center;
}

.navigation_sns {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  transition: opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
body.-showMenu .navigation_sns {
  pointer-events: none;
  opacity: 0;
}
@media not all and (min-width: 1000px) {
  .navigation_sns img {
    width: auto;
    height: 24px;
  }
}

.navigation_switch {
  position: relative;
  top: 0;
  box-sizing: border-box;
  display: block;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  margin-left: 23px;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: none;
  border: none;
  border-color: transparent;
  border-style: solid;
  outline: none;
}
@media not all and (min-width: 1000px) {
  .navigation_switch {
    border-width: 12px 8px;
  }
}
@media (min-width: 1000px) {
  .navigation_switch {
    border-width: 9px 7px;
  }
}
.navigation_switch::before, .navigation_switch::after {
  content: "";
  transition: transform 0.3s ease;
}
.navigation_switch::before, .navigation_switch::after,
.navigation_switch span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  background-color: #343434;
}
@media not all and (min-width: 1000px) {
  .navigation_switch::before, .navigation_switch::after,
  .navigation_switch span {
    height: 3px;
  }
}
@media (min-width: 1000px) {
  .navigation_switch::before, .navigation_switch::after,
  .navigation_switch span {
    height: 4px;
  }
}
.navigation_switch::before {
  top: 0;
}
@media not all and (min-width: 1000px) {
  .navigation_switch::after {
    top: 16px;
  }
}
@media (min-width: 1000px) {
  .navigation_switch::after {
    top: 22px;
  }
}
.navigation_switch span {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transition: opacity 0.3s linear;
}
@media not all and (min-width: 1000px) {
  .navigation_switch span {
    top: 8px;
  }
}
@media (min-width: 1000px) {
  .navigation_switch span {
    top: 11px;
  }
}
@media not all and (min-width: 1000px) {
  body.-showMenu .navigation_switch::before {
    transform: translateY(8px) rotate(-315deg);
  }
}
@media (min-width: 1000px) {
  body.-showMenu .navigation_switch::before {
    transform: translateY(11px) rotate(-315deg);
  }
}
body.-showMenu .navigation_switch span {
  opacity: 0;
}
@media not all and (min-width: 1000px) {
  body.-showMenu .navigation_switch::after {
    transform: translateY(-8px) rotate(315deg);
  }
}
@media (min-width: 1000px) {
  body.-showMenu .navigation_switch::after {
    transform: translateY(-11px) rotate(315deg);
  }
}

.navigation_menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 100;
  height: calc(100% - var(--header-height));
  overflow: hidden;
}
.navigation_menu::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: saturate(1.8) blur(8px);
          backdrop-filter: saturate(1.8) blur(8px);
}
body.useTransition .navigation_menu::before {
  transition: opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
body:not(.useTransition) .navigation_menu::before {
  transition: none;
}
body:not(.-showMenu) .navigation_menu::before {
  opacity: 0;
}
body.useTransition .navigation_menu {
  transition: visibility 0.5s linear;
}
body:not(.useTransition) .navigation_menu {
  transition: none;
}
body:not(.-showMenu) .navigation_menu {
  pointer-events: none;
  visibility: hidden;
}

.navigation_menu_inner {
  position: relative;
  height: 100%;
  overflow: hidden auto;
}

.navigation_menu_body {
  box-sizing: border-box;
  min-height: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  background-color: #fff;
}
@media (min-width: 1000px) {
  .navigation_menu_body {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 300px;
    margin-left: auto;
  }
}
body.useTransition .navigation_menu_body {
  transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
body:not(.useTransition) .navigation_menu_body {
  transition: none;
}
body:not(.-showMenu) .navigation_menu_body {
  pointer-events: none;
  visibility: hidden;
  transform: translateX(100%);
}

.navigation_menu_list,
.navigation_menu_sns {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.navigation_menu_list {
  font-size: 18px;
  line-height: 2;
  text-align: right;
}
.navigation_menu_list > li {
  padding-bottom: 9px;
  padding-left: 32px;
}
@media not all and (min-width: 1000px) {
  .navigation_menu_list > li {
    padding-right: 32px;
  }
}
@media (min-width: 1000px) {
  .navigation_menu_list > li {
    padding-right: 21px;
  }
}
.navigation_menu_list > li:not(:first-child) {
  padding-top: 9px;
}
.navigation_menu_list a {
  color: inherit;
  text-decoration: none;
}

.navigation_menu_sns {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  padding-left: 0;
  margin-top: 32px;
  margin-bottom: 0;
  list-style-type: none;
}

.main .js-inview._fadeUp {
  transition: opacity 1s linear, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.main .js-inview._fadeUp:not(.-inview) {
  opacity: 0;
  transform: translateY(32px);
}
.main .js-inview._fadeShadow {
  transition: box-shadow 1s linear;
}
.main .js-inview._fadeShadow:not(.-inview) {
  box-shadow: 0 0 0 transparent;
}
.main .js-inview.-imagesLoaded._fadeBlur {
  transition: filter 1s linear, opacity 1s linear;
}
.main .js-inview.-imagesLoaded._fadeBlur:not(.-inview.-imagesLoaded) {
  filter: blur(12px);
  opacity: 0;
}

.footer {
  text-align: center;
  background-color: #f2f2f2;
}
@media not all and (min-width: 1000px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 132px;
  }
}
@media (min-width: 1000px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 150px;
  }
}
.footer .footerInner {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.footer p {
  margin-top: 0;
  margin-bottom: 0;
}
.footer a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
.footer a[href^="tel:"]:focus {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .footer a[href^="tel:"]:hover {
    text-decoration: underline;
  }
}
@media not all and (min-width: 1000px) {
  .footer .name {
    margin-bottom: 11px;
    font-size: 34px;
    line-height: 41px;
  }
}
@media (min-width: 1000px) {
  .footer .name {
    margin-bottom: 17px;
    font-size: 37px;
    line-height: 44px;
  }
}
.footer .logo {
  margin-bottom: 41px;
}
@media not all and (min-width: 1000px) {
  .footer .logo img {
    width: 132px;
    height: auto;
  }
}
.footer .address {
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}
.footer .sns {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}
@media not all and (min-width: 1000px) {
  .footer .sns {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1000px) {
  .footer .sns {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.footer .copyright {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 17px;
  color: #8f8f8f;
  text-align: center;
}

.page-home .mainVisual {
  position: relative;
  box-sizing: border-box;
  display: grid;
  background-color: #fff;
}
@supports (height: 100svh) {
  .page-home .mainVisual {
    height: 100svh;
  }
}
@supports not (height: 100svh) {
  .page-home .mainVisual {
    height: var(--firstClientHeight);
  }
}
@media not all and (min-width: 1000px) {
  .page-home .mainVisual {
    padding-top: var(--header-height);
  }
}
@media (min-width: 1000px) {
  .page-home .mainVisual {
    padding: var(--header-height) 25px 25px;
  }
}
.page-home .mainVisual > * {
  grid-area: 1/1;
}
.page-home .mainVisual .splide,
.page-home .mainVisual .splide__track {
  width: 100%;
  height: 100%;
}
.page-home .mainVisual .splide__slide {
  mix-blend-mode: plus-lighter;
}
.page-home .mainVisual .splide__slide img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-home .mainVisual .splide__pagination {
  bottom: 22px;
}
.page-home .mainVisual .splide__pagination__page {
  margin: 0 5px;
  opacity: 1;
  transition: background-color 0.25s linear;
}
.page-home .mainVisual .splide__pagination__page.is-active {
  transform: none;
}
.page-home .mainVisual .text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  color: #fff;
  pointer-events: none;
}
.page-home .mainVisual .text p {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}
@media (orientation: portrait) {
  .page-home .mainVisual .text p:first-child {
    font-size: 23px;
    line-height: 1.7391304348;
  }
}
@media (orientation: landscape) {
  .page-home .mainVisual .text p:first-child {
    font-size: 27px;
    line-height: 1.1851851852;
  }
}
.page-home .mainVisual .text p:last-child {
  margin-top: 10px;
}
@media (orientation: portrait) {
  .page-home .mainVisual .text p:last-child {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}
@media (orientation: landscape) {
  .page-home .mainVisual .text p:last-child {
    font-size: 24px;
    line-height: 1.2083333333;
  }
}
.page-home .main .section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section .sectionInner {
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section .sectionInner {
    max-width: 1300px;
    padding-right: 70px;
    padding-left: 70px;
    margin-right: auto;
    margin-left: auto;
  }
}
.page-home .main .section .section--head {
  margin-top: 0;
  margin-bottom: 43px;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
}
.page-home .main .section .section--head:not([data-head-english=""])::after {
  display: block;
  margin-top: 0.5em;
  font-size: 14px;
  line-height: 17px;
  content: attr(data-head-english) "";
}
.page-home .main .section.oca {
  color: #000;
  background-color: #fff;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.oca .sectionInner {
    display: flex;
    flex-flow: column;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.oca .sectionInner {
    display: grid;
    grid-template-areas: ". head . image ." ". text . image .";
    grid-template-rows: minmax(min-content, min-content) 1fr;
    grid-template-columns: 7.6923076923% 44.2307692308% 2.7692307692% 38.2307692308% 7.6923076923%;
  }
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.oca .section--head {
    order: 1;
    margin-top: 0;
    margin-bottom: 22px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.oca .section--head {
    grid-area: head;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.page-home .main .section.oca .text {
  text-align: justify;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.oca .text {
    order: 3;
    font-size: 14px;
    line-height: 25px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.oca .text {
    grid-area: text;
    font-size: 16px;
    line-height: 2;
  }
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.oca .image {
    order: 2;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.oca .image {
    grid-area: image;
  }
}
.page-home .main .section.oca .image img {
  width: 100%;
  height: auto;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.oca .image img {
    max-width: 100%;
  }
}
.page-home .main .section.product {
  background-color: #f5f5f5;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.product {
    padding-bottom: 44px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.product {
    padding-bottom: 90px;
  }
}
.page-home .main .section.product .list {
  --listWidth: min(1300px, var(--clientWidth));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--listWidth) * 0.0307692308) calc(var(--listWidth) * 0.0153846154);
  padding-left: 0;
  margin-top: 0;
  list-style-type: none;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.product .list {
    margin-bottom: 48px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.product .list {
    margin-bottom: 94px;
  }
}
.page-home .main .section.product .item {
  display: block;
}
.page-home .main .section.product .item a {
  display: grid;
  grid-template-rows: repeat(3, auto);
  color: inherit;
  text-decoration: none;
}
.page-home .main .section.product .item .category {
  order: 2;
  font-size: 12px;
  line-height: 14px;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.product .item .category {
    margin-bottom: 5px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.product .item .category {
    margin-bottom: 14px;
  }
}
.page-home .main .section.product .item .name {
  order: 3;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.product .item .name {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.product .item .name {
    font-size: 16px;
    line-height: 19px;
  }
}
.page-home .main .section.product .item .image {
  order: 1;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.product .item .image {
    margin-bottom: 5px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.product .item .image {
    margin-bottom: 18px;
  }
}
.page-home .main .section.product .item .image img {
  width: 100%;
  height: auto;
}
.page-home .main .section.product .anchorButton a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 78px;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  line-height: 17px;
  color: inherit;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #c1c1c1;
}
.page-home .main .section.about {
  padding-top: 0;
}
.page-home .main .section.about .section--head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: calc(50% - var(--clientWidth) * 0.5);
  margin-left: calc(50% - var(--clientWidth) * 0.5);
  color: #fff;
  background-image: url("../img/about.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.about .section--head {
    height: 180px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.about .section--head {
    height: 276px;
  }
}
.page-home .main .section.about dl {
  display: grid;
  grid-template-columns: auto 1fr;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.about dl {
    font-size: 14px;
    line-height: 28px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.about dl {
    font-size: 16px;
    line-height: 27px;
  }
}
.page-home .main .section.about dt {
  padding-left: 1em;
  text-align: right;
}
.page-home .main .section.about dd {
  padding-right: 1em;
  padding-left: 1em;
  margin-left: 0;
}
.page-home .main .section.about dd a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
.page-home .main .section.about dd a[href^="tel:"]:focus {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .page-home .main .section.about dd a[href^="tel:"]:hover {
    text-decoration: underline;
  }
}
.page-home .main .section.about dt,
.page-home .main .section.about dd {
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .map {
    margin-right: calc(50% - var(--clientWidth) * 0.5);
    margin-left: calc(50% - var(--clientWidth) * 0.5);
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.access .map {
    margin-right: 7.6923076923%;
    margin-left: 7.6923076923%;
  }
}
@supports not (aspect-ratio: 1) {
  .page-home .main .section.access .map {
    position: relative;
    height: 0;
  }
  @media not all and (min-width: 1000px) {
    .page-home .main .section.access .map {
      padding-top: 100%;
    }
  }
  @media (min-width: 1000px) {
    .page-home .main .section.access .map {
      padding-top: 43.6363636364%;
    }
  }
}
.page-home .main .section.access .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@supports (aspect-ratio: 1) {
  @media not all and (min-width: 1000px) {
    .page-home .main .section.access .map iframe {
      aspect-ratio: 1/1;
    }
  }
  @media (min-width: 1000px) {
    .page-home .main .section.access .map iframe {
      aspect-ratio: 1100/480;
    }
  }
}
@supports not (aspect-ratio: 1) {
  .page-home .main .section.access .map iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.page-home .main .section.contact:first-child, .page-home .main .section.contact.-confirm, .page-home .main .section.contact.-finish {
  padding-top: 100px;
}
.page-home .main .section.contact.-finish p {
  margin-top: 8em;
  margin-bottom: 8em;
}
.page-home .main .section.contact p {
  margin-bottom: 43px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
.page-home .main .section.contact a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
.page-home .main .section.contact a[href^="tel:"]:focus {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .page-home .main .section.contact a[href^="tel:"]:hover {
    text-decoration: underline;
  }
}
.page-home .main .section.contact dl {
  max-width: 680px;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 18px;
  border: 1px solid #cbcbcb;
  border-bottom: none;
}
@media (min-width: 1000px) {
  .page-home .main .section.contact dl {
    display: grid;
    grid-template-columns: 240px 440px;
  }
}
.page-home .main .section.contact dl dt,
.page-home .main .section.contact dl dd {
  padding: 1em;
  border-bottom: 1px solid #cbcbcb;
}
.page-home .main .section.contact dl dt {
  align-items: center;
  white-space: nowrap;
  background-color: #f9f9f9;
}
@media (min-width: 1000px) {
  .page-home .main .section.contact dl dt {
    text-align: right;
    border-right: 1px solid #cbcbcb;
  }
}
.page-home .main .section.contact dl dt span {
  display: grid;
  place-items: center;
  height: 32px;
}
.page-home .main .section.contact dl dt span.required {
  display: flex;
}
.page-home .main .section.contact dl dt span.required::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 20px;
  margin-left: 1em;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  content: "必須";
  background-color: #be0505;
}
.page-home .main .section.contact dl dd {
  margin-left: 0;
  background-color: #fff;
}
.page-home .main .section.contact dl dd input,
.page-home .main .section.contact dl dd textarea {
  box-sizing: border-box;
  width: 100%;
  font-size: inherit;
  line-height: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
}
.page-home .main .section.contact dl dd input {
  min-height: 32px;
  padding: 6px 8px;
}
.page-home .main .section.contact dl dd textarea {
  min-height: 228px;
  resize: vertical;
}
.page-home .main .section.contact dl dd span {
  display: block;
  margin-top: 0.5em;
  font-size: 14px;
  line-height: 17px;
  color: #f00;
}
.page-home .main .section.contact .formButton {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.page-home .main .section.contact .formButton input[type=submit],
.page-home .main .section.contact .formButton a {
  box-sizing: border-box;
  width: 130px;
  height: 36px;
  font-size: 16px;
  line-height: 18px;
  color: inherit;
  background-color: #f9f9f9;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
}
.page-home .main .section.contact .formButton input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.page-home .main .section.contact .formButton a {
  display: grid;
  place-items: center;
  text-decoration: none;
}