@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  position: relative;
  color: #166CC6;
  font-family: "Noto Sans JP", "Noto Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: left;
}

p {
  color: #166CC6;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

a:hover {
  opacity: 0.7;
  transition: 0.7s;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 1226px) {
  .sp {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
.sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

/*==========
wrapper
========== */
.wrapper {
  position: relative;
}

/*==========
header
========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #166CC6;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 999;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
}
.header__logo img {
  width: 117px;
  height: auto;
}
.header__credit {
  color: #fff;
  font-size: 12px;
}

/*==========
mv
========== */
.mv {
  position: relative;
  margin-top: 60px;
  padding: 106px 0 142px;
  background: url(../images/bg_pc.png) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .mv {
    background: url(../images/bg_sp.png) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.mv h1 {
  text-align: center;
  animation: fadeUpMv 1.2s ease-out forwards;
  opacity: 0;
}
.mv h1 img {
  max-width: 746px;
  width: 100%;
  height: auto;
  margin: 0 auto 22px;
}
@media screen and (max-width: 980px) {
  .mv h1 img {
    max-width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .mv h1 img {
    max-width: 84.65%;
  }
}
.mv h1 + p {
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .mv h1 + p {
    font-size: 36px;
    line-height: 1.3;
  }
}
.mv p {
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  animation: fadeUpMv 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.mv .scroll {
  position: absolute;
  left: 14px;
  bottom: 29px;
  animation: fadeUpMv 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 0.7s;
}
@media screen and (max-width: 767px) {
  .mv .scroll {
    left: 15px;
    bottom: 18.41%;
  }
}

@keyframes fadeUpMv {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.entry {
  position: fixed;
  right: 15px;
  bottom: 30px;
  z-index: 999;
  width: 190px;
  height: 82px;
}
@media screen and (max-width: 767px) {
  .entry {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    width: 273px;
  }
}
.entry a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 82px;
  background: #FCDE67;
  border-radius: 999px;
  color: #166CC6;
  font-weight: 900;
  text-align: center;
  line-height: 1.6;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .entry a {
    width: 273px;
  }
}
.entry a:hover {
  background: #166CC6;
  color: #FCDE67;
  opacity: 1;
  text-decoration: none;
}

/*==========
main
========== */
main {
  margin: 10px;
  padding: 24px 0 100px;
  background: #F3F3F3;
}
@media screen and (max-width: 767px) {
  main {
    margin: 0;
    padding-bottom: 0;
  }
}
main h2 {
  margin-bottom: 40px;
  color: #166CC6;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  main h2 {
    font-size: 36px;
  }
}
main .nav {
  margin-bottom: 87px;
}
@media screen and (max-width: 767px) {
  main .nav {
    margin: 20px 4%;
  }
}
main .nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
main .nav__list__item {
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  main .nav__list__item {
    margin: 0 50px 20px 0;
  }
}
main .nav__list__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  main .nav__list__item:nth-child(2n) {
    margin-right: 0;
  }
}
main .nav__list__item a {
  position: relative;
  padding-left: 15px;
  color: #166CC6;
  font-weight: bold;
}
main .nav__list__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%) rotate(135deg);
  width: 9px;
  height: 9px;
  border-top: 2px solid #166CC6;
  border-right: 2px solid #166CC6;
  transition: top 0.2s ease;
}
main .nav__list__item a:hover {
  opacity: 1;
}
main .nav__list__item a:hover::before {
  top: 55%;
}
main .lead {
  max-width: 750px;
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  main .lead {
    width: 86%;
  }
}
main .about {
  max-width: 1193px;
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 960px) {
  main .about {
    width: 86%;
  }
}
main .about__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  main .about__list {
    display: block;
  }
}
main .about__list__item {
  max-width: 364px;
  width: 100%;
  margin-right: 50px;
}
@media screen and (max-width: 1148px) {
  main .about__list__item {
    max-width: 280px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 960px) {
  main .about__list__item {
    max-width: 260px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  main .about__list__item {
    max-width: 656px;
    width: 100%;
    margin: 0 auto 60px;
  }
}
main .about__list__item:last-child {
  margin-right: 0;
}
main .about__list__item__img {
  margin-bottom: 24px;
}
main .about__list__item__img img {
  width: 100%;
}
main .about__list__item h3 {
  margin-bottom: 20px;
  color: #166CC6;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0;
}
main .about__list__item__text {
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  main .standards {
    padding: 100px 0;
    background: #fff;
  }
}
main .standards__list {
  margin-top: 20px;
}
main .standards__list__item {
  margin-bottom: 20px;
  color: #166CC6;
  font-size: 24px;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.45;
}
main .standards__list__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  main .guideline {
    padding: 0 0 100px;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  main .flow {
    padding: 0 0 100px;
    background: #fff;
  }
}
main .flow__list__item {
  display: flex;
  margin-bottom: 60px;
}
main .flow__list__item:last-child {
  margin-bottom: 0;
}
main .flow__list__item__step {
  margin-right: 36px;
  color: #166CC6;
}
@media screen and (max-width: 767px) {
  main .flow__list__item__step {
    margin-right: 20px;
  }
}
main .flow__list__item h3 {
  margin-top: 0;
  color: #166CC6;
  line-height: 1;
  text-align: left;
  line-height: 1.3;
}
main .flow__list__item h3 span {
  font-size: 16px;
}
main .flow__list__item__step {
  display: flex;
  margin-top: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 19px;
}
main .flow__list__item__step span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #166CC6;
  color: #ffffff;
  font-family: "Noto Sans JP", "Noto Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin: -5px 0 0 10px;
}

.container {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 60px 100px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .container {
    width: 92%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    margin-bottom: 0;
    padding: 0 5%;
  }
}
.container h3 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.container__box {
  padding: 20px 30px;
  background: #FBF3D3;
  border-radius: 5px;
}
.container .center {
  text-align: center;
}
.container .bold {
  font-weight: bold;
}
.container__note {
  margin-top: 10px;
  margin: 10px 0 40px;
}
@media screen and (max-width: 767px) {
  .container__note {
    margin: 10px 0 60px;
  }
}
.container__note__item {
  padding-left: 1em;
  text-indent: -1em;
  color: #166CC6;
  font-size: 12px;
  line-height: 1.6;
}
.container__detail__item {
  display: flex;
}
.container__detail__item:first-child {
  padding-bottom: 20px;
  border-bottom: dotted 2px #166CC6;
}
.container__detail__item:nth-child(2) {
  margin-top: 20px;
}
.container__detail__item dt,
.container__detail__item dd {
  width: 50%;
  line-height: 1.6;
}
.container__detail__item dt {
  font-weight: normal;
}
.container__detail__item dd {
  font-weight: bold;
}

/*==========
contact
========== */
.contact {
  padding: 100px 0;
  background: #166CC6;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 0 0 100px;
    background: #fff;
  }
}
.contact h3 {
  margin-top: 0;
}
.contact table {
  border-collapse: collapse;
  width: 100%;
}
.contact table tr:first-child {
  border-bottom: dotted 2px #166CC6;
}
.contact table tr:first-child th,
.contact table tr:first-child td {
  padding-bottom: 20px;
}
.contact table tr:last-child th,
.contact table tr:last-child td {
  padding-top: 20px;
}
.contact table tr th {
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact table tr th {
    width: 20%;
  }
}
.contact table tr td {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact table tr td {
    width: 75%;
    padding-left: 5%;
    word-break: break-all;
  }
}

/*==========
bnr
========== */
.bnr {
  padding-bottom: 85px;
  background: #166CC6;
}
@media screen and (max-width: 767px) {
  .bnr {
    padding: 100px 0 20px;
  }
}
.bnr__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 512px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .bnr__list {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .bnr__list__item {
    margin-bottom: 40px;
  }
}
.bnr__list__item a {
  opacity: 1;
}
.bnr__list__item a img {
  transition: transform 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.bnr__list__item a img:hover {
  transform: translateY(-4px);
}

/*==========
footer
========== */
.footer {
  padding-bottom: 20px;
  background: #166CC6;
  color: #fff;
}
@media screen and (max-width: 1340px) {
  .footer {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0 5% 100px;
  }
}
.footer p {
  color: #fff;
  font-size: 12px;
  text-align: center;
}
.footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 25px;
}
@media screen and (max-width: 767px) {
  .footer__list {
    margin: 20px 0 20px;
  }
}
.footer__list__item {
  border-right: solid 1px #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__list__item {
    margin-bottom: 20px;
  }
}
.footer__list__item:last-child {
  border: none;
}
.footer__list__item a {
  padding: 0 10px;
  color: #fff;
  font-size: 12px;
}
.footer__list__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer small p {
  font-size: 10px;
  text-align: center;
  line-height: 1.8;
}

/*==========
article-end
========== */
#article-end {
  display: block;
  margin-top: -1px;
  opacity: 0;
}/*# sourceMappingURL=style.css.map */