@charset "UTF-8";
:root {
  --screen-height:100vh;
  --screen-width:0;
}

@counter-style middle-dot {
  system: cyclic;
  symbols: ・;
  suffix: " ";
  fallback: disc;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*********************************************************************
 * Hover Scale系.
 *********************************************************************/
@keyframes hover-scale {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.15, 1.15) translate(0, 0);
  }
  30% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
}
@keyframes hover-scale-small {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.01, 1.01) translate(0, 0);
  }
  30% {
    transform: scale(0.99, 0.99) translate(0, 0);
  }
}
@keyframes pin-fall {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes shadow-fall {
  0% {
    opacity: 0;
    transform: translateY(-15%) translateX(40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-5%) translateX(15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-3%) translateX(7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
}
/*********************************************************************
 * Bounce系.
 *********************************************************************/
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(30%) scale(1.1, 0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(-5%);
  }
  70% {
    opacity: 1;
    transform: translateY(5%) scale(1.05, 0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes bounce-shadow {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  40% {
    transform: translateX(20%) translateY(-10%);
  }
  70% {
    transform: translateX(0%) translateY(0%);
  }
  80% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(0%) translateY(0);
  }
}
@keyframes bounce-cloud {
  0% {
    transform: translateX(50%) scale(1.05);
  }
  50% {
    transform: translateX(50%) scale(1);
  }
  100% {
    transform: translateX(50%) scale(1.05);
  }
}
@keyframes bounce-char {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(5%) scale(1.1, 1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes op-button-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1.1, 1.1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale {
  0% {
    transform: translateY(50px) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10px) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale-sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(16px);
    opacity: 0;
  }
  46% {
    transform: translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-loop-vertical {
  0% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
  45% {
    transform: rotate(90deg) translateX(16px);
    opacity: 0;
  }
  46% {
    transform: rotate(90deg) translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
}
@keyframes raise-character {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes raise-character-svg {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
body, html {
  background-color: #009AB6;
}

/************************************************************************
 * TOP css
 *************************************************************************/
#wrapper {
  opacity: 0;
  transition: opacity 0.3s;
}
#wrapper.active {
  opacity: 1;
}

div#op-stage1, div#op-stage2, div#op-stage3, div#op-stage4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.5s;
}
div#op-stage1.active, div#op-stage2.active, div#op-stage3.active, div#op-stage4.active {
  opacity: 1;
}
@media screen and (max-width: 743px) {
  div#op-stage1, div#op-stage2, div#op-stage3, div#op-stage4 {
    min-height: 640px;
  }
}

div#op-stage4 {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  cursor: pointer;
  height: 100%;
}
div#op-stage4.active {
  pointer-events: auto;
}
div#op-stage4 #stage4-inner {
  padding: 80px;
  background-color: #fff;
  border: 5px solid #009AB6;
  border-radius: 40px;
  cursor: auto;
}
@media screen and (max-width: 743px) {
  div#op-stage4 #stage4-inner {
    padding: 40px 24px;
  }
}
div#op-stage4 #stage4-inner p.lead {
  font-size: 40px;
  font-weight: bold;
  line-height: 150%;
  margin-bottom: 56px;
  color: #009AB6;
}
@media screen and (max-width: 743px) {
  div#op-stage4 #stage4-inner p.lead {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
div#op-stage4 #stage4-inner p.notice {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 743px) {
  div#op-stage4 #stage4-inner p.notice {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
div#op-stage4 #stage4-inner p.notice span.icon {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #2D3234;
  border-radius: 50%;
  transform: translateY(0.5rem);
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
@media screen and (max-width: 743px) {
  div#op-stage4 #stage4-inner p.notice span.icon {
    width: 24px;
    height: 24px;
    transform: translateY(0.3rem);
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
}
div#op-stage4 #stage4-inner p.notice span.icon::before {
  content: "";
  display: block;
  background-image: url("../img/common/icon/zoom-icon.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}
@media screen and (max-width: 743px) {
  div#op-stage4 #stage4-inner p.notice span.icon::before {
    background-image: url("../img/common/icon/zoom-icon.svg");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center top;
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
  }
}
div#op-stage4 #stage4-inner p.notice span.icon::before {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translateX(50%) translateY(50%);
}
div#op-stage4 #stage4-inner div.btn {
  width: 400px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 743px) {
  div#op-stage4 #stage4-inner div.btn {
    width: 295px;
  }
}
div#op-stage4 #stage4-inner div.btn a {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 743px) {
  div#op-stage4 #stage4-inner div.btn a {
    font-size: 1rem;
  }
}

