@charset "UTF-8";
@media screen and (min-width: 1440px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 376px) and (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .hidden-tab {
    display: none;
  }
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  color: #31452d;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
}

/*---------------------------------------------------------
共通パーツ
---------------------------------------------------------*/
.inner {
  width: 1040px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
  }
}

.heading-content {
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}
.heading-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: #b69b04;
}

.heading-ja {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 767px) {
  .heading-ja {
    font-size: 24px;
  }
}

.heading-en {
  margin-top: 10px;
  display: block;
  font-family: "Lora", serif;
  color: #31452d;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .heading-en {
    font-size: 14px;
    margin-top: 10px;
  }
}

.link-button {
  margin-top: 80px;
  display: block;
  border: 1px solid #31452d;
  font-weight: bold;
  width: 200px;
  padding: 16px 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 140px;
}
.link-button:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #31452d;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .link-button {
    margin-top: 64px;
    width: 152px;
    height: 48px;
    padding: 10px 0;
  }
}

@media screen and (min-width: 1440px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

/*---------------------------------------------------------
header
---------------------------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    width: 100%;
    margin-top: 18px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__logo {
  width: 140px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 114px;
    height: 29px;
    margin-right: 0;
    margin-left: 0;
  }
}

.header__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-link {
  display: block;
  text-align: center;
  padding: 0 30px;
  line-height: 1;
  border-left: 1px solid #333;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .header__nav-link {
    font-size: 14px;
    padding: 0 8px;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__nav-span {
  display: block;
  margin-top: 8px;
  color: #b69b04;
  font-family: "Lora", serif;
  font-size: 12px;
  line-height: 1;
}

.header__contact {
  width: 168px;
}
@media screen and (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

.header__contact-link {
  display: block;
  text-align: center;
  color: #fff;
  background: #31452d;
  height: 80px;
  padding-top: 24px;
  line-height: 1;
}
.header__contact-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__contact-span {
  margin-top: 7px;
  display: block;
  font-family: "Lora", serif;
  color: #b69b04;
  font-size: 12px;
  line-height: 1;
}

.header__sp-menu {
  width: 24px;
  height: 20px;
}
@media screen and (min-width: 1440px) {
  .header__sp-menu {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .header__sp-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__sp-menu {
    display: block;
  }
}

/*---------------------------------------------------------
slide-menu
---------------------------------------------------------*/
.slide-menu {
  background: #31452d;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (min-width: 1440px) {
  .slide-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .slide-menu {
    display: block;
  }
}

.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-menu__inner {
  margin-top: 18px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 275px;
}

.slide-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slide-menu__header-logo {
  display: block;
}
.slide-menu__header-logo img {
  width: 114px;
}

.slide-menu__header-button img {
  width: 20px;
  height: 20px;
}

.slide-menu__nav-lists {
  margin-top: 100px;
}

.slide-menu__nav-link {
  display: block;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid #fff;
}
.slide-menu__nav-link span {
  margin-top: 2px;
  display: block;
  color: #b69b04;
  font-family: "Lora", serif;
  font-size: 12px;
}

.slide-menu__nav-link-border {
  border-bottom: none;
}

.slide-menu__contact-button {
  background: #b69b04;
}
.slide-menu__contact-button span {
  color: #fff;
}

/*---------------------------------------------------------
mv
---------------------------------------------------------*/
.mv {
  width: 100%;
  height: 900px;
  background: transparent url(./img/top-image.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 812px;
    background: transparent url(./img/sp-img/sp-top-image.png)/no-repeat center center/cover;
  }
}

.mv__inner {
  height: inherit;
  position: relative;
}

.mv__text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.mv__text img {
  max-width: 960px;
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .mv__text img {
    max-width: 760px;
  }
}
@media screen and (max-width: 767px) {
  .mv__text img {
    max-width: 375px;
  }
}
@media screen and (max-width: 374px) {
  .mv__text img {
    max-width: 296px;
  }
}
@media screen and (max-width: 767px) {
  .mv__text img.is-pc {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .mv__text img.is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .mv__text img.is-sp {
    display: none;
  }
}

/*---------------------------------------------------------
concept
---------------------------------------------------------*/
.concept {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .concept {
    margin-top: 80px;
  }
}

.concept__inner {
  position: relative;
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .concept__inner {
    width: 100%;
  }
}

.concept__image {
  margin-left: auto;
  margin-top: 32px;
  max-width: 1120px;
}
@media screen and (max-width: 767px) {
  .concept__image {
    width: 100%;
    margin-top: 26px;
  }
}
@media screen and (max-width: 767px) {
  .concept__image img.is-pc {
    display: none;
  }
}
.concept__image img.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .concept__image img.is-sp {
    display: block;
  }
}

.concept__text-box {
  position: absolute;
  bottom: -30px;
  left: 0;
  padding: 50px 48px;
  width: 640px;
  height: 327px;
  background: #31452d;
}
@media screen and (max-width: 767px) {
  .concept__text-box {
    position: static;
    width: 100%;
    padding: 56px 20px;
    height: 316px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1160px) {
  .concept__text-box {
    position: static;
    width: 100%;
  }
}

.concept__text-box-title {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .concept__text-box-title {
    font-size: 20px;
    line-height: 1;
  }
}

.concept__text-box-p {
  margin-top: 20px;
  color: #fff;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .concept__text-box-p {
    line-height: 2;
  }
}

.concept__text-link {
  display: block;
  text-align: right;
  margin-top: 26px;
}
.concept__text-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .concept__text-link {
    margin-top: 30px;
  }
}
.concept__text-link span {
  color: #fff;
  line-height: 0.875;
}
.concept__text-link img {
  width: 16px;
  height: 16px;
}

