@charset "UTF-8";
/*--------------------------------------*
    * layout
*--------------------------------------*/
:root {
  --color-text-brown: #492f00;
  --color-text-beige: #eddfb3;
  --color-text-head: #4d2d00;
  --color-bg-wine: #912b4f;
  --color-bg-button: #5c0019;
  --color-bg-offwhite: #fcfaf2;
  --color-bg-gold: #d9bb5f;
  --font-playfair: "Playfair Display";
  --font-noto: "Noto Serif JP", serif;
}

footer {
  background-image: url("../img/footer_bg.png");
  background-size: cover;
  padding-top: clamp(2.25rem, 4.6875vw, 3.75rem);
  padding-bottom: clamp(3rem, 6.25vw, 5rem);
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  footer {
    padding-top: 10.6666666667vw;
  }
}
footer .section__inner {
  padding: 0;
}

.footer__head {
  text-align: center;
}

.footer__head-img {
  width: clamp(12.375rem, 25.78125vw, 20.625rem);
}
@media screen and (max-width:767px) {
  .footer__head-img {
    width: 66.6666666667vw;
  }
}

.footer__copyright {
  text-align: center;
  color: white;
  font-size: clamp(0.6rem, 1.25vw, 1rem);
  line-height: 1.4375;
  margin-top: clamp(1.725rem, 3.59375vw, 2.875rem);
  letter-spacing: 0.06em;
}
@media screen and (max-width:767px) {
  .footer__copyright {
    font-size: 2.4vw;
    line-height: 1.8888888889;
    margin-top: 7.4666666667vw;
  }
}

.footer__nav {
  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;
  height: 100%;
  width: 76%;
  margin-inline: auto;
  font-family: var(--font-playfair);
}
@media screen and (max-width:767px) {
  .footer__nav {
    margin-top: 9.3333333333vw;
  }
}
.footer__nav .nav-link {
  font-size: 4.8vw;
  position: relative;
  height: 13.3333333333vw;
  width: 100%;
  color: var(--color-text-beige);
  text-align: center;
  border-top: 1px solid var(--color-text-beige);
  padding-left: 2.6666666667vw;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__nav .nav-link span {
  font-size: 14px;
}
.footer__nav .nav-link .font-size {
  font-size: 3.2vw;
  margin-left: 5px;
}
.footer__nav .nav-link.activity {
  background-color: inherit;
}
.footer__nav .nav-link:last-child {
  border-bottom: 1px solid var(--color-text-beige);
}
.footer__nav .nav-link .nav-img {
  width: 6.6666666667vw;
  margin-right: 15px;
}

.footer__activity {
  line-height: 0.9444444444;
}

/*--------------------------------------*
    * component
*--------------------------------------*/
/* Swiperのスタイル */
.swiper.swiper1 {
  width: 100%;
  height: 100%;
}

.swiper-box {
  height: 100%;
}

.swiper-slide {
  height: 100%;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0% 15%;
  object-position: 0% 15%;
  -webkit-mask-image: url("../img/mv_bg_mask.svg");
  mask-image: url("../img/mv_bg_mask.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
.swiper-slide a:hover {
  opacity: 1;
  cursor: pointer;
}

.swiper-slide .swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: clamp(1.125rem, 2.34375vw, 1.875rem);
}

/* ハンバーガーメニュー */
#hamburger {
  display: none;
}
@media screen and (max-width:767px) {
  #hamburger {
    position: relative;
    display: block;
    width: 10.1333333333vw;
    height: 10.1333333333vw;
    margin: 0 0 0 auto;
    cursor: pointer;
    z-index: 999;
  }
}
#hamburger span.text-menu {
  position: absolute;
  position: absolute;
  top: 106%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: black;
  height: 0;
  font-size: 2.1333333333vw;
}

#hamburger span,
#hamburger::before,
#hamburger::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* 線のアニメーション */
  display: none;
}

#hamburger span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

#hamburger::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 20%;
  width: 70%;
  height: 2px;
  background-color: #333;
  display: none;
}

#hamburger::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 70%;
  height: 2px;
  background-color: #333;
  display: none;
}

