@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  position: relative;
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
    font-size: max(1.8rem, 14px);
  }
}
body img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
body a,
body button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  body a,
  body button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  body a:hover,
  body button:hover {
    opacity: 0.7;
  }
}

section,
main,
header,
footer {
  position: relative;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@supports (aspect-ratio: 1) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.main > * {
  padding: 16rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .main > * {
    padding: 20rem 0;
  }
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(640 / 750 * 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .inner {
    width: calc(1600 / 1920 * 100%);
    max-width: 1600px;
  }
}

.main p,
.main dd {
  line-height: 1.733;
}
.main p a,
.main dd a {
  display: inline;
  color: #fff64c;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
.bg-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #646464;
  z-index: -1;
  pointer-events: none;
}
.bg-movie::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, #000000 25%, transparent 25%, transparent 75%, #000000 75%, #000000), repeating-linear-gradient(45deg, #000000 25%, transparent 25%, transparent 75%, #000000 75%, #000000);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  mix-blend-mode: overlay;
  z-index: 1;
}
.bg-movie::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.bg-movie iframe,
.bg-movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}

.ttl01 {
  position: relative;
  margin-bottom: 8.5rem;
  text-align: center;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .ttl01 {
    font-size: 8.8rem;
    line-height: 1.375;
  }
}
.ttl01::after {
  content: attr(data-en);
  margin-top: 6rem;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .ttl01::after {
    margin-top: 3.5rem;
  }
}
.ttl01 span {
  color: #5eb7e8;
}

.ttl02 {
  position: relative;
  margin-bottom: 8rem;
  text-align: center;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: #5eb7e8;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .ttl02 {
    font-size: 4.5rem;
  }
}

.subttl01 {
  font-size: 4.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .subttl01 {
    font-size: 3.2rem;
    font-size: 177%;
  }
}
.subttl01 span {
  letter-spacing: 0.1em;
  color: #000000;
  background-color: #5eb7e8;
}

/* =====================================================================
*    header
* =================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 3.5rem;
  width: 100%;
  font-size: 3rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .header {
    font-size: 2.25rem;
  }
}
.header > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(680 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .header > .inner {
    width: 96%;
    max-width: initial;
  }
}
.header h1 {
  width: 5.333em;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.666em;
}
.nav-menu li {
  position: relative;
}
.nav-menu li:not(:last-child) {
  margin-right: 0.8em;
  padding-right: 1em;
}
.nav-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  top: 55%;
  right: 0;
  height: 85%;
  border-right: 2px solid #5eb7e8;
  -webkit-transform: skewX(-30deg) translateY(-50%);
          transform: skewX(-30deg) translateY(-50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.nav-menu li a {
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .nav-menu li a {
    -webkit-transition-property: color;
    transition-property: color;
  }
  .nav-menu li a:hover {
    opacity: 1;
    color: #5eb7e8;
  }
}

/* =====================================================================
*    mv
* =================================================================== */
.mv {
  padding: 12vh 0;
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 23vh 0;
  }
}
.mv h1 {
  margin-bottom: 16rem;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .mv h1 {
    text-align: center;
    margin-bottom: 13rem;
    font-size: 7.2rem;
  }
}
.mv h1 img {
  margin-bottom: 0.3em;
  width: 3.6em;
}
@media screen and (min-width: 768px) {
  .mv h1 img {
    display: inline-block;
    margin-left: 1.5em;
  }
}
.mv-lead {
  font-size: 4rem;
  font-weight: 700;
  line-height: 2 !important;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .mv-lead {
    text-align: center;
  }
}

/* =====================================================================
    future
======================================================================*/
.future {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .future {
    padding: 14rem 0;
  }
  .future::before, .future::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url(../images/remote-production/shape.svg) no-repeat top right/cover;
    z-index: -1;
  }
  .future::after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(-1, -1);
            transform: scale(-1, -1);
  }
}
@media screen and (max-width: 767px) {
  .future-group {
    position: relative;
    padding: 14rem 0;
  }
  .future-group::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: url(../images/remote-production/shape.svg) no-repeat top right/cover;
    z-index: -1;
  }
  .future-group:nth-child(even)::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    margin: 0 calc(50% - 50vw);
    width: 50vw;
    height: 100%;
    background: url(../images/remote-production/shape.svg) no-repeat top right/cover;
    z-index: -1;
    -webkit-transform: scale(-1, -1);
            transform: scale(-1, -1);
  }
}
@media screen and (min-width: 768px) {
  .future-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .future-group h2 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: left;
    margin-right: calc(190 / 1600 * 100%);
  }
  .future-group:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .future-group:nth-child(even) h2 {
    margin: 0 0 0 calc(190 / 1600 * 100%);
  }
  .future-group:not(:last-child) {
    margin-bottom: 18rem;
  }
}
.future-group-desc > *:not(:last-child) {
  margin-bottom: 7rem;
}
.future-group-desc p,
.future-group-desc dl dd {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .future-group-desc p,
  .future-group-desc dl dd {
    font-size: 111%;
  }
}
.future-group-desc p span,
.future-group-desc dl span {
  background-color: rgba(0, 0, 0, 0.5);
}
.future-group-desc dl dt {
  margin-bottom: 4rem;
  font-size: 133%;
  font-weight: 500;
  line-height: 1.6;
  color: #5eb7e8;
}
@media screen and (min-width: 768px) {
  .future-group-desc dl dt {
    font-size: 140%;
  }
}
.future-group-desc dl dd {
  padding-left: 1.5em;
  line-height: 2;
  border-left: 2px solid #fff64c;
}

