/** @format */
/** @format */
/** @format */
/** @format */
html {
  font-size: 16px;
}

body {
  font-family: "Crimson Text", serif;
}

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

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: 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;
  width: 100%;
  height: 60px;
  background-color: rgba(222, 199, 185, 0.5);
  z-index: 5000;
}

.header__inner {
  height: inherit;
  padding: 9px 27px 9px 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 27px;
  }
}

.header__name {
  margin-right: auto;
}

.header__logo {
  aspect-ratio: 121/58;
  width: 121px;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 100px;
  }
}

.header__nav {
  height: inherit;
}

.header__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__link {
  color: #7a492b;
  font-size: 36px;
  line-height: 1.3;
}

.header__item:not(:first-child) {
  margin-left: 49px;
}

.header__button {
  margin-left: 49px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__button-reserve {
  color: #fff;
  font-size: 36px;
  line-height: 1;
  display: block;
  background-color: #7a492b;
  border-radius: 40px;
  padding: 5px 10px;
}

.header__button-insta {
  margin-left: 49px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  width: 25px;
  height: 16px;
  top: 22px;
  right: 22px;
  display: none;
  cursor: pointer;
}

.hamburger.is-active {
  top: 22px;
  right: 22px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #7a492b;
  -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.is-active span {
  background-color: #fff;
}

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

.hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

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

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  background-color: #dec7b9;
  width: 100%;
  height: 100vh;
  display: none;
}

.drawer-menu__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: inherit;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-menu__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-menu__item {
  display: inline-block;
  padding-bottom: 25px;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 25px;
}

.drawer-menu__link {
  color: #fff;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  width: 200px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.drawer-menu__link.drawer-menu__link--reserve {
  background-color: #7a492b;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
  border-radius: 40px;
  padding: 14px 14px;
  display: block;
  text-align: center;
  border: none;
}
.drawer-menu__link.drawer-menu__link--reserve:hover {
  opacity: 1;
  background-color: #7a492b;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background-color: rgba(122, 73, 43, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .back-to-top {
    width: 50px;
    height: 50px;
  }
}

.fv {
  width: 100%;
  height: auto;
}

.fv__inner {
  position: relative;
}

.fv__title {
  position: absolute;
  height: inherit;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: rgba(244, 235, 226, 0.78);
  font-size: 96px;
}
@media screen and (max-width: 1024px) {
  .fv__title {
    font-size: 70px;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 64px;
    text-align: center;
  }
}

.back-to-top:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.fv__bottom {
  background-color: #fff5f1;
  padding: 18px 0;
}
@media screen and (max-width: 768px) {
  .fv__bottom {
    padding: 13px 0;
  }
}

.fv__bottom__text {
  font-size: 16px;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  color: #7a492b;
}
@media screen and (max-width: 768px) {
  .fv__bottom__text {
    font-size: 10px;
  }
}

.about {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .about {
    margin-top: 57px;
  }
}

.about__inner {
  max-width: 1183px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 390px) {
  .about__inner {
    max-width: 262px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.about__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 99px;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 768px) {
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 9px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about__img {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .about__img {
    width: 100%;
  }
}

.about__text {
  margin-left: 38px;
  font-family: "M PLUS 1p", sans-serif;
  color: #7a492b;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding-right: 102px;
}
@media screen and (max-width: 768px) {
  .about__text {
    margin-left: 0;
    padding-right: 0;
    margin-top: 9px;
    font-size: 8px;
  }
}

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

@media screen and (max-width: 768px) {
  .about__inner.inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.menu__cards {
  margin-top: 51px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 73px;
     -moz-column-gap: 73px;
          column-gap: 73px;
}
@media screen and (max-width: 1024px) {
  .menu__cards {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .menu__cards {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}

.menu__card {
  border: 1px solid #7a492b;
  padding: 17px 49px 44px 22px;
  -webkit-box-shadow: 15px 15px 5px rgba(222, 199, 185, 0.7);
          box-shadow: 15px 15px 5px rgba(222, 199, 185, 0.7);
}
@media screen and (max-width: 768px) {
  .menu__card {
    padding-right: 49px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

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

.card__title::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 0;
  height: 19px;
  width: 381px;
  z-index: -10;
  background-color: rgba(250, 239, 203, 0.8);
}
@media screen and (max-width: 1024px) {
  .card__title::before {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .card__title::before {
    width: 180px;
    top: 15px;
    height: 10px;
  }
}

.card__title.salon::before {
  background-color: #ffe6de;
}

.card__img {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .card__img {
    margin-top: 15px;
  }
}

.card__text {
  margin-top: 35px;
  font-size: 20px;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .card__text {
    font-size: 8px;
    margin-top: 8px;
  }
}

.card__link {
  color: #000;
  display: block;
  text-align: right;
  font-size: 36px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .card__link {
    font-size: 16px;
  }
}

.card__link.card__link-second {
  margin-top: 20px;
}

.button {
  margin-top: 57px;
}
@media screen and (max-width: 768px) {
  .button {
    margin-top: 30px;
  }
}

.button__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
}
@media screen and (max-width: 1024px) {
  .button__inner {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.button__box {
  background-color: #fff9e9;
  padding-top: 19px;
  padding-bottom: 21px;
  border-radius: 40px;
  -webkit-box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .button__box {
    padding-bottom: 30px;
  }
}

.button__box.button__reserve {
  background-color: #ffe6de;
}

.button__title {
  text-align: center;
  font-size: 64px;
  color: #7a492b;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button__title {
    font-size: 18px;
  }
}

.button__title::before {
  position: absolute;
  content: "";
  top: 63px;
  left: 50%;
  width: 313px;
  height: 3px;
  background-color: #dec7b9;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 768px) {
  .button__title::before {
    width: 86px;
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

.button__title.title__reserve::before {
  top: 63px;
  width: 200px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 768px) {
  .button__title.title__reserve::before {
    width: 56px;
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

.button__text {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 25px;
  color: #cc9c8d;
  line-height: 1.475;
  text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .button__text {
    font-size: 13px;
    color: #7a492b;
    margin-top: 18px;
  }
}

.section__news {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .section__news {
    margin-top: 50px;
  }
}

.news__contents {
  background: -webkit-gradient(linear, left top, right top, from(#dec7b9), color-stop(#fefbf4), to(#fff));
  background: -webkit-linear-gradient(left, #dec7b9, #fefbf4, #fff);
  background: linear-gradient(to right, #dec7b9, #fefbf4, #fff);
  border-radius: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0 30px 53px;
}

.news__title {
  margin-right: auto;
  font-size: 60px;
  color: #7a492b;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 18px;
  }
}

.news__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.news__item:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .news__item:not(:first-child) {
    margin-top: 10px;
  }
}

.news__item-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.news__text {
  font-size: 28px;
  color: #7a492b;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: 8px;
  }
}

.news__text.text {
  margin-left: 1em;
}

.gallery {
  margin-top: 136px;
}
@media screen and (max-width: 768px) {
  .gallery {
    margin-top: 50px;
  }
}

.gallery__inner {
  max-width: 810px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .gallery__inner {
    max-width: 400px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 390px) {
  .gallery__inner {
    max-width: 250px;
  }
}

.gallery__items {
  margin-top: 41px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  row-gap: 60px;
}
@media screen and (max-width: 768px) {
  .gallery__items {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}

.gallery__item {
  aspect-ratio: 1/1;
}

@media screen and (max-width: 768px) {
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(6) {
    display: none;
  }
}

.section__instagram {
  margin-top: 96px;
}

.instagram__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right top, from(#dec7b9), color-stop(#fefbf4), to(#fff));
  background: -webkit-linear-gradient(left, #dec7b9, #fefbf4, #fff);
  background: linear-gradient(to right, #dec7b9, #fefbf4, #fff);
  border-radius: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 43px 35px 93px;
}
@media screen and (max-width: 768px) {
  .instagram__contents {
    padding: 35px 28px 35px 40px;
  }
}

.instagram__title {
  margin-right: auto;
  font-size: 60px;
  color: #7a492b;
}
@media screen and (max-width: 768px) {
  .instagram__title {
    font-size: 18px;
  }
}

.instagram__contents a {
  width: 100%;
}

.instagram__img {
  aspect-ratio: 173/152;
  width: 30%;
  margin-left: auto;
}

.map {
  padding-top: 189px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .map {
    padding-top: 155px;
  }
}

.map__inner {
  max-width: 1050px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .map__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 800px;
    margin-right: 100px;
  }
}
@media screen and (max-width: 768px) {
  .map__inner {
    margin-left: 4px;
    margin-right: 145px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.map__flower {
  position: absolute;
  top: -28%;
  right: 0%;
  width: 50%;
  z-index: 10;
  pointer-events: none;
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .map__flower {
    top: -10%;
  }
}
@media screen and (max-width: 768px) {
  .map__flower {
    top: -13%;
    right: 0%;
    width: 71%;
  }
}

.map__frame {
  aspect-ratio: 617/458;
  width: 617px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .map__frame {
    width: 350px;
    height: 350px;
  }
}
@media screen and (max-width: 390px) {
  .map__frame {
    width: 226px;
    height: 228px;
  }
}

.map__textbox {
  margin-left: 87px;
  margin-top: 287px;
}
@media screen and (max-width: 1024px) {
  .map__textbox {
    margin-top: 16px;
    margin-left: 0;
  }
}

.map__text {
  font-family: "M PLUS 1p", sans-serif;
  color: #7a492b;
  font-size: 27px;
}
@media screen and (max-width: 1024px) {
  .map__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .map__text {
    font-size: 10px;
  }
}

.map__text.access:nth-child(2) {
  margin-top: 15.13px;
}

.map__text.google {
  font-size: 20px;
}

.section__reserve {
  margin-top: 132px;
}
@media screen and (max-width: 768px) {
  .section__reserve {
    margin-top: 28px;
  }
}

.reserve__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right top, from(#fff9e9), color-stop(#fff9e9), to(#ffe6de));
  background: -webkit-linear-gradient(left, #fff9e9, #fff9e9, #ffe6de);
  background: linear-gradient(to right, #fff9e9, #fff9e9, #ffe6de);
  border-radius: 40px;
  padding: 58px 69px;
}
@media screen and (max-width: 768px) {
  .reserve__contents {
    padding: 29px 33px 24px 33px;
  }
}

.reserve__text {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  font-family: "M PLUS 1p", sans-serif;
  color: #cc9c8d;
  text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .reserve__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 390px) {
  .reserve__text {
    font-size: 10px;
  }
}

.reserve__text::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 3px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #dec7b9;
  z-index: 10;
}

.footer {
  margin-top: 78px;
  background-color: #f4ebe2;
}

.footer__inner {
  max-width: 1268px;
  max-width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 58px 0;
}

.footer__logo {
  aspect-ratio: 445/135;
  width: 36%;
  height: 33%;
}

.footer__textbox {
  background-color: #fff;
  border: 1px solid #7a492b;
  width: 55.1%;
  margin-left: 76px;
  padding: 42px 0 26px 24px;
}
@media screen and (max-width: 768px) {
  .footer__textbox {
    padding: 24px 0 19px 22px;
  }
}

.footer__text {
  color: #7a492b;
  font-size: 20px;
  line-height: 1.5;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__text {
    font-size: 10px;
  }
}

.footer__bottom {
  background-color: #7a492b;
  padding: 9px 0;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding: 5px 0;
  }
}

.footer__copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 6px;
  }
}

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

.inner__second {
  max-width: 954px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner__second {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.section-title {
  color: #7a492b;
  font-size: 64px;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 18px;
  }
}

.section-title::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  height: 40px;
  width: 100%;
  border-radius: 40px;
  background-color: #f4ebe2;
  z-index: -10;
}
@media screen and (max-width: 1024px) {
  .section-title::before {
    width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .section-title::before {
    width: 100px;
    height: 3px;
    top: 25px;
  }
}

.section-title.section-title-center {
  text-align: center;
  position: relative;
}

.section-title.section-title-center::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 271px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 1024px) {
  .section-title.section-title-center::before {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .section-title.section-title-center::before {
    width: 150px;
    height: 3px;
    top: 25px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

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

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

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

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