@charset "UTF-8";
/* ==========================================================================
   Mixins
   ========================================================================== */
/* ==========================================================================
   Common
   ========================================================================== */
:root {
  --base: 1280;
  --vw: calc(100vw / var(--base));
  --refa-font-mincho: "Shippori Mincho", serif;
  --refa-font-lusitana: "Lusitana", serif;
  --refa-font-zenkaku: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  :root {
    --base: 390;
    --vw: calc(100vw / var(--base));
  }
}

body {
  overflow: hidden;
  font-family: var(--refa-font-zenkaku);
  color: var(--rv-gold2);
}

.rv-footer {
  margin-top: 0;
}

.page-about {
  background: var(--rv-gold4);
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-about {
    width: 100%;
    padding-bottom: 80px;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/* ==========================================================================
   モーダル（全面タイプ）
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.modal__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.modal__close {
  background: url(../../about/img/pc/ic-close.png) center/cover no-repeat;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 4;
  pointer-events: auto;
}

.modal__content {
  width: 100%;
  max-width: 1080px;
  padding: 40px;
  box-sizing: border-box;
  z-index: 3;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .modal__content {
    width: 100%;
    padding: 16px;
  }
}
.modal__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 = 9÷16 = 0.5625 */
  height: 0;
  overflow: hidden;
}

.modal__content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Main Visual
   ========================================================================== */
.page-about-mv {
  position: relative;
}
.page-about-mv img {
  width: 100%;
}

.page-about-mv-title {
  margin: 0;
}

.page-about-mv2 {
  text-align: center;
}
.page-about-mv2 img {
  width: 100%;
}

/* ==========================================================================
   VITAL LUXURY - Concept Section
   ========================================================================== */
.page-about-concept-wrapper {
  background: var(--rv-gold4);
}

.page-about-concept {
  display: flex;
  justify-content: end;
  max-width: 1120px;
  color: var(--rv-gold2);
  padding: 140px 0 100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-about-concept {
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 80px 28px;
  }
}

.page-about-concept-title {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  width: 460px;
}
@media screen and (max-width: 767px) {
  .page-about-concept-title {
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 28px;
  }
}

.page-about-concept-title-en {
  font-size: 32px;
  font-family: var(--rv-font-lusitana);
  line-height: 1;
  letter-spacing: 0.084em;
}
@media screen and (max-width: 767px) {
  .page-about-concept-title-en {
    font-size: 2.9rem;
    font-family: var(--rv-font-lusitana);
  }
}

.page-about-concept-title-jp {
  font-size: 24px;
  font-family: var(--rv-font-shipporiMincho);
  font-weight: 500;
  line-height: 1;
}
.page-about-concept-title-jp span:nth-child(1) {
  letter-spacing: 0.25em;
}
.page-about-concept-title-jp span:nth-child(2) {
  letter-spacing: 0.17em;
}
.page-about-concept-title-jp span:nth-child(3) {
  letter-spacing: 0.22em;
}
.page-about-concept-title-jp span:nth-child(4) {
  letter-spacing: 0.17em;
}
@media screen and (max-width: 767px) {
  .page-about-concept-title-jp {
    font-size: 2.2rem;
  }
}

.page-about-concept-content {
  width: 560px;
}
@media screen and (max-width: 767px) {
  .page-about-concept-content {
    width: 100%;
  }
}

.page-about-concept-content-lead {
  font-size: 23px;
  font-family: var(--rv-font-shipporiMincho);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page-about-concept-content-lead {
    font-size: 1.8rem;
  }
}

.page-about-concept-content-text {
  font-size: 15px;
  font-family: var(--rv-font-shipporiMincho);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page-about-concept-content-text {
    font-size: 1.4rem;
  }
}
.page-about-concept-content-text span {
  display: block;
  margin-bottom: 1em;
}

/* ==========================================================================
   Concept Movie
   ========================================================================== */
.page-about-movie {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-about-movie {
    padding: 0 16px;
  }
}

.page-about-movie-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 151px;
}

/* ==========================================================================
   BEAUTY TECH FASHION
   ========================================================================== */
.page-about-btf {
  max-width: 586px;
  color: var(--rv-gold2);
  margin: 0 auto;
  padding: 140px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-about-btf {
    padding: 100px 28px 60px;
  }
}
.page-about-btf i {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-about-btf i {
    width: 15px;
    height: 15px;
  }
}
.page-about-btf i::before, .page-about-btf i::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rv-gold2);
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center;
}
.page-about-btf i::before {
  transform: rotate(45deg);
}
.page-about-btf i::after {
  transform: rotate(-45deg);
}

