@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Shippori Mincho B1", serif;
  color: beige;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::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;
}

/* Set core root 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;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 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;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  background-color: transparent;
  border-bottom: 1px solid #99958F;
}
.header.is-scrolled {
  background: #222222;
  border-bottom: none;
}

.header__inner {
  width: 100%;
  height: inherit;
  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;
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 132px;
  }
}

.header-logo a {
  color: #F9F2E5;
}

.header__nav {
  height: inherit;
}

.header__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
}

.header__items li {
  height: inherit;
}

.header__link {
  font-size: 18px;
  font-weight: 500;
  color: #F9F2E5;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__link--contact {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #F9F2E5;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 32px;
  border-radius: 3px;
  border: 1px solid #F9F2E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__link--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
}
.header__link--contact:hover::before {
  -webkit-animation: kirakira 0.8s ease-out forwards;
          animation: kirakira 0.8s ease-out forwards;
}

@-webkit-keyframes kirakira {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

@keyframes kirakira {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}
.hamburger {
  position: fixed;
  top: 30px;
  right: 15px;
  z-index: 9999;
  width: 25px;
  height: 16px;
}

.hamburger__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F9F2E5;
  -webkit-transition: 0.3s background-color, 0.3s -webkit-transform;
  transition: 0.3s background-color, 0.3s -webkit-transform;
  transition: 0.3s transform, 0.3s background-color;
  transition: 0.3s transform, 0.3s background-color, 0.3s -webkit-transform;
}

.hamburger__line:nth-child(1) {
  top: 0;
}

.hamburger__line:nth-child(2) {
  top: 8px;
}

.hamburger__line:nth-child(3) {
  top: 16px;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
  background-color: #fff;
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
  background-color: #fff;
}

.drawer-bg {
  display: none;
  position: fixed;
  z-index: 4999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.9;
  background-color: #222222;
}

.drawer {
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer__inner {
  width: 100%;
  height: inherit;
  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;
}

.drawer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.drawer__items.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer__link {
  font-size: 18px;
  font-weight: 500;
  color: #F9F2E5;
  letter-spacing: 0.05em;
}

.drawer__link--contact {
  background-color: transparent;
  padding: 14px 60px;
  border: 1px solid #F9F2E5;
  font-size: 18px;
  font-weight: 500;
  color: #F9F2E5;
  letter-spacing: 0.05em;
  border-radius: 6px;
}

.mv {
  position: relative;
  height: 100vh;
  width: 100%;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
}

.swiper {
  height: inherit;
}

.swiper-wrapper {
  height: inherit;
}

.swiper-slide {
  height: inherit;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-animation: fadeZoom 2s ease-out forwards;
          animation: fadeZoom 2s ease-out forwards;
}

.mv__title {
  position: absolute;
  top: 50%;
  left: 20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeUp 1.5s ease-out forwards;
          animation: fadeUp 1.5s ease-out forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@media screen and (max-width: 768px) {
  .mv__title {
    padding-left: 0;
    left: 50%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .mv__title {
    left: 30%;
  }
}

@-webkit-keyframes fadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.mv__title-main {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #F9F2E5;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .mv__title-main {
    font-size: 36px;
    white-space: nowrap;
    letter-spacing: 0;
  }
}

.mv__title-small {
  text-transform: none;
}

.mv__title-sub {
  margin-top: 17px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.75;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .mv__title-sub {
    margin-top: 14px;
    font-size: 18px;
  }
}

.swiper-slide {
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}

.swiper-slide img {
  aspect-ratio: 2/1;
}

.swiper-button-prev,
.swiper-button-next {
  width: 34px;
  height: 34px;
  background-color: #332F27;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  position: absolute;
  top: 40%;
  left: 38%;
  width: 10px;
  height: 10px;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.swiper-button-prev::after {
  top: 40%;
  left: 44%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
  }
}

.swiper-pagination-bullet {
  width: 70px;
  height: 4px;
  opacity: 1;
  border-radius: 0;
  background-color: #332F27;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 40px;
    height: 2px;
  }
}

.swiper-pagination-bullet-active {
  background-color: #F9F2E5;
}

.lead-wrap {
  padding-bottom: 4rem;
}

.lead {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.lead span {
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 1rem;
  }
}

.about {
  background-color: #272625;
  padding-block: 80px;
}

.about__inner {
  max-width: 610px;
  margin-inline: auto;
}

.about__flex {
  margin-top: 101px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 58px;
}
@media screen and (max-width: 768px) {
  .about__flex {
    margin-top: 56px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 42px;
  }
}

.about__wrap {
  margin-top: 20px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .about__wrap {
    margin-top: 0;
  }
}

.about__img {
  margin-left: 40px;
  max-width: 360px;
  aspect-ratio: 300/200;
}
@media screen and (max-width: 768px) {
  .about__img {
    margin-left: 0;
  }
}

.about__head {
  font-size: 22px;
  line-height: 2.18;
  letter-spacing: 0.5em;
  font-weight: 500;
}

.about__sub {
  margin-top: 8px;
  margin-right: 23px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.5em;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .about__sub {
    margin-top: 0;
    margin-right: 0;
    font-size: 14px;
    line-height: 2.18;
    letter-spacing: 0.4em;
  }
}

.about__text {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about__text {
    max-width: 360px;
    margin-inline: auto;
  }
}

.about__button {
  margin-top: 48px;
  margin-inline: auto;
}

.service {
  padding-block: 80px;
  background-color: #222222;
}

.tab {
  width: 100%;
  margin-top: 75px;
}

.tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 54px;
}

.tab__button {
  cursor: pointer;
  font-size: 20px;
  color: #F9F2E5;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-bottom: 9px;
}

.tab__button.is-active {
  border-bottom: solid 1px #707070;
}

.tab__contents {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .tab__contents {
    margin-top: 40px;
  }
}

.tab__content {
  display: none;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media screen and (max-width: 880px) {
  .tab__content {
    grid-template-columns: 1fr;
  }
}

.tab__content.is-active {
  display: grid;
}

.service__card {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
}
.service__card img {
  aspect-ratio: 477/357;
}

@media screen and (max-width: 880px) {
  .service__card + .service__card {
    margin-top: 60px;
  }
}
@media screen and (min-width: 879px) {
  .bubun .service__card:nth-child(n+3) {
    margin-top: 60px;
  }
}

.card {
  max-width: 600px;
  margin-inline: auto;
}

.card__title {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .card__title {
    font-size: 18px;
  }
}

.card__text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .card__text {
    font-size: 16px;
  }
}

.price__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3rem;
  margin-left: auto;
}

.price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  padding: 0.8em 1em;
  border-bottom: 1px solid #99958F;
}

.price__item:last-child {
  border-bottom: none;
}

.sokuyoku {
  background-color: #9d8562;
  padding-block: 160px;
}
@media screen and (max-width: 768px) {
  .sokuyoku {
    padding-block: 100px;
  }
}

.sokuyoku__inner {
  max-width: 600px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .sokuyoku__inner {
    padding-inline: 16px;
  }
}

.sokuyoku__title {
  position: relative;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-left: 4.4rem;
}
@media screen and (max-width: 768px) {
  .sokuyoku__title {
    font-size: 24px;
    padding-left: 3.4rem;
  }
}
.sokuyoku__title span {
  font-size: 0.8em;
}
.sokuyoku__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4rem;
  height: 4rem;
  background-image: url(../../images/icon-ashi.webp);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sokuyoku__title::before {
    width: 48px;
    height: 48px;
  }
}

.sokuyoku__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}

.sokuyoku__img {
  aspect-ratio: 600/400;
}

.contact {
  background-color: #272625;
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-inline: 16px;
    margin-inline: auto;
  }
}

.contact__left {
  padding-block: 80px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .contact__left {
    padding-left: 0;
    width: 100%;
  }
}

.contact__btn {
  margin-top: 48px;
  text-align: center;
}

.contact__right {
  margin-block: 42px;
  width: 46.66%;
}
@media screen and (max-width: 768px) {
  .contact__right {
    width: 100%;
    max-width: 500px;
  }
}
.contact__right iframe {
  width: 100%;
}

.contact__img {
  aspect-ratio: 670/399;
}

.contact__text-wrap {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .contact__text-wrap {
    gap: 18px;
  }
}

.contact__text,
.contact__tel a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .contact__text,
  .contact__tel a {
    margin-top: 54px;
    font-size: 13px;
  }
}

.contact__tel a {
  font-size: 16px;
  text-decoration: underline;
}

.footer {
  background-color: #222222;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 29px 0;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 20px 0;
  }
}

.inner {
  width: 100%;
  max-width: 1250px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 15px;
  }
}

.section-title__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.section-title__wrap::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #A4A4A0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  top: 0.5em;
}

.section-title {
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 0.842;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

.text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.contact-button {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 265px;
  padding: 20px;
  background-color: transparent;
  font-size: 16px;
  color: #F9F2E5;
  border: 2px solid #F9F2E5;
  border-radius: 6px;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-button {
    font-size: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 18px 40px;
  }
}
.contact-button:hover {
  opacity: 1;
  letter-spacing: 3px;
}

.contact-button::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 6px;
  height: 10px;
  background-image: url(../../images/icon-arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 39px;
     -moz-column-gap: 39px;
          column-gap: 39px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 22px 20px 17px 58px;
  background-color: transparent;
  border: 0.5px solid #F9F2E5;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 14px;
    padding: 19px 20px 15px 47px;
  }
}
.button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 15px 30px -5px rgba(249, 242, 229, 0.15), 0 0 5px rgba(249, 242, 229, 0.1);
          box-shadow: 0 15px 30px -5px rgba(249, 242, 229, 0.15), 0 0 5px rgba(249, 242, 229, 0.1);
}

.button-text {
  color: #F9F2E5;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.button-arrow {
  margin-top: 3px;
  width: 6px;
  height: 10px;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */