@charset "UTF-8";
/** @format */
/* フォントファミリー
-----------------------------------------------*/
/* フォント
-----------------------------------------------*/
/* カラー
-----------------------------------------------*/
/* インナー幅
-----------------------------------------------*/
/* ヘッダー高さ
-----------------------------------------------*/
/*==============================================
#共通
===============================================*/
body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #333;
  background-color: #fff;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1040px;
  }
}

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

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

.hidden-lg {
  display: block;
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

.appear-lg {
  display: none;
}
@media screen and (min-width: 900px) {
  .appear-lg {
    display: block;
  }
}

.is-ocher {
  color: #b69b04;
}

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

.list-btn__link {
  display: inline-block;
  width: 152px;
  padding: 17px;
  color: #31452d;
  border: 1px solid #31452d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .list-btn__link {
    width: 200px;
  }
}
.list-btn__link:hover {
  color: #fff;
  background-color: #31452d;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*==============================================
#header
===============================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  height: inherit;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1040px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 0px;
  }
}

.logo {
  width: 114px;
}
@media screen and (min-width: 900px) {
  .logo {
    width: 140px;
  }
}
.logo img {
  width: 100%;
  height: auto;
}

.logo__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.logo__link:hover {
  opacity: 0.7;
}

.header-nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header-nav {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 32px;
  }
}

@media screen and (min-width: 900px) {
  .header-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header-item__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: clamp(14px, 1.6vw, 16px);
}
@media screen and (min-width: 900px) {
  .header-item__link {
    display: block;
    padding-inline: min(2vw, 29px);
    text-align: center;
    position: relative;
  }
  .header-item__link::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 36px;
    background-color: #333;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-item__link:hover {
    opacity: 0.7;
  }
}
.header-item__link span {
  display: block;
  font-family: "Lora", serif;
  color: #b69b04;
  font-size: 12px;
  line-height: 1;
  margin-top: 6px;
}

.btn__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 900px) {
  .btn__link {
    display: block;
    background-color: #31452d;
    color: #fff;
    height: 80px;
    width: 168px;
    text-align: center;
    padding-top: 24px;
    line-height: 1;
  }
}
.btn__link span {
  display: block;
  font-family: "Lora", serif;
  color: #b69b04;
  font-size: 12px;
  line-height: 1;
  margin-top: 6px;
}
.btn__link:hover {
  opacity: 0.7;
}

.drawer-icon__wrap {
  margin-left: auto;
}

