@charset "UTF-8";

:root{
  font-size: 62.5%;
}

@media (min-width: 768px) {
  :root{
    font-size: calc(10 * (100vw / 1400));
  }
}

@media (min-width: 1400px) {
  :root{
    font-size: 10px;
  }
}

.u-text-red {
  color: var(--color-project-red);
}

.u-text-center {
  text-align: center;
}

@media (max-width: 767px) {
  .u-hidden-md-down{
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-hidden-md-up{
    display: none !important;
  }
}

html,
body{
  color: var(--color-project-brown);
  overscroll-behavior-y: none;
}

@media (min-width: 768px) {
  body{
    background-color: #EBD2B4;
  }

  .s-page-container{
    margin-inline: auto;
    width: min(1400px, 100%);
    display: grid;
    grid-template-columns: 27.1428% 1fr 45%;
  }

  .s-header{
    width: 100%;
    height: 100svh;
  }

  .s-right-nav{
    width: 100%;
    height: 100svh;
  }
}