/* =====================================================================
    concept
======================================================================*/
.concept {
  padding: 0;
}
.concept > .inner {
  width: 100%;
  max-width: initial;
}
.concept .ttl01 {
  margin-bottom: 0;
  padding: 16rem 0 7rem;
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .concept .ttl01 {
    padding: 20rem 0 12rem;
  }
}
.concept-list > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .concept-list > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .concept-list > li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .concept-list > li:nth-child(even) .concept-list-img::before {
    right: auto;
    left: 0;
  }
}
.concept-list-img {
  position: relative;
  padding: 4rem calc(55 / 750 * 100%);
}
.concept-list-img::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #000000;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .concept-list-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .concept-list-img figure {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    aspect-ratio: 1/1;
    background-color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .concept-list-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8rem 0;
    width: calc(920 / 1920 * 100%);
  }
}
@media screen and (max-width: 767px) {
  .concept-list-right {
    display: contents;
  }
  .concept-list-right > * {
    padding-left: calc(55 / 750 * 100%);
    padding-right: calc(55 / 750 * 100%);
    background-color: #000000;
  }
}
@media screen and (min-width: 768px) {
  .concept-list-right {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 8rem calc(120 / 1920 * 100%);
    background-color: #000000;
  }
}
.concept-list-right h3 {
  position: relative;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .concept-list-right h3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-bottom: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .concept-list-right h3 {
    padding-right: 0.5em;
    font-size: 4.2rem;
  }
}
.concept-list-right h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 0.4rem solid #fff64c;
}
@media screen and (max-width: 767px) {
  .concept-list-right h3::before {
    margin-right: calc(55 / 750 * 100%);
    height: calc(100% - 8rem);
  }
}
.concept-list-right h3 span {
  display: block;
  margin-bottom: 0.2em;
  font-family: "Noto Serif JP", serif;
  font-size: 66%;
  letter-spacing: 0.1em;
}
.concept-list-right h3 span em {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 0.5em;
  color: #fff64c;
}
.concept-list-right p {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .concept-list-right p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-bottom: 12rem;
  }
}

/* =====================================================================
    partner
======================================================================*/
@media screen and (max-width: 767px) {
  .partner {
    padding-top: 6rem;
  }
}
.partner::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 46rem;
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .partner::before {
    height: 54rem;
  }
}
@media screen and (min-width: 768px) {
  .partner > .inner {
    width: 100%;
    max-width: 1920px;
  }
}
.partner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .partner-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.partner-list li {
  text-align: center;
  margin-bottom: 6.4rem;
  padding: 8rem 3.2rem 4rem;
  width: calc(304 / 640 * 100%);
  font-size: 67%;
  color: #000000;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .partner-list li {
    margin: 0 calc(20 / 1920 * 100%) 4rem;
    width: calc(304 / 1920 * 100%);
    font-size: 100%;
  }
}
.partner-list li p {
  margin-top: 8rem;
  line-height: 1.3;
}

/* =====================================================================
    equipment
======================================================================*/
.equipment {
  background: #000000 url(../images/remote-production/bg_equipment-sp.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .equipment {
    background-image: url(../images/remote-production/bg_equipment-pc.jpg);
    background-size: 100% auto;
  }
}
.equipment-list {
  line-height: 1.733;
}
@media screen and (min-width: 768px) {
  .equipment-list {
    margin: 0 auto;
    max-width: 880px;
  }
}
.equipment-list > li:not(:last-child) {
  margin-bottom: 6rem;
}
.equipment-list > li h3 {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  font-size: 111%;
  font-weight: 700;
  color: #5eb7e8;
  border-bottom: 1px solid #ffffff;
}
.equipment-list > li ul li {
  position: relative;
  padding-left: 1.5em;
}
.equipment-list > li ul li:not(:last-child) {
  margin-bottom: 0.6em;
}
.equipment-list > li ul li::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.48em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background-color: currentColor;
  border-radius: 50%;
}