div#op-stage3 {
  margin-top: calc(var(--scale) * -125px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: none;
  position: relative;
  overflow: hidden;
  min-width: 1280px;
  height: auto;
  opacity: 1;
  transition: none;
}
@media screen and (max-width: 743px) {
  div#op-stage3 {
    margin-top: 0;
    min-width: 100%;
  }
}
div#op-stage3.active #stage3-image-box #stage3-image {
  opacity: 1;
}
div#op-stage3.active #stage3-image-box #stage3-video {
  opacity: 1;
}
div#op-stage3.active #stage3-cloud-box {
  opacity: 1;
}
div#op-stage3.active #stage3-typography-box .lead-box {
  opacity: 1;
}
div#op-stage3 #stage3-typography-box .lead-box {
  opacity: 0;
  transition: opacity 0.6s;
}
div#op-stage3 #stage3-image-box {
  position: relative;
  max-width: 1440px;
  min-width: 1280px;
  aspect-ratio: 1440/1080;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-image-box {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 640px;
    height: 100vh;
  }
}
div#op-stage3 #stage3-image-box::before {
  content: "";
  display: block;
  width: 1440px;
  height: 100%;
}
div#op-stage3 #stage3-image-box #stage3-image {
  height: 100%;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 0;
  opacity: 0.00001;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-image-box #stage3-image {
    width: 171vw;
    height: auto;
    top: auto;
    bottom: 50%;
    transform: translateX(50%) translateY(50%);
  }
}
div#op-stage3 #stage3-image-box #stage3-image {
  filter: brightness(1.05) contrast(0.9);
}
div#op-stage3 #stage3-image-box #stage3-image.mac {
  filter: brightness(1.17) contrast(0.81);
}
div#op-stage3 #stage3-image-box #stage3-video {
  height: 100%;
  position: absolute;
  right: 50%;
  transform: translateX(50%) scale(1);
  top: 0;
  opacity: 0.00001;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-image-box #stage3-video {
    width: 171vw;
    height: auto;
    top: auto;
    bottom: 50%;
    transform: translateX(50%) translateY(50%) scale(1);
  }
}
div#op-stage3 #stage3-buttons-box {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
div#op-stage3 #stage3-buttons-box .button-box {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box {
    top: auto;
    left: auto;
    bottom: 50%;
    right: 50%;
  }
}
div#op-stage3 #stage3-buttons-box .button-box.active {
  animation: op-button-scale 1s ease forwards;
  pointer-events: auto;
}
div#op-stage3 #stage3-buttons-box .button-box.area1 {
  top: calc(var(--scale) * 270px);
  left: calc(var(--scale) * 1040px);
  transform: scale(var(--scale));
  animation-delay: 0;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box.area1 {
    top: auto;
    left: auto;
    margin-bottom: 15vw;
    margin-right: -38vw;
  }
}
div#op-stage3 #stage3-buttons-box .button-box.area2 {
  top: calc(var(--scale) * 295px);
  left: calc(var(--scale) * 260px);
  transform: scale(var(--scale));
  animation-delay: 100ms;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box.area2 {
    top: auto;
    left: auto;
    margin-bottom: 21vw;
    margin-right: 16vw;
  }
}
div#op-stage3 #stage3-buttons-box .button-box.area3 {
  top: calc(var(--scale) * 675px);
  left: calc(var(--scale) * 83px);
  transform: scale(var(--scale));
  animation-delay: 200ms;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box.area3 {
    top: auto;
    left: auto;
    margin-bottom: -34vw;
    margin-right: -5vw;
  }
}
div#op-stage3 #stage3-buttons-box .button-box a {
  display: block;
  padding: 1.5rem;
  padding-right: 2.5rem;
  text-decoration: none;
  color: #2D3234;
  background-color: #F6F8F9;
  border: 4px solid #2D3234;
  border-radius: 1rem;
  transition: transform 0.2s;
  transform: scale(1);
}
div#op-stage3 #stage3-buttons-box .button-box a:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box a {
    border-radius: 0.5rem;
    border: 2px solid #2D3234;
    padding: 0.5rem;
    padding-right: 1rem;
  }
}
div#op-stage3 #stage3-buttons-box .button-box a > span {
  display: inline-block;
  line-height: 130%;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: -4%;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box a > span {
    font-size: 12px;
  }
}
div#op-stage3 #stage3-buttons-box .button-box a i {
  position: absolute;
  top: -15px;
  right: -23px;
  background-color: #2D3234;
  padding: 0.775rem;
  border-radius: 50%;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box a i {
    padding: 0.45rem;
  }
}
div#op-stage3 #stage3-buttons-box .button-box a i span.icon {
  background-image: url("../img/common/icon/zoom-icon.svg");
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-buttons-box .button-box a i span.icon {
    background-image: url("../img/common/icon/zoom-icon.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center top;
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
  }
}
div#op-stage3 #stage3-cloud-box {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-cloud-box {
    height: 100%;
    width: 100%;
  }
}
div#op-stage3 #stage3-cloud-box > figure {
  position: absolute;
  transform: scale(calc(var(--scale) * 1));
  transform-origin: top left;
  opacity: 1;
  filter: brightness(1.05) contrast(0.9);
}
div#op-stage3 #stage3-cloud-box.mac > figure {
  filter: brightness(1.17) contrast(0.81);
}
div#op-stage3 #stage3-cloud-box.mac .cloud1 {
  top: calc(687px * var(--scale, 1));
}
div#op-stage3 #stage3-cloud-box.mac .cloud2 {
  top: calc(113.5px * var(--scale, 1));
}
div#op-stage3 #stage3-cloud-box.mac .cloud3 {
  top: calc(319.5px * var(--scale, 1));
}
div#op-stage3 #stage3-cloud-box.scaled.mac .cloud1 {
  left: calc(35px * var(--scale, 1));
  top: calc(690px * var(--scale, 1));
}
div#op-stage3 #stage3-cloud-box.scaled.mac .cloud2 {
  left: calc(161px * var(--scale, 1));
  top: calc(113.5px * var(--scale, 1));
}
div#op-stage3 #stage3-cloud-box.scaled.mac .cloud3 {
  left: calc(1254px * var(--scale, 1));
  top: calc(321.5px * var(--scale, 1));
}
div#op-stage3 #stage3-cloud-box .cloud1 {
  left: calc(38px * var(--scale, 1));
  top: calc(686px * var(--scale, 1));
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-cloud-box .cloud1 {
    left: -10.7%;
    top: 50%;
    margin-top: 13.1%;
  }
  div#op-stage3 #stage3-cloud-box .cloud1 img {
    width: 19.4vw;
  }
}
div#op-stage3 #stage3-cloud-box .cloud2 {
  left: calc(163px * var(--scale, 1));
  top: calc(112.5px * var(--scale, 1));
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-cloud-box .cloud2 {
    left: 0.4%;
    top: 50%;
    margin-top: -37.9%;
  }
  div#op-stage3 #stage3-cloud-box .cloud2 img {
    width: 26.8vw;
  }
}
div#op-stage3 #stage3-cloud-box .cloud3 {
  left: calc(1251px * var(--scale, 1));
  top: calc(318.5px * var(--scale, 1));
}
@media screen and (max-width: 743px) {
  div#op-stage3 #stage3-cloud-box .cloud3 {
    left: 97.3%;
    top: 50%;
    margin-top: -19.7%;
  }
  div#op-stage3 #stage3-cloud-box .cloud3 img {
    width: 25.3vw;
  }
}