.page-about-btf-title-en {
  font-size: 40px;
  font-family: var(--rv-font-lusitana);
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .page-about-btf-title-en {
    gap: 7px;
    font-size: 5.8974358974vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.page-about-btf-title-jp {
  font-size: 15px;
  font-family: var(--rv-font-shipporiMincho);
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page-about-btf-title-jp {
    font-size: 14px;
  }
}

/* ==========================================================================
   Main Visual 2
   ========================================================================== */
.page-about-mv2 {
  display: grid;
  grid-template-columns: 296fr 590fr 394fr;
  grid-template-rows: auto auto;
}
@media screen and (max-width: 767px) {
  .page-about-mv2 {
    display: flex;
    flex-wrap: wrap;
  }
}

.page-about-mv2-box:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1/5;
}
.page-about-mv2-box:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2/5;
}
.page-about-mv2-box:nth-of-type(3) {
  grid-column: 2;
  grid-row: 1/5;
}
.page-about-mv2-box:nth-of-type(4) {
  grid-column: 3;
  grid-row: 1/5;
}
.page-about-mv2-box:nth-of-type(5) {
  grid-column: 3;
  grid-row: 3/5;
}
.page-about-mv2-box-2col {
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-about-mv2-box-2col {
    flex-direction: column;
  }
}
.page-about-mv2-box-2col-item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .page-about-mv2-box-2col-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-about-mv2-box-2col-item img {
    height: round(50.2564102564vw, 0.5px);
  }
}
@media screen and (max-width: 767px) {
  .page-about-mv2-box:nth-of-type(1) {
    width: 50%;
  }
  .page-about-mv2-box:nth-of-type(2) {
    width: 50%;
  }
  .page-about-mv2-box:nth-of-type(3) {
    width: 100%;
  }
  .page-about-mv2-box:nth-of-type(4) {
    width: 66.9230769231vw;
  }
  .page-about-mv2-box:nth-of-type(5) {
    width: 33.0769230769vw;
  }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.page-about-nav {
  padding: 72px 0;
}
@media screen and (max-width: 767px) {
  .page-about-nav {
    padding: 52px 0;
  }
}

.page-about-nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .page-about-nav-links {
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: column;
  }
}

.page-about-nav-links-link a {
  color: var(--rv-gold2);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.page-about-nav-links-link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/pc/ic-arrow-down.png) no-repeat center/contain;
  margin: -1px 2px 0 0;
}
@media screen and (max-width: 767px) {
  .page-about-nav-links-link::before {
    width: 11px;
    height: 11px;
    background: url(../img/sp/ic-arrow-down-sp.png) no-repeat center/contain;
  }
}

/* ==========================================================================
   VITALTECH PREMIUM
   ========================================================================== */
