@charset "UTF-8";
/*default*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

section.novisual_header {
  background-color: #FFF8CC;
}
section.novisual_header .title {
  padding: 5vw 5vw 0;
}
@media only screen and (max-width: 768px) {
  section.novisual_header .title {
    padding: 0 0 2vw;
  }
}
section.novisual_header .title h1 {
  margin-bottom: 0;
}

#infographic {
  background-color: #FFF8CC;
}
#infographic .inner {
  position: relative;
  max-width: calc(1200px + 10%);
  padding: 0 5%;
  margin: auto;
}
#infographic .content-block .content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
#infographic .content-block .content-header h2 {
  font-size: clamp(2rem, 2.4vw, 3.2rem);
}
@media only screen and (max-width: 768px) {
  #infographic .content-block .content-header h2 {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
  }
}
#infographic .content-block .content-header .en {
  font-size: clamp(8rem, 9vw, 12rem);
  color: #FFED79;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  #infographic .content-block .content-header .en {
    position: absolute;
    font-size: 11vw;
    left: 0;
    top: -43px;
  }
}
#infographic .content-block .content-in {
  background-color: #fff;
}
#infographic .content-block .content-in h3 {
  font-size: clamp(2rem, 2vw, 2.6rem);
  font-weight: 500;
}
#infographic .content-block .content-in .data {
  display: flex;
  align-items: baseline;
}
#infographic .content-block .content-in .data .en {
  font-size: clamp(9.6rem, 10vw, 11rem);
  line-height: 0.8;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
}
@media only screen and (max-width: 768px) {
  #infographic .content-block .content-in .data .en {
    font-size: 20vw;
  }
}
#infographic .content-block .content-in .data .unit {
  font-size: clamp(2rem, 2vw, 2.4rem);
  padding-inline: 15px;
  padding-bottom: 5px;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  #infographic .content-block .content-in .data .unit {
    font-size: 6vw;
  }
}
#infographic .content-block .content-in .note {
  font-size: 1.4rem;
  text-align: right;
  margin-top: 20px;
}
#infographic #data1 {
  padding-block: 100px;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 {
    padding-block: 50px;
  }
}
#infographic #data1 .row1 {
  display: flex;
  align-items: center;
  padding: 5%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row1 {
    flex-wrap: wrap;
  }
}
#infographic #data1 .row1 .icon {
  max-width: 132px;
  width: 10%;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row1 .icon {
    width: 15%;
  }
}
#infographic #data1 .row1 h3 {
  width: 50%;
  display: flex;
  align-items: center;
}
#infographic #data1 .row1 h3 .en {
  font-size: clamp(10rem, 12vw, 15rem);
  line-height: 1;
  letter-spacing: -5px;
  margin-right: 20px;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row1 h3 .en {
    font-size: 20vw;
  }
}
#infographic #data1 .row1 h3 .jp {
  font-size: clamp(2.4rem, 3vw, 4.5rem);
  line-height: 1.5;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row1 h3 .jp {
    font-size: 5vw;
  }
}
#infographic #data1 .row1 p {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row1 p {
    flex: none;
    width: 100%;
  }
}
#infographic #data1 .row2 {
  display: flex;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row2 {
    display: block;
  }
}
#infographic #data1 .row2 .box {
  position: relative;
  width: 50%;
  padding: 5%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row2 .box {
    width: 100%;
  }
}
#infographic #data1 .row2 .box.box1 {
  background-color: #FAFAFA;
}
#infographic #data1 .row2 .box.box2 {
  background-color: #F5F5F5;
}
#infographic #data1 .row2 .box.box2 h3 {
  text-align: right;
}
#infographic #data1 .row3 {
  display: flex;
  padding: 5% 8%;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 {
    flex-wrap: wrap;
  }
}
#infographic #data1 .row3 h3 {
  width: 22%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 h3 {
    width: 100%;
    margin-bottom: 20px;
  }
}
#infographic #data1 .row3 .col {
  width: 39%;
  display: flex;
  align-items: center;
  padding-inline: 5%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 .col {
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
  }
}
#infographic #data1 .row3 .col .icon {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 .col .icon {
    width: 20%;
  }
}
#infographic #data1 .row3 .col .data {
  width: 70%;
  display: flex;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 .col .data {
    width: 100%;
    justify-content: center;
  }
}
#infographic #data1 .row3 .col.ja {
  width: 20%;
  border-right: 1px solid #ECECEC;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 .col.ja {
    width: 100%;
    border-right: none;
  }
}
#infographic #data1 .row3 .col.ov {
  width: 58%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 .col.ov {
    width: 100%;
  }
  #infographic #data1 .row3 .col.ov .icon {
    display: none;
  }
}
#infographic #data1 .row3 .col.ov .sp-icon {
  display: none;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row3 .col.ov .sp-icon {
    display: block;
  }
}
#infographic #data1 .row4, #infographic #data1 .row5 {
  display: flex;
  align-items: center;
  padding: 5% 8%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row4, #infographic #data1 .row5 {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#infographic #data1 .row4 .txt, #infographic #data1 .row5 .txt {
  width: 50%;
  padding-right: 5%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row4 .txt, #infographic #data1 .row5 .txt {
    width: 100%;
    margin-bottom: 15px;
  }
}
#infographic #data1 .row4 .txt h3, #infographic #data1 .row5 .txt h3 {
  margin-bottom: 25px;
}
#infographic #data1 .row4 .icon, #infographic #data1 .row5 .icon {
  width: 20%;
  max-width: 190px;
  margin-right: 45px;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row4 .icon, #infographic #data1 .row5 .icon {
    margin-right: 0;
  }
}
#infographic #data1 .row4 .data, #infographic #data1 .row5 .data {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  #infographic #data1 .row4 .data, #infographic #data1 .row5 .data {
    width: 60%;
  }
}
#infographic #data1 .row4 {
  background-color: #FAFAFA;
}
#infographic #data1 .row4 .data {
  flex-direction: column;
  justify-content: center;
  max-width: 200px;
}
#infographic #data1 .row4 .data .up {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 8px solid #000;
}
#infographic #data1 .row4 .data .up .unit {
  padding: 0;
  font-size: clamp(4rem, 4.5vw, 6rem);
}
#infographic #data1 .row4 .data .bt {
  width: 100%;
  text-align: center;
}
#infographic #data1 .row4 .data .bt .unit {
  padding: 0;
  font-size: clamp(3rem, 3.5vw, 4.5rem);
}
#infographic #data1 .row5 {
  background-color: #F5F5F5;
}
#infographic #data2 {
  padding-block: 100px;
  background-color: #FFFCEB;
}
#infographic #data2 .content-in {
  display: flex;
  flex-wrap: wrap;
}
#infographic #data2 .content-in .row {
  width: 50%;
  padding: 5% 5% 1%;
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row {
    width: 100%;
  }
}
#infographic #data2 .content-in .row1 {
  width: 100%;
  padding: 5% 5% 1%;
}
#infographic #data2 .content-in .row1 .bg {
  text-align: center;
}
#infographic #data2 .content-in .row1 .bg img {
  max-width: 50%;
  margin: auto;
}
#infographic #data2 .content-in .row1 .data-row {
  display: flex;
  margin-top: -70px;
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row1 .data-row {
    display: block;
    margin-top: 0;
  }
}
#infographic #data2 .content-in .row1 .data-row .box {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row1 .data-row .box {
    width: 100%;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
}
#infographic #data2 .content-in .row1 .data-row .box.rev {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row1 .data-row .box.rev {
    flex-direction: row;
  }
}
#infographic #data2 .content-in .row1 .data-row .box .icon {
  max-width: 145px;
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row1 .data-row .box .icon {
    width: 20%;
  }
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row1 .data-row .box .data .unit {
    font-size: 1.8rem;
  }
}
#infographic #data2 .content-in .row1 .data-row .box .data .unit.par {
  font-size: clamp(4rem, 4.4vw, 5.4rem);
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row1 .data-row .box .data .unit.par {
    font-size: 2rem;
  }
}
#infographic #data2 .content-in .row1 .note {
  margin-top: 20px;
}
#infographic #data2 .content-in .row2 {
  background-color: #FAFAFA;
}
#infographic #data2 .content-in .row2 .data {
  justify-content: center;
  margin: 30px 0 30px;
}
#infographic #data2 .content-in .row2 .icon {
  text-align: center;
  padding-inline: 5%;
}
#infographic #data2 .content-in .row3 {
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#infographic #data2 .content-in .row3 .layout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row3 .layout {
    margin-top: 15px;
  }
}
#infographic #data2 .content-in .row3 .layout .icon {
  width: 40%;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  #infographic #data2 .content-in .row3 .layout .icon {
    width: 30%;
  }
}
#infographic #data2 .content-in .row4 {
  padding-bottom: 5%;
}
#infographic #data2 .content-in .row4 h3 {
  margin-bottom: 20px;
}
#infographic #data2 .content-in .row5 {
  background-color: #FAFAFA;
  padding-bottom: 5%;
}
#infographic #data2 .content-in .row5 h3 {
  margin-bottom: 20px;
}
#infographic #data3 {
  padding-block: 100px;
}
#infographic #data3 .content-in {
  display: flex;
}
@media only screen and (max-width: 768px) {
  #infographic #data3 .content-in {
    display: block;
  }
}
#infographic #data3 .content-in .box {
  width: 25%;
  padding: 5% 3%;
}
@media only screen and (max-width: 768px) {
  #infographic #data3 .content-in .box {
    width: 100%;
  }
}
#infographic #data3 .content-in .box h3 {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  margin-bottom: 20px;
}
#infographic #data3 .content-in .box .data-row {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #infographic #data3 .content-in .box .data-row {
    align-items: center;
  }
}
#infographic #data3 .content-in .box .data-row .icon {
  width: 30%;
  margin-right: 3%;
}
#infographic #data3 .content-in .box .data-row .data .en {
  font-size: clamp(6rem, 6vw, 8rem);
  line-height: 0.8;
}
#infographic #data3 .content-in .box .data-row .data .unit {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  padding: 0;
}
#infographic #data3 .content-in .box .note {
  margin-top: 0;
}
#infographic #data3 .content-in .box2 {
  background-color: #FAFAFA;
}
#infographic #data3 .content-in .box3 {
  background-color: #F5F5F5;
}