@font-face {
  font-family: "Autography";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Autography.otf);
}
@font-face {
  font-family: "BebasNeue";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/BebasNeue.otf);
}
@font-face {
  font-family: "SourceHanCodeJP";
  font-style: normal;
  font-weight: bold;
  src: url(../fonts/SourceHanCodeJP-Bold.otf);
}
@font-face {
  font-family: "A-OTFRyuminProEH-KL";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/A-OTFRyuminProEH-KL.otf);
}
.en {
  font-family: "lato", sans-serif;
}

.title_area {
  text-align: center;
}
.title_area h2 {
  color: #2c5c97;
  display: inline-block;
  font-family: "lato", sans-serif;
  font-size: 2.8rem;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .title_area h2 {
    font-size: 2.4rem;
  }
}
.title_area h2::after {
  background-color: #2c5c97;
  bottom: 33px;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  right: -60px;
  transform: rotate(-55deg);
  width: 56px;
}
@media screen and (max-width: 768px) {
  .title_area h2::after {
    bottom: 26px;
    right: -39px;
    width: 40px;
  }
}

h3 {
  color: #000;
  font-size: 3.2rem;
  margin-bottom: 48px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

.more {
  margin: 60px 0 0;
}
.more a {
  align-items: center;
  background-color: #2c5c97;
  border-radius: 22px;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  height: 45px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s;
  width: 205px;
}
.more a::after {
  background: url(../image/arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  height: 10px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
  width: 15px;
}
.more a:hover {
  background-color: #000;
}
.more a:hover::after {
  right: 6%;
}

.mask {
  overflow: hidden;
  position: relative;
}
.mask.block img {
  opacity: 1 !important;
}

.mask::after {
  background: #2c5c97;
  bottom: 0;
  content: "";
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask img {
  opacity: 0;
}

.mask.is-animated img {
  -webkit-animation: mask-image 1.2s cubic-bezier(0.8, 0, 0.17, 1);
  animation: mask-image 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

@-webkit-keyframes mask-image {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  61% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mask-image {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  61% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mask.is-animated::after {
  -webkit-animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
  display: block;
}

@-webkit-keyframes mask-bg {
  0% {
    transform: translate(-100%, 0);
  }
  40%, 60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}

@keyframes mask-bg {
  0% {
    transform: translate(-100%, 0);
  }
  40%, 60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
main {
  overflow: hidden;
}

.wrapper {
  background-color: #4cc764;
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
}

.page {
  margin: 0 auto;
  width: 100%;
}

.btn_area {
  width: 100%;
}

.btn {
  -webkit-animation: anime1 0.5s ease 0s infinite alternate;
  animation: anime1 0.5s ease 0s infinite alternate;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 90%;
}

@-webkit-keyframes anime1 {
  from {
    transform: scale(0.95, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}

@keyframes anime1 {
  from {
    transform: scale(0.95, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
.line_wrapper {
  color: #000;
  font-size: 16px;
}

.detail_wrapper {
  background-color: #fff;
  margin: 0 auto;
  max-width: 480px;
  width: 100%;
}

.detail_inner {
  background-color: #fff;
  color: #000;
  margin: 20px auto;
  width: 88%;
}
.detail_inner .head {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
}
.detail_inner p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
/*# sourceMappingURL=sourcemaps/index.css.map */