* {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; */
  font-size: calc(0.0111111111 * (100vw - var(--window-diff)));
  margin-top: 0 !important;
  overflow-x: hidden;
}
@media screen and (max-width: 879px) {
  html {
    font-size: calc(0.041025641 * (100vw - var(--window-diff)));
  }
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
li {
  color: #000;
  line-height: 1;
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

p {
  font-size: 1.25rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #fff;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.5;
}

span {
  font-family: inherit;
  line-height: inherit;
  display: inline-block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  line-height: 1;
}

.eng {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

img {
  display: block;
}

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

table {
  border-spacing: 0;
}

/* --------------------------------------------------- */
/* responsive */
/* --------------------------------------------------- */
.pc-d {
  display: block;
}

.sp-d {
  display: none;
}

@media screen and (max-width: 879px) {
  .pc-d {
    display: none;
  }
  .sp-d {
    display: block;
  }
}
/* --------------------------------------------------- */
/* bg */
/* --------------------------------------------------- */
.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --------------------------------------------------- */
/* header */
/* --------------------------------------------------- */
.hero__header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.hero__header--copy {
  position: relative;
  z-index: unset;
}
.hero__header--original {
  background-color: rgba(255, 255, 255, 0.56);
}
.hero__header--original .hero__header-inner {
  justify-content: space-between;
  padding: 1.125rem 0 1.125rem 2.5rem;
}
.hero__header--original .hero__header-wrapper {
  border: unset;
  gap: 2.5rem;
}
.hero__header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}
.hero__header-logo {
  position: relative;
  flex-shrink: 0;
  width: 4.75rem;
  height: 4.75rem;
}
.hero__header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__header-wrapper {
  display: flex;
  gap: 4.375rem;
  align-items: center;
  border-top: 0.125rem solid #000;
  border-bottom: 0.125rem solid #000;
  padding-top: 1.8125rem;
  padding-bottom: 1.625rem;
  padding-left: 3.4375rem;
  padding-right: 3.4375rem;
}
.hero__header-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #000;
  padding-bottom: 0.625rem;
  background-image: radial-gradient(circle, #000000 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 2px;
}
.hero__header-link p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.0375rem;
  color: #000;
  margin: 0;
}

.hero__btn {
  display: none;
}

.sp_menu {
  display: none;
}

@media screen and (max-width: 879px) {
  .hero__header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.56);
    padding: 1.125rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
  }
  .hero__header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .hero__header--original {
    background-color: rgba(255, 255, 255, 0.56);
  }
  .hero__header--original .hero__header-inner {
    justify-content: space-between;
    padding: 0;
  }
  .hero__header--original .hero__header-wrapper {
    border: unset;
    gap: 0;
  }
  .hero__header-logo {
    width: 2.75rem;
    height: 2.75rem;
  }
  .hero__header-wrapper {
    display: none;
  }
  .hero__header.open {
    opacity: 0;
  }
  .hero__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero__btn-box {
    width: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }
  .hero__btn-line {
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  .hero__btn-line:last-of-type {
    width: 58%;
  }
  .hero__btn-text {
    font-size: 1rem;
    color: #b29767;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02625rem;
  }
}
.sp_menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  width: 18.75rem;
  height: 100dvh;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.25rem 45px 0 rgba(0, 0, 0, 0.25);
}
.sp_menu__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.sp_menu__inner .hero__btn--close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.sp_menu__inner .hero__btn-line {
  transform-origin: center;
}
.sp_menu__inner .hero__btn-line:first-of-type {
  transform: rotate(15deg) translateY(0.25rem);
}
.sp_menu__inner .hero__btn-line:last-of-type {
  width: 100%;
  transform: rotate(-15deg) translateY(-0.25rem);
}
.sp_menu__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.sp_menu__nav {
  width: 100%;
}
.sp_menu__nav-link {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.04125rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.sp_menu__logo {
  width: 7.625rem;
  height: auto;
}

/* --------------------------------------------------- */
/* footer */
/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* footer */
/* --------------------------------------------------- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 6.25rem;
  padding-bottom: 5.5rem;
  padding-left: 0;
  padding-right: 0;
  background-color: #b29767;
  margin: 0 auto;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: center;
}
.footer__container {
  display: flex;
  gap: 2.625rem;
  align-items: center;
  width: 100%;
}
.footer__logo {
  height: 13.125rem;
  width: 13.75rem;
  flex-shrink: 0;
  position: relative;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__desc {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
  flex-shrink: 0;
}
.footer__title {
  height: 4.375rem;
  width: 16.25rem;
  flex-shrink: 0;
  position: relative;
}
.footer__title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.625rem;
  letter-spacing: 0.03375rem;
  color: #000;
  margin: 0;
}
.footer__numbers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  width: 100%;
  color: #000;
}
.footer__tel {
  display: flex;
  gap: 0.3125rem;
  align-items: flex-end;
  width: 100%;
}
.footer__tel-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.0375rem;
  color: #000;
  margin: 0;
}
.footer__tel-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.75rem;
  letter-spacing: 0.225rem;
  color: #000;
  margin: 0;
}
.footer__fax {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 0;
  letter-spacing: 0.0375rem;
  color: #000;
  margin: 0;
  width: 100%;
}
.footer__fax span {
  line-height: 1;
}
.footer__fax span:last-child {
  letter-spacing: 0.1rem;
}
.footer__copyright {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.0225rem;
  color: #000;
  text-align: center;
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .footer {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
  .footer__inner {
    width: 100%;
    padding: 0 1.5rem;
    gap: 1.25rem;
  }
  .footer__container {
    gap: 1.4375rem;
  }
  .footer__logo {
    width: 7.625rem;
    height: auto;
  }
  .footer__desc {
    flex: 1;
    gap: 0.5rem;
  }
  .footer__title {
    width: 9rem;
    height: 2.25rem;
  }
  .footer__address {
    font-size: 0.625rem;
    line-height: 1.4;
    letter-spacing: 0.01875rem;
  }
  .footer__numbers {
    gap: 0.375rem;
  }
  .footer__tel {
    gap: 0.25rem;
  }
  .footer__tel-label {
    font-size: 0.6875rem;
    letter-spacing: 0.0205rem;
    line-height: 1.3;
  }
  .footer__tel-number {
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
    line-height: 1;
  }
  .footer__fax {
    font-size: 0.6875rem;
    letter-spacing: 0.0205rem;
    line-height: 1;
  }
  .footer__fax span {
    font-weight: 500;
  }
  .footer__fax span:last-child {
    letter-spacing: 0.06rem;
  }
  .footer__copyright {
    font-size: 0.625rem;
    letter-spacing: 0.01875rem;
  }
}
/* --------------------------------------------------- */
/* components */
/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* renov__card */
/* --------------------------------------------------- */
.renov__card {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: center;
  width: 14.75rem;
}
.renov__card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.renov__card-pic {
  position: relative;
  width: 100%;
  height: auto;
}
.renov__card-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renov__card-pic--1 {
  height: 8.375rem;
  width: 12.875rem;
}
.renov__card-pic--2 {
  aspect-ratio: 708/366;
  width: 100%;
}
.renov__card-pic--3 {
  height: 8.25rem;
  width: 11.875rem;
}
.renov__card-pic--4 {
  height: 8.3125rem;
  width: 100%;
}
.renov__card-pic--5 {
  height: 8.8125rem;
  width: 8.75rem;
}
.renov__card-desc {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  width: 100%;
}
.renov__card-num {
  height: 4.8125rem;
  width: 2.625rem;
  flex-shrink: 0;
  position: relative;
}
.renov__card-num img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renov__card-container {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 0.375rem;
  align-items: flex-start;
  min-width: 0;
  color: #000;
}
.renov__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.04125rem;
  margin: 0;
  width: 100%;
}
.renov__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  width: 100%;
  margin: 0;
}
.renov__card-text p {
  margin: 0;
  color: #000;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
}