/* メニューが開いたときのクロススタイル */
.hamburger-active #hamburger span {
  opacity: 0;
}

/* メニューが開いたときのクロススタイル */
.hamburger-active #hamburger .hamburger__img {
  opacity: 0;
}

.hamburger-active #hamburger::before {
  top: 49%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* 上の線を45度回転させてクロス */
  background-color: var(--color-text-beige);
  display: block;
}

.hamburger-active #hamburger::after {
  bottom: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: var(--color-text-beige);
  /* 下の線を-45度回転させてクロス */
  display: block;
}

.menu-right {
  display: none;
}
@media screen and (max-width:767px) {
  .menu-right {
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
    width: 76vw;
    margin-left: auto;
    display: block;
    background: var(--color-bg-button);
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /* Y軸ではなくX軸を使う */
    -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    /* スライド速度を0.6秒に設定 */
  }
}

.menu-right.open {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  /* 開閉両方に適用 */
}

.menu-right ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.menu-right li {
  margin: 0;
  padding: 0;
}

.menu-right li span {
  font-size: 15px;
  color: #333;
}

.menu-right li a,
.menu-right li span {
  display: block;
  padding: 20px 0;
}

.menu-right {
  padding-top: 18.6666666667vw;
  width: 85.3333333333vw;
}
.menu-right .nav-link {
  font-size: 4.8vw;
  position: relative;
  height: 12vw;
  width: 100%;
  color: var(--color-text-beige);
  text-align: center;
  border-top: 0.5px solid var(--color-text-beige);
  padding-left: 5.3333333333vw;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-playfair);
}
.menu-right .nav-link.activity {
  background-color: inherit;
}
.menu-right .nav-link:last-child {
  border-bottom: 1px solid var(--color-text-beige);
}
.menu-right .nav-link .text-size {
  display: inline-block;
}
@media screen and (max-width:767px) {
  .menu-right .nav-link .text-size {
    margin-left: 5px;
  }
}
.menu-right .nav-link span {
  font-size: 14px;
}
.menu-right .nav-img {
  width: 6.6666666667vw;
  margin-right: 15px;
}

