@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@200;300;400;500;700;900&display=swap");
.js-split span {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1), -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  -webkit-transform: translate(20%, 100%);
          transform: translate(20%, 100%);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}
.js-split span::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1), -webkit-transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}
.js-split span.row {
  overflow: hidden;
  display: block;
  -webkit-transform: none;
          transform: none;
}
.js-split span.row:before {
  display: none;
}
.js-split .animate {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.js-split .animate:before {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.js-text-reveal {
  position: relative;
  display: inline-block;
}
.js-text-reveal span {
  opacity: 0;
}
.js-text-reveal.main-ttl02.is-visible span {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.js-text-reveal.main-ttl02.is-visible::after {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.js-text-reveal.is-visible span {
  -webkit-animation: text-visible 0.001s forwards;
          animation: text-visible 0.001s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js-text-reveal.is-visible::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 0%;
  height: 100%;
  background: #fff;
  -webkit-animation: anim-reveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: anim-reveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.js-text-reveal.-blue.is-visible::after {
  background: #0D448E;
}

@-webkit-keyframes anim-reveal {
  0% {
    left: 0;
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}

@keyframes anim-reveal {
  0% {
    left: 0;
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
@-webkit-keyframes text-visible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-visible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.a-fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 回転するアニメーション */
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* このクラスをつけると回転を無限に繰り返します */
.a-fuwafuwa {
  -webkit-animation: 3s fuwafuwa infinite;
          animation: 3s fuwafuwa infinite;
}

.a-scale {
  -webkit-animation: scale 2s both;
          animation: scale 2s both;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.a-rotate {
  -webkit-animation: rotate_anime 4s infinite;
          animation: rotate_anime 4s infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes rotate_anime {
  90% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg); /* アニメーションの進みが0%の時の状態 */
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg); /* アニメーションの進みが100%の時の状態 */
  }
}

@keyframes rotate_anime {
  90% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg); /* アニメーションの進みが0%の時の状態 */
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg); /* アニメーションの進みが100%の時の状態 */
  }
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 19px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 19px);
            transform: translate(0, 19px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.a-mouse-scroll {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  text-decoration: none;
  padding-top: 40px;
  color: #111;
}
@media print, screen and (min-width: 960px) {
  .a-mouse-scroll {
    bottom: 45px;
  }
}
.a-mouse-scroll span {
  position: absolute;
  top: 0;
  left: 54%;
  width: 24px;
  height: 40px;
  margin-left: -15px;
  border: 2px solid #111;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.a-mouse-scroll span::before {
  position: absolute;
  top: 5px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #111;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
          animation: sdb 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.a-smooth-slide .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.a-hover-opacity {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.a-hover-opacity:hover {
  opacity: 0.8;
}

.a-hover-big-shadow {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.a-hover-big-shadow:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.a-hover-big {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.a-hover-big:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.a-hover-inset-border-img figure {
  position: relative;
  display: block;
}
.a-hover-inset-border-img figure::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 0 solid rgba(38, 183, 217, 0.5);
}
.a-hover-inset-border-img:hover figure::after {
  border-width: 15px;
}

.a-hover-inset-border {
  position: relative;
  display: block;
}
.a-hover-inset-border::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 0 solid rgba(38, 183, 217, 0.5);
}
.a-hover-inset-border:hover::after {
  border-width: 15px;
}

.a-hover-clear::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.a-hover-clear h2 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.a-hover-clear h2 span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.a-hover-clear:hover::before {
  background-color: transparent;
}
.a-hover-clear:hover h2 {
  color: #111;
}
.a-hover-clear:hover h2 span {
  color: #26B7D9;
}

.a-position {
  -webkit-animation: position 1s both;
          animation: position 1s both;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes position {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  1% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes position {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  1% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.a-up-down {
  -webkit-animation: updown 2s infinite;
          animation: updown 2s infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.a-scrollhint {
  position: absolute;
  bottom: 17px;
  left: 30%;
}
@media only screen and (min-width: 640px) {
  .a-scrollhint {
    bottom: 112px;
    left: 28%;
  }
}
@media print, screen and (min-width: 960px) {
  .a-scrollhint {
    display: none;
  }
}

.a-scrollhint span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #eee;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.a-scrollhint figure {
  content: "";
  position: absolute;
  bottom: -13px;
  left: -4px;
  width: 20px;
  height: 20px;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@-webkit-keyframes circlemove {
  0% {
    left: -5px;
  }
  100% {
    left: 45px;
  }
}

@keyframes circlemove {
  0% {
    left: -5px;
  }
  100% {
    left: 45px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  left: -5vw;
  /* 丸の描写 */
  /* 線の描写 */
  /*Scrollテキストの描写*/
}
.scrolldown::before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #000;
}
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  80% {
    bottom: -5px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
h1[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
}

@media only screen and (min-width: 640px) {
  main {
    padding-top: 85px;
  }
}
@media print, screen and (min-width: 960px) {
  main {
    padding-top: 97px;
  }
}
main::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/bg-body.jpg);
  background-size: cover;
}

.f-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #184B84;
  border: 3px solid #fff;
  padding: 16px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 100;
  opacity: 0;
  color: #fff;
}
@media only screen and (min-width: 640px) {
  .f-bnr {
    -webkit-transform: translateY(310px);
            transform: translateY(310px);
    width: 450px;
    bottom: 15px;
    right: 20px;
    padding: 12px 8px;
  }
}
@media print, screen and (min-width: 960px) {
  .f-bnr {
    -webkit-transform: translateY(320px);
            transform: translateY(320px);
  }
}
.f-bnr .f-close-btn {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 1;
}
@media only screen and (min-width: 640px) {
  .f-bnr .f-close-btn {
    background: #000;
    border-radius: 100px;
    width: 28px;
    height: 28px;
    top: -13px;
    right: -13px;
  }
}
.f-bnr .f-close-btn span:nth-of-type(1) {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (min-width: 640px) {
  .f-bnr .f-close-btn span:nth-of-type(1) {
    top: 14px;
    right: 6px;
  }
}
.f-bnr .f-close-btn span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 7px;
  width: 1px;
  height: 15px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (min-width: 640px) {
  .f-bnr .f-close-btn span:nth-of-type(2) {
    top: 7px;
    right: 13px;
  }
}
.f-bnr figure {
  width: 25%;
  margin-right: 16px;
}
.f-bnr figure img {
  width: 100%;
}
.f-bnr__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 12px;
  line-height: 1.5;
}
.f-bnr__text .strong {
  font-size: 1.2em;
  font-weight: 700;
  color: #FFED17;
}
@media only screen and (min-width: 640px) {
  .f-bnr__text {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .f-bnr__text {
    font-size: 18px;
  }
}
.f-bnr__text a {
  background: #fff;
  color: #184B84;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 6px 0;
  margin-top: 4px;
  max-width: 300px;
  font-weight: bold;
}
@media only screen and (min-width: 640px) {
  .f-bnr__text a {
    margin-top: 12px;
    font-size: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .f-bnr__text a {
    font-size: 16px;
  }
}
.f-bnr__text a span {
  position: relative;
  display: inline-block;
  padding-right: 16px;
}
.f-bnr__text a span::before, .f-bnr__text a span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.f-bnr__text a span::before {
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #184B84;
  border-right: 1px solid #184B84;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.is-show {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@media only screen and (min-width: 640px) {
  .is-show {
    -webkit-animation: UpAnime-sm 0.5s forwards;
            animation: UpAnime-sm 0.5s forwards;
  }
}
@media only screen and (min-width: 960px) {
  .is-show {
    -webkit-animation: UpAnime-md 0.5s forwards;
            animation: UpAnime-md 0.5s forwards;
  }
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes UpAnime-sm {
  from {
    opacity: 0;
    -webkit-transform: translateY(310px);
            transform: translateY(310px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes UpAnime-sm {
  from {
    opacity: 0;
    -webkit-transform: translateY(310px);
            transform: translateY(310px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes UpAnime-md {
  from {
    opacity: 0;
    -webkit-transform: translateY(320px);
            transform: translateY(320px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes UpAnime-md {
  from {
    opacity: 0;
    -webkit-transform: translateY(320px);
            transform: translateY(320px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-hidden {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@media only screen and (min-width: 640px) {
  .is-hidden {
    -webkit-animation: DownAnime-sm 0.5s forwards;
            animation: DownAnime-sm 0.5s forwards;
  }
}
@media only screen and (min-width: 960px) {
  .is-hidden {
    -webkit-animation: DownAnime-md 0.5s forwards;
            animation: DownAnime-md 0.5s forwards;
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(280px);
            transform: translateY(280px);
  }
}
@-webkit-keyframes DownAnime-sm {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(310px);
            transform: translateY(310px);
  }
}
@keyframes DownAnime-sm {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(310px);
            transform: translateY(310px);
  }
}
@-webkit-keyframes DownAnime-md {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(320px);
            transform: translateY(320px);
  }
}
@keyframes DownAnime-md {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(320px);
            transform: translateY(320px);
  }
}
.chikuden-ppa {
  /* reset */
  /* base */
  font-family: "Noto Sans JP", "Roboto", Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Meiryo UI", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  color: #333;
  /* contents */
  /* main */
  /* solution */
  /* trouble */
  /* キャンペーン */
  /* solachiku */
  /* cta */
  /* voice */
  /* onestop */
  /* form */
}
.chikuden-ppa .foot-btn {
  padding: 1px 0;
  background: #fff;
}
.chikuden-ppa *,
.chikuden-ppa *::before,
.chikuden-ppa *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.chikuden-ppa ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.chikuden-ppa a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.chikuden-ppa sup {
  font-size: 70%;
  vertical-align: super;
}
.chikuden-ppa sub {
  font-size: 70%;
  vertical-align: sub;
}
.chikuden-ppa img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.chikuden-ppa section {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa {
    font-size: 16px;
    font-size: 1.2307692308vw;
  }
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa a[href^="tel:"] {
    pointer-events: none;
  }
}
.chikuden-ppa .sp-none {
  display: none;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .sp-none {
    display: block;
  }
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .sm-none {
    display: none;
  }
}
.chikuden-ppa .text-blue {
  color: #0D448E;
}
.chikuden-ppa .inner {
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .inner {
    padding: 0 7.6923076923vw;
  }
}
.chikuden-ppa .main-section {
  color: #fff;
  background: url(../img/fig-main.jpg) center center no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .main-section {
    padding: 64px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .main-section {
    padding: 100px 0;
  }
}
.chikuden-ppa .main-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .main-section::after {
    height: 9.2307692308vw;
  }
}
.chikuden-ppa .main-section .u-font-mincho {
  font-weight: 500;
}
.chikuden-ppa .main-section .main-ttl01 {
  font-size: 16px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .main-section .main-ttl01 {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .main-section .main-ttl01 {
    font-size: 24px;
    font-size: 1.8461538462vw;
  }
}
.chikuden-ppa .main-section .main-ttl02 {
  font-size: 18px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .main-section .main-ttl02 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .main-section .main-ttl02 {
    font-size: 32px;
    font-size: 2.4615384615vw;
    margin-bottom: 3.0769230769vw;
  }
}
.chikuden-ppa .main-section h1 {
  font-size: 28px;
  line-height: 1.3;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .main-section h1 {
    font-size: 52px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .main-section h1 {
    font-size: 72px;
    font-size: 5.5384615385vw;
    line-height: 1.2;
  }
}
.chikuden-ppa .main-section .main-copy01 {
  width: 960px;
  padding: 20px 0;
  max-width: 94%;
  margin: 32px auto 0;
  font-size: 16px;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .main-section .main-copy01 {
    padding: 20px 0;
    margin: 48px auto 0;
    font-size: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .main-section .main-copy01 {
    padding: 32px 0;
    margin: 64px auto 0;
    font-size: 24px;
  }
}
.chikuden-ppa .main-section .main-copy01 br {
  display: none;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .main-section .main-copy01 br {
    display: block;
  }
}
.chikuden-ppa .main-section .main-copy01 span {
  color: #5ED7F4;
  font-size: 1.5em;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .main-section .main-copy01 span {
    font-size: 1.75em;
  }
}
.chikuden-ppa .main-section .main-copy01::before, .chikuden-ppa .main-section .main-copy01::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(97, 215, 244, 0)), color-stop(50%, rgb(97, 215, 244)), to(rgba(97, 215, 244, 0)));
  background: linear-gradient(90deg, rgba(97, 215, 244, 0) 0%, rgb(97, 215, 244) 50%, rgba(97, 215, 244, 0) 100%);
  position: absolute;
  left: 0;
}
.chikuden-ppa .main-section .main-copy01::before {
  top: 0;
}
.chikuden-ppa .main-section .main-copy01::after {
  bottom: 0;
}
.chikuden-ppa .solution-section {
  background: url(../img/bg-mottainai.jpg) top center no-repeat;
  background-size: cover;
  padding: 64px 0;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solution-section {
    padding: 40px 0 80px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solution-section {
    padding: 40px 0 120px;
  }
}
.chikuden-ppa .solution-section__inner {
  padding: 24px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 54, 118, 0.8)), to(rgba(17, 140, 185, 0.8)));
  background: linear-gradient(-90deg, rgba(8, 54, 118, 0.8) 0%, rgba(17, 140, 185, 0.8) 100%);
  color: #fff;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solution-section__inner {
    width: 89%;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solution-section__inner {
    padding: 3.0769230769vw;
    width: 80%;
  }
}
.chikuden-ppa .solution-section__inner h2 {
  font-size: 14px;
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solution-section__inner h2 {
    font-size: 18px;
  }
}
.chikuden-ppa .solution-section__inner h2::before, .chikuden-ppa .solution-section__inner h2::after {
  content: "";
  display: block;
  width: 18%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solution-section__inner h2::before, .chikuden-ppa .solution-section__inner h2::after {
    width: 28%;
  }
}
.chikuden-ppa .solution-section__inner h2::before {
  left: 0;
}
.chikuden-ppa .solution-section__inner h2::after {
  right: 0;
}
.chikuden-ppa .solution-section__inner .solution_body01, .chikuden-ppa .solution-section__inner .solution_body03 {
  font-size: 16px;
  line-height: 1.5;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solution-section__inner .solution_body01, .chikuden-ppa .solution-section__inner .solution_body03 {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solution-section__inner .solution_body01, .chikuden-ppa .solution-section__inner .solution_body03 {
    font-size: 31px;
    font-size: 2.3846153846vw;
  }
}
.chikuden-ppa .solution-section__inner .solution_body02 {
  font-size: 24px;
  line-height: 1.5;
  margin: 16px 0;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solution-section__inner .solution_body02 {
    font-size: 32px;
    margin: 24px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solution-section__inner .solution_body02 {
    font-size: 40px;
    margin: 28px 0;
  }
}
.chikuden-ppa .solution-section__inner .solution_body02 span {
  font-size: 1.4em;
}
.chikuden-ppa .solution-section__inner .solution_body02 sup {
  font-size: 0.5em;
}
.chikuden-ppa .solution-section__inner .note {
  font-size: 12px;
  margin-top: 24px;
  text-align: right;
}
.chikuden-ppa .trouble-section {
  background-color: #000;
  padding: 0 0 80px;
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section {
    padding-top: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .trouble-section {
    padding: 6.1538461538vw 0;
  }
}
.chikuden-ppa .trouble-section .inner {
  background-image: url(../img/bg-trouble.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 170% auto;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section .inner {
    background-size: 100% auto;
    background-image: none;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .trouble-section .inner {
    background-size: contain;
  }
}
.chikuden-ppa .trouble-section__fig {
  display: none;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section__fig {
    display: block;
    margin-right: 0;
  }
}
.chikuden-ppa .trouble-section__inner {
  color: #fff;
  padding-top: 310px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section__inner {
    padding-top: 0;
    margin-left: auto;
    width: 60%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .trouble-section__inner {
    width: 55%;
  }
}
.chikuden-ppa .trouble-section__inner h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
.chikuden-ppa .trouble-section__inner h2 sup {
  font-size: 0.5em;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section__inner h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .trouble-section__inner h2 {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .trouble-section__inner h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.chikuden-ppa .trouble-section__inner .trouble_body {
  position: relative;
  margin-bottom: 16px;
  font-size: 15px;
}
.chikuden-ppa .trouble-section__inner .trouble_body span {
  color: #5ED7F4;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section__inner .trouble_body {
    text-align: center;
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .trouble-section__inner .trouble_body {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .trouble-section__inner .trouble_body {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.chikuden-ppa .trouble-section__inner .note {
  font-size: 12px;
  text-align: right;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section__inner .note {
    text-align: center;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .trouble-section__inner .note br {
    display: none;
  }
}
.chikuden-ppa .trouble-section__inner .note a {
  text-decoration: underline;
}
.chikuden-ppa .trouble-section__inner .note_last {
  margin-bottom: 48px;
}
.chikuden-ppa .trouble-section__inner figure {
  width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .trouble-section__inner figure {
    width: 320px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .trouble-section__inner figure {
    width: 360px;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .trouble-section__inner figure {
    width: 440px;
  }
}
.chikuden-ppa .campaign-section {
  background-color: #000;
  color: #FFF;
  padding: 0;
}
.chikuden-ppa .campaign-section__inner {
  width: 100%;
  max-width: 960px;
  padding: 40px 0;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .campaign-section__inner {
    padding: 64px 0 40px;
  }
}
.chikuden-ppa .campaign-section__inner h2 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .campaign-section__inner h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .campaign-section__inner h2 {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
.chikuden-ppa .campaign-section__inner .campaign-body01 {
  font-size: 16px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .campaign-section__inner .campaign-body01 {
    font-size: 20px;
    text-align: center;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .campaign-section__inner .campaign-body01 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.chikuden-ppa .campaign-section__inner .campaign-body01 span {
  font-size: 1.5em;
}
.chikuden-ppa .campaign-section__inner .campaign-body02 {
  font-size: 14px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .campaign-section__inner .campaign-body02 {
    font-size: 16px;
    text-align: center;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .campaign-section__inner .campaign-body02 {
    font-size: 20px;
  }
}
.chikuden-ppa .campaign-section__inner .campaign-btn {
  width: 280px;
  text-align: center;
  margin: 40px auto 0;
  font-size: 16px;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .campaign-section__inner .campaign-btn {
    width: 320px;
    font-size: 20px;
    margin: 64px auto 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .campaign-section__inner .campaign-btn {
    font-size: 24px;
  }
}
.chikuden-ppa .campaign-section__inner .campaign-btn a {
  display: block;
  padding: 12px;
  background-color: #fff;
  color: #333;
}
.chikuden-ppa .campaign-section__inner .campaign-btn a img {
  width: 24px;
  position: relative;
  margin-right: 4px;
  top: -4px;
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .campaign-section__inner .campaign-btn a img {
    top: -10px;
  }
}
.chikuden-ppa .campaign-section__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(97, 215, 244, 0)), color-stop(50%, rgb(97, 215, 244)), to(rgba(97, 215, 244, 0)));
  background: linear-gradient(90deg, rgba(97, 215, 244, 0) 0%, rgb(97, 215, 244) 50%, rgba(97, 215, 244, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.chikuden-ppa .feature_ttl_img {
  margin: 0 auto 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .feature_ttl_img {
    width: 90%;
    margin: 0 auto 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .feature_ttl_img {
    width: 80%;
    margin: 0 auto 40px;
  }
}
.chikuden-ppa .solachiku-section {
  padding: 120px 0 80px;
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section {
    padding: 15.3846153846vw 0;
  }
}
.chikuden-ppa .solachiku-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 50vw 0 50vw;
  border-color: #000 transparent transparent transparent;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section::before {
    border-width: 10vw 50vw 0 50vw;
  }
}
.chikuden-ppa .solachiku-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 68, 142, 0.6);
  z-index: -1;
}
.chikuden-ppa .solachiku-section .solution-text {
  font-size: 18px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 500;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section .solution-text {
    font-size: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section .solution-text {
    font-size: 48px;
    font-size: 3.6923076923vw;
    margin-bottom: 4.9230769231vw;
  }
}
.chikuden-ppa .solachiku-section .solution-text p, .chikuden-ppa .solachiku-section .solution-text h2 {
  display: inline-block;
}
.chikuden-ppa .solachiku-section .solution-text p:nth-of-type(2), .chikuden-ppa .solachiku-section .solution-text h2:nth-of-type(2) {
  margin-top: 8px;
}
.chikuden-ppa .solachiku-section__inner {
  background: rgba(255, 255, 255, 0.85);
  padding: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner {
    padding: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner {
    padding: 6.1538461538vw 3.8461538462vw;
  }
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__box {
    width: 96%;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__box {
    width: 90%;
  }
}
.chikuden-ppa .solachiku-section__inner__zero {
  margin-bottom: 40px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__zero {
    margin-bottom: 80px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__zero {
    margin-bottom: 9.2307692308vw;
  }
}
.chikuden-ppa .solachiku-section__inner__zero h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__zero h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__zero h2 {
    font-size: 48px;
    font-size: 3.6923076923vw;
    margin-bottom: 40px;
  }
}
.chikuden-ppa .solachiku-section__inner__zero h2 span {
  border-bottom: 2px solid #333;
}
.chikuden-ppa .solachiku-section__inner__zero .zero_body {
  text-align: left;
}
.chikuden-ppa .solachiku-section__inner__zero .zero_body .for_center {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__zero .zero_body .for_center {
    display: block;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .solachiku-section__inner__zero .zero_body .for_center_md {
    display: none;
  }
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__zero .zero_body {
    width: 90%;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__zero .zero_body {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .solachiku-section__inner__zero .zero_body {
    font-size: 18px;
    line-height: 1.8;
  }
}
.chikuden-ppa .solachiku-section__inner__zero .zero_body_note {
  margin-top: 24px;
  font-size: 12px;
  text-align: left;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__zero .zero_body_note {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__zero .zero_body_note {
    width: 100%;
    text-align: center;
  }
}
.chikuden-ppa .solachiku-section__inner__zero .zero_body_note a {
  text-decoration: underline;
}
.chikuden-ppa .solachiku-section__inner__zero figure {
  margin-top: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__zero figure {
    width: 96%;
    margin: 40px auto 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__zero figure {
    width: 90%;
    margin: 64px auto 0;
  }
}
.chikuden-ppa .solachiku-section__inner__zero .support_content {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  background-color: #fff;
  border: solid 2px #5ED7F4;
  padding: 12px;
  margin: 24px 0 40px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__zero .support_content {
    width: 96%;
    padding: 16px;
    margin: 40px auto 64px;
    font-size: 18px;
    text-align: center;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__zero .support_content {
    width: 90%;
    padding: 20px;
    margin: 40px auto 80px;
    font-size: 20px;
  }
}
.chikuden-ppa .solachiku-section__inner__introduction {
  margin-bottom: 40px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__introduction {
    margin: 0 auto 64px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__introduction {
    margin-bottom: 6.1538461538vw;
  }
}
.chikuden-ppa .solachiku-section__inner__introduction h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__introduction h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__introduction h2 {
    font-size: 48px;
    font-size: 3.6923076923vw;
    margin-bottom: 40px;
  }
}
.chikuden-ppa .solachiku-section__inner__introduction h2 span {
  border-bottom: 2px solid #333;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__introduction ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.chikuden-ppa .solachiku-section__inner__introduction ul li {
  margin-bottom: 40px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__introduction ul li {
    width: 31%;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 24px;
  }
}
.chikuden-ppa .solachiku-section__inner__introduction ul li p {
  background-color: #6C8EBA;
  border-radius: 4px;
  padding: 8px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__introduction ul li p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .solachiku-section__inner__introduction ul li p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.chikuden-ppa .solachiku-section__inner__introduction ul li p br {
  display: none;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__introduction ul li p br {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__introduction ul li p br {
    display: none;
  }
}
.chikuden-ppa .solachiku-section__inner__introduction ul li img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__introduction ul li img {
    width: 100%;
  }
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__introduction .simulation-add-info {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.chikuden-ppa .solachiku-section__inner__subsidy h2 {
  font-size: 16px;
  color: #0D448E;
  margin-bottom: 16px;
}
.chikuden-ppa .solachiku-section__inner__subsidy h2 span {
  font-size: 1.25em;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #ebe05b));
  background: linear-gradient(transparent 75%, #ebe05b 0%);
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__subsidy h2 {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__subsidy h2 {
    font-size: 22px;
  }
}
.chikuden-ppa .solachiku-section__inner__subsidy h3 {
  color: #0D448E;
  margin: 0 0 16px;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__subsidy h3 {
    font-size: 20px;
  }
}
.chikuden-ppa .solachiku-section__inner__subsidy h3::before, .chikuden-ppa .solachiku-section__inner__subsidy h3::after {
  content: "";
  display: block;
  width: 16%;
  height: 1px;
  background-color: #0D448E;
  position: absolute;
  top: 50%;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__subsidy h3::before, .chikuden-ppa .solachiku-section__inner__subsidy h3::after {
    width: 24%;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__subsidy h3::before, .chikuden-ppa .solachiku-section__inner__subsidy h3::after {
    width: 28%;
  }
}
@media print, screen and (min-width: 1200px) {
  .chikuden-ppa .solachiku-section__inner__subsidy h3::before, .chikuden-ppa .solachiku-section__inner__subsidy h3::after {
    width: 32%;
  }
}
.chikuden-ppa .solachiku-section__inner__subsidy h3::before {
  left: 0;
}
.chikuden-ppa .solachiku-section__inner__subsidy h3::after {
  right: 0;
}
.chikuden-ppa .solachiku-section__inner__subsidy .to_contact_btn {
  max-width: 400px;
  margin-top: 24px;
  margin-inline: auto;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__subsidy .to_contact_btn {
    margin-top: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__subsidy .to_contact_btn {
    margin-top: 40px;
  }
}
.chikuden-ppa .solachiku-section__inner__subsidy .to_contact_btn a {
  display: block;
  background-color: #0D448E;
  color: #fff;
  padding: 12px 8px;
  border-radius: 100px;
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .solachiku-section__inner__subsidy .to_contact_btn a {
    padding: 16px 8px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__subsidy .to_contact_btn a {
    padding: 20px 8px;
  }
}
.chikuden-ppa .solachiku-section__inner__subsidy .to_contact_btn a:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .solachiku-section__inner__subsidy .subsidy_link_list li {
    font-size: 16px;
  }
}
.chikuden-ppa .solachiku-section__inner__subsidy .subsidy_link_list li a {
  color: #006699;
  text-decoration: underline;
}
.chikuden-ppa .solachiku-section__inner__subsidy .subsidy_note {
  font-size: 12px;
  margin-top: 24px;
}
.chikuden-ppa .cta-section {
  padding: 56px 0;
  background: -webkit-gradient(linear, right top, left top, from(#000), color-stop(50%, #118CB9), to(#000));
  background: linear-gradient(-90deg, #000 0%, #118CB9 50%, #000 100%);
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section {
    padding: 9.2307692308vw 0;
    font-size: 16px;
    font-size: 1.2307692308vw;
  }
}
.chikuden-ppa .cta-section__inner {
  background: #fff;
  padding: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__inner {
    padding: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__inner {
    padding: 3.8461538462vw;
  }
}
.chikuden-ppa .cta-section__inner figure {
  margin-bottom: 16px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__inner figure {
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__inner figure {
    margin-bottom: 2.4615384615vw;
  }
}
.chikuden-ppa .cta-section__inner h2 {
  font-size: 20px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__inner h2 {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__inner h2 {
    font-size: 32px;
    font-size: 2.4615384615vw;
  }
}
.chikuden-ppa .cta-section__inner .read-text {
  font-size: 16px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__inner .read-text {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__inner .read-text {
    font-size: 20px;
    font-size: 1.5384615385vw;
  }
}
.chikuden-ppa .cta-section__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 16px 0;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__btn {
    margin: 1.2307692308vw 0;
  }
}
.chikuden-ppa .cta-section__btn a {
  border: 1px solid #ccc;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__btn a {
    width: 34.6153846154vw;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__btn a {
    padding: 1.2307692308vw 0;
  }
}
.chikuden-ppa .cta-section__btn a:nth-of-type(1) {
  padding-top: 14px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__btn a:nth-of-type(1) {
    padding-top: 18px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__btn a:nth-of-type(1) {
    padding-top: 21px;
  }
}
.chikuden-ppa .cta-section__btn a:nth-of-type(2) {
  margin-top: 8px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__btn a:nth-of-type(2) {
    margin-top: 0;
    margin-left: 3.0769230769vw;
  }
}
.chikuden-ppa .cta-section__btn a figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__btn a figure {
    margin-right: 0.6153846154vw;
    margin-bottom: 0.6153846154vw;
  }
}
.chikuden-ppa .cta-section__btn a figure img {
  width: 6%;
  margin-right: 8px;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__btn a figure img {
    margin-right: 0.6153846154vw;
  }
}
.chikuden-ppa .cta-section__btn a figure figcaption {
  font-size: 20px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .cta-section__btn a figure figcaption {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .cta-section__btn a figure figcaption {
    font-size: 32px;
    font-size: 2.4615384615vw;
  }
}
.chikuden-ppa .voice-section {
  background: #000;
  padding: 40px 0;
  color: #fff;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section {
    padding: 9.2307692308vw 0;
    font-size: 16px;
    font-size: 1.2307692308vw;
  }
}
.chikuden-ppa .voice-section h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 80px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section h2 {
    font-size: 32px;
    margin-bottom: 100px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section h2 {
    font-size: 40px;
    font-size: 3.0769230769vw;
    margin-bottom: 9.2307692308vw;
  }
}
.chikuden-ppa .voice-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 0 15px;
  margin: 0 auto;
  z-index: 0;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner {
    padding: 0;
  }
}
.chikuden-ppa .voice-section__inner::before {
  content: "";
  position: absolute;
  top: -30px;
  width: 160px;
  height: 160px;
  background: -webkit-gradient(linear, right top, left top, from(rgb(2, 198, 240)), to(rgb(8, 45, 118)));
  background: linear-gradient(-90deg, rgb(2, 198, 240) 0%, rgb(8, 45, 118) 100%);
  z-index: -1;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner::before {
    width: 23.33333vw;
    height: 23.33333vw;
    top: -70px;
  }
}
.chikuden-ppa .voice-section__inner:nth-of-type(odd)::before {
  left: -30px;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner:nth-of-type(odd)::before {
    left: -7vw;
  }
}
.chikuden-ppa .voice-section__inner:nth-of-type(even)::before {
  right: -30px;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner:nth-of-type(even)::before {
    right: -7vw;
  }
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section__inner:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.chikuden-ppa .voice-section__inner:nth-of-type(n+2) {
  margin-top: 80px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section__inner:nth-of-type(n+2) {
    margin-top: 100px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner:nth-of-type(n+2) {
    margin-top: 9.2307692308vw;
  }
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section__inner figure {
    width: 46%;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner figure {
    width: 53%;
  }
}
.chikuden-ppa .voice-section__inner dl {
  margin-top: 16px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section__inner dl {
    margin-top: 0;
    width: 50%;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner dl {
    width: 42%;
  }
}
.chikuden-ppa .voice-section__inner dl dt {
  padding-left: 24px;
  font-size: 16px;
  position: relative;
  margin-bottom: 8px;
}
.chikuden-ppa .voice-section__inner dl dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #fff;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section__inner dl dt {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner dl dt {
    font-size: 24px;
    font-size: 1.8461538462vw;
    margin-bottom: 3.0769230769vw;
  }
}
.chikuden-ppa .voice-section__inner dl dd {
  font-size: 20px;
  line-height: 1.5;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .voice-section__inner dl dd {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .voice-section__inner dl dd {
    font-size: 32px;
    font-size: 2.4615384615vw;
  }
}
.chikuden-ppa .onestop-section {
  padding: 56px 0;
  background: url(../img/bg-onestop.jpg) center no-repeat;
  background-size: cover;
  color: #fff;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .onestop-section {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .onestop-section {
    padding: 9.2307692308vw 0;
    font-size: 16px;
    font-size: 1.2307692308vw;
  }
}
.chikuden-ppa .onestop-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chikuden-ppa .onestop-section__text {
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .onestop-section__text {
    margin-bottom: 0;
    width: 60%;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .onestop-section__text {
    width: 56%;
  }
}
.chikuden-ppa .onestop-section__text h2 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .onestop-section__text h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .onestop-section__text h2 {
    font-size: 32px;
    font-size: 2.4615384615vw;
    margin-bottom: 3.0769230769vw;
  }
}
.chikuden-ppa .onestop-section figure {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .onestop-section figure {
    width: 38%;
    margin: 0;
  }
}
.chikuden-ppa .form-section {
  position: relative;
  background: #f7f7f7;
  z-index: 0;
  padding: 40px 0;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .form-section {
    padding: 64px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .form-section {
    padding: 6.1538461538vw;
    font-size: 16px;
    font-size: 1.2307692308vw;
  }
}
.chikuden-ppa .form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vw;
  background: #000;
  z-index: -1;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .form-section::before {
    height: 50vw;
  }
}
.chikuden-ppa .form-section__head {
  color: #fff;
}
.chikuden-ppa .form-section__head .form-arw {
  width: 40px;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .form-section__head .form-arw {
    width: 3.0769230769vw;
  }
}
.chikuden-ppa .form-section__head h2 {
  font-size: 21px;
  line-height: 1.4;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .form-section__head h2 {
    font-size: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .form-section__head h2 {
    font-size: 40px;
    font-size: 3.0769230769vw;
    margin-top: 3.0769230769vw;
    margin-bottom: 1.8461538462vw;
    padding-bottom: 1.8461538462vw;
  }
}
.chikuden-ppa .form-section__head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .form-section__head h2::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100vw - 300.0003000003px);
  }
}
.chikuden-ppa .form-section__head .form-text {
  font-size: 22px;
}
.chikuden-ppa .form-section__head .form-text span {
  font-size: 12px;
}
.chikuden-ppa .form-section .form-box {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 90%;
  margin: 24px auto 0;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .form-section .form-box {
    border-radius: 16px;
    padding: 48px;
    margin-top: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .chikuden-ppa .form-section .form-box {
    padding: 5.3846153846vw;
    margin-top: 3.0769230769vw;
    width: calc(100vw - 300.0003000003px);
  }
}
.chikuden-ppa .form-section .form-box iframe {
  min-height: 3450px;
}
@media only screen and (min-width: 640px) {
  .chikuden-ppa .form-section .form-box iframe {
    min-height: 2650px;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-vertical-middle {
  vertical-align: middle;
}

.u-vertical-inherit {
  vertical-align: inherit;
}

.u-vertical-base {
  vertical-align: baseline;
}

.u-vertical-sub {
  vertical-align: sub;
  line-height: 1;
}

.u-vertical-sup {
  vertical-align: super;
}

@media only screen and (min-width: 640px) {
  .u-sm-text-center {
    text-align: center;
  }
  .u-sm-text-left {
    text-align: left;
  }
  .u-sm-text-right {
    text-align: right;
  }
  .u-sm-vertical-middle {
    vertical-align: middle;
  }
  .u-sm-vertical-inherit {
    vertical-align: inherit;
  }
}
@media print, screen and (min-width: 960px) {
  .u-md-text-center {
    text-align: center;
  }
  .u-md-text-left {
    text-align: left;
  }
  .u-md-text-right {
    text-align: right;
  }
  .u-md-vertical-middle {
    vertical-align: middle;
  }
  .u-md-vertical-inherit {
    vertical-align: inherit;
  }
}
.u-font-en {
  font-family: "Roboto", Helvetica, "メイリオ", Meiryo, sans-serif;
}

.u-font-mincho {
  font-family: "Noto Serif JP", serif;
}

.u-font-gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.u-font-marugo {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.u-font-barlow {
  font-family: "Barlow", sans-serif;
}

.u-font-jost {
  font-family: "Jost", sans-serif;
}

.u-font-heebo {
  font-family: "Heebo", sans-serif;
}

.u-font-lexend {
  font-family: "Lexend Deca", sans-serif;
}

.u-font-yellowtail {
  font-family: "Yellowtail", sans-serif;
}

.u-font-josefin {
  font-family: "Josefin Sans", sans-serif;
}

.u-font-oswald {
  font-family: "Oswald", sans-serif;
  line-height: 1;
  display: inline-block;
}

.u-font-thin {
  font-weight: 100;
}

.u-font-exlight {
  font-weight: 200;
}

.u-font-light {
  font-weight: 300;
}

.u-font-regular {
  font-weight: 400;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-semibold {
  font-weight: 600;
}

.u-font-bold {
  font-weight: 700;
}

.u-font-semiblack {
  font-weight: 800;
}

.u-font-black {
  font-weight: 900;
}
/*# sourceMappingURL=style.css.map */