h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
small,
div {
  font-family: "Hiragino Sans", sans-serif;
}
/* font */
@font-face {
  font-family: "ZenMaruGothic-Regular";
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/ZenMaruGothic-Regular.ttf);
}
@font-face {
  font-family: "ZenMaruGothic-Bold";
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/ZenMaruGothic-Bold.ttf);
}
.zen-maru-regular {
  font-family: ZenMaruGothic-Regular;
}
.zen-maru-bold {
  font-family: ZenMaruGothic-Bold;
}
.font-weight-600 {
  font-weight: 600;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
.w-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}
.c-blue {
  color: #1b3988;
}
.bg-yellow {
  background-color: #fcd971;
}
.fs-text {
  font-size: 18px;
  line-height: 1.5;
}
.emphasis {
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}

@media (max-width: 767px) {
  .w-inner {
    padding: 0 20px;
  }
  .fs-text {
    font-size: 16px;
  }
}

/* header start */

.header-head {
  background-color: #1b3988;
  height: 40px;
}
.header-inner {
  padding: 30px 50px;
}
.header-logo {
  width: 320px;
}

@media (max-width: 767px) {
  .header-head {
    height: 20px;
  }
  .header-inner {
    padding: 20px 20px;
  }
  .header-logo {
    width: 160px;
  }
}
/* header end */

/* cta start */

.cta {
  padding: 180px 0;
}
.cta-banner {
  width: 640px;
  margin: 0 auto 90px;
}
.cta-btn-wrap {
  gap: 60px;
}
.cta-btn {
  position: relative;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  background-color: #1b3988;
  padding: 0.5em 4em;
  border-radius: 60px;
}
.cta-btn:hover {
  opacity: 0.8;
}
.cta-btn-small {
  font-size: 30px;
}
.cta-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url(../image/arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.cta-btn-banner:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .cta {
    padding: 60px 0 80px;
  }
  .cta-banner {
    max-width: 360px;
    width: 100%;
    margin-bottom: 50px;
  }
  .cta-btn-wrap {
    gap: 30px;
  }
  .cta-btn {
    font-size: 20px;
    padding: 0.5em 3em;
  }
  .cta-btn::after {
    width: 20px;
    height: 20px;
    right: 20px;
  }
  .cta-btn-small {
    font-size: 16px;
  }
}

/* cta-area end */

/* footer start */

footer {
  background-color: #1b3988;
  padding: 70px 0;
}
.footer-inner {
  padding: 0 50px;
}
.footer-logo {
  width: 380px;
  margin-bottom: 20px;
}
.sns-wrap {
  gap: 20px;
}
.sns-icon {
  width: 40px;
}
.copyright {
  font-size: 16px;
}

@media (max-width: 767px) {
  .footer-inner {
    padding: 0 20px;
    gap: 30px;
  }
  .footer-logo {
    width: 280px;
  }
  .sns-wrap {
    margin-bottom: 20px;
  }
  .copyright {
    font-size: 10px;
  }
}

/* footer end */

/* animation */
.slidein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 1.0s;
  &.slidein-bottom{
      transform: translate(0,100%);
  }
  &.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}
