body,
html {
  background: transparent;
  overflow-x: clip !important;
}

.c-header {
  background: transparent;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}
.c-header:has(.active) {
  background: var(--body);
}
.c-header .hamburger span {
  background: var(--white) !important;
}
.c-header .hamburger.active span {
  background: var(--black) !important;
}
.c-header.scroll {
  background-color: var(--body);
}
.c-header.scroll .hamburger span {
  background: var(--black) !important;
}
.c-header.scroll .global-nav1 li > a,
.c-header.scroll .global-nav2 li > a {
  color: var(--black);
}
.c-header.scroll .global-nav1 li.language svg .cls-1,
.c-header.scroll .global-nav2 li.language svg .cls-1 {
  stroke: var(--black) !important;
}
.c-header.scroll .global-nav1 li.language p,
.c-header.scroll .global-nav2 li.language p {
  color: var(--black);
}
.c-header .global-nav1 li > a,
.c-header .global-nav2 li > a {
  color: var(--white);
}
.c-header .global-nav1 li.language svg .cls-1,
.c-header .global-nav2 li.language svg .cls-1 {
  stroke: var(--white) !important;
}
.c-header .global-nav1 li.language p,
.c-header .global-nav2 li.language p {
  color: var(--white);
}

main {
  padding-top: 0;
}
main h1,
main h2,
main h3,
main h4,
main hgroup {
  font-family: var(--inter);
}

.section {
  position: relative;
  width: 100%;
  height: auto !important;
}

section.kv {
  width: 100%;
  height: 100svh;
  color: var(--white);
  text-align: center;
  position: relative;
  background-color: var(--black);
}
@media screen and (max-width: 767px) {
  section.kv {
    background-size: cover;
  }
}
section.kv .bg {
  width: 100%;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 0;
  -webkit-animation: 1s forwards kv-bg;
          animation: 1s forwards kv-bg;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes kv-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
section.kv .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
}
section.kv h1 {
  font-size: 103px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
  position: absolute;
  bottom: 60px;
  left: 90px !important;
  z-index: 2;
  -webkit-transition: opacity 1s, translate 1s;
  transition: opacity 1s, translate 1s;
  opacity: 0;
  -webkit-animation: 1.5s forwards cubic-bezier(0.25, 1, 0.5, 1) kv-h1;
          animation: 1.5s forwards cubic-bezier(0.25, 1, 0.5, 1) kv-h1;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@-webkit-keyframes kv-h1 {
  0% {
    opacity: 0;
    translate: -10px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes kv-h1 {
  0% {
    opacity: 0;
    translate: -10px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@media screen and (max-width: 1500px) {
  section.kv h1 {
    font-size: 6.8666666667vw;
  }
}
@media screen and (max-width: 1250px) {
  section.kv h1 {
    bottom: 8%;
    left: 8% !important;
  }
}
@media screen and (max-width: 1100px) {
  section.kv h1 {
    font-size: 76px;
  }
}
@media screen and (max-width: 767px) {
  section.kv h1 {
    font-size: 65px !important;
    bottom: 30px !important;
    left: 30px !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  section.kv h1 {
    font-size: 12vw !important;
    bottom: 25px !important;
    left: 25px !important;
  }
}
section.kv .scroll {
  width: 28px;
  position: absolute;
  bottom: 30px;
  left: calc(50% - 14px);
  z-index: 2;
  -webkit-transition: bottom 1s, opacity 1s;
  transition: bottom 1s, opacity 1s;
  opacity: 0;
  -webkit-animation: 1s forwards kv-scroll;
          animation: 1s forwards kv-scroll;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
@-webkit-keyframes kv-scroll {
  0% {
    opacity: 0;
    bottom: 70px;
  }
  100% {
    opacity: 1;
    bottom: 50px;
  }
}
@keyframes kv-scroll {
  0% {
    opacity: 0;
    bottom: 70px;
  }
  100% {
    opacity: 1;
    bottom: 50px;
  }
}
@media screen and (max-width: 950px) {
  section.kv .scroll {
    left: auto !important;
    right: 5% !important;
  }
}
@media screen and (max-width: 767px) {
  section.kv .scroll {
    bottom: 25px !important;
  }
}
section.kv .scroll a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover) {
  section.kv .scroll a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  section.kv .c-breadcrumb {
    padding-left: 0;
    padding-right: 0;
  }
}
section.kv .c-breadcrumb li:after {
  border-color: var(--white) !important;
}
section.kv .c-breadcrumb li a {
  color: var(--white);
}
section.kv h2 {
  font-size: 32px;
  letter-spacing: 0.15em;
  position: relative;
  margin-bottom: 100px;
  font-weight: bold;
}
section.kv h2:after {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: 60px;
  height: 8px;
  background-color: var(--red);
  translate: -50% 0;
}
section.kv p {
  line-height: 2.2;
  font-size: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  section.kv p {
    font-size: 16px;
  }
}

h2.red {
  font-size: 142px;
  color: #a90000;
  font-weight: bold;
  opacity: 0.9;
  line-height: 0.81;
  text-align: right;
}
@media screen and (max-width: 1100px) {
  h2.red {
    font-size: 100px;
  }
}
@media screen and (max-width: 767px) {
  h2.red {
    font-size: 46px !important;
    top: -15px !important;
  }
}

section.value {
  width: 100%;
  color: var(--white);
  text-align: center;
  position: relative;
  padding: 250px 0 350px;
}
@media screen and (max-width: 767px) {
  section.value {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  section.value {
    padding: 100px 5% 40vw !important;
  }
}
section.value .bg-img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.value .bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
section.value h2.red {
  position: absolute;
  top: 10px !important;
  right: 0;
}
@media screen and (max-width: 767px) {
  section.value h2.red {
    top: 0 !important;
  }
}
section.value .feature-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 0 100px;
}
@media screen and (max-width: 1040px) {
  section.value .feature-box {
    display: block;
  }
}
section.value .feature-box .img-area {
  margin-top: 140px;
  position: sticky;
  top: calc(50svh - 100px);
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  will-change: top, transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 1040px) {
  section.value .feature-box .img-area {
    display: none;
  }
}
section.value .feature-box .img-area ul.img-list {
  position: relative;
  max-width: 340px;
  width: 100%;
}
section.value .feature-box .img-area ul.img-list li {
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
section.value .feature-box .img-area ul.img-list li.active {
  opacity: 1;
}
section.value .feature-box .img-area ul.img-list li img {
  display: block;
  width: 100%;
}
section.value .feature-box .img-area .img-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 385px;
}
section.value .feature-box .img-area .img {
  position: relative;
  max-width: 340px;
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
}
section.value .feature-box .img-area h3 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: bold;
  padding-top: 10px;
  margin-left: 50px;
  text-align: left;
}
@media screen and (max-width: 1150px) {
  section.value .feature-box .img-area h3 {
    padding: 0;
    font-size: 28px;
  }
}
section.value .feature-box .txt-area {
  top: 150px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  margin-right: 40px;
  margin-top: 140px;
}
@media screen and (max-width: 1100px) {
  section.value .feature-box .txt-area {
    margin: 0 auto;
    width: 90%;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  section.value .feature-box .txt-area {
    width: 100%;
    gap: 30px;
  }
}
section.value .feature-box .txt-area .img-area2 {
  display: none;
}
@media screen and (max-width: 1040px) {
  section.value .feature-box .txt-area .img-area2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
section.value .feature-box .txt-area .img-area2 .img {
  max-width: 400px;
  padding-bottom: 10px;
}
section.value .feature-box .txt-area .img-area2 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 28px;
  font-weight: bold;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  section.value .feature-box .txt-area .img-area2 h3 {
    padding: 0;
    font-size: 30px;
    height: 580px;
  }
}
@media screen and (max-width: 500px) {
  section.value .feature-box .txt-area .img-area2 h3 {
    font-size: 4.5vw;
    height: 70vw;
  }
}
section.value .feature-box .txt-area p {
  font-size: 20px;
  line-height: 2.5;
  text-align: left;
}
@media screen and (max-width: 1150px) {
  section.value .feature-box .txt-area p {
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  section.value .feature-box .txt-area p {
    line-height: 2;
    font-size: 16px;
  }
}
section.value .feature-box .txt-area p br.pc {
  display: block !important;
}
@media screen and (max-width: 1040px) {
  section.value .feature-box .txt-area p br.pc {
    display: none !important;
  }
}
section.value ul.btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1040px) {
  section.value ul.btn-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  section.value ul.btn-list {
    gap: 40px;
  }
}
@media screen and (max-width: 550px) {
  section.value ul.btn-list {
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  section.value ul.btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
section.value ul.btn-list li {
  background-color: var(--white);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  section.value ul.btn-list li {
    width: 230px;
    margin: 0 auto;
  }
}
section.value ul.btn-list li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (hover) {
  section.value ul.btn-list li a:hover {
    opacity: 0.6;
  }
}

section.hope {
  width: 100%;
  height: auto;
  background: #eeebe9;
  position: relative;
  border-radius: 60px 60px 0 0;
  padding-bottom: 350px;
}
@media screen and (max-width: 767px) {
  section.hope {
    padding-bottom: 70vw !important;
  }
}
section.hope .inner {
  max-width: calc(100% - (100% - 1280px) / 2);
  margin: 0 0 0 auto;
  width: 90%;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.hope .inner {
    max-width: 100%;
    margin: 0 auto;
  }
}
section.hope .inner h2.red {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section.hope .inner h2.red {
    top: -4vw;
  }
}
section.hope .inner .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.hope .inner .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.hope .inner .box .img-area {
  width: 100%;
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .img-area {
    position: relative;
    padding-bottom: 155vw;
  }
}
section.hope .inner .box .img-area .img01 {
  position: absolute;
  top: 0;
  left: 53%;
  width: 520px;
  border-radius: 0 60px 0 0;
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .img-area .img01 {
    text-align: center;
  }
}
section.hope .inner .box .img-area .img01 img {
  border-radius: 0 60px 0 0;
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .img-area .img01 img {
    border-radius: 0;
  }
}
@media screen and (max-width: 1260px) {
  section.hope .inner .box .img-area .img01 {
    left: auto;
    right: 10%;
  }
}
@media screen and (max-width: 1100px) {
  section.hope .inner .box .img-area .img01 {
    right: 0;
    width: 54.5454545455vw;
  }
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .img-area .img01 {
    width: 100%;
  }
  section.hope .inner .box .img-area .img01 img {
    width: 100%;
  }
}
section.hope .inner .box .img-area .img02 {
  position: absolute;
  left: calc(50% - 400px);
  bottom: -20px;
  width: 500px;
}
@media screen and (max-width: 1750px) {
  section.hope .inner .box .img-area .img02 {
    width: 29.4117647059vw;
    left: auto;
    right: 38%;
  }
}
@media screen and (max-width: 1100px) {
  section.hope .inner .box .img-area .img02 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .img-area .img02 {
    display: block;
    right: auto;
    left: -3vw;
    width: 53%;
  }
}
section.hope .inner .box .img-area .img03 {
  max-width: 350px;
  width: 23.3333333333vw;
  position: absolute;
  bottom: -90px;
  left: calc(50% + 350px);
  z-index: 2;
}
@media screen and (max-width: 1260px) {
  section.hope .inner .box .img-area .img03 {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 1100px) {
  section.hope .inner .box .img-area .img03 {
    width: 31.8181818182vw;
  }
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .img-area .img03 {
    width: 48%;
    bottom: -20px;
    right: -2vw;
  }
}
section.hope .inner .box .img-area .img03 figcaption {
  color: var(--white);
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .img-area .img03 figcaption {
    font-size: 15px;
    color: #000;
  }
}
section.hope .inner .box .txt-area {
  width: 450px;
  margin-left: auto;
  color: var(--black);
  padding: 100px 0 120px;
}
@media screen and (max-width: 1100px) {
  section.hope .inner .box .txt-area {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .txt-area {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .txt-area {
    padding-bottom: 30px;
  }
}
section.hope .inner .box .txt-area h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .txt-area h2 {
    font-size: 24px;
    margin: 0;
  }
}
section.hope .inner .box .txt-area h2:after {
  display: none;
}
section.hope .inner .box .txt-area p {
  margin-top: 45px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  section.hope .inner .box .txt-area p {
    margin-top: 20px;
  }
}
section.hope .history-slide {
  position: relative;
  z-index: 1;
}
section.hope .history-slide .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100% !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide {
    display: block;
  }
}
section.hope .history-slide .slide .img {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .img {
    width: 100%;
  }
}
section.hope .history-slide .slide .img > div {
  aspect-ratio: 1;
  background-color: #cdc5c0;
  margin: 10vw 15%;
  padding-top: 12%;
}
@media screen and (max-width: 1040px) {
  section.hope .history-slide .slide .img > div {
    padding-top: 10%;
  }
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .img > div {
    margin: 20vw 15%;
    aspect-ratio: auto;
    padding: 40px 0 20px;
  }
}
@media screen and (max-width: 500px) {
  section.hope .history-slide .slide .img > div {
    margin: 20vw 5%;
  }
}
section.hope .history-slide .slide .img > div:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .img > div:last-child {
    margin-bottom: 10vw;
  }
}
section.hope .history-slide .slide .img > div figure figcaption {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  padding: 0 10px;
  line-height: 1.4;
}
@media screen and (max-width: 1220px) {
  section.hope .history-slide .slide .img > div figure figcaption {
    font-size: 16px;
  }
}
@media screen and (max-width: 1110px) {
  section.hope .history-slide .slide .img > div figure figcaption {
    font-size: 15px;
    padding: 0 5px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .img > div figure figcaption {
    font-size: 15px;
  }
}
section.hope .history-slide .slide .img > div figure figcaption span {
  padding-right: 15px;
}
@media screen and (max-width: 1110px) {
  section.hope .history-slide .slide .img > div figure figcaption span {
    padding-right: 10px;
  }
}
section.hope .history-slide .slide .txt-area {
  width: 50%;
  height: calc(100vh - 130px);
  background-color: var(--black);
  color: var(--white);
  position: sticky;
  top: 130px;
  right: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1220px) {
  section.hope .history-slide .slide .txt-area {
    top: 80px;
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .txt-area {
    width: 100%;
    height: 200px;
    top: auto;
    bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  section.hope .history-slide .slide .txt-area {
    height: 60vw;
  }
}
section.hope .history-slide .slide .txt-area:after {
  content: "";
  width: 31px;
  height: 71px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  translate: -50% 0;
  background: url(/en/nissei_will/img/icn_scroll.svg) no-repeat center/contain;
}
@media screen and (max-width: 1040px) {
  section.hope .history-slide .slide .txt-area:after {
    width: 3vw;
    height: 7vw;
  }
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .txt-area:after {
    display: none;
  }
}
section.hope .history-slide .slide .txt-area ul {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  section.hope .history-slide .slide .txt-area ul {
    width: 70% !important;
  }
}
@media screen and (max-width: 1040px) {
  section.hope .history-slide .slide .txt-area ul {
    padding-bottom: 3vw;
    width: 85% !important;
  }
}
section.hope .history-slide .slide .txt-area ul li {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  translate: -50% -50%;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}
section.hope .history-slide .slide .txt-area ul li.active {
  pointer-events: visible;
  opacity: 1;
}
section.hope .history-slide .slide .txt-area ul li h3 {
  font-size: 54px;
  font-weight: bold;
  font-family: var(--inter);
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .txt-area ul li h3 {
    font-size: 54px;
  }
}
@media screen and (max-width: 500px) {
  section.hope .history-slide .slide .txt-area ul li h3 {
    font-size: 8vw;
  }
}
section.hope .history-slide .slide .txt-area ul li p {
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.hope .history-slide .slide .txt-area ul li p {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  section.hope .history-slide .slide .txt-area ul li p {
    margin-top: 1vw;
    font-size: 5vw;
  }
}
section.hope .btn {
  width: 260px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  section.hope .btn {
    margin-top: 40px;
  }
}
section.hope .btn a {
  width: 100%;
}

section.will {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 450px;
  background: #eeebe9;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 767px) {
  section.will {
    padding-bottom: 70vw !important;
  }
}
section.will #animation_container {
  background: url(/en/nissei_will/img/bg.jpg) no-repeat center/cover;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1500/760;
  border-radius: 60px 60px 0 0;
}
section.will #dom_overlay_container {
  pointer-events: none;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1500/760;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
}
section.will canvas {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1500/760;
  position: absolute;
  display: block;
}
section.will h2.red {
  position: absolute;
  top: -50px;
  right: 30px;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  section.will h2.c-h2 {
    font-size: 30px;
    margin-bottom: 40px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 900px) {
  section.will h2.c-h2 {
    color: var(--black) !important;
    text-shadow: none !important;
  }
}
section.will h3.c-h3 {
  margin-top: 110px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  section.will h3.c-h3 {
    font-size: 22px;
    margin-top: 80px;
  }
}
section.will .animation-wrap {
  position: relative;
  z-index: 0;
}
section.will .animation-wrap img {
  width: 100%;
}
section.will .inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: -130px;
}
@media screen and (max-width: 900px) {
  section.will .inner {
    margin-top: 30px;
  }
}
section.will .inner .lead-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  section.will .inner .lead-box {
    display: block;
  }
}
section.will .inner .lead-box .img-area {
  max-width: 520px;
  margin-top: 25px;
}
@media screen and (max-width: 1100px) {
  section.will .inner .lead-box .img-area {
    width: 45%;
    max-width: 100%;
  }
}
@media screen and (max-width: 900px) {
  section.will .inner .lead-box .img-area {
    width: 100%;
    max-width: 450px;
  }
}
@media screen and (max-width: 767px) {
  section.will .inner .lead-box .img-area {
    width: 70%;
  }
}
section.will .inner .lead-box .img-area img {
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
  translate: 100px 0;
}
@media screen and (max-width: 1320px) {
  section.will .inner .lead-box .img-area img {
    translate: 0;
  }
}
section.will .inner .lead-box .txt-area {
  width: calc((100% - 80px) / 2);
}
@media screen and (max-width: 1180px) {
  section.will .inner .lead-box .txt-area p br {
    display: none !important;
  }
}
@media screen and (max-width: 1100px) {
  section.will .inner .lead-box .txt-area {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  section.will .inner .lead-box .txt-area {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  section.will .inner .lead-box .txt-area {
    margin-top: 30px;
  }
}
section.will .inner .lead-box .txt-area h2 {
  margin-top: 0;
  color: var(--white);
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
section.will .inner .lead-box .txt-area h2:after {
  display: none;
}
@media screen and (max-width: 767px) {
  section.will .inner .lead-box .txt-area h2 {
    padding-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
  }
}
section.will .inner .lead-box .txt-area p {
  line-height: 2;
}
section.will .inner ul.bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  section.will .inner ul.bnr-list {
    gap: 40px;
  }
}
@media screen and (max-width: 500px) {
  section.will .inner ul.bnr-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
  }
}
section.will .inner ul.bnr-list li {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 767px) {
  section.will .inner ul.bnr-list li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 500px) {
  section.will .inner ul.bnr-list li {
    width: 100%;
  }
}
section.will .inner ul.bnr-list li p {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  section.will .inner ul.bnr-list li p {
    font-size: 16px;
  }
}
section.will .inner ul.bnr-list li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover) {
  section.will .inner ul.bnr-list li a:hover {
    opacity: 0.6;
  }
}
section.will .inner .btn a {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  section.will .inner .btn a {
    margin-top: 40px;
  }
}
section.will .inner .feature-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  section.will .inner .feature-box {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.will .inner .feature-box.first {
  margin-top: 50px !important;
}
section.will .inner .feature-box.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  section.will .inner .feature-box.reverse {
    display: block;
  }
}
section.will .inner .feature-box.reverse .img-area {
  margin: 0 calc(50% - 50vw) 0 10%;
}
@media screen and (max-width: 767px) {
  section.will .inner .feature-box.reverse .img-area {
    margin-left: 0;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
section.will .inner .feature-box .img-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 10% 0 calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  section.will .inner .feature-box .img-area {
    margin-right: 0;
  }
}
section.will .inner .feature-box .txt-area {
  width: 50%;
}
@media screen and (max-width: 767px) {
  section.will .inner .feature-box .txt-area {
    width: 100%;
  }
}
section.will .inner .feature-box .txt-area h4 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.will .inner .feature-box .txt-area h4 {
    font-size: 20px;
    margin-top: 20px;
  }
}
section.will .inner .feature-box .txt-area p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  section.will .inner .feature-box .txt-area p {
    margin-top: 15px;
    font-size: 15px;
  }
}

section.attempt {
  background-color: #eeebe9;
  background: url(/en/nissei_will/img/bg_attempt.jpg) no-repeat top center/cover;
  border-radius: 0 200px 0 0;
  height: calc(100vh - 130px) !important;
}
@media screen and (max-width: 1220px) {
  section.attempt {
    height: calc(100vh - 80px) !important;
  }
}
@media screen and (max-width: 767px) {
  section.attempt {
    height: calc(100vh - 60px) !important;
    border-radius: 0 60px 0 0 !important;
    padding-bottom: 50vh;
  }
}
section.attempt .inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 90%;
  position: relative;
}
section.attempt .inner .possible {
  padding-top: 40px;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: var(--inter);
}
@media screen and (max-width: 500px) {
  section.attempt .inner .possible {
    letter-spacing: 0;
    font-size: 6vw;
    line-height: 1.8;
  }
}
section.attempt .inner .possible span {
  padding-right: 5px;
  font-size: 46px;
  color: var(--red);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  section.attempt .inner .possible span {
    display: block;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  section.attempt .inner .possible span {
    letter-spacing: 0;
    font-size: 8vw;
  }
}
section.attempt .inner .txt-element h2 {
  font-size: 60px;
  font-weight: bold;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  section.attempt .inner .txt-element h2 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 767px) {
  section.attempt .inner .txt-element h2 {
    font-size: 6vw;
    line-height: 1.5;
  }
}
section.attempt .inner .txt-element p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  section.attempt .inner .txt-element p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 2.3;
  }
}
@media screen and (max-width: 500px) {
  section.attempt .inner .txt-element p {
    margin-top: 5vw;
    font-size: 4vw;
  }
}

section.structure {
  position: relative;
}
section.structure .section__pin {
  border-radius: 0 200px 0 0;
  background: #eeebe9;
  padding-bottom: 350px;
}
@media screen and (max-width: 900px) {
  section.structure .section__pin {
    border-radius: 0 60px 0 0 !important;
    padding-bottom: 70vw !important;
  }
}
section.structure .inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  section.structure .inner {
    padding-top: 50px;
  }
}
section.structure .inner hgroup h2 {
  font-size: 54px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section.structure .inner hgroup h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
section.structure .inner hgroup p {
  font-size: 20px;
  color: var(--red);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.structure .inner hgroup p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
}
section.structure .inner > p {
  margin-top: 60px;
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  section.structure .inner > p {
    margin-top: 20px;
    font-size: 15px;
  }
}
section.structure .img {
  max-width: 1290px;
  margin: 40px auto 0;
  width: 90%;
}
section.structure .btn a {
  margin: 60px auto 0;
}

section.technology {
  position: relative;
  background: #eeebe9;
}
section.technology .section__pin {
  border-radius: 0 200px 0 0;
  background-color: var(--white);
  padding-bottom: 350px;
}
@media screen and (max-width: 900px) {
  section.technology .section__pin {
    border-radius: 0 60px 0 0;
    padding-bottom: 70vw !important;
  }
}
section.technology .inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}
section.technology .inner .feature-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1000px;
  gap: 0 100px;
}
@media screen and (max-width: 900px) {
  section.technology .inner .feature-box {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.technology .inner .feature-box .img-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 calc(45.8% - 50vw) 0 0;
  border-radius: 0 200px 0 0;
  min-height: 550px;
}
@media screen and (max-width: 900px) {
  section.technology .inner .feature-box .img-area {
    min-height: auto;
    margin: 60px auto 0;
    width: 90%;
  }
}
section.technology .inner .feature-box .img-area img {
  border-radius: 0 200px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  section.technology .inner .feature-box .img-area img {
    border-radius: 0;
  }
}
section.technology .inner .feature-box .txt-area {
  width: 50%;
  padding-top: 130px;
}
@media screen and (max-width: 900px) {
  section.technology .inner .feature-box .txt-area {
    padding-top: 15px;
    width: 100%;
  }
}
section.technology .inner .feature-box .txt-area hgroup h2 {
  font-size: 54px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section.technology .inner .feature-box .txt-area hgroup h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
section.technology .inner .feature-box .txt-area hgroup p {
  font-size: 20px;
  color: var(--red);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.technology .inner .feature-box .txt-area hgroup p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
}
section.technology .inner .feature-box .txt-area > p {
  margin-top: 60px;
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  section.technology .inner .feature-box .txt-area > p {
    margin-top: 20px;
    font-size: 15px;
  }
}
section.technology .inner .feature-box .txt-area .btn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  section.technology .inner .feature-box .txt-area .btn a {
    margin: 0 auto;
  }
}
section.technology .inner .img {
  max-width: 552px;
  margin: 0 auto;
  translate: 150px 0;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  section.technology .inner .img {
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    translate: 0;
  }
}

section.sales {
  position: relative;
}
section.sales .section__pin {
  border-radius: 0 200px 0 0;
  background: #eeebe9;
  padding-bottom: 350px;
}
@media screen and (max-width: 767px) {
  section.sales .section__pin {
    border-radius: 0 60px 0 0;
    padding-bottom: 70vw !important;
  }
}
section.sales .inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  section.sales .inner {
    padding-top: 130px;
    padding-top: 50px;
  }
}
section.sales .inner hgroup h2 {
  font-size: 54px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section.sales .inner hgroup h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
section.sales .inner hgroup p {
  font-size: 20px;
  color: var(--red);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.sales .inner hgroup p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
}
section.sales .inner > p {
  margin-top: 60px;
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  section.sales .inner > p {
    margin-top: 20px;
    font-size: 15px;
  }
}
section.sales .img {
  max-width: 1290px;
  margin: 40px auto 0;
  width: 90%;
}
section.sales .btn a {
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  section.sales .btn a {
    margin-top: 30px;
  }
}

section.sustainability {
  position: relative;
  background: #eeebe9;
  padding-bottom: 0 !important;
}
section.sustainability .section__pin {
  border-radius: 0 200px 0 0;
  background: var(--white);
}
@media screen and (max-width: 767px) {
  section.sustainability .section__pin {
    padding-bottom: 80px !important;
    border-radius: 0 60px 0 0;
  }
}
section.sustainability .section__pin .circle img {
  width: 86px;
}
@media screen and (max-width: 767px) {
  section.sustainability .section__pin .circle img {
    width: 60px;
  }
}
@media screen and (max-width: 500px) {
  section.sustainability .section__pin .circle img {
    width: 12vw;
    padding-top: 1vw;
  }
}
section.sustainability .inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
  padding: 130px 0 150px;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner {
    padding: 50px 0 60px;
  }
}
section.sustainability .inner hgroup h2 {
  font-size: 54px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner hgroup h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
section.sustainability .inner hgroup p {
  font-size: 20px;
  color: var(--red);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner hgroup p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
}
section.sustainability .inner > p {
  margin-top: 60px;
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner > p {
    font-size: 15px;
    margin-top: 20px;
  }
}
section.sustainability .inner ul.link-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px 60px;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner ul.link-list {
    gap: 40px 0;
  }
}
section.sustainability .inner ul.link-list li {
  width: calc((100% - 60px) / 2);
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner ul.link-list li {
    width: 100%;
  }
}
section.sustainability .inner ul.link-list li > a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover) {
  section.sustainability .inner ul.link-list li > a:hover {
    opacity: 0.8;
  }
  section.sustainability .inner ul.link-list li > a:hover .img img {
    scale: 1.05;
  }
  section.sustainability .inner ul.link-list li > a:hover .btn {
    -webkit-box-shadow: 0 0 3px #999;
            box-shadow: 0 0 3px #999;
  }
  section.sustainability .inner ul.link-list li > a:hover .btn:after {
    right: 12px;
  }
}
section.sustainability .inner ul.link-list li > a .img {
  overflow: hidden;
}
section.sustainability .inner ul.link-list li > a .img img {
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
section.sustainability .inner ul.link-list li > a .btn {
  max-width: 270px;
  width: 90%;
  height: 70px;
  margin: -30px auto 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.05em;
  gap: 5px;
  font-family: var(--inter);
}
section.sustainability .inner ul.link-list li > a .btn .big {
  display: block;
  font-size: 22px;
}
section.sustainability .inner ul.link-list li > a .btn .small {
  display: block;
  font-weight: normal;
  font-size: 16px;
}
section.sustainability .inner ul.link-list li > a .btn.en {
  height: 76px;
  max-width: 300px;
}
section.sustainability .inner .inclusive-growth {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner .inclusive-growth {
    margin-top: 60px;
  }
}
section.sustainability .inner .inclusive-growth > h2 {
  font-size: 38px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner .inclusive-growth > h2 {
    font-size: 26px;
  }
}
section.sustainability .inner .inclusive-growth > p {
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner .inclusive-growth > p {
    font-size: 16px;
  }
}
section.sustainability .inner .inclusive-growth > .btn {
  margin-top: 40px;
}
section.sustainability .inner .inclusive-growth .c-contact-area {
  margin: 90px 0 0 !important;
}
@media screen and (max-width: 767px) {
  section.sustainability .inner .inclusive-growth .c-contact-area {
    margin: 80px 0 0 !important;
  }
}

.circle {
  pointer-events: none;
  position: absolute;
  top: -50px;
  right: 70px;
  width: 174px;
  height: 174px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--red);
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--inter);
}
@media screen and (max-width: 767px) {
  .circle {
    width: 100px;
    height: 100px;
    right: 5%;
    font-size: 46px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 500px) {
  .circle {
    width: 85px;
    height: 85px;
    font-size: 34px;
    padding-bottom: 7px;
    right: 5%;
    top: -40px;
  }
}
.circle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.circle.circle01:after {
  background: url(/en/nissei_will/img/circle01.svg) no-repeat center/contain;
}
.circle.circle02:after {
  background: url(/en/nissei_will/img/circle02.svg) no-repeat center/contain;
}
.circle.circle03:after {
  background: url(/en/nissei_will/img/circle03.svg) no-repeat center/contain;
}
.circle.circle04:after {
  background: url(/en/nissei_will/img/circle04.svg) no-repeat center/contain;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.c-footer {
  margin-top: 0 !important;
}

[data-aos=zoom-out] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.mouse {
  width: 50px;
  height: 90px;
  border: 3px solid #fff;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 10;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .mouse {
    display: none !important;
  }
}
.mouse.end {
  opacity: 0;
}
.mouse::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite;
}

@-webkit-keyframes wheel {
  to {
    top: 60px;
  }
}

@keyframes wheel {
  to {
    top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint-icon {
    top: 20vw !important;
  }
}

.apo {
  font-family: "Noto Sans JP", serif;
}
/*# sourceMappingURL=style.css.map */
