<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes simpleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes simpleFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes simpleFadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink_effect {
  0% {
    opacity: 1;
  }
  2% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.kv--title {
  opacity: 0;
}
@media screen and (min-width: 640px) {
  .kv--title {
    animation: simpleFadeIn 1s ease-in-out forwards;
  }
}
@media screen and (max-width: 639px) {
  .kv--title {
    animation: simpleFadeIn 1s ease-in-out forwards, simpleFadeOut 1.5s ease-in-out 1.5s forwards;
  }
}

.kv--list {
  opacity: 0;
}
@media screen and (min-width: 640px) {
  .kv--list {
    animation: simpleFadeIn 2s ease-in-out 1s forwards;
  }
}
@media screen and (max-width: 639px) {
  .kv--list {
    animation: simpleFadeIn 2.5s ease-in-out 2s forwards;
  }
}

.kv--scroll {
  opacity: 0;
}
@media screen and (min-width: 640px) {
  .kv--scroll {
    animation: simpleFadeIn 2s ease-in-out 1s forwards;
  }
}
@media screen and (max-width: 639px) {
  .kv--scroll {
    animation: simpleFadeIn 2.5s ease-in-out 2s forwards;
  }
}

@media screen and (max-width: 639px) {
  .kv--list .tkg .kv--more img:first-child {
    animation: 10s linear 4s blink_effect;
    animation-iteration-count: infinite;
  }
}

@media screen and (max-width: 639px) {
  .kv--list .bokutei .kv--more img:first-child {
    animation: 10s linear 4.5s blink_effect;
    animation-iteration-count: infinite;
  }
}

@media screen and (max-width: 639px) {
  .kv--list .banri .kv--more img:first-child {
    animation: 10s linear 5s blink_effect;
    animation-iteration-count: infinite;
  }
}

@media screen and (max-width: 639px) {
  .kv--list .amida .kv--more img:first-child {
    animation: 10s linear 5.5s blink_effect;
    animation-iteration-count: infinite;
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(20deg);
    transform: scale(0.1) rotate(20deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.about--content.topcontent .about--subtitle {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
}
@media screen and (min-width: 640px) {
  .about--content.topcontent .about--subtitle {
    transform: translateY(30px);
    transition-delay: .2s;
  }
}
@media screen and (max-width: 639px) {
  .about--content.topcontent .about--subtitle {
    transform: translateY(30px);
    transition-delay: 0s;
  }
}
.animated .about--content.topcontent .about--subtitle {
  transform: translateY(0);
  opacity: 1;
}
.about--content.topcontent .about--image {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
}
@media screen and (min-width: 640px) {
  .about--content.topcontent .about--image {
    transform: translateY(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.topcontent .about--image {
    transform: translateY(30px);
    transition-delay: .2s;
  }
}
.animated .about--content.topcontent .about--image {
  transform: translateY(0);
  opacity: 1;
}
.about--content.topcontent .about--para {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .4s;
}
@media screen and (min-width: 640px) {
  .about--content.topcontent .about--para {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.topcontent .about--para {
    transform: translateX(-30px);
  }
}
.animated .about--content.topcontent .about--para {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content01 .about--subtitle {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
}
@media screen and (min-width: 640px) {
  .about--content.content01 .about--subtitle {
    transform: translateY(30px);
    transition-delay: .2s;
  }
}
@media screen and (max-width: 639px) {
  .about--content.content01 .about--subtitle {
    transform: translateY(30px);
    transition-delay: 0s;
  }
}
.animated .about--content.content01 .about--subtitle {
  transform: translateY(0);
  opacity: 1;
}
.about--content.content01 .about--image {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
}
@media screen and (min-width: 640px) {
  .about--content.content01 .about--image {
    transform: translateY(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content01 .about--image {
    transform: translateY(30px);
    transition-delay: .2s;
  }
}
.animated .about--content.content01 .about--image {
  transform: translateY(0);
  opacity: 1;
}
.about--content.content01 .about--para {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .4s;
}
@media screen and (min-width: 640px) {
  .about--content.content01 .about--para {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content01 .about--para {
    transform: translateX(-30px);
  }
}
.animated .about--content.content01 .about--para {
  transform: translateX(0);
  opacity: 1;
}

.about--content.content02 .about--subtitle {
  transition: opacity .5s ease,transform .5s ease;
	opacity: 0;
}
@media screen and (min-width: 640px) {
  .about--content.content02 .about--subtitle {
    transform: translateX(-30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content02 .about--subtitle {
    transform: translateX(30px);
  }
}
.animated .about--content.content02 .about--subtitle {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content02 .about--subtitle2 {
  transition: opacity .5s ease,transform .5s ease;
	opacity: 0;
}
@media screen and (min-width: 640px) {
  .about--content.content02 .about--subtitle2 {
    transform: translateX(-30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content02 .about--subtitle2 {
    transform: translateX(30px);
  }
}
.animated .about--content.content02 .about--subtitle2 {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content02 .about--image {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .2s;
}
@media screen and (min-width: 640px) {
  .about--content.content02 .about--image {
    transform: translateX(-30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content02 .about--image {
    transform: translateX(30px);
  }
}
.animated .about--content.content02 .about--image {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content02 .about--para {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .4s;
}
@media screen and (min-width: 640px) {
  .about--content.content02 .about--para {
    transform: translateX(-30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content02 .about--para {
    transform: translateX(30px);
  }
}
.animated .about--content.content02 .about--para {
  transform: translateX(0);
  opacity: 1;
}

.about--subcontent--title, .about--subcontent--lead, .about--subcontent--para, .mission--title, .mission--lead, .mission--dress, .mission--para, .contents--title, .contents--linklist_item--01, .contents--linklist_item--02, .message--title, .message--speaker, .message--lead, .message--para {
  opacity: 1;
  transform: translateX(30px);
  transition: opacity .5s ease,transform .5s ease;
  z-index: 1;
}
.animated.about--subcontent--title, .animated.about--subcontent--lead, .animated.about--subcontent--para, .animated.mission--title, .animated.mission--lead, .animated.mission--dress, .animated.mission--para, .animated.contents--title, .animated.contents--linklist_item--01, .animated.contents--linklist_item--02, .animated.message--title, .animated.message--speaker, .animated.message--lead, .animated.message--para {
  transform: translateX(0);
  opacity: 1;
}

.page_case--ba--title {
  animation-name: flipInX;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-play-state: paused;
  z-index: 1;
}
.animated.page_case--ba--title {
  animation-play-state: running;
}

.page_case--ba--before, .page_case--ba--after, .page_case--ba--footer {
  animation-name: jackInTheBox;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-play-state: paused;
  z-index: 1;
}
.animated.page_case--ba--before, .animated.page_case--ba--after, .animated.page_case--ba--footer {
  animation-play-state: running;
}

.about--subcontent--lead, .mission--lead, .contents--linklist_item--01, .message--para {
  transition-delay: .1s;
}

.about--subcontent--para, .contents--linklist_item--02 {
  transition-delay: .2s;
}

.about--content.content03 .about--subtitle {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
}
@media screen and (min-width: 640px) {
  .about--content.content03 .about--subtitle {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content03 .about--subtitle {
    transform: translateX(-30px);
  }
}
.animated .about--content.content03 .about--subtitle {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content03 .about--image {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .2s;
}
@media screen and (min-width: 640px) {
  .about--content.content03 .about--image {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content03 .about--image {
    transform: translateX(-30px);
  }
}
.animated .about--content.content03 .about--image {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content03 .about--para {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .4s;
}
@media screen and (min-width: 640px) {
  .about--content.content03 .about--para {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content03 .about--para {
    transform: translateX(-30px);
  }
}
.animated .about--content.content03 .about--para {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content04 .about--subtitle {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
}
@media screen and (min-width: 640px) {
  .about--content.content04 .about--subtitle {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content04 .about--subtitle {
    transform: translateX(-30px);
  }
}
.animated .about--content.content04 .about--subtitle {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content04 .about--image {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .2s;
}
@media screen and (min-width: 640px) {
  .about--content.content04 .about--image {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content04 .about--image {
    transform: translateX(-30px);
  }
}
.animated .about--content.content04 .about--image {
  transform: translateX(0);
  opacity: 1;
}
.about--content.content04 .about--para {
  opacity: 0;
  transition: opacity .5s ease,transform .5s ease;
  transition-delay: .4s;
}
@media screen and (min-width: 640px) {
  .about--content.content04 .about--para {
    transform: translateX(30px);
  }
}
@media screen and (max-width: 639px) {
  .about--content.content04 .about--para {
    transform: translateX(-30px);
  }
}
.animated .about--content.content04 .about--para {
  transform: translateX(0);
  opacity: 1;
}

.mission--title.animated {
  transform: translate(-50%, 0);
}

.contents--title.animated {
  transform: translate(-50%, 0);
}

.page_case--ba .arrow {
  opacity: 0;
  transition: opacity 1s ease,transform 1s ease;
  transition-delay: .3s;
  z-index: 1;
}
@media screen and (min-width: 640px) {
  .page_case--ba .arrow {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 639px) {
  .page_case--ba .arrow {
    transform: translateY(-100%);
  }
}
@media screen and (min-width: 640px) {
  .page_case--ba .animated + .arrow {
    opacity: 1;
    transform: translate(-50%);
  }
}
@media screen and (max-width: 639px) {
  .page_case--ba .animated + .arrow {
    opacity: 1;
    transform: translate(0);
  }
}
.page_case--ba--after {
  animation-delay: .2s;
}
@media screen and (min-width: 640px) {
  .page_case--ba--bg {
    transform: scale(0);
    transform-origin: center;
    transition: transform .5s ease-in-out;
  }
  .page_case--ba--bg.animated {
    transform: scale(1);
  }
}
</pre></body></html>