@charset "UTF-8";
/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Roboto', sans-serif;
*/
@media screen and (min-width: 1025px) {
  .for-mb {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .for-pc {
    display: none;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  .for-pc {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .for-pc {
    display: auto;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-1.48vh);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-shadow {
  0%, 50%, 100% {
    transform: scale(1);
    filter: blur(0px);
  }
  25% {
    transform: scale(1.6, 1);
    filter: blur(4px);
  }
}
@keyframes popup {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1.48vh);
  }
}
@keyframes popup-shadow {
  0% {
    transform: scale(1);
    filter: blur(0px);
  }
  100% {
    transform: scale(1.6, 1);
    filter: blur(4px);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fuwafuwa-re {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes shake-top {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 0;
  }
  20%, 60% {
    transform: rotate(4deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
}
@keyframes wobble {
  0%, 100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.fuwafuwa {
  animation: fuwafuwa 5s infinite;
}

.fuwafuwa-re {
  animation: fuwafuwa-re 5s infinite;
}

.fuwa0 {
  animation-delay: 0.5s;
}

.fuwa1 {
  animation-delay: 1s;
  animation-name: fuwafuwa-re;
}

.fuwa2 {
  animation-delay: 0s;
}

.fuwa3 {
  animation-delay: 0.2s;
  animation-name: fuwafuwa-re;
}

.katakata {
  animation: katakata 6s infinite ease-in-out alternate;
}

.shake-top {
  animation: shake-top 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

.wobble {
  animation: wobble 0.8s both;
}

rt {
  letter-spacing: -0.2em;
}

.date {
  aspect-ratio: 94/28;
  width: min(24vw, 120px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #EB6E8C;
  border-radius: 9999px;
  color: #EB6E8C;
  font-size: min(3.2vw, 16px);
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1025px) {
  .date {
    aspect-ratio: 136/43;
    width: 136px;
    border-width: 3px;
    font-size: 18px;
    font-weight: 700;
  }
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #000000;
}
@media screen and (min-width: 501px) {
  body {
    font-size: 15px;
    font-size: 15px;
  }
}
body:before, body:after {
  z-index: 9;
  transform: translateZ(1px);
}
body:before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  border: 7px solid #FDAD2C;
  border-bottom: none;
  width: 100%;
  height: 100%;
  height: 100dvh;
  height: -webkit-fill-available;
  pointer-events: none;
  background-image: url(../images/corner-lt.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 14px;
}
@media screen and (min-width: 1025px) {
  body:before {
    border-width: 15px;
    background-size: 20px;
  }
}
body:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  height: 100dvh;
  pointer-events: none;
  background-image: url(../images/frame1-mb.svg), url(../images/frame2-mb.svg), url(../images/frame4-mb.svg);
  background-position: center top, right center, left center;
  background-size: calc(100% - 178px) 7px, 7px calc(100% - 248px), 7px calc(100% - 248px);
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  body:after {
    background-image: url(../images/frame1.svg), url(../images/frame2.svg), url(../images/frame4.svg);
    background-size: calc(100% - 511px) 15px, 15px calc(100% - 473px), 15px calc(100% - 473px);
  }
}

.frame-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: calc(100% - 14px);
  height: 124px;
  border: 7px solid #FDAD2C;
  border-top: none;
  pointer-events: none;
  transform: translateZ(1px);
}
@media screen and (min-width: 1025px) {
  .frame-bottom {
    width: 100%;
    height: 236px;
    border-width: 15px;
  }
}
.frame-bottom:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/corner-rb.svg), url(../images/corner-lb.svg);
  background-position: right bottom, left bottom;
  background-repeat: no-repeat;
  background-size: 14px;
  transform: translateZ(1px);
}
@media screen and (min-width: 1025px) {
  .frame-bottom:before {
    width: calc(100% - 30px);
  }
}
.frame-bottom:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  bottom: -7px;
  width: 100vw;
  height: 7px;
  pointer-events: none;
  background-image: url(../images/frame3-mb.svg);
  background-position: center bottom;
  background-size: calc(100% - 178px) 7px;
  background-repeat: no-repeat;
  transform: translateZ(1px);
}
@media screen and (min-width: 1025px) {
  .frame-bottom:after {
    bottom: -15px;
    height: 15px;
    background-image: url(../images/frame3.svg);
    background-size: calc(100% - 511px) 15px;
  }
}

a {
  text-decoration: none;
  color: #000000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*
[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    display: none;
    content: attr(data-ruby);
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.45em;
//    letter-spacing: -0.2em; 
//    white-space: nowrap;
    text-align: center;
//    text-indent: -0.2em;
}
rt {
//    display: none;
}
*/
_::-webkit-full-page-media, _:future, :root ruby {
  line-height: 1;
}

_::-webkit-full-page-media, _:future, :root rt {
  transform: translateY(0.3rem);
}

#totop {
  position: fixed;
  bottom: 0;
  right: 3.86vw;
  z-index: 9;
}
@media screen and (min-width: 1025px) {
  #totop {
    right: 54px;
  }
}

#loading {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  pointer-events: none;
  transition: 1s;
}

#modalbg {
  position: fixed;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background: #000000;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.scr-pop {
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
  transform-origin: bottom center;
  transform: scale(0);
}
.scr-pop.pop {
  transform: scale(1);
}

#header .nav-button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  background: #FDAD2C;
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  #header .nav-button {
    width: 90px;
    height: 90px;
    border-radius: 10px;
  }
}
#header .nav-button:before, #header .nav-button:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  background-image: url(../images/corner-rt.svg);
  background-repeat: no-repeat;
  background-size: 14px;
}
@media screen and (min-width: 1025px) {
  #header .nav-button:before, #header .nav-button:after {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}
#header .nav-button:before {
  left: -14px;
  top: 7px;
}
@media screen and (min-width: 1025px) {
  #header .nav-button:before {
    left: -20px;
    top: 15px;
  }
}
#header .nav-button:after {
  right: 7px;
  bottom: -14px;
}
@media screen and (min-width: 1025px) {
  #header .nav-button:after {
    right: 15px;
    bottom: -20px;
  }
}
#header .nav-button .bar {
  position: absolute;
  display: block;
  background: #ffffff;
  width: 28px;
  height: 4px;
  left: 0;
  right: 17px;
  margin: auto 0 auto auto;
  transition: 0.3s ease;
  transform-origin: 15% 50%;
}
@media screen and (min-width: 1025px) {
  #header .nav-button .bar {
    width: 37px;
    right: 26px;
  }
}
#header .nav-button .bar.bar1 {
  top: 19px;
}
@media screen and (min-width: 1025px) {
  #header .nav-button .bar.bar1 {
    top: 27px;
  }
}
#header .nav-button .bar.bar2 {
  top: 30px;
}
@media screen and (min-width: 1025px) {
  #header .nav-button .bar.bar2 {
    top: 43px;
  }
}
#header .nav-button .bar.bar3 {
  top: 41px;
}
@media screen and (min-width: 1025px) {
  #header .nav-button .bar.bar3 {
    top: 59px;
  }
}
#header #nav-content {
  background: #FDAD2C;
  padding-top: 32px;
  padding-bottom: 25px;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  transition: 0.4s ease;
  z-index: 8;
}
@media screen and (min-width: 1025px) {
  #header #nav-content {
    top: -100%;
    padding-bottom: 22px;
  }
}
#header #nav-content .head {
  text-align: center;
  margin-bottom: 10px;
}
#header #nav-content .head img {
  width: 230px;
}
@media screen and (min-width: 1025px) {
  #header #nav-content .head img {
    width: 440px;
  }
}
#header #nav-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw 3.54vw;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  #header #nav-content ul {
    gap: min(1.65vw, 24px);
  }
}
#header #nav-content ul li {
  width: min(27.03vw, 221px);
}
@media screen and (min-width: 1025px) {
  #header #nav-content ul li {
    width: min(14.59vw, 221px);
  }
}
#header #nav-content ul li a {
  display: inline-block;
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-size: contain;
  padding-bottom: 12px;
}
@media screen and (min-width: 1025px) {
  #header #nav-content ul li a {
    padding-bottom: 25px;
  }
}
#header #nav-content ul li a img {
  transition: transform 0.4s;
}
@media screen and (min-width: 1025px) {
  #header #nav-content ul li a:hover img {
    transform: translateY(15px);
  }
}
#header #nav-content ul li.work a {
  background-image: url(../images/nav-work-bg.svg);
}
#header #nav-content ul li.cars a {
  background-image: url(../images/nav-cars-bg.svg);
}
#header #nav-content ul li.eco a {
  background-image: url(../images/nav-eco-bg.svg);
}
#header #nav-content ul li.manners a {
  background-image: url(../images/nav-manners-bg.svg);
}
#header #nav-content ul li.play a {
  background-image: url(../images/nav-play-bg.svg);
}
#header #nav-content ul li.events a {
  background-image: url(../images/nav-events-bg.svg);
}
#header #nav-content ul li._dammywrap {
  width: 100%;
  height: 0;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  #header #nav-content ul li._dammywrap {
    display: none;
  }
}
#header.opened .nav-button .bar1 {
  transform: rotate(45deg);
  top: 20px;
}
@media screen and (min-width: 1025px) {
  #header.opened .nav-button .bar1 {
    top: 33px;
  }
}
#header.opened .nav-button .bar2 {
  opacity: 0;
}
#header.opened .nav-button .bar3 {
  transform: rotate(-45deg);
  top: 34px;
}
@media screen and (min-width: 1025px) {
  #header.opened .nav-button .bar3 {
    top: 52px;
  }
}
#header.opened #nav-content {
  top: 0px;
}
#footer {
  background-color: #0F71A7;
  position: relative;
  padding-top: 32px;
  padding-bottom: 45px;
  padding-left: 24px;
  padding-right: 24px;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  #footer {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#footer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/footer-bg.svg);
  opacity: 0.2;
  mix-blend-mode: multiply;
  pointer-events: none;
}
#footer .inner {
  position: relative;
  z-index: 1;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #footer .inner {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (min-width: 1025px) {
  #footer .inner {
    display: flex;
    justify-content: center;
  }
}
#footer .inner .footer-nav {
  padding-top: 47px;
}
#footer .inner .footer-nav .head {
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #footer .inner .footer-nav .head {
    text-align: left;
  }
}
#footer .inner .footer-nav .body {
  list-style: none;
  margin: 0;
  padding: 0 24px;
}
@media screen and (min-width: 1025px) {
  #footer .inner .footer-nav .body {
    padding: 0 21px;
  }
}
#footer .inner .footer-nav .body li {
  margin-bottom: 25px;
}
#footer .inner .footer-nav .body li a {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  padding-bottom: 25px;
  border-bottom: 1px solid #ffffff;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  #footer .inner .footer-nav .body li a {
    font-size: 24px;
  }
}
#footer .inner .footer-nav .body li a:after {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  margin-right: 16px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #footer .inner .footer-nav .body li a:hover {
    opacity: 0.7;
  }
}

#credit {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  #credit {
    padding-bottom: 126px;
  }
}
#credit .inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #credit .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#credit .inner .copyright {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 13px;
}
@media screen and (min-width: 1025px) {
  #credit .inner .copyright {
    font-size: 12px;
    margin-top: 0;
  }
}