/*--------------------------------------*
    * project
*--------------------------------------*/
@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: "Noto Serif JP";
  src: url("../fonts/Noto Serif JP-Regular.woff") format("opentype");
}
@font-face {
  font-display: swap;
  font-weight: 500;
  font-style: normal;
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Medium.woff") format("otf");
}
@font-face {
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Bold.woff") format("opentype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay-Regular.woff") format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay-Bold.woff") format("truetype");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--font-noto);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.7s 0s ease;
  transition: opacity 0.7s 0s ease;
}
a:hover {
  opacity: 0.7;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.font-noto {
  font-family: var(--font-noto);
}

.font-playfair {
  font-family: var(--font-playfair);
}

.section__inner {
  width: 100%;
  max-width: clamp(48.525rem, 101.09375vw, 80.875rem);
  padding-inline: clamp(3rem, 6.25vw, 5rem);
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .section__inner {
    padding-inline: 4vw;
  }
}

.header {
  background-color: white;
  padding-inline: 0;
  height: 6rem;
  border-bottom: 4px solid var(--color-bg-gold);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width:767px) {
  .header {
    height: 17.0666666667vw;
  }
}

.header__inner {
  width: 100%;
  max-width: clamp(48.525rem, 101.09375vw, 80.875rem);
  margin: 0 auto;
  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;
  height: 100%;
  padding-inline: clamp(0.9rem, 1.875vw, 1.5rem);
}
.header__logo {
  width: clamp(12.225rem, 25.46875vw, 20.375rem);
  margin-inline: 0;
}
@media screen and (max-width:767px) {
  .header__logo {
    width: 65.3333333333vw;
  }
}

.header__nav {
  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;
  height: 100%;
}
@media screen and (max-width:767px) {
  .header__nav {
    display: none;
  }
}
.header__nav .header__nav-link {
  font-size: clamp(0.675rem, 1.40625vw, 1.125rem);
  position: relative;
  margin-right: 12px;
  min-width: clamp(4.0875rem, 8.515625vw, 6.8125rem);
  place-items: center;
  padding-top: 2.8rem;
  color: var(--color-text-head);
  text-align: center;
  font-family: var(--font-playfair);
  font-size: 16px;
  line-height: 1;
}
.header__nav .header__nav-link .text-size {
  font-size: clamp(0.45rem, 0.9375vw, 0.75rem);
  display: inline-block;
}
@media screen and (max-width:767px) {
  .header__nav .header__nav-link .text-size {
    margin-left: 5px;
  }
}
.header__nav .header__nav-link span {
  font-size: 12px;
}
.header__nav .header__nav-link:last-child {
  margin-right: 0;
}
.header__nav .header__nav-link::after {
  content: "";
  position: absolute;
  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;
  background-size: cover;
  width: clamp(1.125rem, 2.34375vw, 1.875rem);
  height: clamp(1.125rem, 2.34375vw, 1.875rem);
  top: 36%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__nav .header__nav-link:nth-child(1)::after {
  background-image: url("../img/header-icon_home.png");
  background-size: cover;
  width: clamp(1.0125rem, 2.109375vw, 1.6875rem);
  height: clamp(1.125rem, 2.34375vw, 1.875rem);
}
.header__nav .header__nav-link:nth-child(2)::after {
  background-image: url("../img/header-icon_information.png");
  background-size: cover;
  width: clamp(1.1625rem, 2.421875vw, 1.9375rem);
  height: clamp(0.7875rem, 1.640625vw, 1.3125rem);
}
.header__nav .header__nav-link:nth-child(3)::after {
  background-image: url("../img/header-icon_activity.png");
  background-size: cover;
  width: clamp(0.975rem, 2.03125vw, 1.625rem);
  height: clamp(1.1625rem, 2.421875vw, 1.9375rem);
}
.header__nav .header__nav-link:nth-child(4)::after {
  background-image: url("../img/header-icon_works.png");
  background-size: cover;
  width: clamp(1.0875rem, 2.265625vw, 1.8125rem);
  height: clamp(1.05rem, 2.1875vw, 1.75rem);
}
.header__nav .header__nav-link:nth-child(5)::after {
  background-image: url("../img/header-icon_goods.png");
  background-size: cover;
  width: clamp(1.0875rem, 2.265625vw, 1.8125rem);
  height: clamp(0.975rem, 2.03125vw, 1.625rem);
}
.header__nav .header__nav-link:nth-child(6)::after {
  background-image: url("../img/header-icon_bbs.png");
  background-size: cover;
  width: clamp(1.0875rem, 2.265625vw, 1.8125rem);
  height: clamp(0.9rem, 1.875vw, 1.5rem);
}
.header__nav .header__nav-link:nth-child(7)::after {
  background-image: url("../img/header-icon_contact.png");
  background-size: cover;
  width: clamp(1.0125rem, 2.109375vw, 1.6875rem);
  height: clamp(0.7875rem, 1.640625vw, 1.3125rem);
}

.header__activity {
  line-height: 0.9444444444;
}

.mv {
  position: relative;
  margin-inline: auto;
  width: 100%;
  background-color: var(--color-bg-offwhite);
}
.mv:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-offwhite);
  top: 0;
  left: 0;
  z-index: -1;
}
.mv .section__inner {
  max-width: clamp(58.125rem, 121.09375vw, 96.875rem);
  margin-inline: auto;
  padding-inline: 0;
}
.mv .mv__wrap {
  width: 100%;
  height: clamp(33.975rem, 70.78125vw, 56.625rem);
  background-image: url("../img/mv_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width:767px) {
  .mv .mv__wrap {
    background-image: url("../img/mv_bg-sp.png");
    height: 108.8vw;
  }
}
.mv .mv__content {
  width: clamp(25.575rem, 53.28125vw, 42.625rem);
  height: clamp(30.525rem, 63.59375vw, 50.875rem);
  margin-inline: auto;
  position: absolute;
  position: absolute;
  top: 44.8%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width:767px) {
  .mv .mv__content {
    width: 82.1333333333vw;
    top: 44.5%;
    height: 98.1333333333vw;
  }
}
.mv .mv__content-bottom {
  width: 100%;
  position: absolute;
  top: 118%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mv .mv__content-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  left: 0%;
  z-index: -10;
}

.intro {
  width: 100%;
  max-width: clamp(48.375rem, 100.78125vw, 80.625rem);
  margin-inline: auto;
  margin-top: clamp(-8.125rem, -10.15625vw, -4.875rem);
  z-index: 10;
  position: relative;
}
@media screen and (max-width:767px) {
  .intro {
    margin-top: -17.3333333333vw;
  }
}
.intro .mv__content-bottom {
  text-align: center;
}
.intro .mv__content-bottom-img {
  width: 75%;
}
@media screen and (max-width:767px) {
  .intro .mv__content-bottom-img {
    width: 100%;
  }
}

.menu::before {
  content: "";
  position: absolute;
  height: 150%;
  width: 100%;
  background-color: var(--color-bg-offwhite);
  top: -50%;
  left: 0;
  z-index: -1;
}

.menu {
  margin-top: clamp(-13.375rem, -16.71875vw, -8.025rem);
  max-width: 100%;
  margin-inline: auto;
  width: 100%;
  height: clamp(26.4rem, 53.9vw, 43.1rem);
  position: relative;
}
@media screen and (max-width:767px) {
  .menu {
    background-image: url("../img/menu_bg-sp.png");
    background-position: center;
    margin-top: -26.6666666667vw;
    height: 138.6666666667vw;
    padding-top: 14.9333333333vw;
    background-size: cover;
  }
}
.menu .section__inner {
  background-image: url("../img/menu_bg.png");
  padding-inline: 0;
  width: 100%;
  max-width: clamp(58.125rem, 121.09375vw, 96.875rem);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width:767px) {
  .menu .section__inner {
    background: none;
  }
}
.menu .menu__flex-wrap {
  padding-top: clamp(6.6rem, 13.75vw, 11rem);
  padding-bottom: clamp(3rem, 6.25vw, 5rem);
}
@media screen and (max-width:767px) {
  .menu .menu__flex-wrap {
    padding-top: 0;
  }
}
.menu .menu__flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(9.375rem, 19.53125vw, 15.625rem);
}
@media screen and (max-width:767px) {
  .menu .menu__flex-row {
    gap: 17.0666666667vw;
  }
}
@media screen and (max-width:767px) {
  .menu .menu__flex-row.pc {
    display: none;
  }
}
.menu .menu__flex-row.sp {
  display: none;
}
@media screen and (max-width:767px) {
  .menu .menu__flex-row.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu .menu__flex-row.row2 {
  margin-top: clamp(1.05rem, 2.1875vw, 1.75rem);
}
@media screen and (max-width:767px) {
  .menu .menu__flex-row.row2 {
    margin-top: 6.6666666667vw;
  }
}
.menu .menu__flex-item {
  width: clamp(7.875rem, 16.40625vw, 13.125rem);
  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 (max-width:767px) {
  .menu .menu__flex-item {
    width: 32vw;
  }
}
.menu .menu__flex-title {
  text-align: center;
  font-size: clamp(1.35rem, 2.8125vw, 2.25rem);
  font-weight: bold;
  color: var(--color-text-brown);
  text-shadow: 4px 4px 4px white, -4px -4px 4px white, -4px 4px 4px white, 4px -4px 4px white, 4px 0 4px white, -4px 0 4px white, 0 4px 4px white, 0 -4px 4px white;
  margin-top: clamp(-3.625rem, -4.53125vw, -2.175rem);
  line-height: 1;
}
@media screen and (max-width:767px) {
  .menu .menu__flex-title {
    font-size: 5.6vw;
    font-weight: 700;
    margin-top: -8vw;
  }
}
.menu .menu__flex-title span {
  font-size: 16px;
}
@media screen and (max-width:767px) {
  .menu .menu__flex-title span {
    font-size: 12px;
  }
}
.margin-top .menu__flex-title {
  margin-top: clamp(-4.5rem, -5.625vw, -2.7rem);
}
@media screen and (max-width:767px) {
  .margin-top .menu__flex-title {
    margin-top: -14.6666666667vw;
  }
}

.parallax {
  height: clamp(8.625rem, 17.96875vw, 14.375rem);
  background-size: cover;
  background-attachment: fixed;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
.parallax::before, .parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
  opacity: 0;
  pointer-events: none;
}
.parallax::before {
  background-image: var(--bg-before);
  opacity: 1;
}
.parallax::after {
  background-image: var(--bg-after);
}
.parallax.fade-after::before {
  opacity: 0;
}
.parallax.fade-after::after {
  opacity: 1;
}
@media screen and (max-width:767px) {
  .parallax {
    height: 41.6vw;
    background-position: 20%;
    background: none !important;
  }
  .parallax::before {
    background-image: url("../img/parallax-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -2;
  }
  .parallax::after {
    display: none;
  }
}

.contact {
  background-color: var(--color-bg-wine);
  padding-top: clamp(2.025rem, 4.21875vw, 3.375rem);
  padding-bottom: clamp(2.25rem, 4.6875vw, 3.75rem);
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .contact {
    padding-top: 8.5333333333vw;
    padding-bottom: 7.2vw;
  }
}
.contact .section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  font-family: var(--font-playfair);
  font-weight: 100;
}
.contact .section__contact-title {
  font-size: clamp(1.0875rem, 2.265625vw, 1.8125rem);
}
@media screen and (max-width:767px) {
  .contact .section__contact-title {
    font-size: 6.9333333333vw;
    font-weight: 400;
  }
}
.contact .section__contact-img {
  width: clamp(10.875rem, 22.65625vw, 18.125rem);
}
@media screen and (max-width:767px) {
  .contact .section__contact-img {
    width: 58.1333333333vw;
    margin-top: -0.8vw;
  }
}
.contact .section__contact-sub_head {
  font-size: clamp(0.525rem, 1.09375vw, 0.875rem);
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .contact .section__contact-sub_head {
    font-size: 2.6666666667vw;
    margin-top: -0.8vw;
  }
}
.contact .button__contact {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  width: clamp(12.9rem, 26.875vw, 21.5rem);
  height: clamp(3.75rem, 7.8125vw, 6.25rem);
  margin-inline: auto;
  margin-top: clamp(1.8rem, 3.75vw, 3rem);
  background-image: url("../img/button-contact_bg.png");
  background-size: contain;
  color: white;
}
@media screen and (max-width:767px) {
  .contact .button__contact {
    width: 78.9333333333vw;
    height: 22.4vw;
    margin-top: 7.4666666667vw;
  }
}
.contact .button__contact .button__contact-link {
  font-size: clamp(0.75rem, 1.5625vw, 1.25rem);
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}
@media screen and (max-width:767px) {
  .contact .button__contact .button__contact-link {
    font-size: 4.5333333333vw;
  }
}
.contact .contact__bottom-text {
  font-size: clamp(0.6rem, 1.25vw, 1rem);
  line-height: 1.875;
  color: white;
  text-align: center;
  margin-top: clamp(0.9rem, 1.875vw, 1.5rem);
}
@media screen and (max-width:767px) {
  .contact .contact__bottom-text {
    line-height: 2.0357142857;
    font-size: 3.7333333333vw;
    font-weight: 500;
    margin-top: 8.5333333333vw;
  }
}

.link {
  background-color: var(--color-bg-offwhite);
  padding-top: clamp(1.875rem, 3.90625vw, 3.125rem);
  padding-bottom: clamp(2.25rem, 4.6875vw, 3.75rem);
  max-width: 100%;
  margin-inline: auto;
}
.link .section__inner {
  max-width: clamp(48rem, 100vw, 80rem);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .link {
    padding-top: 13.3333333333vw;
    padding-bottom: 9.3333333333vw;
  }
}
.link .link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.125rem, 2.34375vw, 1.875rem);
}
@media screen and (max-width:767px) {
  .link .link__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8vw;
  }
}
.link .link__item {
  width: clamp(10.875rem, 22.65625vw, 18.125rem);
}
@media screen and (max-width:767px) {
  .link .link__item {
    width: 53.3333333333vw;
  }
  .link .link__item:nth-child(2) {
    width: 60vw;
  }
  .link .link__item:last-child {
    width: 60vw;
  }
}
.nav-pagetop {
  position: fixed;
  z-index: 1000;
  right: 15px;
  bottom: 15px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.nav-pagetop a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  color: #ffffff;
  border-radius: 50%;
  background-color: var(--color-bg-wine);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}