.drawer-icon {
  padding: 2px 0px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer-icon .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-icon:hover {
  cursor: pointer;
  opacity: 0.7;
}

.drawer-icon.js-open .bar1 {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.drawer-icon.js-open .bar2 {
  display: none;
}
.drawer-icon.js-open .bar3 {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.drawer-menu {
  position: fixed;
  z-index: 90;
  top: 64px;
  left: 0;
  width: 100%;
  height: 70vh;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.drawer-menu.js-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-nav {
  padding-top: 50px;
  width: 100%;
  background-color: transparent;
}

.drawer-item + .drawer-item {
  margin-top: 25px;
}

.drawer-item__link {
  padding-block: 5px;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer-item__link:hover {
  opacity: 0.7;
}

.drawer-btn {
  margin-top: 25px;
}

.drawer-btn__link {
  padding-block: 5px;
  display: inline-block;
}

.drawer-bg {
  position: fixed;
  z-index: 89;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-bg.js-open {
  display: block;
}

/*==============================================
#mv
===============================================*/
.mv {
  position: relative;
}

.mv__image img {
  width: 100%;
  height: 813px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1624/750;
}
@media screen and (min-width: 768px) {
  .mv__image img {
    height: 900px;
  }
}
.mv__image source {
  height: 900px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2880/1800;
}

.mv__text {
  position: absolute;
  top: 37%;
  left: 0;
  width: min(100vw, 500px);
  height: auto;
}
@media screen and (min-width: 768px) {
  .mv__text {
    width: min(66.6666vw, 960px);
    top: 42%;
    left: calc(50% - 38.61vw);
  }
}
.mv__text .hidden-md {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 750/540;
}
.mv__text .appear-md {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1920/448;
}

/*==============================================
#concept
===============================================*/
.concept {
  padding-top: 77px;
}
@media screen and (min-width: 900px) {
  .concept {
    padding-top: 120px;
  }
}

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

.section-title__ja {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .section-title__ja {
    font-size: 32px;
  }
}

.section-title__en {
  font-family: "Lora", serif;
  font-size: 14px;
  line-height: 1;
  color: #31452d;
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .section-title__en {
    font-size: 16px;
    margin-top: 4px;
  }
}

.concept__content {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .concept__content {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
    padding-bottom: 32px;
  }
}

@media screen and (min-width: 900px) {
  .concept-image {
    text-align: right;
  }
}
.concept-image img {
  height: 360px;
  width: 100%;
  aspect-ratio: 750/720;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .concept-image img {
    width: 1120px;
    height: 480px;
    aspect-ratio: 2420/960;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.concept-body {
  background-color: #31452d;
  color: #fff;
  padding-block: 56px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .concept-body {
    padding-block: 64px;
    padding-inline: 48px;
  }
}
@media screen and (min-width: 900px) {
  .concept-body {
    max-width: 44.4444%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

.concept-body__title {
  font-size: 20px;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .concept-body__title {
    font-size: 24px;
    line-height: 1.5;
  }
}

.concept-body__text {
  line-height: 2;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .concept-body__text {
    line-height: 2.5;
    margin-top: 40px;
  }
}

.concept-body__btn {
  margin-top: 20px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .concept-body__btn {
    margin-top: 30px;
  }
}

.concept-body__link {
  line-height: 0.875;
  padding-right: 23px;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 900px) {
  .concept-body__link {
    margin-top: 20px;
  }
}
.concept-body__link::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/icon_arrow-white.webp) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.concept-body__link:hover {
  opacity: 0.7;
}
.concept-body__link:hover::before {
  right: -5px;
}

/*==============================================
#works
===============================================*/
.works {
  padding-top: 80px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 120px;
  }
}
.works::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 58%;
  background-color: #eeead0;
  bottom: 76px;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .works::before {
    width: 68.5%;
    height: 60%;
    bottom: 90px;
  }
}

.works__inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .works__inner {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
  }
}

.works__list {
  margin-top: 24px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 44px 24px;
}
@media screen and (min-width: 768px) {
  .works__list {
    margin-top: 32px;
    gap: 70px 40px;
  }
}

.works-item {
  width: calc((100% - 24px) / 2);
}
@media screen and (min-width: 768px) {
  .works-item {
    width: calc((100% - 80px) / 3);
  }
}

.works-item__image img {
  aspect-ratio: 160/104;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .works-item__image img {
    aspect-ratio: 640/480;
  }
}

.works-item__body {
  position: relative;
  padding-top: 17px;
  padding-inline: 17px;
}
@media screen and (min-width: 768px) {
  .works-item__body {
    padding-top: 23px;
    padding-inline: 33px;
  }
}
.works-item__body::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 96px;
  background-color: #333;
  left: 8px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .works-item__body::before {
    height: 144px;
    left: 24px;
  }
}

.works-item__title {
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 374px) {
  .works-item__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .works-item__title {
    font-size: 24px;
  }
}

.works-item__btn {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .works-item__btn {
    margin-top: 20px;
  }
}

.works-item__link {
  line-height: 0.875;
  padding-right: 23px;
  font-size: 16px;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 374px) {
  .works-item__link {
    font-size: 14px;
  }
}
.works-item__link::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/icon_arrow-black.webp) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.works-item__link:hover {
  opacity: 0.7;
}
.works-item__link:hover::before {
  right: -5px;
}

.works-btn {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-btn {
    margin-top: 40px;
  }
}

/*==============================================
#news
===============================================*/
.news {
  padding-top: 75px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 116px;
    padding-bottom: 116px;
  }
}

@media screen and (min-width: 576px) {
  .news__inner {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1040px;
    padding-left: 0;
    padding-right: 0;
  }
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .news__list {
    margin-top: 32px;
  }
}

.news-item__link {
  display: inline-block;
  padding-block: 21px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .news-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 20px;
    min-height: 56px;
  }
}
.news-item__link + .news-item__link {
  border-top: 1px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
  .news-item__link + .news-item__link {
    border-top: none;
    margin-top: 24px;
  }
}
.news-item__link:hover {
  opacity: 0.7;
}

.news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lora", serif;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .news-item__meta {
    gap: 0;
    position: relative;
  }
  .news-item__meta::before, .news-item__meta::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 56px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #e5e5e5;
  }
  .news-item__meta::before {
    left: 0;
  }
  .news-item__meta::after {
    right: 0;
  }
}

.news-item__date {
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news-item__date {
    font-size: 16px;
    width: 154px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    text-align: center;
    position: relative;
  }
  .news-item__date::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 56px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #e5e5e5;
    right: 0;
  }
}

.news-item__label {
  line-height: 1;
}
.news-item__label.is-news {
  color: #b69b04;
}
.news-item__label.is-event {
  color: #31452d;
}
@media screen and (min-width: 768px) {
  .news-item__label {
    width: 139px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    text-align: center;
  }
}

.news-item__title {
  padding-top: 17px;
}
@media screen and (min-width: 768px) {
  .news-item__title {
    padding-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 39px;
    padding-right: 39px;
  }
}

.news-btn {
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .news-btn {
    margin-top: 37px;
  }
}

/*==============================================
#contact
===============================================*/
.contact {
  padding-block: 35px;
  padding-inline: 20px;
  background-color: #eeead0;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 120px;
  }
}

.contact__inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 576px) {
  .contact__inner {
    max-width: 360px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 1040px;
  }
}

.contact__list {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 320px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__list {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 847px;
  }
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.contact__item:first-of-type {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .contact__item:first-of-type {
    padding-top: 26px;
  }
}
.contact__item:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact__item:last-of-type {
    padding-bottom: 30px;
  }
}
.contact__item + .contact__item {
  border-top: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .contact__item + .contact__item {
    border-top: none;
    border-left: 1px solid #333;
  }
}
@media screen and (min-width: 768px) {
  .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 33.3333333333%;
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

.contact-image {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
}
@media screen and (min-width: 768px) {
  .contact-image {
    height: 25px;
  }
}

.contact-image__document img {
  width: 27px;
  height: 32px;
}

.contact-image__mail img {
  width: 32px;
  height: 25px;
}

.contact-image__tel img {
  width: 22px;
  height: 30px;
}

.contact__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 126px;
          flex: 1 1 126px;
  text-align: center;
  font-size: min(4.2666666667vw, 16px);
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 20px;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 16px;
  }
}

.contact-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 152px;
          flex: 1 1 152px;
}
@media screen and (min-width: 768px) {
  .contact-btn {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 24px;
  }
}
.contact-btn span {
  display: inline-block;
  font-size: 12px;
  font-family: "Noto Serif JP", serif;
  color: #31452d;
  line-height: 0.75;
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .contact-btn span {
    margin-top: 10px;
  }
}

.contact-btn__link {
  display: block;
  color: #fff;
  max-width: 150px;
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: min(4.2666666667vw, 16px);
}
@media screen and (min-width: 768px) {
  .contact-btn__link {
    max-width: 160px;
    padding-inline: min(2.2222vw, 30px);
  }
}

.document__link {
  background-color: #b69b04;
  border: 1px solid #b69b04;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.document__link:hover {
  background-color: #fff;
  border: 1px solid #b69b04;
  color: #b69b04;
}

.mail__link {
  background-color: #31452d;
  border: 1px solid #31452d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mail__link:hover {
  background-color: #fff;
  border: 1px solid #31452d;
  color: #31452d;
}

.tel__link {
  background-color: #31452d;
  border: 1px solid #31452d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tel__link:hover {
  background-color: #fff;
  border: 1px solid #31452d;
  color: #31452d;
}

.contact-telephone__text {
  font-family: "Lora", serif;
  color: #31452d;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}
.contact-telephone__text span {
  display: block;
  font-size: 12px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .contact-telephone__text span {
    margin-top: 10px;
  }
}

/*==============================================
#footer
===============================================*/
.footer {
  padding-top: 40px;
  background-color: #31452d;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 80px;
  }
}

.footer__inner {
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-bottom: 122px;
  }
}

.footer-content {
  text-align: center;
}

.footer-logo {
  width: 82px;
  margin-inline: auto;
}

.footer-logo__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-logo__link:hover {
  opacity: 0.7;
}

.footer-name {
  margin-top: 24px;
}

.footer-address {
  margin-top: 16px;
}
.footer-address span {
  margin-right: 10px;
}

.footer-tel {
  font-family: "Lora", serif;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .footer-tel {
    margin-top: 14px;
  }
}

.footer-mail {
  font-family: "Lora", serif;
  margin-top: 12px;
}

.footer-nav {
  margin-top: 34px;
  margin-inline: auto;
  max-width: 335px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    max-width: unset;
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-nav__item {
  padding-block: 24px;
  border-bottom: 1px solid;
  text-align: center;
}
.footer-nav__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .footer-nav__item {
    border-right: 1px solid;
    border-bottom: none;
    padding-block: 0;
  }
  .footer-nav__item:last-child {
    border-right: none;
  }
}

.footer-nav__link {
  padding-inline: 2rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-nav__link:hover {
  opacity: 0.7;
}

.footer-bottom {
  background-color: #333;
  border-top: 1px solid #fff;
  padding-top: 35px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .footer-bottom {
    padding-top: 15px;
  }
}

.footer-bottom__inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .footer-bottom__inner {
    max-width: 1040px;
    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;
  }
}

.footer-bottom__link {
  text-align: center;
}

.footer-bottom__sitemap {
  padding-inline: 2rem;
  border-right: 1px solid;
  padding-inline: min(4.2666vw, 1rem);
  font-size: min(4.2666vw, 16px);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-bottom__sitemap:hover {
  opacity: 0.7;
}

.footer-bottom__privacy {
  padding-inline: min(4.2666vw, 2rem);
  font-size: min(4.2666vw, 16px);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-bottom__privacy:hover {
  opacity: 0.7;
}

.footer-bottom__copyright {
  font-size: 12px;
  margin-top: 35px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-bottom__copyright {
    margin-top: unset;
    padding-inline: 2rem;
  }
}