@charset "UTF-8";
/* スクロールアニメーション */
.scroll-animation {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), translate 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.scroll-animation.show {
  opacity: 1;
  translate: 0 0;
}

/* ハンバーガーメニュー */
.viviente-menu__filter {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  cursor: pointer;
  height: 100%;
  inset: 0;
  position: fixed;
  width: 100%;
  opacity: 0;
  transition: 0.4s cubic-bezier(0.78, 0.18, 0.34, 0.98);
  visibility: hidden;
  z-index: 1000;
}
.viviente-menu__button {
  aspect-ratio: 1/1;
  background-color: #796d66;
  border-radius: calc(infinity * 1px) 0 0 calc(infinity * 1px);
  box-shadow: 0 0 10px 0 rgba(121, 109, 102, 0.2);
  cursor: pointer;
  display: grid;
  place-content: center;
  height: 70px;
  top: 50%;
  right: 0;
  position: fixed;
  transform: translateY(-50%);
  transition: 0.4s;
  width: 70px;
  z-index: 1002;
  /* メニューが閉じる時のアニメーション */
  /* メニューが開く時のアニメーション */
}
.viviente-menu__button.close .top {
  animation: menu_top 0.5s;
  animation-fill-mode: forwards;
}
.viviente-menu__button.close .bottom {
  animation: menu_bottom 0.5s;
  animation-fill-mode: forwards;
}
.viviente-menu__button.close .text {
  animation: menu_text 0.5s;
  animation-fill-mode: forwards;
}
.viviente-menu__button.open .top {
  animation: menu_top_close 0.5s;
  animation-fill-mode: forwards;
  background-color: #000000;
  width: 60%;
}
.viviente-menu__button.open .bottom {
  animation: menu_bottom_close 0.5s;
  animation-fill-mode: forwards;
  background-color: #000000;
  width: 60%;
}
.viviente-menu__button.open .text {
  animation: menu_text_close 0.5s;
  animation-fill-mode: forwards;
}
.viviente-menu__button .line {
  display: block;
  gap: 10px;
  margin: 3px auto;
  position: relative;
  transition: 0.5;
}
.viviente-menu__button .line.top {
  animation-fill-mode: forwards;
  background-color: #ffffff;
  height: 1px;
  width: 26px;
}
.viviente-menu__button .line.bottom {
  animation-fill-mode: forwards;
  background-color: #ffffff;
  height: 1px;
  width: 26px;
}
.viviente-menu__button .line.text {
  display: block;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 3px auto 0;
  text-align: center;
}
.viviente-menu__cont {
  background: #f6f0e4;
  display: grid;
  height: 100vh;
  max-height: 100vh;
  translate: 0 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0.78, 0.18, 0.34, 0.98);
  padding: 70px;
  position: fixed;
  max-width: 737px;
  width: 100%;
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .viviente-menu__cont {
    place-content: flex-start;
    padding: 70px 20px 20px;
    overflow-y: auto;
  }
}
.viviente-menu__cont__title {
  align-self: flex-end;
  margin-bottom: 30px;
}
.viviente-menu__cont__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
  max-width: 735px;
}
.viviente-menu__cont__line {
  list-style: none;
  margin: 0;
  padding: 0;
}
.viviente-menu__cont__line > li > span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  padding-bottom: 15px;
  padding-top: 15px;
}
.viviente-menu__cont__line > li > a {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-top: 15px;
  position: relative;
}
.viviente-menu__cont__line > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../images/icon_button-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.viviente-menu__cont__line li {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
}
.viviente-menu__cont__line li:hover::after {
  transform: translateY(-50%) translateX(3px);
}
.viviente-menu__cont__line.viviente-menu__cont__lineup-item li {
  border-bottom: 1px solid #d7d3d1;
  font-size: 20px;
  padding-right: 20px;
  color: #000000;
  text-decoration: none;
}
.viviente-menu__cont__line.viviente-menu__cont__lineup-item li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: #796d66;
  border-radius: 50%;
}
.viviente-menu__cont a {
  position: relative;
  color: #000000;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s;
}
.viviente-menu__cont a:hover {
  opacity: 0.6;
}
.viviente-menu__cont__lineup-sub {
  list-style: none;
  padding-bottom: 5px;
  transition: max-height 0.3s ease-in-out;
}
.viviente-menu__cont__lineup-sub.open {
  max-height: 200px;
}
.viviente-menu__cont__lineup-sub li {
  padding-bottom: 10px;
  position: relative;
}
.viviente-menu__cont__lineup-sub li a,
.viviente-menu__cont__lineup-sub li p {
  font-size: 16px;
  display: block;
  padding-left: 15px;
}
.viviente-menu__cont__lineup-sub li .lineup-bar::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 1px;
  background-color: #796d66;
  position: absolute;
  left: 0;
  top: 0.8em;
}
.viviente-menu__cont__top-head, .viviente-menu__cont__about-head, .viviente-menu__cont__solution-head, .viviente-menu__cont__environment-head, .viviente-menu__cont__high-performance-head, .viviente-menu__cont__lineup-head, .viviente-menu__cont__catalog-head, .viviente-menu__cont__docs-head, .viviente-menu__cont__results-head, .viviente-menu__cont__showroom-head, .viviente-menu__cont__qa-head, .viviente-menu__cont__contact-head {
  border-bottom: 1px solid #d7d3d1;
}
.viviente-menu__cont__docs-head {
  padding: 0 0 15px;
}
.viviente-menu__cont__docs-sub {
  list-style: none;
  padding: 0;
  transition: max-height 0.3s ease-in-out;
}
.viviente-menu__cont__docs-sub li {
  padding-bottom: 10px;
  position: relative;
}
.viviente-menu__cont__docs-sub li a {
  font-size: 16px;
  display: block;
  padding-left: 15px;
}
.viviente-menu__cont__docs-sub li .lineup-bar::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 1px;
  background-color: #796d66;
  position: absolute;
  left: 0;
  top: 0.8em;
}

