html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", serif;
  font-size: 15px;
  font-weight: 500;
}

html {
  font-size: 15px;
  line-height: 1.8;
  color: #241e16;
  word-break: break-all;
  background: #fff;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html [id]:not([id=""]) {
    scroll-margin-top: 150px;
  }
}
@media only screen and (min-width: 768px) {
  html [id]:not([id=""]) {
    scroll-margin-top: 150px;
  }
}

body {
  margin: 0;
  background: #fff;
}

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

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: top;
  border: 0;
}

p {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
}

input,
select,
textarea,
button {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

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

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
  border: none;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

main {
  display: block;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body {
    position: relative;
    font-size: 15px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 136px;
  background: #f4f2e6;
}
.header__inner {
  display: flex;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .header__inner {
    align-items: center;
    padding-right: 22px;
    padding-left: 35px;
  }
}
.header__logo {
  max-width: 623px;
  transition: opacity 0.3s;
}
.header__logo:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    max-width: 259px;
    margin-top: 20px;
    margin-left: 22px;
  }
}
.headerLink {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .headerLink {
    display: none;
  }
}
.headerLink__item a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.headerLink__item a span {
  font-size: 14px;
}
.header__search {
  position: relative;
  width: 74px;
  height: 74px;
  margin-left: 43px;
  background-color: #241e16;
  border: 2px solid #241e16;
  border-radius: 50%;
  transition: all 0.3s;
}
.header__search::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  content: "";
  background-color: #f4f2e6;
  -webkit-mask: url("../img/icon_search.svg") no-repeat center center/30px 30px;
          mask: url("../img/icon_search.svg") no-repeat center center/30px 30px;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .header__search {
    width: 54px;
    height: 54px;
    margin-top: 11px;
    margin-right: 73px;
    margin-left: auto;
    background-size: 22px 22px;
  }
}
.header__search:hover {
  cursor: pointer;
  background-color: #f4f2e6;
  border-color: #241e16;
}
.header__search:hover::after {
  background-color: #241e16;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.87);
  opacity: 0;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .drawerWrap {
    display: none;
    pointer-events: none;
    opacity: 0;
  }
}
.drawerList {
  display: grid;
  gap: 35px;
  width: 100%;
  padding-top: 120px;
}
.drawerList__item {
  width: 100%;
  text-align: center;
  letter-spacing: 0.05em;
}
.drawerList__item a {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.drawerList__item a span {
  font-size: 16px;
}
.drawer__btn {
  margin-top: 50px;
  text-align: center;
}
._active .drawer {
  pointer-events: auto;
  opacity: 1;
}
.drawer__logo {
  position: absolute;
  top: 12.5px;
  left: 5%;
  width: 30.74%;
}
.drawer__logo svg {
  width: 100%;
}
.drawerButton {
  position: fixed;
  top: 11px;
  right: 11px;
  z-index: 30;
  width: 54px;
  height: 54px;
  background: #241e16;
  border-radius: 50%;
}
.drawerButton__inner {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  margin: auto;
  border-radius: 4px;
}
.drawerButton__top {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 21px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
  transform: translateX(-50%);
}
._active .drawerButton__top {
  left: 13px;
  transform: translateY(14px) rotate(45deg) translateX(-50%);
}
.drawerButton__med {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 21px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
  transform: translateX(-50%);
}
._active .drawerButton__med {
  opacity: 0;
}
.drawerButton__bottom {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 21px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
  transform: translateX(-50%);
}
._active .drawerButton__bottom {
  left: 13px;
  transform: translateY(-15px) rotate(-45deg) translateX(-50%);
}

body._drawerOpen {
  overflow: hidden;
}
body.home .header {
  background: transparent;
}
body.home .header__logo {
  display: none;
}
body.home .header__search:hover {
  cursor: pointer;
  background-color: #f4f2e6;
  border-color: #f4f2e6;
}
body.home .header__search:hover::after {
  background-color: #241e16;
}

.footer .bannerArea {
  background: #241e16;
}
.footer .bannerList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 68px 0;
}
@media only screen and (max-width: 767px) {
  .footer .bannerList {
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
    padding-top: 51px;
    padding-bottom: 57px;
  }
}
.footer .bannerList__item a {
  display: block;
  transition: opacity 0.3s;
}
.footer .bannerList__item a:hover {
  opacity: 0.6;
}
.footer .copyright {
  padding-top: 39px;
  padding-bottom: 97px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-align: center;
  background: #f4f2e6;
}
@media only screen and (max-width: 767px) {
  .footer .copyright {
    padding-top: 33px;
    padding-bottom: 81px;
  }
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 198px;
  padding: 9px;
  color: #241e16;
  text-align: center;
  border: 2px solid #241e16;
  border-radius: 36px;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .btn {
    max-width: 162px;
    padding: 7px;
  }
}
.btn._en {
  max-width: 162px;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 767px) {
  .btn._en {
    max-width: 133px;
  }
}
.btn span {
  position: relative;
  padding-right: 25px;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .btn span {
    font-size: 14px;
  }
}
.btn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #241e16;
  -webkit-mask: url("../img/icon_arrow.svg") no-repeat center center/contain;
          mask: url("../img/icon_arrow.svg") no-repeat center center/contain;
  transition: background-color 0.3s;
  transform: translateY(-50%);
}
.btn:hover {
  color: #f4f2e6;
  background: #241e16;
}
.btn:hover span::after {
  background-color: #f4f2e6;
}

.mv {
  background: url("../img/mv.jpg") no-repeat center center/cover;
}
@media only screen and (min-width: 768px) {
  .mv {
    height: 700px;
  }
}
.mv__content {
  padding-top: 160px;
}
@media only screen and (min-width: 768px) {
  .mv__content {
    margin-left: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__content {
    padding: 90px 22px 50px;
  }
}
.mv__heading {
  position: relative;
  display: inline-block;
  padding-top: 50px;
  padding-bottom: 46px;
  border-top: 4px solid #241e16;
  border-bottom: 4px solid #241e16;
  outline-offset: 10px;
}
@media only screen and (min-width: 768px) {
  .mv__heading {
    padding-right: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__heading {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.mv__heading::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #241e16;
}
.mv__heading::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #241e16;
}
.mv__title._en {
  font-family: "Roboto", sans-serif;
  font-size: 72px;
  font-weight: bold;
  line-height: 1.1666666667;
}
@media only screen and (max-width: 767px) {
  .mv__title._en {
    font-size: 36px;
    text-align: center;
  }
}
.mv__title._ja {
  margin-top: 28px;
  margin-left: 3px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4583333333;
  letter-spacing: 0.72px;
}
@media only screen and (max-width: 767px) {
  .mv__title._ja {
    margin-top: 10px;
    margin-left: 0;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.48px;
  }
}
.mv__title._ja span {
  display: block;
  margin-top: 5px;
  margin-left: 2px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1875;
  letter-spacing: -0.38px;
}
@media only screen and (max-width: 767px) {
  .mv__title._ja span {
    font-size: 10px;
  }
}
.mv__text {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .mv__text {
    margin-top: 23px;
  }
}

.section__inner {
  padding-top: 102px;
  padding-bottom: 114px;
}
@media only screen and (max-width: 767px) {
  .section__inner {
    padding-top: 40px;
    padding-bottom: 75px;
  }
}
.section__inner._lower {
  padding-top: 75px;
  padding-bottom: 94px;
}
@media only screen and (max-width: 767px) {
  .section__inner._lower {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.section__inner._detail {
  padding-top: 0;
  padding-bottom: 154px;
}
@media only screen and (max-width: 767px) {
  .section__inner._detail {
    padding-bottom: 114px;
  }
}
@media only screen and (max-width: 767px) {
  .section__inner._en {
    padding-top: 64px;
  }
}
.section__title {
  display: flex;
  gap: 27px;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .section__title {
    font-size: 32px;
  }
}
.section__title span {
  font-family: "Noto Sans JP", serif;
  font-size: 15px;
  font-weight: normal;
}
._en .section__title {
  font-family: "Roboto", sans-serif;
}
._en .section__title span {
  font-size: 32px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  ._en .section__title span {
    font-size: 20px;
  }
}
.section__more {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section__more {
    margin-top: 45px;
  }
}

.news {
  background: #f4f2e6;
}
.news._en {
  background: #e3e1d3;
}
.newsList {
  margin-top: 3px;
}
.newsList._en {
  display: grid;
  gap: 30px;
  margin-top: 45px;
}
@media only screen and (min-width: 1024px) {
  .newsList._en {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .newsList._en {
    gap: 17px;
    margin-top: 27px;
  }
}
.newsList__item a {
  display: grid;
  grid-template-columns: 200px auto;
  gap: 50px;
  padding: 36px 0;
  border-bottom: 1px solid #d0cdbc;
}
@media only screen and (max-width: 767px) {
  .newsList__item a {
    grid-template-columns: 80px auto;
    gap: 20px;
    padding: 25px 0;
  }
}
._en .newsList__item a {
  gap: 30px;
  padding: 30px 30px 34px;
  background: #f4f2e6;
  border: none;
}
@media only screen and (max-width: 767px) {
  ._en .newsList__item a {
    gap: 20px;
    padding: 17px;
  }
}
.newsList__item a:hover .news__title {
  color: #796f61;
  text-decoration: underline;
}
.newsList__item a:hover .news__img img {
  transform: scale(1.2, 1.2);
}
.newsList__item._enTop a {
  transition: background-color 0.3s;
}
.newsList__item._enTop:hover a {
  background-color: #fff;
}
.news__img {
  position: relative;
  max-height: 200px;
  overflow: hidden;
}
.news__img::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.news__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.news__info {
  display: flex;
  gap: 17px;
  align-items: center;
}
.news__date {
  font-family: "Roboto", sans-serif;
}
.news__title {
  margin-top: 6px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.24px;
  transition: color 0.3s;
}
@media only screen and (max-width: 767px) {
  .news__title {
    font-size: 15px;
    letter-spacing: 0.15px;
  }
}
._en .news__title {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 767px) {
  ._en .news__title {
    font-size: 15px;
    letter-spacing: 0.15px;
  }
}
.news__text {
  margin-top: 17px;
}
@media only screen and (max-width: 767px) {
  .news__text {
    display: none;
  }
}
.newsDetail {
  padding-bottom: 52px;
  border-bottom: 1px solid #d0cdbc;
}
.newsDetailTop {
  background: #e3e1d3;
}
.newsDetailTop__inner {
  width: min(100% - 44px, 1020px);
  padding-top: 71px;
  padding-bottom: 63px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .newsDetailTop__inner {
    padding-top: 51px;
    padding-bottom: 42px;
  }
}
.newsDetailTop h1 {
  margin-top: 18px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.32px;
}
@media only screen and (max-width: 767px) {
  .newsDetailTop h1 {
    font-size: 24px;
    letter-spacing: 0.24px;
  }
}
.newsDetail h2 {
  padding-top: 22px;
  padding-bottom: 22px;
  margin-top: 60px;
  margin-bottom: 45px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.2px;
  border-top: 1px solid #241e16;
  border-bottom: 1px solid #241e16;
}
.newsDetail h3 {
  padding-bottom: 13px;
  margin-top: 60px;
  margin-bottom: 45px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.18px;
  border-bottom: 1px solid #d0cdbc;
}
.newsDetail p {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .newsDetail p {
    margin-top: 30px;
  }
}
.newsDetail strong {
  display: block;
  margin-top: 40px;
  font-weight: bold;
}
.newsDetail a {
  margin-top: 40px;
  color: #796f61;
  text-decoration: underline;
}
.newsDetail a:hover {
  text-decoration: none;
}
.newsDetail img {
  display: block;
  width: auto;
  height: auto;
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  .newsDetail img {
    margin: 30px auto 0;
  }
}
.js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-30-2t-2u-38-15]:not(.does-not-exist):not(.does-not-exist) {
  margin-top: 40px;
}
.newsDetail .wp-block-image:has(.alignleft) {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-30-2t-2u-38-15-w-17-w-2w-1d]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist), .js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-30-2t-2u-38-15-w-17-w-2w-1e]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist), .js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-30-2t-2u-38-15-w-17-w-2w-1f]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
    width: calc(65% - 50px);
    margin-top: 0;
    margin-left: auto;
  }
  .newsDetail .wp-block-image:has(.alignleft) + h1, .newsDetail .wp-block-image:has(.alignleft) + h2, .newsDetail .wp-block-image:has(.alignleft) + h3 {
    width: calc(65% - 50px);
    margin-top: 0;
    margin-left: auto;
  }
}
.js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-30-2t-2u-38-15-w-17-w-34]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
  margin: 0;
}
.newsDetail .wp-block-image:has(.alignleft) + p {
  margin: 0;
}
.js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-36-2x-2v-2w-38-15]:not(.does-not-exist):not(.does-not-exist) {
  margin-top: 40px;
}
.newsDetail .wp-block-image:has(.alignright) {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-36-2x-2v-2w-38-15-w-17-w-2w-1d]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist), .js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-36-2x-2v-2w-38-15-w-17-w-2w-1e]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist), .js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-36-2x-2v-2w-38-15-w-17-w-2w-1f]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
    width: calc(65% - 50px);
    margin-top: 0;
    margin-right: auto;
  }
  .newsDetail .wp-block-image:has(.alignright) + h1, .newsDetail .wp-block-image:has(.alignright) + h2, .newsDetail .wp-block-image:has(.alignright) + h3 {
    width: calc(65% - 50px);
    margin-top: 0;
    margin-right: auto;
  }
}
.js-has-pseudo [csstools-has-1a-32-2t-3b-37-1w-2t-38-2p-2x-30-w-1a-3b-34-19-2q-30-33-2r-2z-19-2x-31-2p-2v-2t-1m-2w-2p-37-14-1a-2p-30-2x-2v-32-36-2x-2v-2w-38-15-w-17-w-34]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
  margin: 0;
}
.newsDetail .wp-block-image:has(.alignright) + p {
  margin: 0;
}
.newsDetail .alignleft,
.newsDetail .alignright {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .newsDetail .alignleft,
  .newsDetail .alignright {
    width: 35%;
  }
}
.newsDetail .alignleft img,
.newsDetail .alignright img {
  display: flex;
  margin: 0;
  margin-right: auto;
  margin-left: auto;
}
.newsDetail .alignleft {
  float: left;
}
@media only screen and (min-width: 768px) {
  .newsDetail .alignleft {
    margin-right: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .newsDetail .alignleft {
    float: none;
    width: 100%;
  }
}
.newsDetail .alignright {
  float: right;
}
@media only screen and (min-width: 768px) {
  .newsDetail .alignright {
    margin-bottom: 50px;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .newsDetail .alignright {
    float: none;
    width: 100%;
  }
}
.newsDetail figcaption {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
}
.newsDetail ul {
  margin-top: 40px;
}
.newsDetail blockquote {
  padding: 40px;
  margin: 40px 0 0;
  background: #e3e1d3;
  border: none !important;
}
.newsDetail blockquote p {
  margin: 0;
}

.aboutContent h2 {
  margin-top: 18px;
  margin-bottom: 56px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.24px;
}
@media only screen and (max-width: 767px) {
  .aboutContent h2 {
    margin-bottom: 49px;
    font-size: 18px;
    letter-spacing: 0.18px;
  }
}
.aboutContent p {
  margin-top: 26px;
  font-size: 1.1em;
}
.about__name {
  margin-top: 68px;
  margin-bottom: 21px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .about__name {
    margin-bottom: 45px;
  }
}

.contactContent h2 {
  margin-top: 18px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.24px;
}
@media only screen and (max-width: 767px) {
  .contactContent h2 {
    margin-bottom: 30px;
    font-size: 18px;
    letter-spacing: 0.18px;
  }
}

.contactContent p a {
  text-decoration: underline;
}

.contactContent p a:hover {
  text-decoration: none;
}

.contact__title {
  margin-top: 17px;
  margin-bottom: 42px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.24px;
}
@media only screen and (min-width: 768px) {
  .contact__title {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact__title {
    margin-bottom: 34px;
    font-size: 18px;
    letter-spacing: 0.18px;
  }
}
@media only screen and (min-width: 768px) {
  .contact__text {
    text-align: center;
  }
}
.contact__mail {
  display: block;
  margin-bottom: 50px;
  font-weight: bold;
  text-decoration: underline;
}
.contact__mail:hover {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .contact__mail {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact__mail {
    margin-bottom: 10px;
  }
}

.inner {
  width: min(100% - 44px, 1140px);
  margin-inline: auto;
}
.inner._narrow {
  width: min(100% - 44px, 1020px);
}

.search {
  padding: 32px 0;
  background: #241e16;
}
@media only screen and (max-width: 767px) {
  .search {
    padding: 25px 0;
  }
}
.search._header {
  max-width: 710px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  background: none;
}
@media only screen and (max-width: 767px) {
  .search._header {
    width: 92%;
  }
}
.search .box {
  position: relative;
  padding: 15px 24px;
  background-color: #f4f2e6;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.search .box input[type=text] {
  width: 100%;
}
.search .box:hover {
  background-color: #fff;
}
.search .box:hover .submit {
  background-color: #796f61;
}
.search .box .submit {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  font-size: 0 !important;
  background-color: #1e1e1e;
  -webkit-mask: url("../img/icon_search.svg") no-repeat center center/contain;
          mask: url("../img/icon_search.svg") no-repeat center center/contain;
  transition: background-color 0.3s;
  transform: translateY(-50%);
}
.search .box .submit:hover {
  cursor: pointer;
}

.lowerContent {
  margin-top: 136px;
  background: #f4f2e6;
}
.lowerContent._en {
  font-family: "Roboto", sans-serif;
}

.lowerTitle {
  padding-top: 57px;
  padding-bottom: 47px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.24px;
  background: #e3e1d3;
}
@media only screen and (max-width: 767px) {
  .lowerTitle {
    padding: 37px 22px 31px;
  }
}

.pagination {
  margin-top: 72px;
}
@media only screen and (max-width: 767px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination .page-numbers {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers.current {
  color: #fff;
  background: #241e16;
}
@media only screen and (max-width: 767px) {
  .pagination .page-numbers {
    gap: 9px;
  }
}
.pagination .page-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 18px;
  border: 1px solid #241e16;
  border-radius: 50%;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .pagination .page-numbers li a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.pagination .page-numbers li a:hover {
  color: #fff;
  background: #241e16;
}
.pagination .page-numbers li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 18px;
  border: 1px solid #241e16;
  border-radius: 50%;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .pagination .page-numbers li span.current {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) {
  .accordion {
    display: grid;
    grid-template-columns: 100px auto;
    gap: 27px;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 42px;
    border-top: 1px solid #241e16;
    border-bottom: 1px solid #241e16;
  }
}
@media only screen and (max-width: 767px) {
  .accordion {
    margin-bottom: 25px;
    border-bottom: 1px solid #241e16;
  }
  .js-has-pseudo [csstools-has-1a-2p-2r-2r-33-36-2s-2x-33-32-1m-2w-2p-37-14-1a-2p-2r-2r-33-36-2s-2x-33-32-20-2t-2p-2s-2t-36-w-2x-32-34-39-38-1m-2r-2w-2t-2r-2z-2t-2s-15-w-1a-2p-2r-2r-33-36-2s-2x-33-32-20-2t-2p-2s-2t-36]:not(.does-not-exist):not(.does-not-exist):not(.does-not-exist):not(does-not-exist)::after {
    transform: translateY(-50%) rotate(-180deg);
  }
  .accordion:has(.accordionHeader input:checked) .accordionHeader::after {
    transform: translateY(-50%) rotate(-180deg);
  }
  .js-has-pseudo [csstools-has-1a-2p-2r-2r-33-36-2s-2x-33-32-1m-2w-2p-37-14-1a-2p-2r-2r-33-36-2s-2x-33-32-20-2t-2p-2s-2t-36-w-2x-32-34-39-38-1m-2r-2w-2t-2r-2z-2t-2s-15-w-1a-2p-2r-2r-33-36-2s-2x-33-32-1v-33-32-38-2t-32-38]:not(.does-not-exist):not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
    grid-template-rows: 1fr;
    padding-bottom: 25px;
  }
  .accordion:has(.accordionHeader input:checked) .accordionContent {
    grid-template-rows: 1fr;
    padding-bottom: 25px;
  }
}
.accordionHeader {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .accordionHeader {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #241e16;
  }
  .accordionHeader::after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 12px;
    height: 12px;
    content: "";
    background: url("../img/icon_accordion.svg") no-repeat center center/contain;
    transition: transform 0.3s;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .accordionContent {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
  }
  .accordionContent__inner {
    overflow: hidden;
  }
}

.label {
  display: inline-block;
  padding: 2px 15px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #dedccd;
  background: #796f61;
  border-radius: 48px;
}
.label._cat {
  padding: 5px 24px;
  font-size: 15px;
  color: #241e16;
  background: transparent;
  border: 1px solid #241e16;
}
.label._current {
  color: #fff;
  background: #241e16;
}

.labelList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.labelList__item a {
  transition: all 0.3s;
}
.labelList__item a:hover {
  color: #fff;
  background: #241e16;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.87);
}
.modal__container {
  position: relative;
  z-index: 1001;
  width: 100%;
  border-radius: 6px;
}
.modal__close {
  position: absolute;
  top: 31px;
  right: 22px;
  width: 74px;
  height: 74px;
  background: url("../img/icon_close.svg") no-repeat center center/26px 26px;
  background-color: #241e16;
  border-radius: 50%;
  transition: all 0.3s;
}
.modal__close:hover {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .modal__close {
    top: 11px;
    right: 73px;
    width: 54px;
    height: 54px;
    background-size: 22px 22px;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

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

body._modalOpen {
  overflow: hidden;
}

._link {
  transition: color 0.3s;
}
._link:hover {
  color: #796f61;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */
