@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #202020;
}

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

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* PC時tel発信無効 */
@media screen and (min-width: 780px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  max-width: 30rem;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

/** アンカーリンク **/
.anker-link {
  scroll-margin-top: 5.625rem;
}
@media screen and (min-width: 780px) {
  .anker-link {
    scroll-margin-top: 6.25rem;
  }
}

/* btn
***************************************************************/
.btn {
  position: relative;
  display: block;
  background-color: #FFF;
  border-radius: 10px;
  color: #796A64;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 1.3125rem;
  padding-bottom: 0.9375rem;
  padding-left: 8rem;
  margin-inline: auto;
  width: 20.9375rem;
}

.btn.contact__btn::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/mail-b.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5.75rem;
  height: 35px;
  width: 35px;
}

/* 共通項目 section
***************************************************************/
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 780px) {
  .section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.section__heading {
  color: #796A64;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.5rem, 0.9718rem + 2.2535vw, 3rem);
  line-height: 1.3333333333;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (min-width: 780px) {
  .section__heading {
    line-height: 1.1666666667;
  }
}

.section__heading-sub {
  font-size: clamp(0.75rem, 0.706rem + 0.1878vw, 0.875rem);
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .section__heading-sub {
    line-height: 1.7142857143;
    margin-top: 0.5rem;
  }
}

/* header
***************************************************************/
.header {
  position: fixed;
  height: 5.625rem;
  width: 100%;
  z-index: 9999;
}
@media screen and (min-width: 780px) {
  .header {
    height: 6.25rem;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_logo {
  width: 5.25rem;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .header_logo {
    width: 8.1875rem;
  }
}

.header__logo-link {
  position: relative;
  height: inherit;
}

.header__nav {
  height: inherit;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  color: #202020;
  font-size: 1rem;
  line-height: 1.5;
  height: inherit;
}

.header__nav-link::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 1.25rem;
  left: 0;
  background-color: #796A64;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  height: 1px;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}

.header__nav-link:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/** header色を変える **/
.header.header__color {
  background-color: #F4F2F1;
}

/** headerロゴを変える **/
.header__logo-link::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/logo-b.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  z-index: -1;
}

.header__logo-link.change-logo::before {
  z-index: 1;
}

/* hamburger
***************************************************************/
.hamburger {
  padding: 0;
  width: 1.4375rem;
  z-index: 9999;
}
@media screen and (min-width: 780px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: relative;
  display: block;
  background-color: #FFF;
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
  height: 0.125rem;
  width: 1.4375rem;
}

.hamburger span:nth-child(2) {
  margin-top: 0.5625rem;
  margin-bottom: 0.5625rem;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.75rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.hamburger__color span {
  background-color: #796A64;
}

/* sp-menu
***************************************************************/
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #796A64;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}
@media screen and (min-width: 780px) {
  .sp-menu {
    display: none;
  }
}

.sp-menu__inner {
  width: 100%;
}

.sp-menu__logo {
  margin-top: 1.375rem;
}

.sp-menu__logo-link img {
  aspect-ratio: 84/47;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 5.25rem;
}

.sp-menu__nav {
  margin-top: 5.8125rem;
  width: 100%;
}

.sp-menu__list {
  display: -ms-grid;
  display: grid;
  place-content: center;
  gap: 1rem;
  width: 100%;
}

.sp-menu__item {
  width: 100%;
}

.sp-menu__link {
  display: block;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  width: 100%;
}

.sp-menu__btn {
  margin-top: 4.5rem;
}

.sp-menu.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* fv
***************************************************************/
.fv__image {
  aspect-ratio: 375/812;
}
@media screen and (min-width: 780px) {
  .fv__image {
    aspect-ratio: 1440/768;
  }
}

.fv__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* concept
***************************************************************/
.concept__heding {
  border-bottom: 0.5rem solid #A7B8AB;
  font-size: clamp(1rem, 0.8239rem + 0.7512vw, 1.5rem);
  line-height: 2.25;
  margin-top: 2.5rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 780px) {
  .concept__heding {
    line-height: 1.6666666667;
    margin-top: 2.5rem;
  }
}

.concept__heding span {
  font-size: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .concept__heding span {
    line-height: 1.25;
  }
}

.concept__body {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .concept__body {
    margin-top: 2.5rem;
  }
}

.concept__text {
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .concept__text {
    line-height: 1.7;
  }
}

.concept__deco {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .concept__deco {
    margin-left: 0;
    margin-right: 0;
    margin-top: 1.5rem;
  }
}

.concept__line {
  aspect-ratio: 375/31;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .concept__line {
    aspect-ratio: 1080/90;
  }
}

.concept__line img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* event
***************************************************************/
.event {
  background-color: #F4F2F1;
}

@media screen and (min-width: 780px) {
  .inner.event__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.event-slider {
  margin-top: 2.5rem;
}

.event-slider__container {
  position: relative;
}

.event-slider__arrows {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.splide__arrows.event-slider__arrows {
  padding: 0;
}

.event-slider__arrows button img {
  height: 1.875rem;
  width: 1.875rem;
}

.splide__arrows.event-slider__arrows {
  padding: 0;
}

.event-slider__lists {
  margin-inline: auto;
  width: 58%;
  min-width: 13.75rem;
}
@media screen and (min-width: 780px) {
  .event-slider__lists {
    width: 100%;
    max-width: 60.25rem;
  }
}

.event__card {
  background-color: #fafafa;
  -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
}

.event__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.event__image img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event__image img:hover {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

.event__card-body {
  padding-top: 1.125rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
}

.event__card-body time {
  color: #202020;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}

.event__card-text {
  color: #202020;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* works
***************************************************************/
.works__tab-container {
  margin-top: 2.5rem;
}

.works__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.works__tab-item {
  border-radius: 0.625rem 0.625rem 0 0;
  background-color: #F4F2F1;
  cursor: pointer;
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  font-weight: 700;
  padding: 0.8125rem 1.0625rem 0.8125rem 1.125rem;
}
@media screen and (min-width: 780px) {
  .works__tab-item {
    padding: 1.75rem 6.875rem 1.75rem 6.8125rem;
  }
}

.works__tab-item.active {
  background-color: #796A64;
  color: #FFF;
}

.works__panel-item {
  display: none;
}

.works__panel-item.active {
  display: block;
  border: 2px solid #796A64;
  border-radius: 0 0 0.625rem 0.625rem;
}

.works__panel-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 2.5rem 2.625rem 2.5rem 2.6875rem;
}
@media screen and (min-width: 780px) {
  .works__panel-inner {
    -ms-grid-columns: 1fr 0px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 0px 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 3.5rem 3rem;
  }
  .works__panel-inner > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .works__panel-inner > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .works__panel-inner > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .works__panel-inner > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.works__panel-title {
  border-bottom: 8px solid #A7B8AB;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 780px) {
  .works__panel-title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
    margin-top: 5rem;
  }
}

.works__panel-image {
  aspect-ratio: 1/1;
  margin-top: 1.9375rem;
  max-width: 15.625rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .works__panel-image {
    max-width: 25rem;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
  }
}

.works__panel-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__panel-body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .works__panel-body {
    margin-top: 0;
    margin-bottom: auto;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
}

.works__panel-text {
  font-size: 1rem;
  line-height: 1.5;
}

.works__panel-btn {
  position: relative;
  display: block;
  color: #202020;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .works__panel-btn {
    margin-top: 2.5625rem;
    text-align: left;
  }
}

.works__panel-btn::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/work-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 9%;
  height: 0.25rem;
  width: 2.75rem;
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
}
@media screen and (min-width: 780px) {
  .works__panel-btn::after {
    right: 65%;
  }
}

.works__panel-btn:hover:after {
  right: 5%;
}
@media screen and (min-width: 780px) {
  .works__panel-btn:hover:after {
    right: 57%;
  }
}

/* voice
***************************************************************/
.voice {
  background: -webkit-gradient(linear, left top, right top, color-stop(80%, rgb(244, 242, 241)), color-stop(80%, rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgb(244, 242, 241) 80%, rgb(255, 255, 255) 80%);
}
@media screen and (min-width: 780px) {
  .voice {
    background: -webkit-gradient(linear, left top, right top, color-stop(72%, rgb(244, 242, 241)), color-stop(72%, rgb(255, 255, 255)));
    background: linear-gradient(90deg, rgb(244, 242, 241) 72%, rgb(255, 255, 255) 72%);
  }
}

.vioce__heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
  line-height: 1.4;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .vioce__heading {
    line-height: 1.3333333333;
  }
}

.voice__image-cont {
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .voice__image-cont {
    margin-top: 2.5rem;
  }
}

.voice__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice__image.image01 {
  aspect-ratio: 200/180;
  width: clamp(12.5rem, 50vw, 33.75rem);
}
@media screen and (min-width: 780px) {
  .voice__image.image01 {
    aspect-ratio: 540/426;
  }
}

.voice__image.image02 {
  aspect-ratio: 200/180;
  margin-top: -6.875rem;
  margin-left: auto;
  width: clamp(12.5rem, 50vw, 43.75rem);
}
@media screen and (min-width: 780px) {
  .voice__image.image02 {
    aspect-ratio: 700/415;
    margin-top: -18.75rem;
  }
}

.voice__text {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .voice__text {
    margin-top: 3rem;
  }
}

.voice__text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

/* request
***************************************************************/
.request {
  background-image: url(../images/contact-sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 780px) {
  .request {
    background-image: url(../images/contact.jpg);
  }
}

.request__heading {
  font-size: clamp(1rem, 0.8239rem + 0.7512vw, 1.5rem);
  font-weight: 300;
  text-align: center;
}

.request__heading span {
  font-size: clamp(1.5rem, 1.2359rem + 1.1268vw, 2.25rem);
  font-weight: 700;
}

.request__heading-ora {
  color: #F37500;
}

.request__btn {
  position: relative;
  display: block;
  background: linear-gradient(45deg, rgb(197, 75, 29), rgb(254, 172, 98));
  border-radius: 10px;
  color: #FFF;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  margin-inline: auto;
  margin-top: 2.5rem;
  text-align: center;
  height: 4.5rem;
  width: 18.5625rem;
  /** safari用動きをなめらかにする **/
}

.request__btn:after {
  position: absolute;
  content: "";
  color: #FFF;
  display: block;
  background: linear-gradient(45deg, rgb(65, 53, 48), rgb(163, 143, 135));
  border-radius: 10px;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.request__btn:hover:after {
  opacity: 0;
}

/* modal
***************************************************************/
.modal__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10000;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__container {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #FFF;
  border-radius: 0.625rem;
  padding: 2.5rem 1.25rem;
  max-width: 100%;
  width: 90%;
  z-index: 10001;
}
@media screen and (min-width: 780px) {
  .modal__container {
    padding: 5rem 6.25rem;
    width: 43.75rem;
  }
}

.modal__close {
  position: relative;
}

.modal__close::after {
  content: "✕";
  position: absolute;
  top: -7.5rem;
  right: 0;
  font-size: 3.125rem;
  color: #FFF;
  height: 3.125rem;
  width: 3.125rem;
}
@media screen and (min-width: 780px) {
  .modal__close::after {
    top: -10rem;
    left: 37.5rem;
  }
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
}

.contact-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.contact-form__item input {
  border: 1px solid #202020;
  margin-top: 1rem;
  height: 3.75rem;
  width: 100%;
}

.contact-form__label {
  font-size: 1.25rem;
  line-height: 1.2;
}

@-webkit-keyframes ModalfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ModalfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ModalfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ModalfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.modal[aria-hidden=false] .modal__container,
.modal[aria-hidden=false] .modal__overlay {
  -webkit-animation: ModalfadeIn 0.5s;
          animation: ModalfadeIn 0.5s;
}

.modal[aria-hidden=true] .modal__container,
.modal[aria-hidden=true] .modal__overlay {
  -webkit-animation: ModalfadeOut 0.5s;
          animation: ModalfadeOut 0.5s;
}

.modal__container,
.modal__overlay {
  will-change: transform;
}

/* q&a
***************************************************************/
.qa {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 780px) {
  .qa {
    padding-top: 7.5rem;
    padding-bottom: 11.25rem;
  }
}

.qa__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  place-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .qa__body {
    gap: 0.5rem;
  }
}

details {
  width: 100%;
}

.js-qa-container {
  -webkit-animation: fadeIn 0.5s ease infinite;
          animation: fadeIn 0.5s ease infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
details[open] .qa__btn::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

summary {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F2F1;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  summary {
    padding: 1.625rem 3.625rem;
  }
}

summary::-webkit-details-marker {
  display: none;
}

.qa__title {
  position: relative;
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  font-weight: 300;
  padding-left: 1.5625rem;
}

.qa__title::before {
  position: absolute;
  content: "Q";
  display: block;
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  font-weight: 300;
  top: 0;
  left: 0;
}

.qa__btn {
  display: block;
}

.qa__btn::before,
.qa__btn::after {
  content: "";
  display: block;
  background-color: #202020;
  height: 1px;
  width: 1.25rem;
}

.qa__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
}

.qa__text-container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2.5625rem;
  padding-right: 2.75rem;
}
@media screen and (min-width: 780px) {
  .qa__text-container {
    padding-top: 2.875rem;
    padding-bottom: 2.5rem;
    padding-left: 4.875rem;
  }
}

.qa__text {
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .qa__text {
    line-height: 1.2;
  }
}

/* pagetop
***************************************************************/
.pagetop {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
}
@media screen and (min-width: 780px) {
  .pagetop {
    right: 11.25rem;
  }
}

.pagetop__link img {
  height: 2.5rem;
  width: 2.5rem;
}
@media screen and (min-width: 780px) {
  .pagetop__link img {
    height: 3.125rem;
    width: 3.125rem;
  }
}

/* floating
***************************************************************/
.floating {
  position: fixed;
  bottom: 1.875rem;
  left: 0;
}
@media screen and (min-width: 780px) {
  .floating {
    bottom: 6.25rem;
    left: initial;
    right: 0;
  }
}

.floating__link.btn.contact__btn {
  border-radius: 0 10px 0 0;
  border-bottom: 10px solid #796A64;
}
@media screen and (min-width: 780px) {
  .floating__link.btn.contact__btn {
    position: relative;
    background: linear-gradient(45deg, rgb(197, 75, 29), rgb(254, 172, 98));
    border-radius: 10px 0 0 10px;
    border-bottom: initial;
    border-right: 10px solid #B9A69E;
    color: #FFF;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    padding: 5.75rem 2.375rem 2.5rem;
    width: 6.25rem;
    z-index: 1;
  }
}

@media screen and (min-width: 780px) {
  .floating__link.btn.contact__btn::before {
    background-image: url(../images/mail-w.svg);
    top: 40px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 55%;
    height: 48px;
    width: 48px;
  }
}

@media screen and (min-width: 780px) {
  .floating__link.btn.contact__btn::after {
    position: absolute;
    content: "";
    color: #FFF;
    display: block;
    background: linear-gradient(45deg, rgb(65, 53, 48), rgb(163, 143, 135));
    border-radius: 10px 0 0 10px;
    -webkit-transition: opacity 0.3s 0s ease;
    transition: opacity 0.3s 0s ease;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
  }
}

.floating__link.btn.contact__btn:hover:after {
  opacity: 0;
}

/* footer
***************************************************************/
.footer {
  background-color: #796A64;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.footer__logo-image img {
  height: 100%;
  width: 8.125rem;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__profile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  width: 12.0625rem;
}

.footer__profile-name,
.footer__profile-content {
  color: #FFF;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.footer__profile-content.upper {
  text-transform: uppercase;
}

@media screen and (min-width: 780px) {
  .footer__nav-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    row-gap: 0.5rem;
  }
}

.footer__nav-link {
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer__copy small {
  display: block;
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .footer__copy small {
    margin-top: 5rem;
  }
}
/*# sourceMappingURL=styles.css.map */