@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
/******************************************************************************
 CSS初期設定
******************************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, blockquote, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
  background: #f7f6f5;
  color: #243d57;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  cursor: pointer;
}

/******************************************************************************
 共通設定
******************************************************************************/
.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

/******************************************************************************
 top-view
******************************************************************************/
.top-view {
  width: 100%;
  height: 100vh;
  background-color: #f7f6f5;
}

.top-view__inner {
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-view__box {
  margin-top: 48px;
}

.top-view__box-img01 {
  text-align: center;
}
.top-view__box-img01 img {
  width: 120px;
}

.top-view__box-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}
@media (min-width:375px) and (max-width: 767px) {
  .top-view__box-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 374px) {
  .top-view__box-title {
    font-size: 1.125rem;
  }
}
.top-view__box-title span {
  font-size: inherit;
  font-weight: inherit;
  display: none;
}
.top-view__box-title::after {
  content: "|";
  -webkit-animation: typinganime 0.8s ease infinite;
          animation: typinganime 0.8s ease infinite;
}

@-webkit-keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-view__box-items {
  margin-top: 80px;
  text-align: center;
}

.top-view__box-body01 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-view__box-img02 {
  text-align: center;
  margin-right: 24px;
}
@media (min-width:375px) and (max-width: 767px) {
  .top-view__box-img02 {
    margin-right: 16px;
  }
}
@media screen and (max-width: 374px) {
  .top-view__box-img02 {
    margin-right: 12px;
  }
}
.top-view__box-img02 img {
  width: 32px;
}

.top-ex-text {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 16px;
}

.top-view__box-left h2 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2px;
  text-align: left;
}
@media (min-width:375px) and (max-width: 767px) {
  .top-view__box-left h2 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 374px) {
  .top-view__box-left h2 {
    font-size: 1rem;
  }
}
.top-view__box-left span {
  display: block;
  width: 160px;
  height: 2px;
  background-color: #243d57;
  position: relative;
  transform: scale(0, 1);
  transform-origin: top left;
  -webkit-animation: arrow01 5s ease-in-out infinite forwards;
          animation: arrow01 5s ease-in-out infinite forwards;
}
@media (min-width:375px) and (max-width: 767px) {
  .top-view__box-left span {
    width: 140px;
  }
}
@media screen and (max-width: 374px) {
  .top-view__box-left span {
    width: 132px;
  }
}
.top-view__box-left span::after {
  content: "";
  display: block;
  width: 8px;
  height: 15px;
  border-right: 2px solid #243d57;
  transform: rotate(-45deg) scale(1, 0);
  transform-origin: right bottom;
  position: absolute;
  bottom: 2px;
  right: 1px;
  -webkit-animation: arrow02 5s ease-in-out infinite forwards;
          animation: arrow02 5s ease-in-out infinite forwards;
}

@-webkit-keyframes arrow01 {
  0% {
    transform: scale(0, 1);
  }
  30% {
    transform: scale(0, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  85% {
    transform: scale(1, 1);
    opacity: 1;
  }
  90% {
    transform: scale(1, 1);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes arrow01 {
  0% {
    transform: scale(0, 1);
  }
  30% {
    transform: scale(0, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  85% {
    transform: scale(1, 1);
    opacity: 1;
  }
  90% {
    transform: scale(1, 1);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes arrow02 {
  0% {
    transform: rotate(-45deg) scale(1, 0);
  }
  45% {
    transform: rotate(-45deg) scale(1, 0);
  }
  55% {
    transform: rotate(-45deg) scale(1, 1);
  }
  85% {
    transform: rotate(-45deg) scale(1, 1);
    opacity: 1;
  }
  90% {
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }
  100% {
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }
}
@keyframes arrow02 {
  0% {
    transform: rotate(-45deg) scale(1, 0);
  }
  45% {
    transform: rotate(-45deg) scale(1, 0);
  }
  55% {
    transform: rotate(-45deg) scale(1, 1);
  }
  85% {
    transform: rotate(-45deg) scale(1, 1);
    opacity: 1;
  }
  90% {
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }
  100% {
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }
}
.top-view__box-right {
  margin-left: 24px;
}
@media (min-width:375px) and (max-width: 767px) {
  .top-view__box-right {
    margin-left: 12px;
  }
}
@media screen and (max-width: 374px) {
  .top-view__box-right {
    margin-left: 12px;
  }
}
.top-view__box-right a {
  display: inline-block;
  background-color: #243d57;
  font-size: 1rem;
  color: #ff9933;
  text-align: center;
  padding: 8px 8px 11px 8px;
  border-radius: 4px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease 0s;
}
.top-view__box-right a:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}

.top-view-img03 {
  margin-top: auto;
  margin-bottom: 48px;
}
.top-view-img03 img {
  width: 32px;
}