@media screen and (max-width: 879px) {
  .renov__card {
    width: 50%;
  }
  .renov__card-pic--1 {
    width: 8.6875rem;
    height: 5.625rem;
  }
  .renov__card-pic--2 {
    aspect-ratio: unset;
    width: 9.9375rem;
    height: 5.125rem;
  }
  .renov__card-pic--3 {
    width: 8rem;
    height: 5.5625rem;
  }
  .renov__card-pic--4 {
    width: 10rem;
    height: 5.625rem;
  }
  .renov__card-pic--5 {
    width: 5.9063rem;
    height: 5.9375rem;
  }
  .renov__card-desc {
    gap: 0.5625rem;
  }
  .renov__card-num {
    width: 1.9688rem;
    height: 3.6094rem;
  }
  .renov__card-container {
    gap: 0.3125rem;
  }
  .renov__card-title {
    font-size: 1rem;
    white-space: nowrap;
  }
  .renov__card-text {
    font-size: 0.75rem;
    letter-spacing: 0.0225rem;
  }
}
/* --------------------------------------------------- */
/* page_link */
/* --------------------------------------------------- */
.page_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18.75rem;
  height: 6.25rem;
  background-color: #000;
  text-decoration: none;
  color: #fff;
}
.page_link-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.0375rem;
  text-align: center;
  color: #fff;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .page_link {
    width: 13rem;
    height: 4.375rem;
  }
  .page_link-text {
    font-size: 1rem;
    letter-spacing: 0.03rem;
    line-height: 1;
  }
}
/* --------------------------------------------------- */
/* page_title */
/* --------------------------------------------------- */
.page_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 18.25rem;
}
.page_title__container {
  background-color: #fff;
  border: 0.125rem solid #000;
  display: flex;
  height: 4.375rem;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6.25rem;
  flex-shrink: 0;
  width: 100%;
}
.page_title__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: relative;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #000;
  text-align: center;
  letter-spacing: 0.0375rem;
  margin: 0;
}
.page_title__caption {
  position: absolute;
  background-color: #b29767;
  display: flex;
  height: 1.875rem;
  align-items: center;
  justify-content: center;
  left: 6.125rem;
  border-radius: 6.25rem;
  top: 4rem;
  width: 14.25rem;
}
.page_title__caption-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
  position: relative;
  flex-shrink: 0;
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.02625rem;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .page_title {
    width: 100%;
    height: 100%;
  }
  .page_title__container {
    height: 100%;
    border: 1.5px solid #000;
  }
  .page_title__text {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.03rem;
  }
  .page_title__caption {
    width: 10.75rem;
    height: 1.375rem;
    right: -1.4rem;
    bottom: -1.0625rem;
    top: unset;
    left: unset;
  }
  .page_title__caption-text {
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0.01875rem;
  }
}
/* --------------------------------------------------- */
/* page_top */
/* --------------------------------------------------- */
.page_top {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.page_top__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}
.page_top__img {
  aspect-ratio: 4096/853;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}