/* =====================================================================
    system
======================================================================*/
.system {
  padding: 5.5rem 0;
}
@media screen and (min-width: 768px) {
  .system {
    padding: 8rem 0;
  }
  .system > .inner {
    max-width: 1280px;
  }
}
.system-wrap {
  padding: 12rem calc(60 / 640 * 100%);
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .system-wrap {
    padding: 12rem calc(180 / 1280 * 100%);
  }
}

/* =====================================================================
    news
======================================================================*/
.news {
  background-color: #000000;
}
.news-list .slick-list {
  overflow: visible !important;
}
.news-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-list .slick-slide {
  height: auto !important;
}
.news-list .slick-slide > *,
.news-list li,
.news-list li a {
  height: 100%;
}
.news-list li {
  margin: 0 3.2rem;
  width: 48rem !important;
}
.news-list li a {
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.news-list li figure {
  margin-bottom: 0.8em;
}
.news-list li p {
  margin-bottom: 1.8em;
}
@media screen and (min-width: 768px) {
  .news-list li p {
    font-size: 111%;
  }
}
.news-list li time {
  margin-top: auto;
  font-family: "Noto Serif JP", serif;
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .news-list li time {
    font-size: 111%;
  }
}
.news-slider-arrows {
  position: relative;
  margin: 8rem auto 0;
  padding: 0 1.6em;
  font-size: 8.6rem;
}
@media screen and (min-width: 768px) {
  .news-slider-arrows {
    width: 8em;
    font-size: 5.8rem;
  }
}
.news-slider-arrows .slick-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .news-slider-arrows .slick-arrow:hover {
    -webkit-animation: rotate 0.6s ease-in-out;
            animation: rotate 0.6s ease-in-out;
  }
}
.news-slider-arrows .slick-arrow::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/remote-production/img_arrow.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .news-slider-arrows .slick-arrow.prev:hover {
    animation-direction: alternate-reverse;
  }
}
.news-slider-arrows .slick-arrow.prev::after {
  -webkit-transform: rotate(270deg) scale(-1, 1);
          transform: rotate(270deg) scale(-1, 1);
}
.news-slider-arrows .slick-arrow.next {
  left: auto;
  right: 0;
}
.news-slider-arrows .slick-arrow.next::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.news-slider-arrows .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.4em;
  width: 100%;
}
.news-slider-arrows .slick-dots li {
  display: inline-block;
  margin: 0 0.15em;
  width: 0.174em;
  height: 0.174em;
}
.news-slider-arrows .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
}
.news-slider-arrows .slick-dots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.news-slider-arrows .slick-dots li.slick-active button::before {
  background-color: #5eb7e8;
}

/* =====================================================================
    contact
======================================================================*/
.contact {
  padding: 5.5rem 0;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 8rem 0;
  }
}
.contact-wrap {
  padding: 12rem calc(20 / 640 * 100%);
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .contact-wrap {
    padding: 12rem calc(50 / 1280 * 100%);
  }
}
.contact-text ul li {
  position: relative;
  margin-left: 8%;
  padding-left: 1.5em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .contact-text ul li {
    margin-left: 32%;
    font-size: 3rem;
    font-size: max(3rem, 16px);
  }
}
.contact-text ul li:not(:last-child) {
  margin-bottom: 0.2em;
}
.contact-text ul li::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.35em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background-color: #fff64c;
  border-radius: 50%;
}
.contact-text p {
  text-align: center;
  margin-top: 8rem;
  line-height: 1.5;
  letter-spacing: 0;
}

/* =====================================================================
*    footer
* =================================================================== */
.footer {
  padding-bottom: 12rem;
}

.pagetop {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 8.2rem;
  height: 8.2rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .pagetop a:hover {
    opacity: 1;
    -webkit-animation: rotate 0.6s ease-in-out;
            animation: rotate 0.6s ease-in-out;
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.contact-btn {
  text-align: center;
}
.contact-btn a {
  display: inline-block;
  padding: 1.5em 1em;
  min-width: calc(560 / 640 * 100%);
  font-size: 133%;
  font-weight: 700;
  background-color: #5eb7e8;
}
@media screen and (min-width: 768px) {
  .contact-btn a {
    min-width: calc(560 / 1600 * 100%);
    font-size: 4rem;
  }
}

.copyright {
  text-align: center;
  margin-top: 8rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}/*# sourceMappingURL=remote-production.css.map */