div#op-stage2 {
  margin-top: calc(var(--scale) * -125px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-width: 1280px;
  transition: none;
}
@media screen and (max-width: 743px) {
  div#op-stage2 {
    margin-top: 0;
    min-width: 100%;
  }
}
div#op-stage2 #stage2-video-box {
  position: relative;
  max-width: 1440px;
  min-width: 1280px;
  aspect-ratio: 1440/1080;
}
@media screen and (max-width: 743px) {
  div#op-stage2 #stage2-video-box {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100vh;
    max-height: 640px;
  }
}
div#op-stage2 #stage2-video-box::before {
  content: "";
  display: block;
  width: 1440px;
  height: 100%;
}
div#op-stage2 #stage2-video-box #stage2-video {
  height: 100%;
  position: absolute;
  right: 50%;
  transform: translateX(50%) scale(1);
  top: 0;
}
@media screen and (max-width: 743px) {
  div#op-stage2 #stage2-video-box #stage2-video {
    width: 171vw;
    height: auto;
    top: auto;
    bottom: 50%;
    transform: translateX(50%) translateY(50%) scale(1);
  }
}

div#op-stage1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  min-width: 1280px;
}
@media screen and (max-width: 743px) {
  div#op-stage1 {
    min-width: 100%;
  }
}
div#op-stage1.disappear {
  transform: scale(0);
}
div#op-stage1 #loading-figure-box {
  position: relative;
  margin-bottom: 40px;
}
div#op-stage1 #loading-figure-box figure.loading-figure {
  opacity: 0;
  transform: translateY(60%);
  transition: opacity 0.4s linear;
}
@media screen and (max-width: 743px) {
  div#op-stage1 #loading-figure-box figure.loading-figure img {
    width: 120px;
    height: 120px;
  }
}
div#op-stage1 #loading-figure-box figure.loading-figure.animate {
  opacity: 1;
  transform: translateY(0);
  animation: bounce 0.7s ease forwards;
}
div#op-stage1 #loading-figure-box figure.welcome-figure {
  position: absolute;
  top: 30px;
  left: 120px;
  opacity: 0;
  transform-origin: center bottom;
  transform: translateY(50%);
}
@media screen and (max-width: 743px) {
  div#op-stage1 #loading-figure-box figure.welcome-figure {
    top: 15px;
    left: 78px;
    width: 83px;
    height: 43px;
  }
  div#op-stage1 #loading-figure-box figure.welcome-figure img {
    width: 100%;
  }
}
div#op-stage1 #loading-figure-box figure.welcome-figure.animate {
  animation: bounce-scale 1s ease forwards;
}
div#op-stage1 #loading-figure-box figure.welcome-figure span.message {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 743px) {
  div#op-stage1 #loading-figure-box figure.welcome-figure span.message {
    font-size: 14px;
  }
}
div#op-stage1 #loading-figure-box figure.welcome-figure span.message.active {
  opacity: 1;
}
div#op-stage1 #loading-figure-box figure.welcome-figure span.message.welcome {
  left: 9px;
  top: 12px;
}
@media screen and (max-width: 743px) {
  div#op-stage1 #loading-figure-box figure.welcome-figure span.message.welcome {
    left: 8px;
    top: 10px;
  }
}
div#op-stage1 #loading-figure-box figure.welcome-figure span.message.loading {
  left: 15px;
  top: 12px;
}
@media screen and (max-width: 743px) {
  div#op-stage1 #loading-figure-box figure.welcome-figure span.message.loading {
    left: 13px;
    top: 10px;
  }
}
div#op-stage1 #loading-figure-box figure.welcome-figure span.message span {
  display: inline-block;
}
div#op-stage1 #loading-figure-box figure.welcome-figure span.message span.animate {
  animation: bounce-char 0.4s ease forwards;
  animation-delay: var(--delay);
}

#stage1-typography-box {
  text-align: center;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box .logo {
    height: 126px;
  }
  #stage1-typography-box .logo svg {
    height: 100%;
    width: auto;
  }
}
#stage1-typography-box .row {
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow-y: hidden;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box .row {
    margin-bottom: 11px;
  }
}
#stage1-typography-box .row.overflow {
  overflow-y: visible;
}
#stage1-typography-box img[data-character] {
  opacity: 0;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character] {
    height: 34px;
  }
}
#stage1-typography-box img[data-character].active {
  opacity: 1;
}
#stage1-typography-box img[data-character].animate {
  opacity: 1;
  transform: translateY(0);
}
#stage1-typography-box img[data-character].shadow {
  filter: drop-shadow(4px 4px 0px #020202);
}
#stage1-typography-box img[data-character=a] {
  margin-left: -0.9rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=a] {
    margin-left: -0.5rem;
  }
}
#stage1-typography-box img[data-character=a-with-water] {
  margin-left: -0.9rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=a-with-water] {
    margin-left: -0.5rem;
  }
}
#stage1-typography-box img[data-character=t] {
  margin-left: -0.9rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=t] {
    margin-left: -0.6rem;
  }
}
#stage1-typography-box img[data-character=e] {
  margin-left: -0.25rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=e] {
    margin-left: -0.15rem;
  }
}
#stage1-typography-box img[data-character=r] {
  margin-left: -0.2rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=r] {
    margin-left: -0.15rem;
  }
}
#stage1-typography-box img[data-character=n] {
  margin-left: -0.3rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=n] {
    margin-left: -0.2rem;
  }
}
#stage1-typography-box img[data-character=o] {
  margin-left: -0.3rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=o] {
    margin-left: -0.2rem;
  }
}
#stage1-typography-box img[data-character=w] {
  margin-left: -0.4rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=w] {
    margin-left: -0.3rem;
  }
}
#stage1-typography-box img[data-character=l] {
  margin-left: -0.3rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=l] {
    margin-left: -0.15rem;
  }
}
#stage1-typography-box img[data-character=d] {
  margin-left: -0.2rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=d] {
    margin-left: -0.18rem;
  }
}
#stage1-typography-box img[data-character=g] {
  margin-left: -0.3rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=g] {
    margin-left: -0.2rem;
  }
}
#stage1-typography-box img[data-character=k] {
  margin-left: -0.25rem;
}
@media screen and (max-width: 743px) {
  #stage1-typography-box img[data-character=k] {
    margin-left: -0.15rem;
  }
}

#stage3-typography-box {
  position: absolute;
  left: 0;
  top: 0;
  text-align: right;
  transform-origin: top left;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box {
    top: auto;
    left: auto;
    right: 12px;
    bottom: 12px;
  }
}
#stage3-typography-box .logo {
  opacity: 0;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box .logo {
    height: 115px;
  }
  #stage3-typography-box .logo svg {
    width: auto;
    height: 100%;
  }
}
#stage3-typography-box .lead-box {
  position: absolute;
  left: 1.6rem;
  bottom: 10px;
  letter-spacing: -1%;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box .lead-box {
    left: 0.4rem;
    bottom: 3px;
    letter-spacing: 0;
  }
}
#stage3-typography-box .lead-box p {
  font-size: 30px;
  font-weight: bold;
  color: #F6F8F9;
  line-height: 130%;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box .lead-box p {
    font-size: 12px;
  }
}
#stage3-typography-box .row {
  margin-bottom: 1rem;
  padding-left: 1rem;
  overflow-y: hidden;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box .row {
    margin-bottom: 0.5rem;
  }
}
#stage3-typography-box .row.second img[data-character] {
  height: 78px;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box .row.second img[data-character] {
    height: 32px;
  }
}
#stage3-typography-box .row.overflow {
  overflow-y: visible;
}
#stage3-typography-box img[data-character] {
  opacity: 1;
  transform: translateY(102%);
  transition: transform 0.4s, filter 0.5s linear;
  height: 82px;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character] {
    height: 34px;
  }
}
#stage3-typography-box img[data-character].active {
  opacity: 1;
}
#stage3-typography-box img[data-character].animate {
  opacity: 1;
  animation: raise-character 0.3s ease forwards;
  animation-delay: var(--delay);
}
#stage3-typography-box img[data-character].shadow {
  filter: drop-shadow(4px 4px 0px #020202);
}
#stage3-typography-box path[data-character] {
  opacity: 1;
  transform: translateY(100px);
  transition: transform 0.4s, filter 0.5s linear;
}
#stage3-typography-box path[data-character].active {
  opacity: 1;
}
#stage3-typography-box path[data-character].animate {
  opacity: 1;
  animation: raise-character-svg 0.3s ease forwards;
  animation-delay: var(--delay);
}
#stage3-typography-box path[data-character].shadow {
  filter: drop-shadow(4px 4px 0px #020202);
}
#stage3-typography-box img[data-character=a] {
  margin-left: -0.8rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=a] {
    margin-left: -0.5rem;
  }
}
#stage3-typography-box img[data-character=a-with-water] {
  margin-left: -0.9rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=a-with-water] {
    margin-left: -0.5rem;
  }
}
#stage3-typography-box img[data-character=t] {
  margin-left: -0.9rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=t] {
    margin-left: -0.6rem;
  }
}
#stage3-typography-box img[data-character=e] {
  margin-left: -0.15rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=e] {
    margin-left: -0.15rem;
  }
}
#stage3-typography-box img[data-character=r] {
  margin-left: 0;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=r] {
    margin-left: -0.15rem;
  }
}
#stage3-typography-box img[data-character=n] {
  margin-left: 0rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=n] {
    margin-left: -0.2rem;
  }
}
#stage3-typography-box img[data-character=o] {
  margin-left: -0.1rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=o] {
    margin-left: -0.2rem;
  }
}
#stage3-typography-box img[data-character=w] {
  margin-left: -0.3rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=w] {
    margin-left: -0.3rem;
  }
}
#stage3-typography-box img[data-character=l] {
  margin-left: -0.1rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=l] {
    margin-left: -0.15rem;
  }
}
#stage3-typography-box img[data-character=d] {
  margin-left: 0;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=d] {
    margin-left: -0.18rem;
  }
}
#stage3-typography-box img[data-character=g] {
  margin-left: -0.1rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=g] {
    margin-left: -0.2rem;
  }
}
#stage3-typography-box img[data-character=k] {
  margin-left: -0.05rem;
}
@media screen and (max-width: 743px) {
  #stage3-typography-box img[data-character=k] {
    margin-left: -0.15rem;
  }
}

