@charset "UTF-8";
.fontMont {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/*---------------------------------------------
共通部分
---------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #0069b7;
}

body * {
  letter-spacing: 0.05em;
  line-height: 160%;
}

a {
  color: #209cc6;
  text-decoration: underline;
}
a:hover {
  text-decoration: underline;
}

.commonWidth {
  margin: 0 auto;
}

.footerWidth {
  margin: 0 auto;
}

.noLink {
  opacity: 0.5;
  pointer-events: none;
  cursor: inherit;
}

.icoCircle {
  background: linear-gradient(157deg, #209cc6 0%, #7dc3c8 49%, #f1d3d2 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  display: inline-block;
}

.topTitleArea .titleJp {
  border-bottom: solid 1.5px #000000;
}
.topTitleArea .titleJp .titleJpText {
  font-weight: 700;
}

.errorText {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .wrapWidth {
    width: 92.3vw;
    margin: 0 auto;
  }
  .commonWidth {
    width: 92.3vw;
  }
  .commonWidthSp {
    width: 92.3vw;
    margin: 0 auto;
  }
  .footerWidth {
    width: 92.3vw;
    margin: 0 auto;
  }
  .icoCircle {
    width: 12px;
    height: 12px;
  }
  .contentArea {
    padding-bottom: 80px;
  }
  .errorText {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
@media print, screen and (min-width: 768px) {
  .wrapWidth {
    width: clamp(712px, 92.7vw, 1780px);
    margin: 0 auto;
  }
  .wrapWidthPc {
    width: clamp(712px, 92.7vw, 1780px);
    margin: 0 auto;
  }
  .commonWidth {
    width: 90vw;
    max-width: 1200px;
  }
  .commonWidthPc {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footerWidth {
    width: 78vw;
    max-width: 1500px;
  }
  .icoCircle {
    width: 16px;
    height: 16px;
  }
  .contentArea {
    padding-bottom: min(10.4vw, 200px);
  }
}
/*---------------------------------------------
secHeader
---------------------------------------------*/
/*---------------------------------------------
secFooter
---------------------------------------------*/
.secFooter {
  background-color: #ffffff;
  color: #000000;
}
.secFooter .wrapWidth {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 36px 10px;
}
.secFooter .wrapWidth img {
  max-width: 126px;
  width: 60%;
  display: block;
  margin: auto;
}
.secFooter .wrapWidth span {
  font-size: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .secFooter {
    padding-bottom: 52px;
  }
}
/*---------------------------------------------
テキスト分割アニメーション
---------------------------------------------*/
.txtSplitAnim {
  position: relative;
  opacity: 0;
  overflow: hidden;
}
.txtSplitAnim.spanComp {
  opacity: 1;
}
.txtSplitAnim span {
  position: relative;
  opacity: 0;
  top: 1.5em;
  transition: opacity 1s, top 0.8s;
  transition-timing-function: cubic-bezier(0, 1.21, 0.39, 1.07);
}
.txtSplitAnim.animated span {
  opacity: 1;
  top: 0em;
}

/*---------------------------------------------
エラー系テキスト
---------------------------------------------*/
.commonErrorText {
  line-height: 200%;
  text-align: justify;
}/*# sourceMappingURL=common.css.map */