.nav-pagetop a:before {
  display: block;
  content: "\e5ce";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-pagetop a:hover {
  background: rgb(125.3324468085, 37.1675531915, 68.2845744681);
  -webkit-box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.15);
}
.nav-pagetop a:hover:before {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.nav-pagetop.nav-pagetop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.page__title-wrap {
  text-align: center;
}

.page__title-deco {
  width: clamp(3.375rem, 7.03125vw, 5.625rem);
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .page__title-deco {
    width: 15.2vw;
  }
}

.page_title {
  font-size: clamp(1.35rem, 2.8125vw, 2.25rem);
  margin-top: clamp(0.75rem, 1.5625vw, 1.25rem);
}
@media screen and (max-width:767px) {
  .page_title {
    font-size: 6.4vw;
    margin-top: 3.2vw;
  }
}

.page__title-img {
  width: clamp(16.125rem, 33.59375vw, 26.875rem);
  margin-inline: auto;
  margin-top: clamp(-0.625rem, -0.78125vw, -0.375rem);
}
@media screen and (max-width:767px) {
  .page__title-img {
    width: 76vw;
    margin-top: -1.6vw;
  }
}

.page__title-sub {
  display: block;
  font-size: clamp(0.5625rem, 1.171875vw, 0.9375rem);
  color: var(--color-text-brown);
  font-weight: 700;
  margin-top: clamp(-0.375rem, -0.46875vw, -0.225rem);
}
@media screen and (max-width:767px) {
  .page__title-sub {
    font-size: 2.6666666667vw;
  }
}

.information,
.works,
.activity {
  background-color: var(--color-bg-offwhite);
}
.information .section__inner,
.works .section__inner,
.activity .section__inner {
  padding-inline: clamp(5.175rem, 10.78125vw, 8.625rem);
}
@media screen and (max-width:767px) {
  .information .section__inner,
  .works .section__inner,
  .activity .section__inner {
    padding-inline: 5.3333333333vw;
  }
}

main.page {
  padding-top: clamp(2.475rem, 5.15625vw, 4.125rem);
  padding-bottom: clamp(3rem, 6.25vw, 5rem);
}
@media screen and (max-width:767px) {
  main.page {
    padding-top: 4.5333333333vw;
  }
}

.page__content {
  margin-top: clamp(2.55rem, 5.3125vw, 4.25rem);
}
@media screen and (max-width:767px) {
  .page__content {
    margin-top: 8.5333333333vw;
  }
}

.page__item {
  background-color: #fff;
  height: 100%;
  padding: clamp(0.45rem, 0.9375vw, 0.75rem);
  position: relative;
  margin-top: clamp(1.5rem, 3.125vw, 2.5rem);
  -webkit-box-shadow: 0px 0px 14px #929292;
          box-shadow: 0px 0px 14px #929292;
}
.page__item:first-child {
  margin-top: 0;
}
@media screen and (max-width:767px) {
  .page__item {
    margin-top: 5.3333333333vw;
    padding: 1.8666666667vw;
  }
}

.page__item-deco {
  position: absolute;
  position: absolute;
  top: 0.5%;
  left: 85%;
  width: clamp(5.4375rem, 11.328125vw, 9.0625rem);
  opacity: 0.1;
}
@media screen and (max-width:767px) {
  .page__item-deco {
    width: 25.3333333333vw;
    left: 71%;
    top: 0;
  }
}

.page__item-wrap {
  border: 2px solid var(--color-bg-gold);
  height: 100%;
  padding: clamp(1.875rem, 3.90625vw, 3.125rem);
}
@media screen and (max-width:767px) {
  .page__item-wrap {
    padding: 6.9333333333vw;
  }
}

.page__item-flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  gap: clamp(1.5rem, 3.125vw, 2.5rem);
  margin-top: clamp(1.275rem, 2.65625vw, 2.125rem);
}
@media screen and (max-width:767px) {
  .page__item-flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.works .page__item-flex-wrap {
  margin-bottom: clamp(3.75rem, 7.8125vw, 6.25rem);
}

.page__item-left {
  width: 50%;
}
@media screen and (max-width:767px) {
  .page__item-left {
    width: 100%;
  }
}
.page__item-left a {
  text-decoration: underline;
}
.page__item-left a:hover {
  text-decoration: none;
  color: var(--color-text-head);
}

.page__item-right {
  width: 50%;
}
@media screen and (max-width:767px) {
  .page__item-right {
    width: 100%;
    padding-inline: 2.6666666667vw;
  }
}

.page__item-bottom {
  margin-top: clamp(1.125rem, 2.34375vw, 1.875rem);
  font-size: clamp(0.6rem, 1.25vw, 1rem);
  line-height: 1.75;
}
@media screen and (max-width:767px) {
  .page__item-bottom {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}
.page__item-bottom a {
  text-decoration: underline;
}
.page__item-bottom:hover {
  text-decoration: none;
  color: var(--color-text-head);
}
.page__item-bottom p,
.page__item-bottom img {
  margin: 1rem 0;
}
.page__item-bottom img {
  width: auto;
}

.page__item-tag {
  display: inline-block;
  color: white;
  background-color: red;
  padding-inline: clamp(0.375rem, 0.78125vw, 0.625rem);
  padding-block: clamp(0.15rem, 0.3125vw, 0.25rem);
  font-size: clamp(0.675rem, 1.40625vw, 1.125rem);
}
@media screen and (max-width:767px) {
  .page__item-tag {
    font-size: 3.4666666667vw;
    padding-inline: 2.1333333333vw;
  }
}

.page__item-date {
  display: block;
  margin-top: clamp(0.975rem, 2.03125vw, 1.625rem);
  font-size: clamp(0.9rem, 1.875vw, 1.5rem);
}
@media screen and (max-width:767px) {
  .page__item-date {
    font-size: 4.5333333333vw;
    margin-top: 4vw;
  }
}

.page__item-title {
  font-size: clamp(0.975rem, 2.03125vw, 1.625rem);
  line-height: 1.5;
  margin-top: clamp(0.6rem, 1.25vw, 1rem);
}
@media screen and (max-width:767px) {
  .page__item-title {
    font-size: 4.8vw;
    line-height: 1.4444444444;
    margin-top: 5.3333333333vw;
  }
}

.page__item-top {
  line-height: 1.7142857143;
}
@media screen and (max-width:767px) {
  .page__item-top {
    margin-top: 6.1333333333vw;
    font-size: 3.7333333333vw;
  }
}

.page__item-content-date {
  margin-top: clamp(0.375rem, 0.78125vw, 0.625rem);
}

.page__item-price {
  margin-top: clamp(0.375rem, 0.78125vw, 0.625rem);
}

.page__item-publisher {
  margin-top: clamp(0.375rem, 0.78125vw, 0.625rem);
}

.page__item-content {
  font-size: clamp(0.6rem, 1.25vw, 1rem);
  line-height: 1.75;
  margin-top: clamp(1.125rem, 2.34375vw, 1.875rem);
}
@media screen and (max-width:767px) {
  .page__item-content {
    font-size: 3.7333333333vw;
    margin-top: 10.1333333333vw;
  }
}

.pagination {
  text-align: center;
  margin-top: clamp(1.125rem, 2.34375vw, 1.875rem);
  color: var(--color-bg-wine);
  font-size: clamp(0.75rem, 1.5625vw, 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.375rem, 0.78125vw, 0.625rem);
}
@media screen and (max-width:767px) {
  .pagination {
    font-size: 4.8vw;
    margin-top: 5.3333333333vw;
  }
}

.pagination .current {
  background: var(--color-bg-button);
  padding: clamp(0.1875rem, 0.390625vw, 0.3125rem) clamp(0.375rem, 0.78125vw, 0.625rem);
  color: white;
}

.button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  background-color: var(--color-bg-button);
  border-radius: 90px;
  text-align: center;
}
.button__link {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 25px;
  font-size: clamp(0.9rem, 1.875vw, 1.5rem);
  color: white;
  font-weight: normal;
  text-align: center;
  line-height: 1.35;
}
@media screen and (max-width:767px) {
  .button__link {
    font-size: 4vw;
  }
}

.contact_text {
  margin-top: clamp(2.25rem, 4.6875vw, 3.75rem);
}
@media screen and (max-width:767px) {
  .contact_text {
    font-size: 3.7333333333vw;
    margin-top: 12.8vw;
    padding-inline: 6.4vw;
  }
}
.contact_text.thanks {
  padding-inline: 0;
  line-height: 1.5;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.9rem, 1.875vw, 1.5rem);
  width: 65%;
  margin-inline: auto;
  margin-top: clamp(2.25rem, 4.6875vw, 3.75rem);
}
@media screen and (max-width:767px) {
  form {
    width: 100%;
    padding-inline: 7.2vw;
    background: white;
    margin-top: 8.8vw;
    padding-top: 6.6666666667vw;
    gap: 8vw;
  }
}