#area-box-wrapper {
  padding-bottom: 80px;
  margin-top: 80px;
}
#area-box-wrapper .area-box:nth-child(n+2) {
  margin-top: 40px;
}
#area-box-wrapper .area-box {
  background-color: #fff;
  border-radius: 1rem;
}
#area-box-wrapper .area-box a {
  position: relative;
  text-decoration: none;
  color: #2D3234;
  padding: 35px 51px 51px 51px;
  display: flex;
}
#area-box-wrapper .area-box a:hover .area-right figure img {
  transform: scale(1.08);
}
@media screen and (max-width: 743px) {
  #area-box-wrapper .area-box a {
    display: block;
    padding: 24px;
  }
}
#area-box-wrapper .area-box a figure.arrow {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
#area-box-wrapper .area-box a figure.arrow i {
  background-size: 26px;
  width: 26px;
  height: 26px;
  top: 7px;
  left: 7px;
}
#area-box-wrapper .area-box a .area-left {
  width: 50%;
}
@media screen and (max-width: 743px) {
  #area-box-wrapper .area-box a .area-left {
    width: 100%;
    position: relative;
    z-index: 1;
  }
}
#area-box-wrapper .area-box a .area-left p.area-id {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  color: #009AB6;
}
#area-box-wrapper .area-box a .area-left p.area-id::before {
  content: "";
  mask: url("../img/common/icon/water.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 20px;
  height: 20px;
  background-color: black;
  display: inline-block;
  background-color: #009AB6;
  transform: translateY(-1px);
  margin-right: 2px;
}
#area-box-wrapper .area-box a .area-left h2.area-name {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 130%;
  text-stroke: 6px #2D3234;
  -webkit-text-stroke: 6px #2D3234;
  paint-order: stroke fill;
  margin-top: 40px;
  display: block;
}
@media screen and (max-width: 743px) {
  #area-box-wrapper .area-box a .area-left h2.area-name {
    font-size: 2rem;
    margin-top: 24px;
    line-height: 130%;
    text-stroke: 4px #2D3234;
    -webkit-text-stroke: 4px #2D3234;
  }
}
#area-box-wrapper .area-box a .area-left p.area-description {
  font-size: 1.25rem;
  margin-top: 2rem;
}
@media screen and (max-width: 743px) {
  #area-box-wrapper .area-box a .area-left p.area-description {
    font-size: 1rem;
    margin-top: 0.7rem;
  }
}
#area-box-wrapper .area-box a .area-right {
  position: relative;
}
@media screen and (max-width: 743px) {
  #area-box-wrapper .area-box a .area-right.area1 {
    height: 55vw;
  }
  #area-box-wrapper .area-box a .area-right.area2 {
    height: 56vw;
  }
  #area-box-wrapper .area-box a .area-right.area3 {
    height: 55vw;
  }
}
@media screen and (max-width: 743px) {
  #area-box-wrapper .area-box a .area-right figure {
    position: absolute;
  }
  #area-box-wrapper .area-box a .area-right figure.area1 {
    bottom: -11vw;
  }
  #area-box-wrapper .area-box a .area-right figure.area2 {
    bottom: -12vw;
  }
  #area-box-wrapper .area-box a .area-right figure.area3 {
    width: 105vw;
    right: 47%;
    transform: translateX(50%);
  }
}
@media screen and (min-width: 744px) {
  #area-box-wrapper .area-box a .area-right figure {
    position: absolute;
    bottom: 50%;
    transform: translateY(48%);
  }
  #area-box-wrapper .area-box a .area-right figure.area1, #area-box-wrapper .area-box a .area-right figure.area2 {
    width: 544px;
  }
  #area-box-wrapper .area-box a .area-right figure.area3 {
    width: 692px;
  }
  #area-box-wrapper .area-box a .area-right figure.translate-x {
    transform: translateY(52%) translateX(-100px);
  }
}
#area-box-wrapper .area-box a .area-right figure img {
  width: 100%;
  transition: transform 0.2s;
}

/*# sourceMappingURL=top.css.map */