/*---------------------------------------------------------
works
---------------------------------------------------------*/
.works {
  margin-top: 152px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works {
    margin-top: 80px;
  }
}

.works__background {
  position: absolute;
  width: 986px;
  height: 716px;
  background: #eeead0;
  top: 230px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .works__background {
    width: 280px;
    height: 520px;
    top: 222px;
  }
}

.works__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.works__contents {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 150px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 839px) {
  .works__contents {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 85px;
  }
}
@media screen and (max-width: 767px) {
  .works__contents {
    margin-top: 24px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 40px;
  }
}

.works__content {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .works__content {
    width: 47%;
  }
}

@media screen and (max-width: 767px) {
  .works__content__image img.is-pc {
    display: none;
  }
}
.works__content__image img.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .works__content__image img.is-sp {
    display: block;
  }
}

.works__content-title {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1;
}
.works__content-title::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 144px;
  background: #333;
  top: -74px;
  left: 24px;
}
@media screen and (max-width: 767px) {
  .works__content-title::after {
    left: 8px;
    top: -49px;
    height: 105px;
  }
}
@media screen and (max-width: 767px) {
  .works__content-title {
    margin-top: 17px;
    font-size: 20px;
    padding-left: 17px;
  }
}

.works__content-link {
  padding-left: 32px;
  margin-top: 24px;
  display: block;
}
.works__content-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works__content-link span {
  line-height: 0.875;
}
.works__content-link img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .works__content-link {
    margin-top: 16px;
    padding-left: 17px;
  }
}

/*---------------------------------------------------------
news
---------------------------------------------------------*/
.news {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .news__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.news__item-block {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .news__item-lists {
    display: none;
  }
}

.news__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news__item-list:nth-child(n+2) {
  margin-top: 22px;
}
.news__item-list:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news__item-link {
  display: block;
  padding: 20px 40px;
}
.news__item-link:nth-child(2) {
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}
.news__color-yellow {
  color: #b69b04;
}

.news__color-green {
  color: #31452d;
}

.news__item-lists-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .news__item-lists-sp {
    display: block;
  }
}
.news__item-lists-sp time {
  font-size: 14px;
  margin-right: 20px;
}

.news__item-link-sp {
  display: block;
}

.news__item-link-sp-text {
  padding-top: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.news__item-link-sp-margin {
  margin-top: 25px;
}

.news__item-link-sp-text-border {
  border-bottom: none;
}

.news__link-button {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .news__link-button {
    margin-top: 22px;
  }
}

/*---------------------------------------------------------
contact
---------------------------------------------------------*/
.contact {
  background: #eeead0;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .contact__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contact__contents {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__contents {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact__content {
  width: 282px;
  padding-top: 30px;
  padding-bottom: 26px;
  padding-left: 33px;
  padding-right: 27px;
}
@media screen and (max-width: 767px) {
  .contact__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 16px 0 0;
  }
}
@media screen and (min-width: 468px) and (max-width: 767px) {
  .contact__content {
    margin-left: auto;
    margin-right: auto;
    width: 76%;
  }
}
@media screen and (min-width: 768px) and (max-width: 844px) {
  .contact__content {
    padding-left: 14px;
    padding-right: 19px;
  }
}
@media screen and (max-width: 767px) {
  .contact__content:nth-child(1) {
    padding-left: 14px;
    padding-bottom: 32px;
  }
}
.contact__content:nth-child(2) {
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .contact__content:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .contact__content:nth-child(3) {
    padding-left: 14px;
    padding-top: 32px;
  }
}