.page-about-premium {
  background: linear-gradient(110.85deg, #e5d5b6 31.77%, var(--rv-gold) 69.98%);
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .page-about-premium {
    background: linear-gradient(175.08deg, #e5d5b6 9.03%, var(--rv-gold) 52.41%);
    padding: 0 0 40px;
  }
}

.page-about-premium-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section {
    flex-direction: column;
    padding: 40px 35.5px;
    gap: 28px;
  }
}

.page-about-premium-section-img {
  max-width: calc(410 * var(--vw));
}

.page-about-premium-header img {
  width: 100%;
  max-width: none;
}

.page-about-premium-section-body {
  color: #fff;
  line-height: 1;
}

.page-about-premium-section-body-logo {
  max-width: 230px;
  margin: 28px 0 32px;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section-body-logo {
    margin: 0 0 20px;
    max-width: 200px;
  }
}

.page-about-premium-section-body-title {
  font-family: var(--refa-font-mincho);
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 32px;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section-body-title {
    font-size: 24px;
    margin: 0 0 20px;
  }
}

.page-about-premium-section-body-text {
  font-family: var(--refa-font-zenkaku);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section-body-text {
    font-size: 13px;
  }
}

.page-about-premium-section2 {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin: 0 auto 60px;
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section2 {
    flex-direction: column;
    margin: 0 auto 40px;
    padding: 0 28px;
    gap: 28px;
  }
}

.page-about-premium-section2-body {
  text-align: center;
}

.page-about-premium-section2-body-img {
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section2-body-img {
    margin: 0 0 16px;
  }
}

.page-about-premium-section2-body-description {
  color: #fff;
  font-family: var(--refa-font-zenkaku);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section2-body-description {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.page-about-premium-section3-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section3-items {
    flex-direction: column;
    gap: 4px;
    padding: 0;
  }
}

.page-about-premium-section3-item {
  width: 50%;
  aspect-ratio: 550/303;
  padding: clamp(20px, 60 * var(--vw), 90px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section3-item {
    width: calc(100% - 8px);
    height: auto;
    margin: 0 auto;
    aspect-ratio: auto;
  }
}
.page-about-premium-section3-item:nth-of-type(1) {
  background: url(../img/pc/bg-oil.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section3-item:nth-of-type(1) {
    background: url(../img/sp/bg-oil-sp.jpg) center/cover no-repeat;
    padding: 60px 32px;
  }
}
.page-about-premium-section3-item:nth-of-type(1) .page-about-premium-section3-copy,
.page-about-premium-section3-item:nth-of-type(1) .page-about-premium-section3-title,
.page-about-premium-section3-item:nth-of-type(1) .page-about-premium-section3-text {
  color: #fff;
}
.page-about-premium-section3-item:nth-of-type(2) {
  background: url(../img/pc/bg-silk.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section3-item:nth-of-type(2) {
    background: url(../img/sp/bg-silk-sp.jpg) center/cover no-repeat;
    padding: 60px 35.5px;
  }
}

.page-about-premium-section3-copy {
  font-family: var(--refa-font-lusitana);
  font-size: min(1.7857142857vw, 20px);
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: min(1.7857142857vw, 20px);
}
@media screen and (max-width: 767px) {
  .page-about-premium-section3-copy {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.page-about-premium-section3-title {
  font-family: var(--refa-font-mincho);
  font-size: min(1.9642857143vw, 22px);
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: min(2.2321428571vw, 25px);
}
@media screen and (max-width: 767px) {
  .page-about-premium-section3-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
}

.page-about-premium-section3-text {
  font-family: var(--refa-font-zenkaku);
  font-size: min(1.3392857143vw, 15px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section3-text {
    font-size: 13px;
  }
}

.page-about-premium-section4 {
  display: flex;
  justify-content: center;
}

.page-about-premium-section4-movie {
  position: relative;
  width: calc(800 * var(--vw));
}
@media screen and (max-width: 767px) {
  .page-about-premium-section4-movie {
    padding: 0 28px;
  }
}

.page-about-premium-section4-movie-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
}
@media screen and (max-width: 767px) {
  .page-about-premium-section4-movie-icon {
    width: 90px;
  }
}

/* ==========================================================================
   デザインのこだわり
   ========================================================================== */
.page-about-features {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .page-about-features {
    padding: 120px 28px;
  }
}

.page-about-features-title {
  padding: 0 100px;
  font-family: var(--refa-font-mincho);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .page-about-features-title {
    padding: 0;
    font-size: 32px;
    margin: 0 0 60px;
  }
}

.page-about-features-feature {
  margin: 0 0 140px;
  padding: 0 100px;
}
@media screen and (max-width: 767px) {
  .page-about-features-feature {
    margin: 0 0 80px;
    padding: 0;
  }
}
.page-about-features-feature:last-child {
  margin: 0;
}

.page-about-features-feature-head-number {
  font-family: var(--refa-font-lusitana);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
  color: var(--rv-gold);
}
@media screen and (max-width: 767px) {
  .page-about-features-feature-head-number {
    font-size: 13px;
    margin: 0 0 20px;
  }
}

.page-about-features-feature-head-title {
  font-family: var(--refa-font-mincho);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0 0 32px;
}
@media screen and (max-width: 767px) {
  .page-about-features-feature-head-title {
    font-size: 26px;
    margin: 0 0 20px;
  }
}

.page-about-features-feature-head-subtitle {
  font-family: var(--refa-font-zenkaku);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 40px;
  color: var(--rv-black);
}
@media screen and (max-width: 767px) {
  .page-about-features-feature-head-subtitle {
    font-size: 14px;
    margin: 0 0 24px;
  }
}

.page-about-features-feature-body {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .page-about-features-feature-body {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 28px;
  }
}

@media screen and (max-width: 767px) {
  .page-about-features-feature-body.img-only {
    gap: 10px;
  }
}

.page-about-features-feature-body-item {
  flex: 1;
}
.page-about-features-feature-body-item-description {
  font-family: var(--refa-font-zenkaku);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--rv-black);
  margin: 24px 0 0;
}
@media screen and (max-width: 767px) {
  .page-about-features-feature-body-item-description {
    margin: 12px 0 0;
  }
}

/* ==========================================================================
   CATEGORY
   ========================================================================== */
@media screen and (max-width: 767px) {
  .page-about-category {
    padding: 0;
  }
}

.page-about-category-titles {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .page-about-category-titles {
    flex-direction: column;
    gap: 16px;
    padding: 0 28px;
  }
}
.page-about-category-titles-title {
  font-family: var(--refa-font-lusitana);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .page-about-category-titles-title {
    font-size: 34px;
  }
}
.page-about-category-titles-notice {
  font-family: var(--refa-font-zenkaku);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .page-about-category-titles-notice {
    font-size: 12px;
    margin: 0 0 32px;
  }
}

.page-about-category-boxes {
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 30px) / 4));
  grid-template-rows: auto auto;
  gap: 10px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }
}

.page-about-category-boxes-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  justify-items: center;
  position: relative;
  aspect-ratio: 308/452;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box {
    max-width: none;
    width: calc(100% - 16px);
    height: 66.6666666667vw;
    margin: 0 auto;
    aspect-ratio: auto;
  }
}
.page-about-category-boxes-box:nth-of-type(4), .page-about-category-boxes-box:nth-of-type(5) {
  aspect-ratio: 307/221;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box:nth-of-type(4), .page-about-category-boxes-box:nth-of-type(5) {
    height: 42.5641025641vw;
    aspect-ratio: auto;
  }
}
.page-about-category-boxes-box.sleep {
  grid-column: 1;
  grid-row: 1/3;
  background: url(../img/pc/bg-sleep.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box.sleep {
    background: url(../img/sp/bg-sleep-sp.jpg) center/cover no-repeat;
  }
}
.page-about-category-boxes-box.room {
  grid-column: 2;
  grid-row: 1/3;
  background: url(../img/pc/bg-room.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box.room {
    background: url(../img/sp/bg-room-sp.jpg) center/cover no-repeat;
  }
}
.page-about-category-boxes-box.inner {
  grid-column: 3;
  grid-row: 1/3;
  background: url(../img/pc/bg-inner.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box.inner {
    background: url(../img/sp/bg-inner-sp.jpg) center/cover no-repeat;
  }
}
.page-about-category-boxes-box.accessory {
  grid-column: 4;
  grid-row: 1;
  background: url(../img/pc/bg-accessory.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box.accessory {
    background: url(../img/sp/bg-accessory-sp.jpg) center/cover no-repeat;
  }
}
.page-about-category-boxes-box.pillow {
  grid-column: 4;
  grid-row: 2;
  background: url(../img/pc/bg-pillow.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box.pillow {
    background: url(../img/sp/bg-pillow-sp.jpg) center/cover no-repeat;
  }
}

.page-about-category-boxes-box-text {
  color: #fff;
  font-family: var(--refa-font-lusitana);
  font-size: min(32 * var(--vw), 32px);
  line-height: 1;
  letter-spacing: 0.02em;
  align-self: center;
  justify-self: center;
  grid-row: 1;
  grid-column: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .page-about-category-boxes-box-text {
    font-size: 28px;
  }
}

.page-about-category-boxes-box-buttons {
  display: flex;
  gap: 8px;
  padding: 20px 15px;
  align-self: end;
  grid-row: 2;
  grid-column: 1;
  width: 100%;
  justify-content: center;
}
.page-about-category-boxes-box-buttons.one {
  justify-content: center;
}
.page-about-category-boxes-box-buttons-button {
  display: block;
  width: 135px;
  font-family: var(--refa-font-lusitana);
  font-size: min(13 * var(--vw), 13px);
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 9999px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1280px) {
  .page-about-category-boxes-box-buttons-button {
    width: calc(135 * var(--vw));
    white-space: nowrap;
  }
}
.page-about-category-boxes-box-buttons-button:hover {
  opacity: 1;
  color: var(--rv-white);
  background-color: var(--rv-gold);
  border-color: var(--rv-gold);
}