.no-scroll {
  transition: 0.3s;
  overflow: hidden;
}
.no-scroll .viviente-menu__filter {
  opacity: 1;
  visibility: initial;
}
.no-scroll .viviente-menu__button {
  background: none;
  box-shadow: 0 0 10px 0 rgba(121, 109, 102, 0);
}
.no-scroll .viviente-menu__button .top {
  background-color: #796d66;
  height: 2px;
}
.no-scroll .viviente-menu__button .bottom {
  background-color: #796d66;
  height: 2px;
}
.no-scroll .viviente-menu__button .text {
  color: #796d66;
}
.no-scroll .viviente-menu__cont.menu-open {
  opacity: 1;
  visibility: visible;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@keyframes menu_top {
  0% {
    transform: translateY(0) rotate(-45deg);
    transform-origin: center;
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes menu_bottom {
  0% {
    transform: translateY(-7px) rotate(45deg);
    transform-origin: center;
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes menu_text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu_top_close {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
    transform-origin: center;
  }
}
@keyframes menu_bottom_close {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-7px) rotate(45deg);
    transform-origin: center;
  }
}
@keyframes menu_text_close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Product Search */
.viviente-search {
  position: fixed;
  right: 30px;
  top: 110px;
}
.viviente-search a {
  box-shadow: 0 0 10px 0 rgba(121, 109, 102, 0.2);
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.viviente-search a:hover {
  opacity: 0.6;
}
.viviente-search-logo {
  margin-bottom: 5px;
}
.viviente-search-arrow {
  vertical-align: middle;
  margin-left: 5px;
}
.viviente-search span {
  display: block;
  font-size: 18px;
}

/* 共通 */
.container {
  color: #000000;
  margin-top: 81px;
  position: relative;
  /* ボタン　 */
}
.container img {
  height: auto;
}
.container a {
  transition: all 0.3s ease;
}
.container a:hover {
  opacity: 0.6;
}
@media (hover: none) {
  .container a:active {
    opacity: 0.6;
  }
}
.container .mod-auto {
  max-width: 1200px;
  width: 100%;
  min-width: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1270px) {
  .container .mod-auto {
    padding-left: min(3%, 20px);
    padding-right: min(3%, 20px);
  }
}
.container .hover {
  opacity: 0.6;
}
.container .button-link {
  background-color: #ffffff;
  border: 1px solid #796d66;
  color: #796d66;
  display: block;
  font-size: 20px;
  font-family: "Ibarra Real Nova", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 10px 30px;
  position: relative;
  text-align: center;
  margin: auto;
  width: 240px;
  min-height: 50px;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
}
.container .button-link:before {
  content: url(../images/icon_button-arrow.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  display: block;
  height: 40px;
  width: 40px;
}
.container .button-link:hover {
  background-color: #796d66;
  color: #ffffff;
  text-decoration: none;
}
.container .button-link:hover:before {
  content: url(../images/icon_button-arrow-hover.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  display: block;
  height: 40px;
  width: 40px;
}

/* 個別 */
.container .hero img {
  width: 100%;
}
.container .about {
  background: url(../images/bg_about.webp) no-repeat center center/cover;
  padding: 120px 0;
  text-align: center;
}
.container .about__label {
  color: #796d66;
  font-size: 26px;
  font-family: "Ibarra Real Nova", serif;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 10px;
  transform-origin: center;
}
.container .about__title {
  font-size: 80px;
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.2;
  -webkit-text-stroke: 0.7px #000000;
}
.container .about__detail {
  letter-spacing: 0.15em;
  line-height: 3;
  padding-top: 30px;
}
.container .lineup {
  background-color: #f6f0e4;
  padding: 120px 0;
}
.container .lineup__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.container .lineup__head__title-en {
  display: inline-block;
  font-size: 70px;
  font-family: "Ibarra Real Nova", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-bottom: 10px;
}
.container .lineup__head__title-ja {
  color: #796d66;
  display: inline-block;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.5;
  padding: 0 60px 15px;
  position: relative;
}
.container .lineup__head__title-ja::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
  bottom: 0;
  background: linear-gradient(to right, rgba(121, 109, 102, 0), #796d66 30%, #796d66 70%, rgba(121, 109, 102, 0));
}
.container .lineup__row {
  display: flex;
  gap: min(6vw, 80px);
}
.container .lineup__row:has(+ .lineup__row) {
  border-bottom: 1px solid #d7d3d1;
  margin-bottom: 80px;
  padding: 0 0 80px;
}
.container .lineup__cont {
  width: 100%;
}
.container .lineup__lead {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.75;
  padding-top: 20px;
  text-align: left;
}
.container .lineup__title {
  font-size: 50px;
  font-family: "Ibarra Real Nova", serif;
  font-weight: 400;
  line-height: 1.2;
  transform-origin: left;
}
.container .lineup__title-ja {
  color: #796d66;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding-top: 10px;
}
.container .lineup__detail {
  letter-spacing: 0.1em;
  line-height: 2.2;
  padding-bottom: 30px;
  padding-top: 20px;
}
.container .lineup__image {
  flex-shrink: 0;
  max-width: 40vw;
  padding-top: 10px;
}
.container .lineup .button-link {
  margin-left: 0;
}
.container .other {
  background-color: #ffffff;
  padding: 120px 0;
  text-align: center;
}
.container .other__cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: subgrid;
  gap: clamp(20px, 3vw, 40px);
}
.container .other__item {
  border: 1px solid #796d66;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 30px;
  padding: min(40px, 3.5vw) 20px;
  position: relative;
}
.container .other__item::before, .container .other__item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  pointer-events: none;
}
.container .other__item::before {
  /* 左上 */
  top: -0.5px;
  left: -0.5px;
  border-top: 2px solid #796d66;
  border-left: 2px solid #796d66;
  border-radius: 0 0 0 0;
}
.container .other__item::after {
  /* 右上 */
  top: -0.5px;
  right: -0.5px;
  border-top: 2px solid #796d66;
  border-right: 2px solid #796d66;
  border-radius: 0 0 0 0;
}
.container .other__item > .corner-bracket-bl, .container .other__item > .corner-bracket-br {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  pointer-events: none;
}
.container .other__item > .corner-bracket-bl {
  /* 左下 */
  left: -0.5px;
  bottom: -0.5px;
  border-bottom: 2px solid #796d66;
  border-left: 2px solid #796d66;
  border-radius: 0 0 0 0;
}
.container .other__item > .corner-bracket-br {
  /* 右下 */
  right: -0.5px;
  bottom: -0.5px;
  border-bottom: 2px solid #796d66;
  border-right: 2px solid #796d66;
  border-radius: 0 0 0 0;
}
.container .other__item.--q-a {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 50px;
  grid-column: span 2;
  padding: min(80px, 6vw);
}
.container .other__title {
  text-align: center;
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.2;
}
.container .other__title-sub {
  display: block;
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  padding-top: 10px;
}
.container .other__image {
  margin: auto;
}
.container .other__lead {
  font-weight: 400;
  letter-spacing: 0.15em;
}

@media print, screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
@media print, screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  /* 共通 */
  .container {
    margin-top: 60px;
    position: relative;
  }
  .container img {
    height: auto;
  }
  .container a {
    transition: all 0.3s ease;
  }
  .container a:hover {
    opacity: 0.6;
  }
  /* 個別 */
  /* スクロールアニメーション */
  /* ハンバーガーメニュー */
  /* Product Search */
  /* 共通 */
  /* 個別 */
}
@media print and (hover: none), screen and (max-width: 767px) and (hover: none) {
  .container a:active {
    opacity: 0.6;
  }
}
@media print, screen and (max-width: 767px) {
  .container .mauto {
    margin: auto;
  }
  .container .hover {
    opacity: 0.6;
  }
  .scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .scroll-animation.show {
    opacity: 1;
    transform: translateY(0);
  }
  .viviente-menu__filter {
    background: rgba(0, 0, 0, 0.4);
    content: "";
    cursor: pointer;
    height: 100%;
    inset: 0;
    position: fixed;
    width: 100%;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.78, 0.18, 0.34, 0.98);
    visibility: hidden;
    z-index: 1000;
  }
  .viviente-menu__button {
    aspect-ratio: 1/1;
    background-color: #796d66;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    display: grid;
    place-content: center;
    height: 70px;
    top: 220px;
    right: 0;
    position: fixed;
    transform: translateY(0);
    transition: 0.4s;
    width: 70px;
    z-index: 1002;
    /* メニューが閉じる時のアニメーション */
    /* メニューが開く時のアニメーション */
  }
  .viviente-menu__button.close .top {
    animation: menu_top 0.5s;
    animation-fill-mode: forwards;
  }
  .viviente-menu__button.close .bottom {
    animation: menu_bottom 0.5s;
    animation-fill-mode: forwards;
  }
  .viviente-menu__button.open .top {
    animation: menu_top_close 0.5s;
    animation-fill-mode: forwards;
    background-color: #000000;
    width: 60%;
  }
  .viviente-menu__button.open .bottom {
    animation: menu_bottom_close 0.5s;
    animation-fill-mode: forwards;
    background-color: #000000;
    width: 60%;
  }
  .viviente-menu__button .line {
    display: block;
    gap: 10px;
    margin: 3px auto;
    position: relative;
    transition: 0.5;
  }
  .viviente-menu__button .line.top {
    animation-fill-mode: forwards;
    width: 26px;
  }
  .viviente-menu__button .line.bottom {
    animation-fill-mode: forwards;
    width: 26px;
  }
  .viviente-menu__button .line.text {
    display: block;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin: 3px auto 0;
    text-align: center;
  }
  .viviente-menu__cont {
    align-items: center;
    background: #f6f0e4;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    translate: 0 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.78, 0.18, 0.34, 0.98);
    padding: 50px 60px 50px 30px;
    position: fixed;
    max-width: 348px;
    width: 100%;
    z-index: 1001;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .viviente-menu__cont__title {
    margin-bottom: 30px;
  }
  .viviente-menu__cont__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 735px;
  }
  .viviente-menu__cont__line {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .viviente-menu__cont__line > li > span {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    padding-bottom: 15px;
    padding-top: 15px;
    position: relative;
  }
  .viviente-menu__cont__line > li > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%) rotate(90deg);
    width: 40px;
    height: 40px;
    background-image: url("../images/icon_button-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .viviente-menu__cont__line > li > a {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    padding-bottom: 15px;
    padding-right: 20px;
    padding-top: 15px;
    position: relative;
  }
  .viviente-menu__cont__line > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url("../images/icon_button-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .viviente-menu__cont__line li {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
  }
  .viviente-menu__cont__line li:hover::after {
    transform: translateY(-50%) translateX(3px);
  }
  .viviente-menu__cont__line.viviente-menu__cont__lineup-item li {
    border-bottom: 1px solid #d7d3d1;
    font-size: 18px;
    padding-right: 20px;
    color: #000000;
    text-decoration: none;
  }
  .viviente-menu__cont__line.viviente-menu__cont__lineup-item li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background-color: #796d66;
    border-radius: 50%;
  }
  .viviente-menu__cont a {
    position: relative;
    color: #000000;
    display: block;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    line-height: 1.7;
    text-decoration: none;
    transition: all 0.3s;
  }
  .viviente-menu__cont a:hover {
    opacity: 0.6;
  }
  .viviente-menu__cont__lineup-sub {
    display: none;
    list-style: none;
    padding-bottom: 0;
  }
  .viviente-menu__cont__lineup-sub li {
    padding-bottom: 10px;
    position: relative;
  }
  .viviente-menu__cont__lineup-sub li a {
    font-size: 16px;
    display: block;
    padding-left: 15px;
  }
  .viviente-menu__cont__lineup-sub li .lineup-bar::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 1px;
    background-color: #796d66;
    position: absolute;
    left: 0;
    top: 0.8em;
  }
  .viviente-menu__cont__top-head, .viviente-menu__cont__about-head, .viviente-menu__cont__solution-head, .viviente-menu__cont__environment-head, .viviente-menu__cont__high-performance-head, .viviente-menu__cont__lineup-head, .viviente-menu__cont__catalog-head, .viviente-menu__cont__docs-head, .viviente-menu__cont__results-head, .viviente-menu__cont__showroom-head, .viviente-menu__cont__qa-head, .viviente-menu__cont__contact-head {
    border-bottom: 1px solid #d7d3d1;
  }
  .viviente-menu__cont__docs-head {
    padding: 0;
  }
  .viviente-menu__cont__docs-sub {
    display: none;
    list-style: none;
    padding: 0;
  }
  .viviente-menu__cont__docs-sub li {
    padding-bottom: 10px;
    position: relative;
  }
  .viviente-menu__cont__docs-sub li a {
    font-size: 16px;
    display: block;
    padding-left: 15px;
  }
  .viviente-menu__cont__docs-sub li .lineup-bar::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 1px;
    background-color: #796d66;
    position: absolute;
    left: 0;
    top: 0.8em;
  }
  .no-scroll {
    transition: 0.3s;
    overflow: hidden;
  }
  .no-scroll .viviente-menu__filter {
    opacity: 1;
    visibility: initial;
  }
  .no-scroll .viviente-menu__button .top {
    background-color: #796d66;
  }
  .no-scroll .viviente-menu__button .bottom {
    background-color: #796d66;
  }
  .no-scroll .viviente-menu__button .text {
    color: #796d66;
  }
  .no-scroll .viviente-menu__cont.menu-open {
    opacity: 1;
    visibility: visible;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  @keyframes menu_top {
    0% {
      transform: translateY(0) rotate(-45deg);
      transform-origin: center;
    }
    100% {
      transform: translateY(0) rotate(0deg);
    }
  }
  @keyframes menu_bottom {
    0% {
      transform: translateY(-7px) rotate(45deg);
      transform-origin: center;
    }
    100% {
      transform: translateY(0) rotate(0deg);
    }
  }
  @keyframes menu_top_close {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
      transform-origin: center;
    }
  }
  @keyframes menu_bottom_close {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    100% {
      transform: translateY(-7px) rotate(45deg);
      transform-origin: center;
    }
  }
  .viviente-search {
    position: fixed;
    right: 0;
    top: 140px;
  }
  .viviente-search a {
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .viviente-search a:hover {
    opacity: 0.6;
  }
  .viviente-search-logo {
    margin-bottom: 5px;
  }
  .viviente-search-arrow {
    vertical-align: middle;
    margin-left: 5px;
  }
  .viviente-search span {
    display: block;
    font-size: 18px;
  }
  .container {
    /* ボタン　 */
  }
  .container .button-link {
    background-color: #ffffff;
    border: 1px solid #796d66;
    color: #796d66;
    display: block;
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
    padding: 10px 30px;
    position: relative;
    text-align: center;
    margin: auto;
    width: 240px;
    min-height: 50px;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
  }
  .container .button-link:before {
    content: url(../images/icon_button-arrow.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: block;
    height: 40px;
    width: 40px;
  }
  .container .button-link:hover {
    background-color: #796d66;
    color: #ffffff;
    text-decoration: none;
  }
  .container .button-link:hover:before {
    content: url(../images/icon_button-arrow-hover.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: block;
    height: 40px;
    width: 40px;
  }
  .container .hero img {
    width: 100%;
  }
  .container .about {
    background: url(../images/bg_about.webp) no-repeat center center/cover;
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
  }
  .container .about__label {
    color: #796d66;
    font-size: 26px;
    font-family: "Ibarra Real Nova", serif;
    line-height: 1.5;
    padding-bottom: 10px;
    transform-origin: center;
  }
  .container .about__title {
    font-size: 50px;
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    line-height: 1.2;
  }
  .container .about__detail {
    letter-spacing: 0.15em;
    line-height: 3;
    padding-top: 30px;
    text-align: left;
    word-break: break-all;
  }
  .container .lineup {
    background-color: #f6f0e4;
    padding: 50px 0;
  }
  .container .lineup__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  .container .lineup__head__title-en {
    display: inline-block;
    font-size: 50px;
    font-family: "Ibarra Real Nova", serif;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 10px;
  }
  .container .lineup__head__title-ja {
    color: #796d66;
    display: inline-block;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 60px 15px;
    position: relative;
  }
  .container .lineup__head__title-ja::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    pointer-events: none;
    bottom: 0;
    background: linear-gradient(to right, rgba(121, 109, 102, 0), #796d66 30%, #796d66 70%, rgba(121, 109, 102, 0));
  }
  .container .lineup__row {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .container .lineup__row:has(+ .lineup__row) {
    border-bottom: 1px solid #d7d3d1;
    margin-bottom: 50px;
    padding: 0 3% 50px;
  }
  .container .lineup__cont {
    overflow: hidden;
    order: 2;
    width: 100%;
  }
  .container .lineup__lead {
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.75;
    padding-top: 20px;
    text-align: left;
  }
  .container .lineup__title {
    font-size: 34px;
    font-family: "Ibarra Real Nova", serif;
    font-weight: 400;
    line-height: 1.2;
  }
  .container .lineup__title-ja {
    color: #796d66;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding-top: 10px;
  }
  .container .lineup__detail {
    letter-spacing: 0.1em;
    line-height: 2.2;
    padding-bottom: 30px;
    padding-top: 20px;
  }
  .container .lineup__image {
    flex-shrink: 0;
    max-width: 100%;
    order: 1;
    width: 100%;
  }
  .container .lineup__image img {
    width: 100%;
  }
  .container .lineup .button-link {
    margin-left: 0;
  }
  .container .other {
    background-color: #ffffff;
    padding: 50px 0;
  }
  .container .other__cont {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .container .other__item {
    border: 1px solid #796d66;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    position: relative;
  }
  .container .other__item::before, .container .other__item::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 0;
    pointer-events: none;
  }
  .container .other__item::before {
    /* 左上 */
    top: 0;
    left: 0;
    border-top: 2px solid #796d66;
    border-left: 2px solid #796d66;
    border-radius: 0 0 0 0;
  }
  .container .other__item::after {
    /* 右上 */
    top: 0;
    right: 0;
    border-top: 2px solid #796d66;
    border-right: 2px solid #796d66;
    border-radius: 0 0 0 0;
  }
  .container .other__item > .corner-bracket-bl, .container .other__item > .corner-bracket-br {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 0;
    pointer-events: none;
  }
  .container .other__item > .corner-bracket-bl {
    /* 左下 */
    left: 0;
    bottom: 0;
    border-bottom: 2px solid #796d66;
    border-left: 2px solid #796d66;
    border-radius: 0 0 0 0;
  }
  .container .other__item > .corner-bracket-br {
    /* 右下 */
    right: 0;
    bottom: 0;
    border-bottom: 2px solid #796d66;
    border-right: 2px solid #796d66;
    border-radius: 0 0 0 0;
  }
  .container .other__item.--q-a {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: span 1;
    padding: 30px 20px;
  }
  .container .other__title {
    text-align: center;
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    line-height: 1.2;
  }
  .container .other__lead {
    font-weight: 400;
    letter-spacing: 0.15em;
    text-align: left;
  }
  .container .contact {
    background-color: #ffffff;
    padding: 0 0 50px;
  }
  .container .contact__cont {
    align-items: center;
    background-color: #e9e3de;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 94%;
  }
  .container .contact__title {
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    line-height: 1.2;
    max-width: 620px;
  }
  .container .contact__lead {
    font-weight: 400;
    letter-spacing: 0.15em;
    max-width: 620px;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */