﻿@charset "UTF-8";
/* SP font size */
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* common
---------------------------------------------------------------------------- */
/* common
---------------------------------------------------------------------------- */
.p-100th,
.p-100th_history {
  font-family: "Zen Old Mincho", serif;
}

.l-inner {
  width: 92%;
  max-width: 76.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: inherit;
    padding: 0 4.6666666667vw;
  }
}

.tac {
  text-align: center;
}

/* title */
.c-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .nopc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nosp {
    display: none;
  }
}
/* hover */
@media screen and (min-width: 768px) {
  .c-hover {
    display: block;
    transition: opacity 0.4s;
  }
  .c-hover:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

/* button */
.c-button {
  position: relative;
  display: block;
  width: 30rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  background: #1c82e0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  padding: 1rem 3rem 1rem 3rem;
  border-radius: 3rem;
  text-decoration: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 50.6666666667vw;
    font-size: 2.6rem;
    line-height: 1.5384615385;
    font-weight: 500;
    font-size: 3.4666666667vw;
    padding: 1.7333333333vw 4vw 1.3333333333vw 4vw;
  }
}
.c-button:after {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: url("/100th/img/top/icon_arrow.svg") no-repeat center center;
  background-size: 100% auto;
  width: 1.2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .c-button:after {
    right: 2.4vw;
    width: 1.6vw;
    height: 2.6666666667vw;
  }
}

/* animetion
---------------------------------------------------------------------------- */
.fadeUp {
  opacity: 0;
  transform: translateY(-20px);
  transition: 1s;
}
.fadeUp.is-animeted {
  animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.fadein {
  opacity: 0;
  transition: 1s;
}
.fadein.is-animeted {
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.textanimation span {
  /*	animation: showText 3s backwards;*/
  display: inline-block;
}

.textanimation > span {
  overflow: hidden;
}

.textanimation > span > span {
  animation: showTextFromBottom 0.4s backwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.delay1 {
  animation-delay: 0.4s !important;
}

.delay2 {
  animation-delay: 0.8s !important;
}

.delay3 {
  animation-delay: 1.2s !important;
}

.delay4 {
  animation-delay: 1.6s !important;
}