.page_top__title {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 4.375rem;
  align-items: flex-start;
  left: 55.875rem;
  top: 16.5625rem;
  width: 18.25rem;
}
.page_top__breadcrumb {
  position: absolute;
  display: flex;
  gap: 0.875rem;
  align-items: center;
  line-height: 1;
  left: 0;
  padding-left: 13.75rem;
  padding-right: 13.75rem;
  padding-top: 0;
  padding-bottom: 0;
  top: 21.3675rem;
  width: 100%;
}
.page_top__breadcrumb-item {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #707070;
  font-size: 0.875rem;
  letter-spacing: 0.02625rem;
}
.page_top__breadcrumb-separator {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #707070;
  font-size: 0.875rem;
  letter-spacing: 0.02625rem;
}

@media screen and (max-width: 879px) {
  .page_top {
    margin-top: var(--header-height);
  }
  .page_top__img {
    aspect-ratio: unset;
    height: auto;
  }
  .page_top__title {
    left: unset;
    right: 1.5rem;
    top: 100%;
    transform: translateY(-50%);
    width: 13.75rem;
    height: 3.25rem;
    z-index: 1;
  }
  .page_top__breadcrumb {
    padding: 0 1.5rem;
    z-index: 1;
    top: calc(100% + 4rem);
    gap: 0.625rem;
  }
  .page_top__breadcrumb-item {
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.0225rem;
  }
  .page_top__breadcrumb-separator {
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.0225rem;
  }
}
/* --------------------------------------------------- */
/* paragraph-180 */
/* --------------------------------------------------- */
.paragraph-180 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.0375rem;
  color: #000;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .paragraph-180 {
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.03rem;
  }
}
/* --------------------------------------------------- */
/* paragraph-18-w300-200 */
/* --------------------------------------------------- */
.paragraph-18-w300-200 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03375rem;
  color: #000;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .paragraph-18-w300-200 {
    font-size: 0.875rem;
    line-height: 1.8571;
    letter-spacing: 0.02625rem;
  }
}
/* --------------------------------------------------- */
/* paragraph-18-w500-200 */
/* --------------------------------------------------- */
.paragraph-18-w500-200 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03375rem;
  color: #000;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .paragraph-18-w500-200 {
    font-size: 0.875rem;
    line-height: 1.8571;
    letter-spacing: 0.02625rem;
  }
}
/* --------------------------------------------------- */
/* paragraph-16-w300-175 */
/* --------------------------------------------------- */
.paragraph-16-w300-175 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.03rem;
  color: #000;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .paragraph-16-w300-175 {
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02625rem;
  }
}
/* --------------------------------------------------- */
/* paragraph-16-w500-175 */
/* --------------------------------------------------- */
.paragraph-16-w500-175 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.03rem;
  color: #000;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .paragraph-16-w500-175 {
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02625rem;
  }
}
/* --------------------------------------------------- */
/* blog__card */
/* --------------------------------------------------- */
.blog__card {
  width: 17rem;
}
.blog__thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 0.75rem;
}
.blog__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  border-radius: 6px;
}
.blog__date {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03375rem;
  color: #b29767;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.25rem;
}
.blog__content-title {
  width: 100%;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03375rem;
  color: #000;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}

@media screen and (max-width: 879px) {
  .blog__card {
    width: 17rem;
    flex: none;
  }
  .blog__date {
    margin-bottom: 0;
  }
}
/* --------------------------------------------------- */
/* sidebar */
/* --------------------------------------------------- */
.sidebar {
  grid-area: sidebar;
  width: 18.75rem;
}
.sidebar__title {
  font-size: 1.25rem;
  line-height: 1.75;
  letter-spacing: 0.0375rem;
  color: #fff;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0.5rem 0;
  background-color: #000;
  text-align: center;
}
.sidebar__list {
  background-color: #fff;
  padding: 1.1875rem 2.375rem;
}
.sidebar__link {
  padding: 0.9375rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__link-text {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03375rem;
  color: #000;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}
.sidebar__link-arrow {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03375rem;
  color: #b29767;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 879px) {
  .sidebar {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