.contact__title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.1875rem, 0.390625vw, 0.3125rem);
}
@media screen and (max-width:767px) {
  .form-group label {
    font-size: 4.2666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-group.half {
  width: 50%;
}

.name-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width:767px) {
  .name-fields {
    gap: 5.3333333333vw;
  }
}

.name-fields span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 50%;
}
.name-fields span input {
  width: 100%;
}

.name-fields input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 50%;
}

.required {
  background-color: red;
  color: white;
  padding: clamp(0.1125rem, 0.234375vw, 0.1875rem);
  font-size: clamp(0.525rem, 1.09375vw, 0.875rem);
  border-radius: 3px;
}
@media screen and (max-width:767px) {
  .required {
    font-size: 3.2vw;
    padding-inline: 1.3333333333vw;
    padding-block: 1.0666666667vw 0.4vw;
    border-radius: 5px;
    margin-bottom: 0.5333333333vw;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=file],
textarea {
  padding-block: clamp(0.45rem, 0.9375vw, 0.75rem);
  padding-inline: clamp(0.375rem, 0.78125vw, 0.625rem);
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}
@media screen and (max-width:767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=file],
  textarea {
    padding-block: 1.6vw;
    padding-inline: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}

textarea {
  resize: vertical;
}

.submit-wrap {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width:767px) {
  .submit-wrap {
    width: 42.6666666667vw;
    height: 10.6666666667vw;
  }
}
.submit-wrap input {
  background-color: var(--color-bg-button);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width:767px) {
  .submit-wrap input {
    font-size: 3.7333333333vw;
    padding: 3.2vw 0;
  }
}

.email-confirm {
  margin-top: clamp(0.375rem, 0.78125vw, 0.625rem);
}
@media screen and (max-width:767px) {
  .email-confirm {
    font-size: 2.9333333333vw;
    white-space: nowrap;
    display: block;
    margin-top: 2.6666666667vw;
  }
}

.btn-submit {
  background-color: var(--color-bg-button);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #555;
}

.wpcf7 input[type=file] {
  border: none;
}

span.wpcf7-not-valid-tip {
  width: 100%;
  margin-top: clamp(0.1875rem, 0.390625vw, 0.3125rem);
}

.iframe-container {
  position: relative;
  width: 100%;
  margin-top: clamp(2.55rem, 5.3125vw, 4.25rem);
  padding-top: 150%;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .iframe-container {
    margin-top: 8.5333333333vw;
  }
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}/*# sourceMappingURL=style.css.map */