.contact__content-image {
  text-align: center;
}
.contact__content-image1 {
  width: 27px;
}

.contact__content-image2 {
  width: 32px;
}

.contact__content-image3 {
  width: 22px;
}

.contact__content-title {
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__content-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 16px;
    margin-top: 0;
  }
}

.contact__content-yellow-button {
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 16px 0;
  text-align: center;
  color: #fff;
  width: 160px;
  background: #b69b04;
  margin-top: 22px;
}
.contact__content-yellow-button:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__content-yellow-button {
    margin-top: 0;
    width: 152px;
    margin-left: 0;
    margin-right: 0;
  }
}

.contact__content-green-button {
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 16px 0;
  text-align: center;
  color: #fff;
  width: 160px;
  background: #31452d;
  margin-top: 28px;
}
.contact__content-green-button:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__content-green-button {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    width: 152px;
  }
}

.contact__content-tel {
  color: #31452d;
  text-align: center;
  margin-top: 24px;
  font-family: "Lora", serif;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .contact__content-tel {
    display: none;
  }
}

.contact__content-business-hours {
  color: #31452d;
  text-align: center;
  margin-top: 3px;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact__content-business-hours {
    display: none;
  }
}

.contact__content-sp {
  display: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__content-sp {
    display: block;
  }
}

.contact__content-green-tel-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .contact__content-green-tel-button {
    margin-left: auto;
    display: block;
    width: 152px;
    padding: 16px 0;
    text-align: center;
    color: #fff;
    background: #31452d;
  }
}

.contact__content-business-hours-sp {
  position: absolute;
  bottom: -20px;
  right: -13px;
  font-size: 12px;
  line-height: 1.34;
  color: #31452d;
  font-weight: bold;
  white-space: nowrap;
}

/*---------------------------------------------------------
footer
---------------------------------------------------------*/
.footer {
  background: #31452d;
}

.footer__inner {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer__company {
  color: #fff;
}

.footer__company-logo {
  display: block;
  text-align: center;
}
.footer__company-logo img {
  width: 82px;
}

.footer__company-name {
  margin-top: 26px;
  text-align: center;
}

.footer__company-address {
  margin-top: 16px;
  text-align: center;
}

.footer__company-tel {
  margin-top: 16px;
  font-family: "Lora", serif;
  text-align: center;
}

.footer__company-mail {
  margin-top: 16px;
  font-family: "Lora", serif;
  text-align: center;
}

.footer__nav-lists {
  margin-top: 60px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__nav-lists {
    margin-top: 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__nav-link {
  padding: 0 36px;
  text-align: center;
  border-right: 1px solid #fff;
}
.footer__nav-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    display: block;
    border-right: none;
    padding: 23px 0;
    text-align: center;
    border-bottom: 1px solid #fff;
  }
}

.footer__nav-link-border {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .footer__nav-link-border {
    border-bottom: none;
  }
}

/*---------------------------------------------------------
footer-bottom
---------------------------------------------------------*/
.footer-bottom {
  border-top: 1px solid #fff;
  background: #333;
}

@media screen and (max-width: 767px) {
  .footer-bottom__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer-bottom__menus {
  padding: 16px 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-bottom__menus {
    padding: 32px 0 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .footer-bottom__menu-links {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-bottom__menu-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .footer-bottom__menu-link {
    font-size: 14px;
  }
}

.footer-bottom__sitemap {
  padding-right: 34px;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .footer-bottom__sitemap {
    padding-right: 40px;
  }
}

.footer-bottom__privacy-policy {
  padding-left: 34px;
}
@media screen and (max-width: 767px) {
  .footer-bottom__privacy-policy {
    padding-left: 40px;
  }
}

.footer-bottom__copylight {
  font-family: "Lora", serif;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer-bottom__copylight {
    text-align: center;
    margin-top: 40px;
  }
}