#mv {
  position: relative;
  background-color: #5197CE;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 1920px auto;
  z-index: 2;
  width: 100%;
  padding-bottom: 13.33vw;
  /*
      .croud-a {
          aspect-ratio: 286/130;
      }
      .croud-b {
          aspect-ratio: 122/58;
      }
      .croud-c {
          aspect-ratio: 212/98;
      }
      .croud-d {
          aspect-ratio: 418/220;
      }
      .croud-e {
          aspect-ratio: 178/94;
      }
      .croud-f {
          aspect-ratio: 87/41;
      }
      .croud-g {
          aspect-ratio: 208/112;
      }
  */
  /*
      .bg {
          pointer-events: none;
          background-image: url(../images/mv-bg.png);
          background-size: cover;
          @include mq('pc') {
              background: none;
          }
          .crouds {
              img {
                  position: absolute;
                  width: auto;
                  &:nth-child(1) {
                      left: 34.78%;
                      top: 23.54%;
                      height: 5.22vh;
                      @include mq('pc') {
                          left: 42.13%;
                          top: 22.77%;
                          height: 6.01vh;
                      }
                  }
                  &:nth-child(2) {
                      left: 57.76%;
                      top: 26.75%;
                      height: 3.05vh;
                      @include mq('pc') {
                      }
                  }
                  &:nth-child(3) {
                      opacity: 0;
                      @include mq('pc') {
                          opacity: 1;
                          left: 77.55%;
                          top: 45.27vh;
                          height: 4.35vh;
                      }
                  }
                  &:nth-child(4) {
                      left: 7.52%;
                      top: 71.83%;
                      height: 4.35vh;
                      @include mq('pc') {
                          left: 15.52%;
                          top: 70.83%;
                          height: 4.35vh;
                      }
                  }
              }
          }
      }
  */
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #mv {
    background-color: #408ECB;
  }
}
@media screen and (min-width: 1025px) {
  #mv {
    background-image: url(../images/mv-land.png), url(../images/mv-holizon.png), url(../images/mv-sky.png), url(../images/mv-sea-wave.svg), url(../images/mv-sea-bg.svg);
    background-repeat: no-repeat;
    background-position: top center, top 42.96vh center, top center, bottom 5.75vh center, bottom center;
    background-size: auto 100vh, 1920px 10.96vh, 1920px 42.96vh, 1710px 81.33vh, cover;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding-bottom: 170px;
  }
}
@media screen and (min-width: 1921px) {
  #mv {
    background-position: top center, top 42.96vh center, top center, bottom 5.75vh center, bottom center;
    background-size: auto 100vh, 100% 10.96vh, 100% 42.96vh, 1710px 81.33vh, cover;
  }
}
#mv .mv-title {
  position: absolute;
  top: 5.36svh;
  left: 0;
  margin: 0 auto;
  visibility: hidden;
  z-index: 2;
  height: auto;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  #mv .mv-title {
    z-index: 1;
  }
}
#mv .mv-title img {
  width: 82.4vw;
  max-width: 309px;
  aspect-ratio: 309/86;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #mv .mv-title img {
    max-width: unset;
    width: auto;
    height: 14.75vh;
  }
}
@media screen and (min-width: 1025px) {
  #mv .mv-title img {
    max-width: unset;
    width: auto;
    height: 18.75vh;
    aspect-ratio: 735.45/202.55;
  }
}
#mv .inner {
  position: relative;
  z-index: 1;
  height: 100svh;
  overflow-x: scroll;
}
@media screen and (min-width: 1025px) {
  #mv .inner {
    background-image: none;
    width: 100%;
    height: 100vh;
  }
}
@media screen and (min-width: 1025px) {
  #mv .inner {
    overflow: hidden;
  }
}
#mv .inner::-webkit-scrollbar {
  display: none;
}
#mv .slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  #mv .slide {
    display: none;
  }
}
#mv .slide img {
  width: 18.66vw;
  aspect-ratio: 1/1;
}
#mv .bg, #mv .front {
  aspect-ratio: 782.14/673;
  min-width: 100%;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 1025px) {
  #mv .bg, #mv .front {
    aspect-ratio: 1920/1080;
    margin: auto;
    left: 50vw;
    transform: translateX(-50%);
  }
}
#mv .land {
  width: auto;
  height: 100%;
  position: relative;
  top: 0;
  text-align: center;
  transform: unset;
  aspect-ratio: unset;
  /*
          .click {
              position: absolute;
              left: 50%;
  //            bottom: 11.37vh;
              bottom: 3.87vh;
              margin: 0;
              transform: translateX(-50%);
              @include mq('pc') {
                  bottom: 4.10vh;
              }
              img {
                  width: auto;
                  height: 12.14vh;
                  aspect-ratio: 577.25/71.81;
                  @include mq('pc') {
                      height: 6.64vh;
                  }
              }
          }
  */
}
@media screen and (min-width: 1025px) {
  #mv .land {
    margin: unset;
  }
}
#mv .land .map {
  padding-top: 21.58vh;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #mv .land .map {
    padding-top: 18.24vh;
  }
}
#mv .land .map img {
  width: auto;
  height: 66.71vh;
  aspect-ratio: 1044/836;
}
@media screen and (min-width: 1025px) {
  #mv .land .map img {
    height: 77.4vh;
  }
}
#mv .front {
  background-image: url(../images/mv-mb.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  /*
          .crouds {
              img {
                  &:nth-child(1) {
                      left: 11.88%;
                      top: 52.5%;
                      height: 5.37vh;
                      @include mq('pc') {
                          left: 22.08%;
                          top: 55.27%;
                          height: 5.37vh;
                      }
                  }
                  &:nth-child(2) {
                      left: 86.27%;
                      top: 50.92%;
                      height: 3.53vh;
                      @include mq('pc') {
                          left: 64.27%;
                          top: 30.92%;
                          height: 4.53vh;
                      }
                  }
                  &:nth-child(3) {
                      left: 67.8%;
                      top: 73.7vh;
                      height: 10.18vh;
                      @include mq('pc') {
                          left: 68.12%;
                          top: 76.20vh;
                          height: 10.18vh;
                      }
                  }
                  &:nth-child(4) {
                      left: 70.27%;
                      top: 34.92%;
                      height: 4.53vh;
                      @include mq('pc') {
                          display: none;
                      }
                  }
              }
          }
  */
}
@media screen and (min-width: 1025px) {
  #mv .front {
    background-image: none;
  }
}
#mv .front img {
  position: absolute;
  width: auto;
}
#mv .front .para {
  left: 40.8%;
  top: 19.7svh;
  height: 20.69svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .para {
    left: 17.95%;
    top: 12.82vh;
    height: 18.653vh;
  }
}
#mv .front .ship {
  left: 66.87%;
  top: 20.6svh;
  height: 11.12svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .ship {
    left: 73.96%;
    top: 13.6vh;
    height: 13.15vh;
  }
}
#mv .front .baloon-a {
  left: 80.93%;
  top: 19.8svh;
  height: 16.15svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .baloon-a {
    left: 71.78%;
    top: 27.23vh;
    height: 16.15vh;
  }
}
#mv .front .baloon-b {
  left: 6.06%;
  top: 19.38svh;
  height: 19.09svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .baloon-b {
    left: 15.52%;
    top: 32.98vh;
    height: 19.09vh;
  }
}
#mv .front .pins {
  opacity: 0;
  transition: 1s;
  transition-delay: 1s;
  transform: translateY(-50px);
  position: relative;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins {
    position: unset;
  }
}
#mv .front .pins .area:before {
  content: "";
  position: absolute;
  display: inline-block;
}
#mv .front .pins .area .pin {
  position: absolute;
  aspect-ratio: 55.24/80.04;
  width: auto;
  height: 6.39svh;
  z-index: 3;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area .pin {
    height: 7.41vh;
  }
}
#mv .front .pins .area .pin:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -0.74svh;
  background: url(../images/pin-shadow.png) bottom center no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  height: 0.79svh;
  /*
                          animation-name: bounce-shadow;
                          animation-duration: 2.5s;
                          animation-iteration-count: infinite;
  */
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area .pin:before {
    bottom: -0.64vh;
    height: 0.92vh;
  }
}
#mv .front .pins .area .pin img {
  position: static;
  aspect-ratio: 55.24/80.04;
  width: auto;
  height: 7.41svh;
  transition: 0.4s;
  animation-name: bounce;
  animation-duration: 2.5s;
  animation-delay: 2.5s;
  animation-iteration-count: infinite;
}
#mv .front .pins .area .label {
  display: inline-block;
  position: absolute;
  aspect-ratio: 215.173/211.144;
  max-width: unset;
  height: 19.55svh;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0);
  z-index: 2;
}
#mv .front .pins .area.cars:before {
  left: 19.33%;
  top: 26.38svh;
  aspect-ratio: 1/1;
  width: 45.61vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.cars:before {
    left: 28.33%;
    top: 26.38vh;
    aspect-ratio: 1/1;
    width: 16.61vw;
  }
}
#mv .front .pins .area.cars .pin {
  left: 29.32%;
  top: 28.62svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.cars .pin {
    left: 34.53%;
    top: 25.03vh;
  }
}
#mv .front .pins .area.cars .pin:before, #mv .front .pins .area.cars .pin img {
  animation-delay: 0s;
}
#mv .front .pins .area.cars .label {
  left: 12.02%;
  top: 17.5svh;
  transform-origin: right 70%;
  margin-left: 1.9vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.cars .label {
    left: 23.02%;
    top: 15.5vh;
    transform-origin: right 70%;
    margin-left: 1.9vw;
  }
}
#mv .front .pins .area.eco:before {
  left: 55.64%;
  top: 28.41svh;
  aspect-ratio: 302/287;
  width: 40.72vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.eco:before {
    left: 53.64%;
    top: 26.41vh;
    aspect-ratio: 302/287;
    width: 15.72vw;
  }
}
#mv .front .pins .area.eco .pin {
  left: 63.82%;
  top: 28.64svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.eco .pin {
    left: 60.82%;
    top: 26.41vh;
  }
}
#mv .front .pins .area.eco .pin:before, #mv .front .pins .area.eco .pin img {
  animation-delay: 2s;
}
#mv .front .pins .area.eco .label {
  left: 68.32%;
  top: 17.28svh;
  transform-origin: left 70%;
  margin-left: -2.1vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.eco .label {
    left: 64.32%;
    top: 15.28vh;
    transform-origin: left 70%;
    margin-left: -2.1vw;
  }
}
#mv .front .pins .area.manners:before {
  left: 16.72%;
  top: 52.67svh;
  aspect-ratio: 305/246;
  width: 41.88vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.manners:before {
    left: 25.72%;
    top: 50.67vh;
    aspect-ratio: 305/246;
    width: 15.88vw;
  }
}
#mv .front .pins .area.manners .pin {
  left: 25.47%;
  top: 49.58svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.manners .pin {
    left: 31.65%;
    top: 50.67vh;
  }
}
#mv .front .pins .area.manners .pin:before, #mv .front .pins .area.manners .pin img {
  animation-delay: 4s;
}
#mv .front .pins .area.manners .label {
  left: 8.93%;
  top: 39.55svh;
  transform-origin: right 70%;
  margin-left: 1.9vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.manners .label {
    left: 19.93%;
    top: 39.55vh;
    transform-origin: right 70%;
    margin-left: 1.9vw;
  }
}
#mv .front .pins .area.play:before {
  left: 39.91%;
  top: 60.71svh;
  aspect-ratio: 290/238;
  width: 41.1vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.play:before {
    left: 42.91%;
    top: 60.71vh;
    aspect-ratio: 290/238;
    width: 15.1vw;
  }
}
#mv .front .pins .area.play .pin {
  left: 48.5%;
  top: 59.04svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.play .pin {
    left: 48.9%;
    top: 61.63vh;
  }
}
#mv .front .pins .area.play .pin:before, #mv .front .pins .area.play .pin img {
  animation-delay: 6s;
}
#mv .front .pins .area.play .label {
  left: 52.57%;
  top: 48.52svh;
  transform-origin: left 70%;
  margin-left: -2.1vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.play .label {
    left: 52.57%;
    top: 50.52vh;
    transform-origin: left 70%;
    margin-left: -2.1vw;
  }
}
#mv .front .pins .area.works:before {
  left: 53.51%;
  top: 50.92svh;
  aspect-ratio: 347/185;
  width: 57.07vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.works:before {
    left: 56.51%;
    top: 55.92vh;
    aspect-ratio: 347/185;
    width: 18.07vw;
  }
}
#mv .front .pins .area.works .pin {
  left: 69.48%;
  top: 54.83svh;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.works .pin {
    left: 65.24%;
    top: 56.75vh;
  }
}
#mv .front .pins .area.works .pin:before, #mv .front .pins .area.works .pin img {
  animation-delay: 8s;
}
#mv .front .pins .area.works .label {
  display: inline-block;
  left: 73.63%;
  top: 43.65svh;
  transform-origin: left 70%;
  margin-left: -2.1vw;
}
@media screen and (min-width: 1025px) {
  #mv .front .pins .area.works .label {
    display: inline-block;
    left: 68.63%;
    top: 45.65vh;
    transform-origin: left 70%;
    margin-left: -2.1vw;
  }
}
#mv .front .pins .area:hover .pin:before {
  /*
                              animation-delay: 0;
                              animation-name: popup-shadow;
                              animation-duration: 0.4s;
                              animation-iteration-count: 1;
                              animation-fill-mode: forwards;
  */
}
#mv .front .pins .area:hover .pin img {
  animation-delay: 0;
  animation-name: popup;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transform: translateY(-1.48vh);
}
#mv .front .pins .area:hover .label {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  margin-left: 0;
  margin-right: 0;
}
#mv .lead {
  padding-top: 10px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/mv-lead-bg-mb.png);
  background-size: cover;
  background-position: bottom center;
}
@media screen and (min-width: 501px) {
  #mv .lead {
    display: flex;
    justify-content: center;
    background: none;
  }
}
#mv .lead .crouds {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 501px) {
  #mv .lead .crouds {
    z-index: 0;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1920px;
  }
}
#mv .lead .crouds img {
  position: absolute;
  width: auto;
}
#mv .lead .crouds img:nth-child(1) {
  left: 30.03%;
  top: -0.43vh;
  height: 3.82vh;
}
@media screen and (min-width: 501px) {
  #mv .lead .crouds img:nth-child(1) {
    left: 34.8%;
    top: 0;
    height: 3.82vh;
  }
}
#mv .lead .crouds img:nth-child(2) {
  left: 5.18%;
  top: 9.4vh;
  height: 5.37vh;
}
@media screen and (min-width: 501px) {
  #mv .lead .crouds img:nth-child(2) {
    left: 28.38%;
    top: 5.4vh;
    height: 5.37vh;
  }
}
#mv .lead .crouds img:nth-child(3) {
  left: 67.03%;
  top: 57.63vh;
  height: 10.38vh;
}
@media screen and (min-width: 501px) {
  #mv .lead .crouds img:nth-child(3) {
    left: 64.03%;
    top: 28.3vh;
    height: 10.38vh;
  }
}
#mv .lead .img {
  z-index: 1;
  text-align: center;
}
#mv .lead .img img {
  width: auto;
  width: 90.66%;
  margin-bottom: 10px;
}
@media screen and (min-width: 501px) {
  #mv .lead .img img {
    width: auto;
    height: 33.09vh;
    margin-bottom: 0;
    margin-left: 0;
  }
}
#mv .lead .txt {
  z-index: 1;
  position: relative;
  width: 87.2vw;
  margin-left: auto;
  margin-right: 0;
  aspect-ratio: 479.96/338.03;
}
@media screen and (min-width: 501px) {
  #mv .lead .txt {
    width: auto;
    height: 31.29vh;
    margin: 0;
  }
}
#mv .lead .txt .lead-txt-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#mv .lead .txt .lead-txt-wrapper .lead-txt {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.8;
}
#mv .lead .txt .lead-txt-wrapper .lead-txt [data-ruby]:before {
  margin-top: -0.8em;
  font-size: 6.5px;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 501px) {
  #mv .lead .txt .lead-txt-wrapper .lead-txt {
    font-size: 1.85vh;
  }
  #mv .lead .txt .lead-txt-wrapper .lead-txt [data-ruby]:before {
    margin-top: -0.5em;
    font-size: 0.9vh;
    letter-spacing: -0.1em;
  }
}
#mv .events {
  box-sizing: border-box;
  background-image: url(../images/mv-events-bg-mb.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 336/670;
  width: min(89.33vw, 447px);
  padding-top: min(21.6vw, 108px);
}
@media screen and (min-width: 1025px) {
  #mv .events {
    background-image: url(../images/mv-events-bg.svg);
    aspect-ratio: 1035/787;
    width: 100%;
    max-width: 1035px;
    padding-top: 110px;
  }
}
#mv .events .events-title {
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #mv .events .events-title {
    margin-bottom: 30px;
  }
}
#mv .events .events-title img {
  width: min(66.66vw, 334px);
}
@media screen and (min-width: 1025px) {
  #mv .events .events-title img {
    width: 381px;
  }
}
#mv .events .events-list {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: min(68.26vw, 342px);
  margin-bottom: min(8vw, 40px);
}
@media screen and (min-width: 1025px) {
  #mv .events .events-list {
    width: 800px;
    margin-bottom: 35px;
  }
}
#mv .events .events-list a {
  display: flex;
  border-bottom: 2px solid #D9D9D9;
  position: relative;
  transition: opacity 0.4s;
  flex-direction: column;
  align-items: flex-start;
  gap: min(4vw, 20px);
  padding: min(8vw, 40px) 0 min(4vw, 20px);
}
@media screen and (min-width: 1025px) {
  #mv .events .events-list a {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 35px 20px 35px 10px;
  }
  #mv .events .events-list a:hover {
    opacity: 0.5;
  }
}
#mv .events .events-list a:last-of-type {
  border-bottom: 0;
}
#mv .events .events-list a .subject {
  box-sizing: border-box;
  font-weight: bold;
  width: 100%;
  font-size: min(4.2vw, 21px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: relative;
  padding-right: min(8.53vw, 43px);
}
@media screen and (min-width: 1025px) {
  #mv .events .events-list a .subject {
    display: block;
    font-size: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 66px;
  }
}
#mv .events .events-list a .subject::after {
  content: "";
  aspect-ratio: 14/18;
  width: min(3.2vw, 16px);
  background-image: url(../images/link-events.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0 0 0 0;
  margin: auto 0 auto auto;
}
@media screen and (min-width: 1025px) {
  #mv .events .events-list a .subject::after {
    width: 14px;
    margin: auto 20px auto auto;
  }
}
#mv .events .events-tolist {
  text-align: center;
}
#mv .events .events-tolist a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: bold;
  border: 2px solid #000;
  border-radius: 9999px;
  transition: background-color 0.4s, color 0.4s;
  font-size: min(4vw, 20px);
  padding: min(3.73vw, 19px) min(13.86vw, 70px);
}
@media screen and (min-width: 1025px) {
  #mv .events .events-tolist a {
    border-width: 3px;
    font-size: 24px;
    padding-top: 17px;
    padding-bottom: 20px;
    padding-left: 75px;
    padding-right: 75px;
  }
  #mv .events .events-tolist a:hover {
    background-color: #000;
    color: #fff;
  }
  #mv .events .events-tolist a:hover::before {
    opacity: 0;
  }
  #mv .events .events-tolist a:hover::after {
    opacity: 1;
  }
}
#mv .events .events-tolist a::before, #mv .events .events-tolist a::after {
  content: "";
  aspect-ratio: 14/18;
  width: min(2.66vw, 14px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transition: opacity 0.4s;
  inset: 0;
  margin: auto min(4.26vw, 22px) auto auto;
}
@media screen and (min-width: 1025px) {
  #mv .events .events-tolist a::before, #mv .events .events-tolist a::after {
    width: 14px;
    inset: 0;
    margin: auto 22px auto auto;
  }
}
#mv .events .events-tolist a::before {
  background-image: url(../images/link-events.png);
}
#mv .events .events-tolist a::after {
  background-image: url(../images/link-events-active.png);
  opacity: 0;
}

.sec-catch {
  text-align: center;
  margin-bottom: 10px;
  /*
      transition: $common-transition $easeOutBack 0.5s;
      transform-origin: center bottom;
      transform: scale(0);
  */
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .sec-catch {
    width: auto;
    height: auto;
    margin-bottom: 15px;
  }
}
.sec-catch img {
  height: 43px;
}
@media screen and (min-width: 1025px) {
  .sec-catch img {
    width: auto;
    height: auto;
  }
}
.sec-catch.pop {
  transform: scale(1);
}

.sec-head {
  text-align: center;
  margin: 0;
}

#top #works {
  background-image: url(../images/works-bg-top.png), url(../images/works-bg-topleft.png), url(../images/works-bg-left.png), url(../images/works-bg-right.png), url(../images/works-bg.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-position: right top, left top, left bottom, right bottom 28px, center;
  background-size: 46.4vw auto, 25.37vw auto, 22.69vw auto, 25.7vw auto, 100vw auto;
  padding-top: 70px;
  padding-bottom: 65px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  #top #works {
    background-position: right top, left 163px top, left center, right bottom 102px, center;
    background-size: auto;
    padding-top: 112px;
    padding-bottom: 120px;
  }
}
#top #works:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: url(../images/works-head.png) top center repeat-x;
  background-size: auto 15px;
}
@media screen and (min-width: 1025px) {
  #top #works:before {
    background-size: auto;
    height: 32px;
  }
}
#top #works .sec-catch {
  background: url(../images/works-ttl-bg.svg) bottom center no-repeat;
}
@media screen and (min-width: 1025px) {
  #top #works .sec-catch {
    background: none;
  }
}
#top #works .works, #top #works .swiper-wrapper {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  #top #works .works, #top #works .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 75px;
    margin-bottom: 60px;
  }
}
#top #works .works .work, #top #works .works .swiper-slide, #top #works .swiper-wrapper .work, #top #works .swiper-wrapper .swiper-slide {
  position: relative;
  padding-left: 14.13vw;
  padding-right: 14.13vw;
  box-sizing: border-box;
}
@media screen and (min-width: 501px) {
  #top #works .works .work, #top #works .works .swiper-slide, #top #works .swiper-wrapper .work, #top #works .swiper-wrapper .swiper-slide {
    width: auto;
    padding: 0;
  }
}
#top #works .works .work .comment, #top #works .works .swiper-slide .comment, #top #works .swiper-wrapper .work .comment, #top #works .swiper-wrapper .swiper-slide .comment {
  position: absolute;
}
#top #works .works .work .staff, #top #works .works .swiper-slide .staff, #top #works .swiper-wrapper .work .staff, #top #works .swiper-wrapper .swiper-slide .staff {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  overflow: hidden;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #top #works .works .work .staff, #top #works .works .swiper-slide .staff, #top #works .swiper-wrapper .work .staff, #top #works .swiper-wrapper .swiper-slide .staff {
    background-size: 350px auto;
  }
}
#top #works .works .work .staff img, #top #works .works .swiper-slide .staff img, #top #works .swiper-wrapper .work .staff img, #top #works .swiper-wrapper .swiper-slide .staff img {
  transition: transform 0.4s;
  transform-origin: bottom center;
}
#top #works .works .work .name, #top #works .works .swiper-slide .name, #top #works .swiper-wrapper .work .name, #top #works .swiper-wrapper .swiper-slide .name {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  box-sizing: border-box;
  width: 250px;
  height: 99px;
  padding-top: 22px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media screen and (min-width: 501px) {
  #top #works .works .work .name, #top #works .works .swiper-slide .name, #top #works .swiper-wrapper .work .name, #top #works .swiper-wrapper .swiper-slide .name {
    font-size: 34px;
    width: auto;
    height: 131px;
    padding-top: 30px;
  }
}
#top #works .works .work .name .ruby, #top #works .works .swiper-slide .name .ruby, #top #works .swiper-wrapper .work .name .ruby, #top #works .swiper-wrapper .swiper-slide .name .ruby {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 501px) {
  #top #works .works .work .name .ruby, #top #works .works .swiper-slide .name .ruby, #top #works .swiper-wrapper .work .name .ruby, #top #works .swiper-wrapper .swiper-slide .name .ruby {
    font-size: 16px;
  }
}
#top #works .works .work.line .comment, #top #works .works .swiper-slide.line .comment, #top #works .swiper-wrapper .work.line .comment, #top #works .swiper-wrapper .swiper-slide.line .comment {
  width: 76px;
  left: 11vw;
  top: 42px;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #top #works .works .work.line .comment, #top #works .works .swiper-slide.line .comment, #top #works .swiper-wrapper .work.line .comment, #top #works .swiper-wrapper .swiper-slide.line .comment {
    left: unset;
    right: 61%;
  }
}
@media screen and (min-width: 1025px) {
  #top #works .works .work.line .comment, #top #works .works .swiper-slide.line .comment, #top #works .swiper-wrapper .work.line .comment, #top #works .swiper-wrapper .swiper-slide.line .comment {
    width: auto;
    left: -44px;
    top: 78px;
  }
}
#top #works .works .work.line .staff, #top #works .works .swiper-slide.line .staff, #top #works .swiper-wrapper .work.line .staff, #top #works .swiper-wrapper .swiper-slide.line .staff {
  background-image: url(../images/works-line-bg.svg);
}
#top #works .works .work.line .name, #top #works .works .swiper-slide.line .name, #top #works .swiper-wrapper .work.line .name, #top #works .swiper-wrapper .swiper-slide.line .name {
  background-image: url(../images/works-line-name.svg);
}
#top #works .works .work.highway .comment, #top #works .works .swiper-slide.highway .comment, #top #works .swiper-wrapper .work.highway .comment, #top #works .swiper-wrapper .swiper-slide.highway .comment {
  width: 76px;
  left: 11vw;
  top: 42px;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #top #works .works .work.highway .comment, #top #works .works .swiper-slide.highway .comment, #top #works .swiper-wrapper .work.highway .comment, #top #works .swiper-wrapper .swiper-slide.highway .comment {
    left: unset;
    right: 61%;
  }
}
@media screen and (min-width: 1025px) {
  #top #works .works .work.highway .comment, #top #works .works .swiper-slide.highway .comment, #top #works .swiper-wrapper .work.highway .comment, #top #works .swiper-wrapper .swiper-slide.highway .comment {
    width: auto;
    left: -44px;
    top: 78px;
  }
}
#top #works .works .work.highway .staff, #top #works .works .swiper-slide.highway .staff, #top #works .swiper-wrapper .work.highway .staff, #top #works .swiper-wrapper .swiper-slide.highway .staff {
  background-image: url(../images/works-highway-bg.svg);
}
#top #works .works .work.highway .name, #top #works .works .swiper-slide.highway .name, #top #works .swiper-wrapper .work.highway .name, #top #works .swiper-wrapper .swiper-slide.highway .name {
  background-image: url(../images/works-highway-name.svg);
}
#top #works .works .work.admin .comment, #top #works .works .swiper-slide.admin .comment, #top #works .swiper-wrapper .work.admin .comment, #top #works .swiper-wrapper .swiper-slide.admin .comment {
  width: 76px;
  right: 11vw;
  top: 42px;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #top #works .works .work.admin .comment, #top #works .works .swiper-slide.admin .comment, #top #works .swiper-wrapper .work.admin .comment, #top #works .swiper-wrapper .swiper-slide.admin .comment {
    right: unset;
    left: 61%;
  }
}
@media screen and (min-width: 1025px) {
  #top #works .works .work.admin .comment, #top #works .works .swiper-slide.admin .comment, #top #works .swiper-wrapper .work.admin .comment, #top #works .swiper-wrapper .swiper-slide.admin .comment {
    width: auto;
    right: -54px;
    top: 80px;
  }
}
#top #works .works .work.admin .staff, #top #works .works .swiper-slide.admin .staff, #top #works .swiper-wrapper .work.admin .staff, #top #works .swiper-wrapper .swiper-slide.admin .staff {
  background-image: url(../images/works-admin-bg.svg);
}
#top #works .works .work.admin .name, #top #works .works .swiper-slide.admin .name, #top #works .swiper-wrapper .work.admin .name, #top #works .swiper-wrapper .swiper-slide.admin .name {
  background-image: url(../images/works-admin-name.svg);
}
@media screen and (min-width: 1025px) {
  #top #works .works .work:hover .staff img, #top #works .works .swiper-slide:hover .staff img, #top #works .swiper-wrapper .work:hover .staff img, #top #works .swiper-wrapper .swiper-slide:hover .staff img {
    transform: scale(1.1);
  }
}
#top #works .link {
  text-align: center;
}
#top #works .link a {
  display: inline-block;
  background-image: url(../images/btn-bg.png);
  background-repeat: no-repeat;
  background-position-y: bottom;
  padding-bottom: 25px;
  background-size: contain;
  width: 81.33vw;
}
#top #works .link a img {
  transition: transform 0.4s;
}
@media screen and (min-width: 1025px) {
  #top #works .link a:hover img {
    transform: translateY(15px);
  }
}
@media screen and (min-width: 501px) {
  #top #works .link a {
    width: auto;
  }
}
#top #works .swiper-button-prev,
#top #works .swiper-button-next {
  width: 24px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 164px;
}
#top #works .swiper-button-prev:after,
#top #works .swiper-button-next:after {
  display: none;
}
@media screen and (min-width: 1025px) {
  #top #works .swiper-button-prev,
  #top #works .swiper-button-next {
    display: none;
  }
}
#top #works .swiper-button-prev {
  left: 23px;
  background-image: url(../images/slide-prev.svg);
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #top #works .swiper-button-prev {
    left: calc(50% - 198px);
  }
}
#top #works .swiper-button-next {
  right: 23px;
  background-image: url(../images/slide-next.svg);
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #top #works .swiper-button-next {
    right: calc(50% - 198px);
  }
}

#top #cars {
  background-color: #4AB04C;
  background-image: url(../images/cars-obj-mb.png), url(../images/cars-bg.png);
  background-repeat: no-repeat, repeat;
  background-position: top left, center;
  background-size: contain, 75px 70px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #top #cars {
    background-image: url(../images/cars-obj.png), url(../images/cars-bg.png);
    background-repeat: no-repeat, repeat;
    background-position: top 110px left calc(50% + 30px), center;
    background-size: unset;
  }
}
#top #cars:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 32px;
  background-image: url(../images/cars-head.png);
  background-repeat: repeat-x;
  background-position: top center;
  z-index: 2;
  background-size: auto 15px;
}
@media screen and (min-width: 1025px) {
  #top #cars:before {
    background-size: auto;
    height: 32px;
  }
}
#top #cars .inner {
  margin-left: auto;
  margin-right: auto;
  padding-top: 71px;
  padding-bottom: 167px;
  background-image: url(../images/cars-line.png);
  background-repeat: repeat-y;
  background-position: top left 5vw;
  background-size: 48px auto;
  position: relative;
}
@media screen and (min-width: 501px) {
  #top #cars .inner {
    max-width: 1200px;
    padding-top: 144px;
    padding-bottom: 300px;
    background-size: auto;
    background-position: top left;
  }
}
#top #cars .inner:after {
  content: "";
  display: block;
  background-image: url(../images/cars-goal.svg);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 78px;
  left: 68px;
  width: 54px;
  height: 55px;
  z-index: 0;
  transform: rotateY(180deg);
}
@media screen and (min-width: 501px) {
  #top #cars .inner:after {
    bottom: 152px;
    left: -87px;
    width: 254px;
    height: 86px;
    transform: rotateY(0deg);
  }
}
#top #cars .sticky {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 0;
  width: 75px;
}
@media screen and (min-width: 501px) {
  #top #cars .sticky {
    width: auto;
    left: 0;
  }
}
#top #cars .sec-catch {
  width: 50.13vw;
  margin-left: auto;
  margin-right: auto;
}
#top #cars .sec-head {
  margin-bottom: 27px;
}
@media screen and (min-width: 1025px) {
  #top #cars .sec-head {
    margin-bottom: 0;
  }
}
#top #cars .sec-head img {
  width: 52.26vw;
}
@media screen and (min-width: 1025px) {
  #top #cars .sec-head img {
    width: auto;
  }
}
#top #cars .cars {
  display: block;
  margin-left: 18.4vw;
}
@media screen and (min-width: 501px) {
  #top #cars .cars {
    margin-left: 150px;
  }
}
#top #cars .cars .bus {
  display: block;
  background-image: url(../images/cars-dotline.svg);
  background-repeat: no-repeat;
  background-position: left top 87px;
  text-align: right;
  margin-bottom: 29px;
  margin-right: 14.6vw;
  background-size: auto 12px;
}
@media screen and (min-width: 1025px) {
  #top #cars .cars .bus {
    background-position: left top 165px;
    background-size: auto;
    margin-bottom: 0;
    margin-right: 0;
  }
  #top #cars .cars .bus:nth-of-type(odd) {
    margin-top: -102px;
  }
  #top #cars .cars .bus:nth-of-type(even) {
    margin-right: 398px;
    margin-top: -228px;
    background-position: left top 221px;
  }
  #top #cars .cars .bus:nth-of-type(1) {
    margin-top: -37px;
  }
}
#top #cars .cars .bus a {
  display: inline-block;
  background-image: url(../images/cars-bus-bg.svg);
  background-position: right top;
  background-repeat: no-repeat;
  padding-top: 21px;
  padding-right: 15px;
  background-size: 138px 164px;
}
@media screen and (min-width: 501px) {
  #top #cars .cars .bus a {
    background-size: auto;
    padding-top: 36px;
    padding-right: 30px;
  }
}
#top #cars .cars .bus a img {
  width: 54.13vw;
  transition: 0.4s;
  transform-origin: right bottom;
}
@media screen and (min-width: 501px) {
  #top #cars .cars .bus a img {
    width: 369px;
  }
}
#top #cars .cars .bus a .name {
  box-sizing: border-box;
  background-image: url(../images/cars-name.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 254px;
  height: 86px;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-top: 3.5px;
  margin-left: auto;
  margin-right: -50px;
}
@media screen and (min-width: 1025px) {
  #top #cars .cars .bus a .name {
    width: 340px;
    height: 116px;
    font-size: 38px;
    padding-top: 9px;
  }
}
#top #cars .cars .bus a .name rt {
  margin-bottom: -4px;
}
@media screen and (min-width: 1025px) {
  #top #cars .cars .bus a:hover img {
    transform: scale(1.1);
  }
}
#top #cars .link {
  text-align: center;
  width: 305px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #top #cars .link {
    width: 470px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  #top #cars .link {
    width: 470px;
    margin: -200px auto auto 143px;
    margin-right: 200px;
  }
}
#top #cars .link a {
  display: inline-block;
  background-image: url(../images/btn-bg.png);
  background-repeat: no-repeat;
  background-position-y: bottom;
  padding-bottom: 25px;
  background-size: contain;
}
#top #cars .link a img {
  transition: transform 0.4s;
}
@media screen and (min-width: 1025px) {
  #top #cars .link a:hover img {
    transform: translateY(15px);
  }
}

#top #eco {
  position: relative;
  z-index: 1;
  margin-top: -107px;
  background-image: url(../images/eco-earth-mb.png), url(../images/eco-bg-mb.png);
  background-size: 304vw auto, 1020px auto;
  background-position: center bottom, top 103px center;
  background-repeat: no-repeat;
  padding-top: 107px;
  padding-bottom: 85px;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  #top #eco {
    margin-top: -217px;
    background-image: url(../images/eco-earth.svg), url(../images/eco-bg.png);
    background-position: center bottom, top 217px left 50%;
    background-size: unset;
    padding-top: 217px;
    padding-bottom: 188px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1921px) {
  #top #eco {
    background-size: 100% auto, 100% auto;
  }
}
#top #eco:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 107px;
  background-image: url(../images/eco-head.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 107px;
}
@media screen and (min-width: 1025px) {
  #top #eco:before {
    aspect-ratio: 1920/217;
    height: 218px;
    background-size: unset;
  }
}
@media screen and (min-width: 1921px) {
  #top #eco:before {
    aspect-ratio: 1920/217;
    width: 100%;
    height: auto;
    background-size: cover;
  }
}
#top #eco .objects {
  height: 265px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #top #eco .objects {
    width: 100%;
    height: unset;
    position: absolute;
  }
}
#top #eco .objects img {
  position: absolute;
}
#top #eco .objects .baloon {
  right: 0;
  top: 0;
  width: 250px;
}
@media screen and (min-width: 1025px) {
  #top #eco .objects .baloon {
    right: calc(50% + 491px);
    top: 0;
    width: 344px;
  }
}
#top #eco .objects .ufo {
  left: 77px;
  top: 14%;
  width: 77px;
}
@media screen and (min-width: 1025px) {
  #top #eco .objects .ufo {
    left: calc(50% + 652px);
    top: 52.6px;
    width: 123px;
  }
}
#top #eco .objects .rocket {
  left: 0;
  top: 67px;
  width: 83px;
}
@media screen and (min-width: 1025px) {
  #top #eco .objects .rocket {
    left: calc(50% + 568px);
    top: 208px;
    width: 133px;
  }
}
@media screen and (min-width: 1025px) {
  #top #eco .sec-head img {
    margin-left: 31px;
  }
}
#top #eco .lead {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin-top: 40px;
  margin-bottom: 36px;
  padding-left: 12px;
  padding-right: 12px;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 1025px) {
  #top #eco .lead {
    text-align: center;
    font-size: 24px;
    line-height: 2.08;
    letter-spacing: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 166px;
  }
}
#top #eco .lead [data-ruby]::before {
  top: -1em;
  letter-spacing: 0;
}
@media screen and (min-width: 501px) {
  #top #eco .lead [data-ruby]::before {
    top: -10px;
    font-size: 8px;
    font-weight: normal;
    letter-spacing: -0.2em;
  }
}
#top #eco .lead br {
  display: none;
}
@media screen and (min-width: 1025px) {
  #top #eco .lead br {
    display: initial;
  }
}
#top #eco .link {
  text-align: center;
}
#top #eco .link a {
  display: inline-block;
  background-image: url(../images/btn-bg.png);
  background-repeat: no-repeat;
  background-position-y: bottom;
  padding-bottom: 25px;
  background-size: contain;
}
#top #eco .link a img {
  transition: transform 0.4s;
}
@media screen and (min-width: 1025px) {
  #top #eco .link a:hover img {
    transform: translateY(15px);
  }
}
#top #eco .ecobus .bus {
  position: relative;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus {
    position: absolute;
  }
}
#top #eco .ecobus .bus .name {
  position: relative;
  text-align: center;
  margin-top: -89px;
  z-index: 2;
  width: 63.73vw;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus .name {
    max-width: 315px;
  }
}
#top #eco .ecobus .bus.h2o {
  left: 0;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus.h2o {
    bottom: 97px;
  }
}
#top #eco .ecobus .bus.h2o .img {
  width: 83.2vw;
  margin-left: -24px;
  margin-right: auto;
  padding-bottom: 42px;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus.h2o .img {
    width: 35.1vw;
    max-width: calc(50vw - 235px);
    margin-left: unset;
    margin-right: unset;
    padding-bottom: unset;
  }
}
#top #eco .ecobus .bus.h2o .name {
  left: 0;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus.h2o .name {
    left: 18.99%;
  }
}
#top #eco .ecobus .bus.ev {
  right: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus.ev {
    bottom: 97px;
  }
}
#top #eco .ecobus .bus.ev .img {
  width: 83.2vw;
  margin-left: auto;
  margin-right: -24px;
  padding-bottom: 42px;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus.ev .img {
    width: 34.68vw;
    max-width: calc(50vw - 235px);
    margin-left: unset;
    margin-right: unset;
    padding-bottom: 20px;
  }
}
#top #eco .ecobus .bus.ev .name {
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 1025px) {
  #top #eco .ecobus .bus.ev .name {
    margin-left: unset;
    margin-right: unset;
    right: unset;
    left: 28.06%;
  }
}

#top #links {
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #0F71A7;
  position: relative;
  transform: translateZ(1px);
}
@media screen and (min-width: 501px) {
  #top #links {
    margin-top: -30px;
    background: none;
  }
}
#top #links:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/footer-bg.svg);
  opacity: 0.2;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 501px) {
  #top #links:before {
    background-image: none;
  }
}
@media screen and (min-width: 501px) {
  #top #links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#top #links a {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: top 32% right 50px, top left;
  background-size: 24px auto, cover;
  aspect-ratio: 375/360;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
#top #links a:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 501px) {
  #top #links a {
    width: 50%;
    flex-direction: row;
    justify-content: flex-start;
    aspect-ratio: 960/380;
    background-position: center right 63px, top left;
    background-size: 1.91vw auto, cover;
    transition: transform 0.4s;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
}
#top #links a .icon {
  text-align: center;
}
#top #links a .head {
  margin-bottom: 10px;
}
@media screen and (min-width: 501px) {
  #top #links a .head {
    margin-bottom: 20px;
  }
}
#top #links a .txt {
  margin-left: 0;
  text-align: center;
  padding-bottom: 67px;
}
@media screen and (min-width: 501px) {
  #top #links a .txt {
    margin-left: 2.55vw;
    text-align: left;
    padding-bottom: 0;
  }
}
#top #links a .txt .body {
  font-size: 4.2vw;
  font-weight: bold;
}
@media screen and (min-width: 501px) {
  #top #links a .txt .body {
    font-size: 1.25vw;
  }
}
#top #links a.manners {
  background-image: url(../images/link-manners-right.png), url(../images/link-manners-bg-mb.png);
}
@media screen and (min-width: 501px) {
  #top #links a.manners {
    padding-left: 6.61vw;
    background-image: url(../images/link-manners-right.png), url(../images/link-manners-bg.png);
  }
}
#top #links a.manners .icon img {
  padding-top: 40px;
  width: 32.53vw;
  animation-delay: 0.5s;
}
@media screen and (min-width: 501px) {
  #top #links a.manners .icon img {
    padding-top: 0;
    width: 9.43vw;
  }
}
#top #links a.manners .head img {
  width: 74.66vw;
}
@media screen and (min-width: 501px) {
  #top #links a.manners .head img {
    width: 21.47vw;
  }
}
#top #links a.play {
  background-image: url(../images/link-play-right.png), url(../images/link-play-bg-mb.png);
}
@media screen and (min-width: 501px) {
  #top #links a.play {
    padding-left: 5.02vw;
    background-image: url(../images/link-play-right.png), url(../images/link-play-bg.png);
  }
}
#top #links a.play .icon img {
  padding-top: 61px;
  width: 39.4vw;
}
@media screen and (min-width: 501px) {
  #top #links a.play .icon img {
    padding-top: 0;
    width: 11.45vw;
  }
}
#top #links a.play .head img {
  width: 36vw;
}
@media screen and (min-width: 501px) {
  #top #links a.play .head img {
    width: 10.31vw;
  }
}
@media screen and (min-width: 1025px) {
  #top #links a:hover {
    transform: translateY(30px);
  }
}

body.loaded #loading {
  opacity: 0;
  visibility: hidden;
}
body.loaded #mv .pins {
  opacity: 1;
  transform: translateY(0);
}

body.locked {
  height: 100vh;
  overflow: hidden;
}
body.locked #modalbg {
  opacity: 0.6;
  visibility: visible;
}

#pages #quiz {
  background-size: auto auto;
  background-color: #FFF9CA;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 20px, rgb(253, 246, 181) 20px, rgb(253, 246, 181) 30px);
  position: relative;
}
#pages #quiz:before {
  content: "";
  display: block;
  width: 100%;
  height: 51px;
  background-image: url(../images/page/quiz-head.svg);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 51px;
}
@media screen and (min-width: 501px) {
  #pages #quiz:before {
    height: 107px;
    background-size: auto 107px;
  }
}
#pages #quiz .inner {
  background-image: url(../images/page/quiz-title-bg.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 123px auto;
  padding-top: 70px;
  padding-bottom: 39px;
  padding-left: 23px;
  padding-right: 23px;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .inner {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (min-width: 501px) {
  #pages #quiz .inner {
    padding-top: 79px;
    padding-left: 0;
    padding-right: 0;
    background-size: 186px auto;
  }
}
#pages #quiz .head {
  position: relative;
  padding-bottom: 30px;
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#pages #quiz .head .title {
  text-align: center;
  margin: 0 0 50px;
}
#pages #quiz .head .lead {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.78;
  text-align: left;
  width: 224px;
  margin-left: auto;
  margin-right: calc(50% - 71px);
}
@media screen and (min-width: 1025px) {
  #pages #quiz .head .lead {
    width: unset;
    margin-right: unset;
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
  }
}
#pages #quiz .head .imgs img {
  position: absolute;
}
#pages #quiz .head .imgs img.img1 {
  bottom: 0;
  left: 36px;
}
#pages #quiz .head .imgs img.img2 {
  bottom: 0;
  left: calc(50% + 80px);
  width: 85px;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .head .imgs img.img2 {
    left: unset;
    right: 110px;
    width: 176px;
    transition-delay: 1s;
  }
}
#pages #quiz .quiz {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz {
    border-radius: 40px;
    margin-bottom: 70px;
  }
}
#pages #quiz .quiz .question {
  background-image: url(../images/page/quiz-bg-top-mb.svg), url(../images/page/quiz-bg-bottom-mb.svg);
  background-position: top 25px center, bottom 25px center;
  background-size: 279px 8px, 279px 8px;
  background-repeat: no-repeat;
  padding: 54px 25px 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.66;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .question {
    background-image: url(../images/page/quiz-bg-top.svg), url(../images/page/quiz-bg-bottom.svg);
    background-position: top 40px center, bottom 40px center;
    background-size: auto, auto;
    padding: 98px 100px 93px;
    font-size: 28px;
    line-height: 1.78;
    gap: 40px;
  }
}
#pages #quiz .quiz .question .img {
  width: 60px;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .question .img {
    width: 120px;
  }
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .question .txt {
    padding-top: 13px;
  }
}
#pages #quiz .quiz .question .choices {
  list-style: none;
  counter-reset: my-counter;
  margin: 30px 0 0 -78px;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .question .choices {
    margin: 30px 0 0;
  }
}
#pages #quiz .quiz .question .choices li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .question .choices li {
    padding-left: 67px;
  }
}
#pages #quiz .quiz .question .choices li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #00AE26;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .question .choices li:before {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
}
#pages #quiz .quiz .answer-detail {
  background: #3C95C3;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #ffffff;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .answer-detail {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
#pages #quiz .quiz .answer-detail .answer-toggle {
  padding: 23px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  list-style: none;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .answer-detail .answer-toggle {
    padding: 20px 100px;
    font-size: 30px;
  }
}
#pages #quiz .quiz .answer-detail .answer-toggle::-webkit-details-marker {
  display: none;
}
#pages #quiz .quiz .answer-detail .answer-toggle .icon {
  background-image: url(../images/page/carret.svg);
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 14px;
  position: absolute;
  right: 21px;
  top: calc(50% - 7px);
  transition: transform 0.4s;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .answer-detail .answer-toggle .icon {
    width: 30px;
    height: 23px;
    right: 38px;
    top: calc(50% - 11px);
  }
}
#pages #quiz .quiz .answer-detail .answer-wrap .answer {
  padding: 0 23px 30px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  #pages #quiz .quiz .answer-detail .answer-wrap .answer {
    padding: 0 100px 50px;
    font-size: 20px;
  }
}
#pages #quiz .quiz .answer-detail .answer-wrap .answer em {
  font-style: normal;
  color: #FFFD38;
}
#pages #quiz .quiz .answer-detail.is-opened .icon {
  transform: rotate(180deg);
}

#pages .page-icon {
  width: 198px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 18px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1025px) {
  #pages .page-icon {
    width: 400px;
    height: 211px;
  }
}
#pages #content-nav {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  #pages #content-nav {
    flex-direction: row;
    max-width: 1000px;
    gap: 41px 50px;
  }
}
#pages #content-nav li {
  display: inline-block;
  width: 247px;
  text-align: center;
  border-radius: 9999px;
  background: #F9AF00;
  box-shadow: 0px 8px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1025px) {
  #pages #content-nav li {
    width: 294px;
  }
}
#pages #content-nav li a {
  display: block;
  background: #FFDB00;
  border-radius: 9999px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: 0.4s;
  transform: translateY(-8px);
  padding: 18px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #pages #content-nav li a {
    font-size: 24px;
  }
}
#pages #content-nav li a:after {
  content: "\f0dd";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 23px;
  top: 18px;
}
@media screen and (min-width: 1025px) {
  #pages #content-nav li:hover a {
    transform: translateY(0px);
  }
}

#pages #cars {
  background-color: #4AB04C;
  background-image: url(../images/page/whitewave.png), url(../images/cars-bg.png);
  background-repeat: repeat-x, repeat;
  background-position: bottom center, center;
  background-size: auto 15px, 89px 84px;
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
@media screen and (min-width: 1025px) {
  #pages #cars {
    background-image: url(../images/page/whitewave.png), url(../images/cars-bg.png);
    background-repeat: repeat-x, repeat;
    background-position: bottom center, center;
    background-size: auto 32px, auto;
  }
}
#pages #cars .cars-head {
  background-image: url(../images/page/cars-head-bg-mb.png), url(../images/page/cars-bgline-ver.png);
  background-repeat: no-repeat, repeat-y;
  background-position: top 61px center, top left calc(50% - 650px);
  background-size: 375px auto, 63px auto;
  padding-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars-head {
    background-image: url(../images/page/cars-head-bg.png), url(../images/page/cars-bgline-ver.png);
    background-repeat: no-repeat, repeat-y;
    background-position: top 116px left calc(50% + 85px), top left calc(50% - 650px);
    background-size: 1902px auto, 63px auto;
    padding-bottom: 100px;
  }
}
#pages #cars .cars-head .page-icon {
  background-image: url(../images/page/cars-head-icon-bg.png);
}
#pages #cars .cars-head .page-icon img {
  width: 77px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars-head .page-icon img {
    width: 150px;
  }
}
#pages #cars #page-head {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  #pages #cars #page-head {
    margin-bottom: 43px;
  }
}
#pages #cars #page-head img {
  width: 210px;
}
@media screen and (min-width: 1025px) {
  #pages #cars #page-head img {
    width: 345px;
  }
}
#pages #cars #lead {
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 30px;
  padding-left: 36px;
  padding-right: 36px;
  text-align: left;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #cars #lead {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
  }
}
#pages #cars #contetn-nav li {
  background: #F9AF00;
}
#pages #cars #contetn-nav li a {
  background: #FFDB00;
}
#pages #cars .cars {
  background-image: url(../images/page/cars-bottom-bg-mb.png), url(../images/page/cars-bgline-bottom-mb.png);
  background-repeat: no-repeat, repeat-x;
  background-position: bottom 51px center, bottom center;
  background-size: 320px auto, auto 39px;
  padding-bottom: 208px;
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars {
    background-image: url(../images/page/cars-bottom-bg.png), url(../images/page/cars-bottom-img.svg), url(../images/page/cars-bgline-bottom.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 42px left calc(50% + 763px), bottom 144px left calc(50% - 710px), bottom left calc(50% - 820px);
    background-size: 45px auto, 320px auto, 3000px auto;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 175px;
  }
}
#pages #cars .cars .bus-wrap {
  padding-bottom: 40px;
  background-repeat: no-repeat;
  position: relative;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus-wrap {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding-bottom: 100px;
  }
}
#pages #cars .cars .bus-wrap:last-of-type {
  padding-bottom: 0;
}
#pages #cars .cars .bus-wrap .obj {
  position: absolute;
}
#pages #cars .cars .bus-wrap#line {
  background-image: url(../images/page/cars-line-bg.png), url(../images/page/cars-bgline1.png);
  background-position: top 319px left calc(50% + 27px), top center;
  background-size: 1695px auto, 1360px auto;
}
#pages #cars .cars .bus-wrap#line .obj {
  display: none;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus-wrap#line .obj {
    display: inline-block;
    top: 717px;
    left: calc(50% + 764px);
    width: 82px;
  }
}
#pages #cars .cars .bus-wrap#articulated {
  background-image: url(../images/page/cars-articulated-bg.png), url(../images/page/cars-bgline2.png);
  background-position: top 377px left calc(50% - 38px), top center;
  background-size: 1628px auto, 1360px auto;
}
#pages #cars .cars .bus-wrap#articulated .obj {
  display: none;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus-wrap#articulated .obj {
    display: inline-block;
    top: 568px;
    right: calc(50% + 753px);
    width: 79px;
  }
}
#pages #cars .cars .bus-wrap#mini {
  background-image: url(../images/page/cars-mini-bg.png), url(../images/page/cars-bgline1.png);
  background-position: top 297px left calc(50% - 61px), top center;
  background-size: 1926px auto, 1360px auto;
}
#pages #cars .cars .bus-wrap#mini .obj {
  display: none;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus-wrap#mini .obj {
    display: inline-block;
    top: 425px;
    left: calc(50% + 552px);
    width: 200px;
  }
}
#pages #cars .cars .bus-wrap#highwayin {
  background-image: url(../images/page/cars-highwayin-bg.png), url(../images/page/cars-bgline2.png);
  background-position: top 378px left calc(50% - 25px), top center;
  background-size: 1690px auto, 1360px auto;
}
#pages #cars .cars .bus-wrap#highwayin .obj {
  display: none;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus-wrap#highwayin .obj {
    display: inline-block;
    top: 1053px;
    right: calc(50% + 751px);
    width: 99px;
  }
}
#pages #cars .cars .bus-wrap#highwayout {
  background-image: url(../images/page/cars-highwayout-bg.png), url(../images/page/cars-bgline1.png);
  background-position: top 163px left calc(50% - 25px), top center;
  background-size: 1689px auto, 1360px auto;
}
#pages #cars .cars .bus-wrap#highwayout .obj {
  bottom: -197px;
  left: calc(50% + 5px);
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus-wrap#highwayout .obj {
    bottom: unset;
    top: 1397px;
    left: unset;
    right: calc(50% + 494px);
    width: 261px;
  }
}
#pages #cars .cars .bus {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 15px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
  padding: 40px 29px 0;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus {
    border: 4px solid #000000;
    border-radius: 30px;
    padding: 75px 100px 0;
    height: 1383px;
  }
}
#pages #cars .cars .bus .bus-name {
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
}
#pages #cars .cars .bus .bus-name img {
  height: 42px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .bus-name img {
    height: auto;
  }
}
#pages #cars .cars .bus .bus-img {
  text-align: center;
  margin-bottom: 30px;
  transition-delay: 1s;
}
#pages #cars .cars .bus .bus-desc {
  font-size: 13px;
  line-height: 1.69;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .bus-desc {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 2;
  }
}
#pages #cars .cars .bus .bus-subimg-wrap {
  box-sizing: border-box;
  overflow-x: auto;
  margin-left: -29px;
  margin-right: -29px;
  width: calc(100% + 29px + 29px);
  height: 110px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .bus-subimg-wrap {
    width: 100%;
    height: auto;
    margin-left: unset;
    margin-right: unset;
    margin-bottom: 55px;
    overflow: visible;
  }
}
#pages #cars .cars .bus .bus-subimg {
  display: flex;
  justify-content: space-between;
  gap: 11px;
  height: 110px;
  padding-left: 29px;
  padding-right: 29px;
  width: 517px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .bus-subimg {
    width: 100%;
    height: auto;
    padding-left: unset;
    padding-right: unset;
  }
}
#pages #cars .cars .bus .bus-subimg img {
  width: 165px;
  height: 110px;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .bus-subimg img {
    width: 256px;
    height: auto;
    border-radius: 20px;
  }
}
#pages #cars .cars .bus .bus-subimg img:last-of-type {
  margin-right: 29px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .bus-subimg img:last-of-type {
    margin-right: 0;
  }
}
#pages #cars .cars .bus .tips {
  margin-left: -29px;
  margin-right: -29px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 30px 30px 40px;
  background: #D8F7EF;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .tips {
    margin-left: -100px;
    margin-right: -100px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 55px 100px 65px;
  }
}
#pages #cars .cars .bus .tips .tips-head {
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}
#pages #cars .cars .bus .tips .tips-head img {
  width: 220px;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .tips .tips-head img {
    width: 360px;
  }
}
#pages #cars .cars .bus .tips .tips-body {
  font-size: 15px;
  font-weight: bold;
  line-height: 2.08;
}
@media screen and (min-width: 1025px) {
  #pages #cars .cars .bus .tips .tips-body {
    font-size: 24px;
  }
}
#pages #eco .eco-head {
  padding-bottom: 77px;
  background-image: url(../images/page/eco-head-bg-mb.png);
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #pages #eco .eco-head {
    padding-bottom: 160px;
    background-image: url(../images/page/eco-bg.png), url(../images/page/eco-head-bg.png);
    background-repeat: no-repeat, repeat;
    background-position: top center, center;
    background-size: 1394px auto, cover;
    position: relative;
  }
}
#pages #eco .eco-head:after {
  content: "";
  width: 100%;
  height: 34px;
  background-image: url(../images/page/arch.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  #pages #eco .eco-head:after {
    height: 69px;
    background-position: bottom center;
  }
}
@media screen and (min-width: 1921px) {
  #pages #eco .eco-head:after {
    width: 100%;
    height: auto;
    background-size: 100% auto;
    aspect-ratio: 1920/69;
  }
}
#pages #eco .eco-head .page-icon {
  background-image: url(../images/page/eco-head-icon-bg.png);
}
#pages #eco .eco-head .page-icon img {
  width: 78px;
}
@media screen and (min-width: 1025px) {
  #pages #eco .eco-head .page-icon img {
    width: 150px;
  }
}
#pages #eco .eco-head .sec-head {
  padding-bottom: 0;
}
#pages #eco .eco-head .sec-head:after {
  display: none;
}
#pages #eco #content-nav li {
  background: #3D9BBE;
}
#pages #eco #content-nav li a {
  background: #46B6C4;
  color: #ffffff;
}
#pages #eco #page-head.sec-head {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #page-head.sec-head {
    margin-bottom: 40px;
  }
}
#pages #eco #page-head.sec-head img {
  width: 290px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #page-head.sec-head img {
    width: 523px;
    height: auto;
  }
}
#pages #eco #lead {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 30px;
  position: relative;
  padding-left: 35px;
  padding-right: 35px;
  text-align: left;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #lead {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
#pages #eco .sec-head {
  position: relative;
  margin-bottom: 38px;
}
@media screen and (min-width: 1025px) {
  #pages #eco .sec-head {
    padding-bottom: 38px;
    margin-bottom: 60px;
  }
}
#pages #eco .sec-head img {
  height: 42px;
}
@media screen and (min-width: 1025px) {
  #pages #eco .sec-head img {
    height: 83px;
  }
}
#pages #eco .sec-head:after {
  content: "";
  margin-top: 20px;
  display: block;
  width: 45px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  background: #41BABC;
  border-radius: 9999px;
}
@media screen and (min-width: 1025px) {
  #pages #eco .sec-head:after {
    margin-top: 36px;
    width: 65px;
    height: 5px;
  }
}
#pages #eco #now {
  background-image: url(../images/page/wave-mb.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 330px auto;
  padding-bottom: 70px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now {
    background-image: url(../images/page/wave.png);
    background-size: 1198px auto;
    padding-bottom: 160px;
  }
}
#pages #eco #now .inner {
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .inner {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
#pages #eco #now .sec-icon {
  text-align: center;
  margin-bottom: 13px;
}
#pages #eco #now .sec-icon img {
  width: 64px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .sec-icon img {
    width: 100px;
  }
}
#pages #eco #now .warming {
  box-sizing: border-box;
  padding-left: 36px;
  padding-right: 36px;
  margin-bottom: 45px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .warming {
    max-width: 1000px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 47px;
    margin-bottom: 77px;
  }
}
#pages #eco #now .warming .img {
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .warming .img {
    width: 557px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
#pages #eco #now .warming .img img {
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .warming .img img {
    border-radius: 20px;
  }
}
#pages #eco #now .warming .txt {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.73;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .warming .txt {
    font-size: 22px;
    line-height: 1.8;
  }
}
#pages #eco #now .future {
  box-sizing: border-box;
  margin-left: 37px;
  margin-right: 37px;
  background-color: #FFF3D9;
  padding: 30px 26px;
  position: relative;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .future {
    max-width: 1000px;
    display: flex;
    gap: 48px;
    padding: 42px 70px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }
}
#pages #eco #now .future:before {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  pointer-events: none;
  background-image: url(../images/page/eco-future-bg-lt.svg), url(../images/page/eco-future-bg-rt.svg), url(../images/page/eco-future-bg-lb.svg), url(../images/page/eco-future-bg-rb.svg);
  background-position: left top, right top, left bottom, right bottom;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  position: absolute;
  left: -2px;
  top: -2px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .future:before {
    background-size: 32px 32px;
  }
}
#pages #eco #now .future .txt {
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .future .txt {
    margin-bottom: 0;
  }
}
#pages #eco #now .future .txt .head {
  background: #FFAF00;
  border-radius: 10px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1;
  padding: 16px 16px;
  margin: 0 0 15px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .future .txt .head {
    font-size: 34px;
    margin: 0 0 25px;
    text-align: left;
  }
}
#pages #eco #now .future .txt .body {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.69;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .future .txt .body {
    font-size: 18px;
    line-height: 2;
  }
}
#pages #eco #now .future .img {
  width: 206px;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  #pages #eco #now .future .img {
    width: 273px;
  }
}
#pages #eco #point {
  margin-left: 32px;
  margin-right: 32px;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 150px;
    padding-bottom: 160px;
  }
}
#pages #eco #point .inner {
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .inner {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
#pages #eco #point .body {
  margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .body {
    display: flex;
    justify-content: center;
    gap: 65px;
    margin-bottom: 25px;
  }
}
#pages #eco #point .body .txt {
  border-radius: 20px;
  background: #D7F0F1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3C95C3;
  font-size: 18px;
  line-height: 1.666;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 22px 29px;
  margin-bottom: 26px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .body .txt {
    width: 342px;
    height: 342px;
    border-radius: 9999px;
    padding: unset;
    font-size: 28px;
    line-height: 1.78;
    margin-bottom: 0;
  }
}
#pages #eco #point .body .txt:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-width: 13px;
  border-right-width: 13px;
  margin-top: -18px;
  border-top-color: #D7F0F1;
  left: calc(50% - 13px);
  bottom: -30px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .body .txt:after {
    border-color: rgba(0, 153, 255, 0);
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 34px;
    border-right-width: 34px;
    margin-top: -18px;
    border-left-color: #D7F0F1;
    left: calc(100% - 3px);
    bottom: unset;
    top: 50%;
  }
}
#pages #eco #point .body .img {
  flex-shrink: 0;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .body .img {
    width: 416px;
    margin-left: unset;
    margin-right: unset;
  }
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .point {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
#pages #eco #point .point .catch {
  color: #3C95C3;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .point .catch {
    text-align: center;
  }
}
#pages #eco #point .point .catch span {
  display: inline;
  background: linear-gradient(transparent 60%, #FFFF00 60%);
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .point .catch span {
    display: inline-block;
    background: linear-gradient(transparent 70%, #FFFF00 70%);
    font-size: 40px;
  }
}
#pages #eco #point .point .catch span em {
  font-style: normal;
  font-size: 30px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .point .catch span em {
    font-size: 50px;
  }
}
#pages #eco #point .point .catch span em .num {
  font-family: "Lato", sans-serif;
  font-size: 43px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .point .catch span em .num {
    font-size: 70px;
  }
}
#pages #eco #point .point .catch span em .num .note {
  font-size: 19px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .point .catch span em .num .note {
    font-size: 30px;
  }
}
#pages #eco #point .point .txt {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.69;
}
@media screen and (min-width: 1025px) {
  #pages #eco #point .point .txt {
    font-size: 18px;
    line-height: 2;
  }
}
#pages #eco #future {
  padding-bottom: 70px;
  margin-bottom: 70px;
  background-image: url(../images/page/whitewave-top.png), url(../images/page/whitewave.png), url(../images/page/eco-earth-mb.png), url(../images/page/eco-future-bg-mb.png);
  background-position: center top, center bottom, center bottom, top center;
  background-repeat: repeat-x, repeat-x, no-repeat, no-repeat;
  background-size: auto 15px, auto 15px, auto 74%, cover;
  position: relative;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #pages #eco #future {
    background-image: url(../images/page/whitewave-top.png), url(../images/page/whitewave.png), url(../images/page/eco-earth-mb.png), url(../images/page/eco-future-bg-mb.png);
    background-position: center top, center bottom, center top 250px, top center;
    background-size: auto 15px, auto 15px, 100vw auto, cover;
  }
}
@media screen and (min-width: 1025px) {
  #pages #eco #future {
    padding-bottom: 160px;
    margin-bottom: 100px;
    background-image: url(../images/page/whitewave-top.png), url(../images/page/whitewave.png), url(../images/eco-earth.svg), url(../images/eco-bg.png);
    background-position: center top, center bottom, center bottom, top center;
    background-repeat: repeat-x, repeat-x, no-repeat, no-repeat;
    background-size: auto 32px, auto 32px, auto, auto;
  }
}
@media screen and (min-width: 1921px) {
  #pages #eco #future {
    background-size: auto 32px, auto 32px, 100% auto, 100% auto;
  }
}
#pages #eco #future .objects.for-mb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -7px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .objects.for-mb {
    display: none;
  }
}
#pages #eco #future .objects.for-pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .objects.for-pc {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .objects {
    width: 100%;
    height: unset;
    position: absolute;
  }
}
#pages #eco #future .objects img {
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .objects img {
    position: absolute;
  }
}
#pages #eco #future .objects .baloon {
  left: 0;
  top: 0;
  width: 128px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .objects .baloon {
    left: unset;
    right: calc(50% + 475px);
    top: 110px;
    width: 299px;
  }
}
#pages #eco #future .objects .click {
  left: 77px;
  top: 14%;
  width: 184px;
  animation-delay: 0.6s;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .objects .click {
    left: calc(50% + 428px);
    top: 241px;
    width: 313px;
  }
}
#pages #eco #future .inner {
  padding-top: 70px;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .inner {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding-top: 152px;
  }
}
#pages #eco #future .sec-head {
  padding-bottom: 0;
  margin-bottom: 0;
}
#pages #eco #future .sec-head:after {
  display: none;
}
#pages #eco #future .sec-head img {
  width: 330px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .sec-head img {
    width: 900px;
    height: auto;
    margin-left: 31px;
  }
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus {
    display: flex;
    justify-content: center;
    gap: 13px;
  }
}
#pages #eco #future .ecobus .bus {
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus {
    width: 50vw;
  }
}
#pages #eco #future .ecobus .bus .img {
  padding-bottom: 36px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .img {
    padding-bottom: 0;
  }
}
#pages #eco #future .ecobus .bus .img img {
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus:hover > .img img {
    transform: scale(1.08);
  }
}
#pages #eco #future .ecobus .bus .modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 33px;
  pointer-events: none;
}
#pages #eco #future .ecobus .bus .modal {
  box-sizing: border-box;
  border: 3px solid;
  border-radius: 30px;
  padding: 30px 37px;
  background-image: url(../images/page/eco-modal-bg-mb.png);
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  cursor: default;
  position: relative;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .modal {
    max-width: unset;
    width: 910px;
    height: 506px;
    margin: auto;
    padding: 53px 100px;
    border-width: 5px;
    border-radius: 50px;
    background-image: url(../images/page/eco-modal-bg.png);
  }
}
#pages #eco #future .ecobus .bus .modal.opened {
  opacity: 1;
  visibility: visible;
}
#pages #eco #future .ecobus .bus .modal .modal-close {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 0;
  border: none;
  background: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .modal .modal-close {
    font-size: 24px;
  }
}
#pages #eco #future .ecobus .bus .modal .modal-close img {
  width: 12px;
  margin-left: 9px;
  vertical-align: bottom;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .modal .modal-close img {
    width: 20px;
  }
}
#pages #eco #future .ecobus .bus .modal .modal-head {
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .modal .modal-head {
    display: flex;
    align-items: center;
    gap: 85px;
  }
}
#pages #eco #future .ecobus .bus .modal .modal-head .modal-name {
  font-size: 38px;
  margin-bottom: 5px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .modal .modal-head .modal-name {
    font-size: 65px;
    margin-bottom: 10px;
  }
}
#pages #eco #future .ecobus .bus .modal .modal-head .modal-desc {
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .modal .modal-head .modal-desc {
    font-size: 26px;
  }
}
#pages #eco #future .ecobus .bus .modal .modal-head .modal-img {
  flex-shrink: 0;
}
#pages #eco #future .ecobus .bus .modal .modal-body {
  font-size: 13px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .modal .modal-body {
    font-size: 18px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus.h2o {
    left: 0;
  }
}
#pages #eco #future .ecobus .bus.h2o .img {
  margin-left: 8px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus.h2o .img {
    width: 35.1vw;
    max-width: calc(50vw - 235px);
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }
}
#pages #eco #future .ecobus .bus.h2o .name {
  left: 0;
  margin-left: 8px;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus.h2o .name {
    left: unset;
    right: 11.04vw;
    margin-left: auto;
  }
}
#pages #eco #future .ecobus .bus.h2o .modal {
  border-color: #6BDCBF;
  background-color: #E2F9F6;
}
#pages #eco #future .ecobus .bus.h2o .modal .modal-txt {
  color: #00BFB0;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus.ev {
    right: 0;
  }
}
#pages #eco #future .ecobus .bus.ev .img {
  margin-right: 8px;
  margin-left: auto;
}
@media screen and (max-width: 500px) {
  #pages #eco #future .ecobus .bus.ev .img {
    overflow: hidden;
  }
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus.ev .img {
    width: 43.64vw;
    max-width: calc(50vw - 115px);
    max-width: 838px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  #pages #eco #future .ecobus .bus.ev .img img {
    width: 104.2vw;
    transform: translateX(17.6vw);
  }
}
#pages #eco #future .ecobus .bus.ev .name {
  margin-right: 8px;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus.ev .name {
    right: unset;
    left: 21.06%;
    margin-right: 0;
    margin-left: 0;
  }
}
#pages #eco #future .ecobus .bus.ev .modal {
  border-color: #FFB439;
  background-color: #FFF5BF;
}
#pages #eco #future .ecobus .bus.ev .modal .modal-txt {
  color: #FD8C39;
}
#pages #eco #future .ecobus .bus .name {
  position: relative;
  text-align: center;
  margin-top: -89px;
  z-index: 2;
  width: 63.73vw;
}
@media screen and (min-width: 1025px) {
  #pages #eco #future .ecobus .bus .name {
    max-width: 315px;
  }
}

#pages #works {
  margin-bottom: 70px;
}
#pages #works .works-head {
  background-image: url(../images/page/arch.svg), url(../images/page/works-bg-topleft-mb.png), url(../images/page/works-bg-left-mb.png), url(../images/page/works-bg-right-mb.png), url(../images/works-bg.png);
  background-size: auto 32px, 82px auto, 83px auto, 102px auto, 650px auto;
  background-position: center bottom, left top, left bottom -34px, right bottom 72px, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  padding-bottom: 85px;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #pages #works .works-head {
    background-size: 100% auto, 82px auto, 83px auto, 102px auto, 650px auto;
  }
}
@media screen and (min-width: 1025px) {
  #pages #works .works-head {
    padding-bottom: 160px;
    background-image: url(../images/page/arch.svg), url(../images/page/works-bg-left.png), url(../images/page/works-bg-right.png), url(../images/works-bg.png);
    background-size: auto 69px, 381px auto, 505px auto, 960px auto;
    background-position: center bottom, left top, right top, center;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  }
}
@media screen and (min-width: 1921px) {
  #pages #works .works-head {
    background-size: 100% auto, 381px auto, 505px auto, 960px auto;
  }
}
#pages #works .works-head .page-icon {
  background-image: url(../images/page/works-head-bg.png);
}
#pages #works .works-head .page-icon img {
  width: 113px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works-head .page-icon img {
    width: 219px;
  }
}
#pages #works .works-head #page-head {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #pages #works .works-head #page-head {
    background-image: url(../images/works-ttl-bg.svg);
    background-size: 832px;
    background-position: center;
    background-repeat: no-repeat;
  }
}
#pages #works .works-head #page-head:before {
  content: "";
  width: 100%;
  height: 24px;
  background-image: url(../images/works-ttl-bg.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: calc(100% + 9px);
  left: 0;
}
@media screen and (min-width: 1025px) {
  #pages #works .works-head #page-head:before {
    display: none;
  }
}
#pages #works .works-head #page-head img {
  width: 250px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works-head #page-head img {
    width: 440px;
  }
}
#pages #works .works-head #lead {
  padding-left: 36px;
  padding-right: 36px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #works .works-head #lead {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
  }
}
#pages #works #content-nav li {
  background: #3D9BBE;
}
#pages #works #content-nav li a {
  background: #46B6C4;
  color: #ffffff;
}
#pages #works #content-nav li.line {
  background: #FF1D18;
}
#pages #works #content-nav li.line a {
  background: #FF6F6C;
}
#pages #works #content-nav li.highway {
  background: #73B004;
}
#pages #works #content-nav li.highway a {
  background: #A3CB59;
}
#pages #works #content-nav li.admin {
  background: #2F8CBB;
}
#pages #works #content-nav li.admin a {
  background: #78B4D3;
}
#pages #works .works {
  padding-top: 50px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works {
    padding-top: 90px;
  }
}
#pages #works .works .sec-head {
  width: 300px;
  height: 85px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .sec-head {
    width: 460px;
    height: 130px;
    font-size: 34px;
    margin-bottom: 55px;
  }
}
#pages #works .works .sec-head .ruby {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .sec-head .ruby {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#pages #works .works .sec-lead {
  padding-left: 37px;
  padding-right: 37px;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .sec-lead {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding-left: 0;
    padding-right: 0;
  }
}
#pages #works .works .sec-lead .img {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .sec-lead .img {
    width: 800px;
    height: 536px;
    margin-bottom: 26px;
  }
}
#pages #works .works .sec-lead .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../images/page/works-img-border-mb.svg);
  background-size: cover;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .sec-lead .img:before {
    background-image: url(../images/page/works-img-border.svg);
  }
}
#pages #works .works .sec-lead .img img {
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .sec-lead .img img {
    border-radius: 25px;
  }
}
#pages #works .works .sec-lead .txt {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.73;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .sec-lead .txt {
    max-width: 800px;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 150px;
  }
}
#pages #works .works .schedules {
  padding-left: 37px;
  padding-right: 37px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules {
    padding-left: 0;
    padding-right: 0;
  }
}
#pages #works .works .schedules .head {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .head {
    margin-bottom: 30px;
  }
}
#pages #works .works .schedules .head img {
  width: 230px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .head img {
    width: 350px;
  }
}
#pages #works .works .schedules .body {
  margin-left: auto;
  margin-right: auto;
  max-width: 425px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .body {
    max-width: 1100px;
  }
}
#pages #works .works .schedules .schedule {
  padding: 26px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .schedule {
    display: flex;
    gap: 42px;
    padding: 52px 58px;
    border-radius: 20px;
    margin-bottom: 98px;
  }
}
#pages #works .works .schedules .schedule:before {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  pointer-events: none;
  background-image: url(../images/page/works-schedule-bg-lt.svg), url(../images/page/works-schedule-bg-rt.svg), url(../images/page/works-schedule-bg-lb.svg), url(../images/page/works-schedule-bg-rb.svg);
  background-position: left top, right top, left bottom, right bottom;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  position: absolute;
  left: -2px;
  top: -2px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .schedule:before {
    background-size: 32px 32px;
  }
}
#pages #works .works .schedules .schedule:after {
  content: "";
  width: 100%;
  height: 70px;
  background-image: url(../images/page/works-schedule-next.png);
  background-size: 46px 40px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .schedule:after {
    height: 98px;
    background-size: 78px 68px;
  }
}
#pages #works .works .schedules .schedule:nth-of-type(odd) {
  background: #FFEDED;
}
#pages #works .works .schedules .schedule:nth-of-type(even) {
  background: #FFFECA;
}
#pages #works .works .schedules .schedule:last-of-type:after {
  display: none;
}
#pages #works .works .schedules .schedule .img {
  flex-shrink: 0;
}
#pages #works .works .schedules .schedule .img img {
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .schedule .img img {
    border-radius: 20px;
  }
}
#pages #works .works .schedules .schedule .txt .title {
  color: #FF544D;
  letter-spacing: 0.1em;
}
#pages #works .works .schedules .schedule .txt .title .time {
  display: block;
  font-size: 30px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .schedule .txt .title .time {
    display: inline-block;
    font-size: 40px;
    margin-right: 30px;
  }
}
#pages #works .works .schedules .schedule .txt .title .name {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .schedule .txt .title .name {
    font-size: 30px;
  }
}
#pages #works .works .schedules .schedule .txt .desc {
  font-size: 13px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .schedules .schedule .txt .desc {
    font-size: 18px;
  }
}
#pages #works .works .point {
  margin-left: 23px;
  margin-right: 23px;
  background-image: url(../images/page/works-point-bg-mb.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  padding-top: 86px;
  padding-bottom: 97px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .point {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 140px;
    padding-bottom: 142px;
    background-image: url(../images/page/works-point-bg.png);
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 500px) {
  #pages #works .works .point.shake-top {
    animation: none;
  }
}
#pages #works .works .point .head {
  text-align: center;
  margin-bottom: 24px;
}
#pages #works .works .point .head span {
  display: inline-block;
  padding-left: 18px;
  padding-right: 18px;
  padding-bottom: 4px;
}
#pages #works .works .point .body {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .point .body {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 715px;
  }
}
#pages #works .works .point .body .img {
  flex-shrink: 0;
  text-align: center;
}
#pages #works .works .point .body .img img {
  width: auto;
  height: 220px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .point .body .img img {
    width: 243px;
    height: 333px;
  }
}
#pages #works .works .point .body .txt {
  padding-top: 16px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.69;
  width: 222px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .point .body .txt {
    width: auto;
    font-size: 18px;
    line-height: 2;
  }
}
#pages #works .works .tips {
  background-color: #D8F7EF;
  background-image: url(../images/page/whitewave-top.png), url(../images/page/whitewave.png), url(../images/page/works-tips-bg.png);
  background-position: top center, bottom center, center;
  background-size: auto 15px, auto 15px, 176px auto;
  background-repeat: repeat-x, repeat-x, repeat;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .tips {
    background-size: auto 32px, auto 32px, 250px auto;
    padding-top: 126px;
    padding-bottom: 150px;
  }
}
#pages #works .works .tips .tips-head {
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .tips .tips-head {
    width: 360px;
  }
}
#pages #works .works .tips .tips-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .tips .tips-body {
    flex-direction: row;
  }
}
#pages #works .works .tips .tips-body .img {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  width: 269px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .tips .tips-body .img {
    width: 350px;
  }
}
#pages #works .works .tips .tips-body .img img {
  transform-origin: bottom center;
  transform: scale(1.1);
}
#pages #works .works .tips .tips-body .txt.scr-pop {
  transform-origin: bottom center;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .tips .tips-body .txt.scr-pop {
    transform-origin: left center;
  }
}
#pages #works .works .tips .tips-body .txt .message {
  width: 305px;
  height: 253px;
  box-sizing: border-box;
  background-image: url(../images/page/works-tips-bg-mb.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 26px 42px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.28;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .tips .tips-body .txt .message {
    width: 660px;
    height: 340px;
    background-image: url(../images/page/works-tips-bg.svg);
    padding: 40px 78px 53px 160px;
    font-size: 26px;
    line-height: 2.3;
  }
}
#pages #works .works .tips .tips-body .txt .message span {
  display: block;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #000000 1px, transparent 1px);
  background-size: 8px 100%, 100% 2.3em; /* 点線2のサイズ */
  background-position: bottom 5px left;
  padding-left: 2px;
}
@media screen and (min-width: 1025px) {
  #pages #works .works .tips .tips-body .txt .message span {
    padding-left: 12px;
  }
}
#pages #works .works .tips .tips-body .txt .message em {
  color: #1FC592;
  font-style: normal;
}
#pages #works .works#line .sec-head {
  background-image: url(../images/page/works-line-head.png);
}
#pages #works .works#line .point .head span {
  background: linear-gradient(transparent 78%, #FFD1CF 78%);
}
@media screen and (min-width: 1025px) {
  #pages #works .works#line .point .head span {
    background: linear-gradient(transparent 70%, #FFD1CF 70%);
  }
}
#pages #works .works#line .tips .img {
  background-image: url(../images/works-line-bg.svg);
}
#pages #works .works#highway .sec-head {
  background-image: url(../images/page/works-highway-head.png);
}
#pages #works .works#highway .point .head span {
  background: linear-gradient(transparent 78%, #E3F0CB 78%);
}
@media screen and (min-width: 1025px) {
  #pages #works .works#highway .point .head span {
    background: linear-gradient(transparent 70%, #E3F0CB 70%);
  }
}
#pages #works .works#highway .tips .img {
  background-image: url(../images/works-highway-bg.svg);
}
#pages #works .works#admin .sec-head {
  background-image: url(../images/page/works-admin-head.png);
}
#pages #works .works#admin .point .head span {
  background: linear-gradient(transparent 78%, #D4E8F2 78%);
}
@media screen and (min-width: 1025px) {
  #pages #works .works#admin .point .head span {
    background: linear-gradient(transparent 70%, #D4E8F2 70%);
  }
}
#pages #works .works#admin .tips .img {
  background-image: url(../images/works-admin-bg.svg);
}

#pages #manners {
  margin-bottom: 70px;
}
#pages #manners .manners-head {
  margin-bottom: 52px;
}
#pages #manners .manners-head .page-icon {
  background-image: url(../images/page/manners-head-bg.png);
}
#pages #manners .manners-head .page-icon img {
  width: 113px;
}
@media screen and (min-width: 1025px) {
  #pages #manners .manners-head .page-icon img {
    width: 219px;
  }
}
#pages #manners .manners-head #page-head {
  margin-bottom: 40px;
}
#pages #manners .manners-head #page-head:after {
  display: none;
}
#pages #manners .manners-head #page-head img {
  width: 139px;
}
@media screen and (min-width: 1025px) {
  #pages #manners .manners-head #page-head img {
    width: 486px;
  }
}
#pages #manners #content-nav li {
  background: #85A842;
}
#pages #manners #content-nav li a {
  background: #A0C900;
  color: #ffffff;
}
#pages #manners .sec-head {
  position: relative;
  margin-bottom: 40px;
}
#pages #manners .sec-head:after {
  content: "";
  margin-top: 20px;
  display: block;
  width: 45px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  background: #40B33F;
  border-radius: 9999px;
}
@media screen and (min-width: 1025px) {
  #pages #manners .sec-head:after {
    margin-top: 36px;
    width: 65px;
    height: 5px;
  }
}
#pages #manners .sec-head img {
  width: 139px;
}
@media screen and (min-width: 1025px) {
  #pages #manners .sec-head img {
    width: 486px;
  }
}
#pages #manners #howto {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding-top: 52px;
  padding-left: 38px;
  padding-right: 38px;
  max-width: 425px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto {
    max-width: unset;
    max-width: 1028px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 130px;
  }
}
#pages #manners #howto .sec-head img {
  width: 182px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .sec-head img {
    width: 330px;
  }
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap {
    display: flex;
    gap: 120px 128px;
    flex-wrap: wrap;
  }
}
#pages #manners #howto .howto-wrap .howto {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto {
    display: block;
    width: 450px;
  }
}
#pages #manners #howto .howto-wrap .howto:after {
  content: "";
  height: 40px;
  padding: 15px 0;
  background-image: url(../images/page/works-schedule-next.png);
  background-size: 46px 40px;
  background-position: center;
  background-repeat: no-repeat;
  order: 4;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto:after {
    order: unset;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
  }
}
#pages #manners #howto .howto-wrap .howto .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  order: 2;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto .head {
    gap: 17px;
    min-height: 76px;
    order: unset;
  }
}
#pages #manners #howto .howto-wrap .howto .head .number {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto .head .number {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
}
#pages #manners #howto .howto-wrap .howto .head .subject {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto .head .subject {
    font-size: 28px;
    line-height: 1.28;
  }
}
#pages #manners #howto .howto-wrap .howto .txt {
  font-size: 13px;
  font-weight: bold;
  order: 3;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto .txt {
    font-size: 18px;
    margin-bottom: 20px;
    order: unset;
  }
}
#pages #manners #howto .howto-wrap .howto .img {
  order: 1;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto .img {
    order: unset;
    margin-bottom: 0;
  }
}
#pages #manners #howto .howto-wrap .howto .img img {
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto .img img {
    border-radius: 20px;
  }
}
#pages #manners #howto .howto-wrap .howto:nth-of-type(odd) .head .number {
  background: #40B33F;
}
#pages #manners #howto .howto-wrap .howto:nth-of-type(odd) .head .subject {
  color: #40B33F;
}
#pages #manners #howto .howto-wrap .howto:nth-of-type(even) .head .number {
  background: #81D100;
}
#pages #manners #howto .howto-wrap .howto:nth-of-type(even) .head .subject {
  color: #81D100;
}
#pages #manners #howto .howto-wrap .howto:last-of-type {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto:last-of-type {
    margin-bottom: 0;
  }
}
#pages #manners #howto .howto-wrap .howto:last-of-type:after {
  display: none;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .howto-wrap .howto:nth-of-type(1) {
    order: 1;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(1):after {
    content: "";
    width: 128px;
    height: 300px;
    left: 100%;
    bottom: 0;
    background-image: url(../images/page/works-schedule-right.png);
    background-size: 78px 68px;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(2) {
    order: 2;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(2):after {
    content: "";
    width: 450px;
    height: 120px;
    left: 0;
    top: 100%;
    background-image: url(../images/page/works-schedule-next.png);
    background-size: 78px 68px;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(3) {
    order: 4;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(3):after {
    content: "";
    width: 128px;
    height: 300px;
    right: 100%;
    bottom: 0;
    background-image: url(../images/page/works-schedule-left.png);
    background-size: 78px 68px;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(4) {
    order: 3;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(4):after {
    content: "";
    width: 450px;
    height: 120px;
    left: 0;
    top: 100%;
    background-image: url(../images/page/works-schedule-next.png);
    background-size: 78px 68px;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(4) .img {
    margin-top: -18px;
  }
  #pages #manners #howto .howto-wrap .howto:nth-of-type(5) {
    order: 5;
  }
}
#pages #manners #howto .obj {
  width: 172px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 1025px) {
  #pages #manners #howto .obj {
    margin: unset;
    width: 287px;
    position: absolute;
    bottom: 0;
    right: -29px;
  }
}
#pages #manners #notes {
  margin-left: auto;
  margin-right: auto;
  padding-left: 38px;
  padding-right: 38px;
  background-image: url(../images/page/manners-wave.png);
  background-position: bottom center;
  background-size: 330px auto;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  max-width: 425px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #notes {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
    background-size: 1200px auto;
    padding-bottom: 139px;
  }
}
#pages #manners #notes .note {
  margin-bottom: 60px;
}
#pages #manners #notes .note:last-of-type {
  margin-bottom: 0;
}
#pages #manners #notes .head {
  box-sizing: border-box;
  padding: 8px 10px;
  margin: 0 0 25px;
  background: #40B33F;
  border-radius: 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  #pages #manners #notes .head {
    font-size: 24px;
    border-radius: 10px;
    padding: 8px 16px;
  }
}
#pages #manners #manner {
  padding-top: 70px;
  margin-bottom: 80px;
  padding-left: 38px;
  padding-right: 38px;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #manners #manner {
    max-width: 1200px;
    padding-top: 150px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 130px;
  }
}
#pages #manners #manner .sec-head img {
  width: 215px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #manner .sec-head img {
    width: 387px;
  }
}
@media screen and (min-width: 1025px) {
  #pages #manners #manner .manner-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
}
#pages #manners #manner .manner-wrap .manner {
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #manners #manner .manner-wrap .manner {
    display: block;
    box-sizing: border-box;
    width: 360px;
    padding: 60px 45px;
    border-radius: 20px;
    margin-bottom: 0;
  }
}
#pages #manners #manner .manner-wrap .manner .img {
  width: 21.33%;
  flex-shrink: 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  #pages #manners #manner .manner-wrap .manner .img {
    width: 100%;
    margin-bottom: 30px;
  }
}
#pages #manners #manner .manner-wrap .manner .txt {
  font-size: 3.2vw;
  padding-top: 3px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  #pages #manners #manner .manner-wrap .manner .txt {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  #pages #manners #manner .manner-wrap .manner .txt {
    font-size: 18px;
    line-height: 2;
  }
}
#pages #manners #manner .manner-wrap .manner:nth-of-type(odd) {
  background: #D6F1D6;
}
#pages #manners #manner .manner-wrap .manner:nth-of-type(even) {
  background: #E5F7CA;
}

#pages #play {
  background-image: url(../images/works-bg.png);
}
@media screen and (min-width: 1025px) {
  #pages #play .play-head {
    margin-bottom: 70px;
  }
}
#pages #play .play-head .page-icon {
  background-image: url(../images/page/play-head-bg.png);
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  #pages #play .play-head .page-icon {
    margin-bottom: 56px;
  }
}
#pages #play .play-head .page-icon img {
  width: 113px;
}
@media screen and (min-width: 1025px) {
  #pages #play .play-head .page-icon img {
    width: 219px;
  }
}
#pages #play .play-head #page-head {
  background-image: url(../images/page/play-ttl-bg.svg);
  background-size: 832px;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  #pages #play .play-head #page-head {
    margin-bottom: 40px;
  }
}
#pages #play .play-head #page-head img {
  width: 155px;
}
@media screen and (min-width: 1025px) {
  #pages #play .play-head #page-head img {
    width: 234px;
  }
}
#pages #play .play-head #page-head:after {
  display: none;
}
#pages #play #content-nav li {
  background: #C93700;
}
#pages #play #content-nav li a {
  background: #D76842;
  color: #ffffff;
}
#pages #play .sec-head {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  #pages #play .sec-head {
    padding-bottom: 38px;
    margin-bottom: 60px;
  }
}
#pages #play .sec-head:after {
  content: "";
  margin-top: 20px;
  display: block;
  width: 45px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  background: #C93700;
  border-radius: 9999px;
}
@media screen and (min-width: 1025px) {
  #pages #play .sec-head:after {
    width: 65px;
    height: 5px;
    margin-top: 36px;
  }
}
#pages #play .download {
  text-align: center;
}
#pages #play .download a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 2px solid #000000;
  border-radius: 9999px;
  width: 310px;
  height: 65px;
  background: #ffffff;
  font-size: 17px;
  font-weight: bold;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  #pages #play .download a {
    width: 430px;
    height: 90px;
    font-size: 24px;
    border: 3px solid #000000;
  }
}
#pages #play .download a:before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../images/page/play-download.svg);
  background-position: center;
  background-size: contain;
  margin-right: 16px;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  #pages #play .download a:before {
    width: 40px;
    height: 40px;
  }
}
#pages #play .download a span {
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
#pages #play .download a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: 0.4s;
  transform: scaleX(0);
  transform-origin: left center;
}
@media screen and (min-width: 1025px) {
  #pages #play .download a:hover span {
    color: #ffffff;
  }
  #pages #play .download a:hover:before {
    background-image: url(../images/page/play-download-r.svg);
  }
  #pages #play .download a:hover:after {
    transform: scaleX(1);
  }
}
#pages #play #papercraft {
  padding-top: 80px;
  padding-bottom: 135px;
  background-image: url(../images/page/wave-mb.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 330px auto;
  padding-bottom: 70px;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    background-image: url(../images/page/wave.png);
    background-size: 1198px auto;
    padding-top: 70px;
    padding-bottom: 160px;
  }
}
#pages #play #papercraft .sec-head img {
  width: 244px;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .sec-head img {
    width: 440px;
  }
}
#pages #play #papercraft .lead {
  text-align: center;
  margin-bottom: 45px;
}
#pages #play #papercraft .papercrafts {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
#pages #play #papercraft .papercrafts .papercraft {
  padding-bottom: 48px;
  margin-bottom: 48px;
  position: relative;
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft {
    display: flex;
    justify-content: center;
    gap: 44px;
    padding-bottom: 65px;
    margin-bottom: 65px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
}
#pages #play #papercraft .papercrafts .papercraft:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
#pages #play #papercraft .papercrafts .papercraft:before {
  content: "";
  display: block;
  width: 30px;
  height: 18px;
  background-image: url(../images/page/play-papercraft-linemarker.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -9px;
  left: calc(100% - 50px);
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft:before {
    width: 53px;
    height: 30px;
    bottom: -15px;
    left: calc(100% + 10px);
  }
}
#pages #play #papercraft .papercrafts .papercraft:after {
  content: "";
  display: block;
  width: calc(100% - 35px - 55px);
  height: 0;
  border-bottom: 2px dashed #BE6243;
  position: absolute;
  bottom: 0;
  left: 35px;
  right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft:after {
    width: 100%;
    left: 0;
    right: unset;
  }
}
#pages #play #papercraft .papercrafts .papercraft:nth-of-type(even):before {
  left: unset;
  right: calc(100% - 50px);
  transform: rotateZ(180deg);
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft:nth-of-type(even):before {
    right: calc(100% + 50px);
  }
}
#pages #play #papercraft .papercrafts .papercraft:nth-of-type(even):after {
  left: auto;
  right: 35px;
}
#pages #play #papercraft .papercrafts .papercraft:last-of-type:before, #pages #play #papercraft .papercrafts .papercraft:last-of-type:after {
  display: none;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft .txt {
    width: 491px;
  }
}
#pages #play #papercraft .papercrafts .papercraft .txt .head {
  box-sizing: border-box;
  height: 123px;
  padding-bottom: 23px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft .txt .head {
    height: 178px;
    padding-bottom: 23px;
    margin-bottom: 20px;
  }
}
#pages #play #papercraft .papercrafts .papercraft .txt .head .name {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft .txt .head .name {
    font-size: 45px;
  }
}
#pages #play #papercraft .papercrafts .papercraft .txt .head .name rt {
  letter-spacing: 0;
  font-size: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft .txt .head .name rt {
    font-size: 15px;
  }
}
#pages #play #papercraft .papercrafts .papercraft .txt .head .desc {
  font-size: 12px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft .txt .head .desc {
    font-size: 18px;
  }
}
#pages #play #papercraft .papercrafts .papercraft .img {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #play #papercraft .papercrafts .papercraft .img {
    width: 464px;
    margin-bottom: 0;
  }
}
#pages #play #papercraft .papercrafts .papercraft.line .txt .head {
  background-image: url(../images/page/play-papercraft-line-bg.png);
  color: #FF1700;
}
#pages #play #papercraft .papercrafts .papercraft.pumpkin .txt .head {
  background-image: url(../images/page/play-papercraft-pumpkin-bg.png);
  color: #EE8510;
}
#pages #play #papercraft .papercrafts .papercraft.highway .txt .head {
  background-image: url(../images/page/play-papercraft-highway-bg.png);
  color: #71B200;
}
#pages #play #nurie {
  padding-top: 70px;
  padding-bottom: 80px;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #play #nurie {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    margin-top: 75px;
    padding-top: 75px;
    padding-bottom: 135px;
  }
}
#pages #play #nurie .sec-head img {
  width: 86px;
}
@media screen and (min-width: 1025px) {
  #pages #play #nurie .sec-head img {
    width: 144px;
  }
}
#pages #play #nurie .lead {
  text-align: center;
  margin-bottom: 45px;
}
#pages #play #nurie .nuries {
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (min-width: 1025px) {
  #pages #play #nurie .nuries {
    display: flex;
    justify-content: center;
    gap: 85px;
    padding-left: 0;
    padding-right: 0;
  }
}
#pages #play #nurie .nuries .nurie {
  margin-bottom: 57px;
}
@media screen and (min-width: 1025px) {
  #pages #play #nurie .nuries .nurie {
    margin-bottom: 0;
  }
}
#pages #play #nurie .nuries .nurie:last-of-type {
  margin-bottom: 0;
}
#pages #play #nurie .nuries .nurie .img {
  margin-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  #pages #play #nurie .nuries .nurie .img {
    margin-bottom: 27px;
  }
}

@media screen and (min-width: 1025px) {
  #pages #events .inner {
    padding-bottom: 90px;
  }
}
#pages #events .events-head {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-head {
    margin-bottom: 70px;
  }
}
#pages #events .events-head .page-icon {
  background-image: url(../images/page/events-head-bg.png);
  margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-head .page-icon {
    margin-bottom: 56px;
  }
}
#pages #events .events-head .page-icon img {
  width: 113px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-head .page-icon img {
    width: 226px;
  }
}
#pages #events .events-head #page-head {
  padding-bottom: 0;
  margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-head #page-head {
    margin-bottom: 40px;
  }
}
#pages #events .events-head #page-head img {
  width: 286px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-head #page-head img {
    width: 502px;
  }
}
#pages #events .events-head #page-head:after {
  display: none;
}
#pages #events .events-head #lead {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 30px;
  position: relative;
  padding-left: 35px;
  padding-right: 35px;
  text-align: left;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-head #lead {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 70px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
#pages #events .events-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 38px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-nav {
    gap: 35px;
    margin-bottom: 50px;
  }
}
#pages #events .events-nav li {
  background: none;
  box-shadow: none;
}
#pages #events .events-nav .date {
  width: auto;
  cursor: pointer;
  border: 2px solid #EB6E8C;
  border-radius: 9999px;
  background-color: #fff;
  color: #EB6E8C;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.1em;
  transition: background-color 0.4s, color 0.4s;
  font-size: 15px;
  padding: 4px calc(20px - 0.1em) 5px 20px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-nav .date {
    border-width: 3px;
    font-size: 26px;
    padding: 12px calc(42px - 0.1em) 15px 42px;
  }
}
#pages #events .events-nav .date:hover, #pages #events .events-nav .date.is-active {
  background-color: #EB6E8C;
  color: #fff;
}
#pages #events .events-nav .date.is-active {
  pointer-events: none;
}
#pages #events .events-nav .date small {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-nav .date small {
    font-size: 20px;
  }
}
#pages #events #events-body {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 38px;
  position: relative;
  width: 82.66vw;
}
@media screen and (min-width: 1025px) {
  #pages #events #events-body {
    width: 1100px;
    margin-bottom: 70px;
  }
}
#pages #events .events-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  counter-reset: event-number 0;
  gap: 44px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap {
    gap: 70px;
  }
}
#pages #events .events-wrap .event {
  position: relative;
  border-radius: 10px;
  padding: 40px 32px 50px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event {
    border-radius: 20px;
    padding: 80px 98px 110px;
  }
}
#pages #events .events-wrap .event:before {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  pointer-events: none;
  background-position: left top, right top, left bottom, right bottom;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  position: absolute;
  left: -2px;
  top: -2px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event:before {
    background-size: 32px 32px;
    left: -2px;
    top: -2px;
  }
}
#pages #events .events-wrap .event .event-head {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto 3px;
  position: relative;
  padding-bottom: 19px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .event-head {
    padding-bottom: 24px;
    background-size: auto 4px;
  }
}
#pages #events .events-wrap .event .event-head::before {
  counter-increment: event-number 1;
  content: counter(event-number, decimal-leading-zero);
  position: absolute;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 70px;
  top: -36px;
  right: -8px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .event-head::before {
    top: unset;
    right: 0;
    bottom: 0;
    font-size: 141px;
  }
}
#pages #events .events-wrap .event .date {
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .date {
    margin-bottom: 10px;
  }
}
#pages #events .events-wrap .event .subject {
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .subject {
    font-size: 30px;
  }
}
#pages #events .events-wrap .event .event-body {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.73;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .event-body {
    font-size: 18px;
    line-height: 2;
  }
}
#pages #events .events-wrap .event .event-body p {
  margin: 30px 0;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .event-body p {
    margin: 50px 0;
  }
}
#pages #events .events-wrap .event .event-body img {
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .event-body img {
    border-radius: 20px;
  }
}
#pages #events .events-wrap .event .event-body figure {
  margin: 0;
  padding: 0;
}
#pages #events .events-wrap .event .event-body figure:not(:last-child) {
  margin-bottom: 30px;
}
#pages #events .events-wrap .event .event-body figure figcaption {
  margin-top: 10px;
  line-height: 1.69;
  font-weight: bold;
  font-size: 13px;
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .event-body figure figcaption {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25;
  }
}
@media screen and (min-width: 1025px) {
  #pages #events .events-wrap .event .event-body .image_middle {
    width: 70%;
  }
  #pages #events .events-wrap .event .event-body .image_middle img {
    width: 100%;
  }
  #pages #events .events-wrap .event .event-body .image_small {
    width: 43%;
  }
  #pages #events .events-wrap .event .event-body .image_small img {
    width: 100%;
  }
}
#pages #events .events-wrap .event:nth-of-type(5n+1) {
  background-color: #FCE9F0;
}
#pages #events .events-wrap .event:nth-of-type(5n+1)::before {
  background-image: url(../images/page/events-bg1-lt.svg), url(../images/page/events-bg1-rt.svg), url(../images/page/events-bg1-lb.svg), url(../images/page/events-bg1-rb.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+1) .event-head {
  background-image: url(../images/page/events-sep1.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+1) .event-head::before {
  color: #F9D7E1;
}
#pages #events .events-wrap .event:nth-of-type(5n+1) .date {
  border-color: #EB6E8C;
  color: #EB6E8C;
}
#pages #events .events-wrap .event:nth-of-type(5n+1) .subject {
  color: #EB6E8C;
}
#pages #events .events-wrap .event:nth-of-type(5n+2) {
  background-color: #FDEBE6;
}
#pages #events .events-wrap .event:nth-of-type(5n+2)::before {
  background-image: url(../images/page/events-bg2-lt.svg), url(../images/page/events-bg2-rt.svg), url(../images/page/events-bg2-lb.svg), url(../images/page/events-bg2-rb.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+2) .event-head {
  background-image: url(../images/page/events-sep2.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+2) .event-head::before {
  color: #F8CEC9;
}
#pages #events .events-wrap .event:nth-of-type(5n+2) .date {
  border-color: #DF252B;
  color: #DF252B;
}
#pages #events .events-wrap .event:nth-of-type(5n+2) .subject {
  color: #DF252B;
}
#pages #events .events-wrap .event:nth-of-type(5n+3) {
  background-color: #FFFCC3;
}
#pages #events .events-wrap .event:nth-of-type(5n+3)::before {
  background-image: url(../images/page/events-bg3-lt.svg), url(../images/page/events-bg3-rt.svg), url(../images/page/events-bg3-lb.svg), url(../images/page/events-bg3-rb.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+3) .event-head {
  background-image: url(../images/page/events-sep3.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+3) .event-head::before {
  color: #FEE995;
}
#pages #events .events-wrap .event:nth-of-type(5n+3) .date {
  border-color: #FD9D2C;
  color: #FD9D2C;
}
#pages #events .events-wrap .event:nth-of-type(5n+3) .subject {
  color: #FD9D2C;
}
#pages #events .events-wrap .event:nth-of-type(5n+4) {
  background-color: #E3F5F5;
}
#pages #events .events-wrap .event:nth-of-type(5n+4)::before {
  background-image: url(../images/page/events-bg4-lt.svg), url(../images/page/events-bg4-rt.svg), url(../images/page/events-bg4-lb.svg), url(../images/page/events-bg4-rb.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+4) .event-head {
  background-image: url(../images/page/events-sep4.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+4) .event-head::before {
  color: #CBE6ED;
}
#pages #events .events-wrap .event:nth-of-type(5n+4) .date {
  border-color: #4196C1;
  color: #4196C1;
}
#pages #events .events-wrap .event:nth-of-type(5n+4) .subject {
  color: #4196C1;
}
#pages #events .events-wrap .event:nth-of-type(5n+5) {
  background-color: #F1F7DE;
}
#pages #events .events-wrap .event:nth-of-type(5n+5)::before {
  background-image: url(../images/page/events-bg5-lt.svg), url(../images/page/events-bg5-rt.svg), url(../images/page/events-bg5-lb.svg), url(../images/page/events-bg5-rb.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+5) .event-head {
  background-image: url(../images/page/events-sep5.svg);
}
#pages #events .events-wrap .event:nth-of-type(5n+5) .event-head::before {
  color: #D8ECC8;
}
#pages #events .events-wrap .event:nth-of-type(5n+5) .date {
  border-color: #4AB04C;
  color: #4AB04C;
}
#pages #events .events-wrap .event:nth-of-type(5n+5) .subject {
  color: #4AB04C;
}