@charset "UTF-8";
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .navSmall {
    display: none !important;
  }
}

@media screen and (max-width: 820px) {
  .navBig {
    display: none !important;
  }
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  color: #4d4d4d;
  font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Kozuka Mincho Pro", serif;
  text-align: center;
  background-color: #F7F3EE;
  position: relative;
  z-index: 1;
}
body ul, html ul {
  list-style: none;
  padding: 0;
}

.sec {
  width: 100%;
  padding: 90px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec {
    padding: 30px 0 0 0;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.secTitle {
  font-size: 30px;
  letter-spacing: 8px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .secTitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 430px) {
  .secTitle {
    font-size: 16px;
  }
}

.--topButton1 {
  display: flex;
  justify-content: center;
}
.--topButton1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background-color: #931E36;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 10px;
  width: 180px;
}
.--topButton1 a img {
  padding-left: 10px;
}

.--topButton2 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.--topButton2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  color: #931E36;
  text-decoration: none;
  border: solid 1px #931E36;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 18px;
  width: 180px;
  writing-mode: horizontal-tb;
}
.--topButton2 a img {
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .--topButton2 a {
    padding: 10px;
    font-size: 12px;
  }
}

.phoneIconNumber1 {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.phoneIconNumber1 img {
  margin-right: 10px;
}
.phoneIconNumber1__phoneNumber {
  margin: 0;
}
.phoneIconNumber1__phoneNumber a {
  text-decoration: none;
  color: #931E36;
  font-size: 20px;
  letter-spacing: 2px;
}
.phoneIconNumber1__receptionTime {
  font-size: 10px;
  margin: 0;
  text-align: start;
}

.phoneIconNumber2 {
  display: flex;
  align-items: center;
}
.phoneIconNumber2 img {
  margin-right: 10px;
}
.phoneIconNumber2__phoneNumber {
  margin: 0 0 8px 0;
}
.phoneIconNumber2__phoneNumber a {
  text-decoration: none;
  color: #ffffff;
  font-size: 25px;
  letter-spacing: 2px;
}
.phoneIconNumber2__receptionTime {
  font-size: 12px;
  margin: 0;
  text-align: start;
}

.letterDecoration {
  display: inline-block;
  position: relative;
  background-color: #931E36;
  color: white;
  font-size: 2rem;
  padding: 0 0 0 6px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .letterDecoration {
    font-size: 20px;
  }
}
@media screen and (max-width: 430px) {
  .letterDecoration {
    font-size: 16px;
  }
}
.letterDecoration::before {
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  left: 85%;
  width: 85%;
  height: 90%;
  border: 1px solid #D4C2A6;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header .navbar {
  height: 90px;
  background-color: #F7F3EE;
  padding: 0 20px;
}
@media screen and (max-width: 820px) {
  .header .navbar {
    height: 70px;
  }
}
.header .navbar .hamburger-iconSp {
  position: absolute;
  display: block;
  width: 30px;
  height: 25px;
  top: 20px;
  right: 20px;
}
.header .navbar .hamburger-iconSp span {
  background-color: #931E36;
  display: block;
  height: 3px;
  width: 100%;
  margin: 4px 0;
  transition: background-color 0.3s, transform 0.3s;
}
.header .navbar .hamburger-iconSp span:nth-child(1) {
  top: 0;
}
.header .navbar .hamburger-iconSp span:nth-child(2) {
  top: 8px;
}
.header .navbar .hamburger-iconSp span:nth-child(3) {
  top: 16px;
}
.header .navbar .menuSp {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  transform: translateY(-100%);
}
.header .navbar .menuSp ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 10px;
  margin: 0;
}
.header .navbar .menuSp ul li {
  margin: 0;
  padding: 0;
}
.header .navbar .menuSp ul li span {
  font-size: 15px;
  color: #fff;
  padding: 20px 0;
  padding-top: 5px;
}
.header .navbar .menuSp ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
}
.header .navbar .menuSp ul .close {
  position: relative;
  padding-left: 20px;
}
.header .navbar .menuSp ul .close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.header .navbar .menuSp ul .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
.header .navbar .toggle {
  transform: translateY(0);
  opacity: 1;
}
.header .navbar__left {
  position: absolute;
  top: 20px;
}
.header .navbar__left .hamburger {
  cursor: pointer;
  display: flex;
  padding: 10px;
  background-color: white;
  color: #931E36;
  font-size: 1.2em;
  z-index: 1001;
  text-align: justify;
  width: 100px;
}
.header .navbar__left .hamburger .hamburger-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 10px;
}
.header .navbar__left .hamburger .hamburger-icon span {
  background-color: #931E36;
  display: block;
  height: 3px;
  width: 100%;
  margin: 4px 0;
  transition: background-color 0.3s, transform 0.3s;
}
.header .navbar__left .hamburger .hamburger-icon span:nth-child(1) {
  top: 0;
}
.header .navbar__left .hamburger .hamburger-icon span:nth-child(2) {
  top: 8px;
}
.header .navbar__left .hamburger .hamburger-icon span:nth-child(3) {
  top: 16px;
}
.header .navbar__left .hamburger.open {
  width: 332px;
  text-align: justify;
}
.header .navbar__left .menu {
  overflow: hidden;
  max-height: 0;
  background-color: white;
  z-index: 1000;
  transition: max-height 0.5s ease-out;
}
.header .navbar__left .menu.open {
  max-height: 1000px;
}
.header .navbar__left .menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.header .navbar__left .menu ul li {
  padding: 30px;
  font-size: large;
}
.header .navbar__left .menu ul li a {
  border-left: 1px solid #931E36;
  text-decoration: none;
  color: #4d4d4d;
  writing-mode: vertical-rl;
}
.header .navbar__title {
  padding-top: 10px;
}
@media screen and (max-width: 820px) {
  .header .navbar__title {
    text-align: start;
  }
}
.header .navbar__title img {
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  .header .navbar__title img {
    width: 100px;
    margin-top: 5px;
  }
}
.header .navbar__title h1 {
  display: none;
  margin: 0;
  font-size: 1.5em;
  color: #333;
}
.header .navbar__right {
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 20px;
  margin: 0;
  padding-top: 5px;
}
.header .navbar__right .--topButton1 {
  font-size: 10px;
  padding: 10px;
}
.header .navbar__right .--topButton1 a {
  width: 100%;
}

.mv {
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 90px 0 45px 0;
  }
}
.mv img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
}
.mv__text {
  position: absolute;
  top: 120px;
  left: 20px;
  background-color: #F7F3EE;
  writing-mode: vertical-rl;
  color: #4d4d4d;
  z-index: 2;
  padding: 20px;
  height: 680px;
}
@media screen and (max-width: 1200px) {
  .mv__text {
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .mv__text {
    writing-mode: lr;
    height: auto;
    text-align: start;
    top: 440px;
  }
  .mv__text .underline {
    position: relative;
    top: 20px;
    left: -20px;
    width: 50%; /* 赤線の長さをタイトルの幅の50%に設定 */
    height: 3px;
    background-color: #931E36; /* 赤線の色 */
    margin-left: 0; /* 左側に寄せる */
  }
}
@media screen and (max-width: 650px) {
  .mv__text {
    top: 370px;
  }
}
@media screen and (max-width: 430px) {
  .mv__text {
    top: 250px;
    padding: 15px;
  }
}
.mv__text h2 {
  margin: 0;
  font-size: 36px;
  font-weight: lighter;
  letter-spacing: 15px;
  border-left: 2px solid #931E36;
  padding-top: 12px;
}
@media screen and (max-width: 1200px) {
  .mv__text h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .mv__text h2 {
    font-size: 20px;
    padding-top: 0;
    border: none;
  }
}
@media screen and (max-width: 430px) {
  .mv__text h2 {
    font-size: 18px;
    letter-spacing: 4px;
  }
}

.products {
  position: relative;
  z-index: 1;
  padding: 45px 0 90px 0;
}
@media screen and (max-width: 430px) {
  .products {
    padding: 45px 0;
  }
}
.products__items {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .products__items {
    display: block;
    padding: 20px 0;
  }
}
.products .itemsReverse {
  flex-direction: row-reverse;
}
.products .itemsReverse .products__text {
  margin-left: 0;
  margin-right: -70px;
}
@media screen and (max-width: 768px) {
  .products .itemsReverse .products__text {
    margin: 30px 0;
  }
}
.products__img {
  position: relative;
}
.products__img img {
  display: block;
}
@media screen and (max-width: 768px) {
  .products__img img {
    width: 100%;
  }
}
.products__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
  margin-left: -70px;
  margin-bottom: -30px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .products__text {
    display: block;
    margin: 30px 0;
    padding: 0;
    height: auto;
  }
}
.products__text .products__textTitle1 {
  left: 60px;
}
.products__text h3 {
  position: absolute;
  top: -20px;
  left: 40px;
  font-weight: lighter;
  letter-spacing: 5px;
  font-size: 23px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .products__text h3 {
    position: static;
    font-size: 16px;
  }
}
.products__text h3 img {
  width: 15px;
  padding: 0 10px 0 0;
}
.products__text .textItem {
  flex: 1;
  margin: 0;
  top: 60px;
  z-index: 2;
  padding: 5px 30px 30px 30px;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .products__text .textItem {
    position: static;
    padding: 0;
    margin: 20px 10px;
  }
}
.products__text .--upperText {
  padding-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .products__text .--upperText {
    padding: 0;
    font-weight: bold;
  }
}
.products__textItem--outer {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .products__textItem--outer {
    padding: 10px;
    margin: 20px;
  }
}

@media screen and (max-width: 768px) {
  .producer {
    padding: 45px 0;
  }
}
.producer__areaList {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 50px auto;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
}
.producer__areaList p {
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .producer__areaList {
    width: auto;
    font-size: smaller;
    padding: 0 20px;
  }
}
.producer__areaItem {
  border-left: 1px solid #A58B64;
  padding: 0 50px;
}
.producer .producer__areaList .producer__areaItem:nth-of-type(4) {
  border-right: 1px solid #A58B64;
}
.producer__companyItem {
  background-color: #fff;
  text-align: start;
  padding: 30px;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .producer__companyItem {
    margin: 30px 10px;
    text-align: center;
  }
}
.producer__companyItem h2 {
  font-size: 28px;
  font-weight: 100;
  letter-spacing: 10px;
  color: #931E36;
}
.producer__companyProfile {
  display: flex;
  gap: 30px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .producer__companyProfile {
    display: block;
  }
}
.producer__companyText h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .producer__companyText h3 {
    font-size: 20px;
  }
}
.producer__companyText p {
  letter-spacing: 3px;
  line-height: 30px;
  margin: 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .producer__companyText p {
    text-align: start;
  }
}
@media screen and (max-width: 768px) {
  .producer__companyPic img {
    width: 200px;
    padding-bottom: 30px;
  }
}
.producer__carouselList {
  display: flex !important;
  gap: 10px;
}
.producer__carouselItem {
  text-align: center;
}
.producer .slick-slide img {
  width: 100%;
}
.producer .slick-next {
  right: -35px;
}
@media screen and (max-width: 768px) {
  .producer .slick-next {
    display: none !important;
  }
}
.producer .slick-prev {
  left: -45px;
}
@media screen and (max-width: 768px) {
  .producer .slick-prev {
    display: none !important;
  }
}
.producer .slick-next:before,
.producer .slick-prev:before {
  color: #931E36;
  font-size: xx-large;
}

.link {
  background-color: #fff;
  padding: 70px 0 40px 0;
}
@media screen and (max-width: 768px) {
  .link {
    background-color: #F7F3EE;
    padding: 0 0 40px 0;
  }
}
.link .inner {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .link .inner {
    display: block;
    padding: 0 10px;
  }
}
.link__item {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .link__item {
    width: 100%;
    padding: 30px 0;
  }
}
.link__redOuter {
  border: solid 1px #931E36;
  background-color: #fff;
  padding: 10px;
  position: relative;
  display: inline-block;
}
.link__itemPic {
  display: block;
  width: 100%;
}
.link__verticalBanner {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 50px;
  height: 200px;
  background-color: #931E36;
  color: white;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.link__verticalBanner .link__icon {
  width: 24px;
  margin-bottom: 10px;
}
.link__verticalText {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.link__verticalText p {
  writing-mode: vertical-rl;
  letter-spacing: 5px;
}
.link__bannerArrow {
  position: absolute;
  bottom: 10px;
  left: 12px;
}
.link__bannerArrow img {
  width: 70%;
}

.contact__outer {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  gap: 1%;
}
@media screen and (max-width: 768px) {
  .contact__outer {
    display: block;
    padding: 50px 0 0 0;
  }
}
@media screen and (max-width: 430px) {
  .contact__outer {
    padding: 30px 0 0 0;
  }
}
.contact__left {
  width: 60%;
}
.contact__left--upper img {
  width: 100%;
}
.contact__left--lower {
  display: flex;
  gap: 2%;
  padding-top: 1%;
}
.contact__left--lower img {
  width: 49%;
}
.contact__right {
  color: #fff;
  background-color: #931E36;
  display: flex;
  align-items: center;
}
.contact__right--inner {
  text-align: start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__right--inner {
    padding: 10px 0 30px 0;
  }
}
.contact__textTitle {
  letter-spacing: 8px;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .contact__textTitle {
    letter-spacing: 4px;
    font-size: 16px;
  }
}
.contact__textTitle br {
  display: block;
  content: "";
  margin: 10px 0;
}
.contact__text {
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 12px;
  }
}
.contact__button {
  width: 100%;
  height: 15%;
}
.contact__button a {
  width: 100%;
  font-size: smaller;
}
@media screen and (max-width: 768px) {
  .contact__button a {
    width: 80%;
  }
}

.footer {
  background-color: #322303;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  color: white;
  padding: 50px 0;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
    height: 100%;
    padding: 50px 20px;
  }
}
.footer__navLeft {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .footer__navLeft {
    gap: 20px;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    display: block;
    text-align: start;
  }
}
.footer__contactInfo {
  padding-bottom: 5px;
}
.footer__contactInfo .phoneIconNumber2__phoneNumber {
  margin: 0;
}
.footer__reserve {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__reserve {
    padding-top: 20px;
  }
}
.footer__reserve a {
  padding: 8px 20px;
  font-size: medium;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    justify-content: flex-start;
  }
}
.footer__sns img {
  width: 12%;
}
@media screen and (max-width: 768px) {
  .footer__sns img {
    width: auto;
  }
}
.footer__navRight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer__navRight {
    margin: 0 auto;
  }
}
.footer__title {
  font-weight: lighter;
  font-size: medium;
}
.footer__item {
  font-size: small;
  padding: 4px;
}
.footer__copyRight {
  text-align: center;
  padding: 10px 0;
  background-color: #931E36;
  color: white;
  margin: 0;
}/*# sourceMappingURL=products.css.map */