@charset "UTF-8";

html, :root {
  scroll-behavior: smooth;
  --ha-global-width: 110rem;
  --ha-header-height: 50px;
  --ha-header-height-pc: 100px;
  --ha-color-primary: #28629D;
  --ha-color-secondary: #9CC4ED;
  --ha-color-accent: #9E222B;
  --ha-color-bg: #fff;
  --ha-color-text: #242424;
  --ha-color-textdarker: #000;
  --ha-color-textlight: #666;
  --ha-color-darkgray: #444;
  --ha-color-gray: #666;
  --ha-color-lightgray: #999;
  --ha-color-gradient-primary: #FF000B;
  --ha-gradient-primary: linear-gradient(90deg, rgba(255, 0, 11, 1) 0%, rgba(237, 167, 24, 1) 100%);
  --ha-color-gradient-secondary: #065AA1;
  --ha-gradient-secondary: linear-gradient(140deg,rgba(6, 90, 161, 1) 0%, rgba(22, 156, 126, 1) 100%);
  --ha-gradient-corporate: linear-gradient(115deg,rgba(190, 26, 33, 1) 0%, rgba(237, 167, 24, 1) 36%, rgba(22, 156, 126, 1) 66%, rgba(6, 90, 161, 1) 100%);
  --ha-fontfamily-sansserif: "Noto Sans JP", "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;
  --ha-fontfamily-serif: "Noto Serif JP", sans-serif;
  --ha-fontfamily-roboto: "Roboto", sans-serif;
  --ha-fontfamily-robotoc: "Roboto Condensed", sans-serif;
  --ha-fontfamily-titillium: "Titillium Web", sans-serif;
  --ha-fontfamily-bebasneue: "Bebas Neue", sans-serif;
  --ha-fontfamily-anton: "Anton", sans-serif;
  --ha-fontfamily-cabin: "Cabin", sans-serif;
  --ha-fontsize-xs: 1.2rem;
  --ha-fontsize-s: 1.4rem;
  --ha-fontsize-base: 1.6rem;
  --ha-fontsize-l: 1.8rem;
  --ha-fontsize-xl: 2rem;
  --ha-zindex-loading: 990;
  --ha-zindex-gnavbtn: 902;
  --ha-zindex-gnav: 901;
  --ha-zindex-overlay: 900;
  --ha-zindex-header: 810;
  --ha-zindex-float: 700;
}
@media not all and (min-width: 768) {
  html, :root {
    --ha-fontsize-xs: 1.1rem;
    --ha-fontsize-s: 1.3rem;
    --ha-fontsize-base: 1.4rem;
    --ha-fontsize-l: 1.6rem;
    --ha-fontsize-xl: 1.8rem;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  font-size: 10px;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.75;
  font-size: var(--ha-fontsize-base);
  color: var(--ha-color-text);
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

body {
  overflow-x: clip;
  font-family: var(--ha-fontfamily-sansserif);
  color: var(--ha-color-text);
  background: -webkit-gradient(linear, left top, right top, from(#9CC4ED), color-stop(50%, #9CC4ED), color-stop(50%, #fff), to(#fff));
  background: linear-gradient(to right, #9CC4ED 0%, #9CC4ED 50%, #fff 50%, #fff 100%);
}
@media not all and (min-width: 768px) {
  body {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
body::after {
  content: "";
  display: block;
  position: fixed;
  z-index: var(--ha-zindex-overlay);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
.section-introduction {
  margin: 17rem auto 12rem;
}
@media (min-width: 768px) {
  .section-introduction {
    margin: 17rem auto 12rem;
  }
}

.section-merits {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .section-merits {
    margin-bottom: 16rem;
  }
}

.section-voice {
  margin-top: 6rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-voice {
    margin-top: 17rem;
    padding-bottom: 18rem;
  }
}

.section-promise {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .section-promise {
    margin-top: 17.5rem;
  }
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ha-global-width);
  width: calc(100% - 2rem);
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 4rem);
  }
}
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 5.4rem);
  }
}

.common-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--ha-zindex-header);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: var(--ha-header-height);
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .common-header {
    height: var(--ha-header-height-pc);
    padding: 0 37px;
  }
}
.common-header > .container {
  height: 43px;
}
@media (min-width: 768px) {
  .common-header > .container {
    height: 85px;
  }
}

.site-logo {
  width: auto;
  height: 40px;
}
@media (min-width: 768px) {
  .site-logo {
    width: 272px;
    height: 95px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.mainvisual {
  position: relative;
}
.mainvisual > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .mainvisual > img {
    height: 700px;
  }
}
@media not all and (min-width: 768px) {
  .mainvisual > img {
    height: 400px;
  }
}
.mainvisual > .title {
  position: absolute;
  bottom: -75px;
  left: 0;
  width: auto;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding: 1.5rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .mainvisual > .title {
    left: calc(50vw - 55rem);
    padding: 5rem 6rem 4rem 0;
  }
}
.mainvisual > .title::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: calc(100% + 2rem);
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .mainvisual > .title::before {
    width: calc(100% + 50vw - 55rem);
  }
}
.mainvisual > .title > .first {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .mainvisual > .title > .first {
    font-size: 2rem;
  }
}
.mainvisual > .title > .copy {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 2rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .mainvisual > .title > .copy {
    font-size: 2.4rem;
  }
}
.mainvisual > .title > .name {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 4.5rem;
  font-weight: 900;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .mainvisual > .title > .name {
    font-size: 8rem;
  }
}

.btn-menu {
  position: fixed;
  z-index: var(--ha-zindex-gnavbtn);
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .btn-menu {
    top: 0;
    width: 84px;
    height: 84px;
  }
}
@media not all and (min-width: 768px) {
  .is-menuopen .btn-menu {
    position: fixed;
    top: 0;
  }
}
.btn-menu::before, .btn-menu::after,
.btn-menu > span {
  display: block;
  width: 24px;
  height: 3px;
  background: #707070;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.is-at-top + .btn-menu::before, .is-at-top + .btn-menu::after,
.is-at-top + .btn-menu > span {
  background: #fff;
}
@media (min-width: 768px) {
  .btn-menu::before, .btn-menu::after,
.btn-menu > span {
    width: 40px;
    height: 3px;
  }
}
.btn-menu::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .btn-menu::before {
    top: 25px;
  }
}
.btn-menu > span {
  position: relative;
}
.btn-menu::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .btn-menu::after {
    bottom: 25px;
  }
}
.btn-menu:hover {
  background: rgba(0, 0, 0, 0.3);
}
.is-menuopen .btn-menu::before {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.is-menuopen .btn-menu > span {
  opacity: 0;
}
.is-menuopen .btn-menu::after {
  bottom: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.common-footer {
  background: #9CC4ED;
  color: #fff;
}
.common-footer > .inner {
  padding: 3rem 0 4rem;
  line-height: 1.5;
  gap: 1rem 4rem;
}
@media (min-width: 768px) {
  .common-footer > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.common-footer > .footer-logo {
  display: grid;
  place-items: center;
  width: auto;
  height: 80px;
  background: url(../img/bg-footer.png) no-repeat center center/100% 100%;
}
@media (min-width: 768px) {
  .common-footer > .footer-logo {
    height: 190px;
  }
}
@media (min-width: 768px) {
  .common-footer > .footer-logo > img {
    width: 333px;
    height: auto;
  }
}
@media not all and (min-width: 768px) {
  .common-footer > .footer-logo > img {
    width: 200px;
    height: auto;
  }
}

.list-footernav {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 0.25em !important;
}
@media (min-width: 768px) {
  .list-footernav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media not all and (min-width: 768px) {
  .list-footernav {
    margin-top: 2em !important;
  }
}
.list-footernav > .item {
  line-height: 1;
}
@media (min-width: 768px) {
  .list-footernav > .item {
    margin-left: 0.5em;
    padding-left: 0.5em;
    border-left: 1px solid #fff;
  }
}
@media not all and (min-width: 768px) {
  .list-footernav > .item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.list-footernav > .item > .link {
  display: block;
  text-decoration: none;
  color: inherit;
  text-decoration: none;
}
@media not all and (min-width: 768px) {
  .list-footernav > .item > .link {
    padding: 0.5em 0;
  }
}
.list-footernav > .item > .link:hover {
  text-decoration: underline;
}

.copyright {
  margin: 0 auto;
  padding: 1em 10px 2em;
  text-align: center;
  font-size: var(--ha-fontsize-s);
  background: #9E222B;
}

._tdu {
  text-decoration: underline;
}

._tac {
  text-align: center;
}

._tar {
  text-align: right;
}

._img-left {
  margin-left: 0;
}

._img-right {
  margin-right: 0;
}

._clear {
  clear: both;
}

._clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

._ro {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
._ro:hover {
  opacity: 0.5;
}

._full-w {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media (min-width: 640px) {
  ._for-sp {
    display: none !important;
  }
}
@media not all and (min-width: 640px) {
  ._for-pc {
    display: none !important;
  }
}
.fadein-up {
  opacity: 0;
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.fadein-up.is-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fade-in span {
  opacity: 0;
}
.fade-in.is-animate span {
  -webkit-animation: fadeIn 0.3s forwards;
  animation: fadeIn 0.3s forwards;
}
.fade-in.is-animate span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.fade-in.is-animate span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.fade-in.is-animate span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.fade-in.is-animate span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.fade-in.is-animate span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.fade-in.is-animate span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.fade-in.is-animate span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.fade-in.is-animate span:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.fade-in.is-animate span:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.fade-in.is-animate span:nth-child(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.fade-in.is-animate span:nth-child(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.fade-in.is-animate span:nth-child(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.fade-in.is-animate span:nth-child(13) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.fade-in.is-animate span:nth-child(14) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.fade-in.is-animate span:nth-child(15) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.fade-in.is-animate span:nth-child(16) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.fadein {
  opacity: 0;
  -webkit-transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fadein.is-animate {
  opacity: 1;
}

.fadein-left {
  opacity: 0;
  -webkit-transform: translateX(3rem);
  transform: translateX(3rem);
  -webkit-transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 768px) {
  .fadein-left {
    -webkit-transform: translateX(6rem);
    transform: translateX(6rem);
  }
}
.fadein-left.is-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translateX(-3rem);
  transform: translateX(-3rem);
  -webkit-transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 768px) {
  .fadein-right {
    -webkit-transform: translateX(-6rem);
    transform: translateX(-6rem);
  }
}
.fadein-right.is-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadein-scale {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.fadein-scale.is-animate {
  opacity: 1;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.image-slide-in img {
  width: 0;
  margin-left: auto;
}
.image-slide-in.is-animate img {
  -webkit-animation: imgSlideIn 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation: imgSlideIn 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.image-slide-in.is-animate .item:nth-child(1) img {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.image-slide-in.is-animate .item:nth-child(2) img {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.image-slide-in.is-animate .item:nth-child(3) img {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.image-slide-in.is-animate .item:nth-child(4) img {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.text-slide-in span {
  opacity: 0;
}
.text-slide-in.is-animate span {
  display: inline-block;
  -webkit-animation: slideIn 0.3s forwards;
  animation: slideIn 0.3s forwards;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
}
.text-slide-in.is-animate span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.text-slide-in.is-animate span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.text-slide-in.is-animate span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.text-slide-in.is-animate span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.text-slide-in.is-animate span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.text-slide-in.is-animate span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.text-slide-in.is-animate span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.text-slide-in.is-animate span:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.text-slide-in.is-animate span:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.text-slide-in.is-animate span:nth-child(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.text-slide-in.is-animate span:nth-child(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.text-slide-in.is-animate span:nth-child(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.text-slide-in.is-animate span:nth-child(13) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.text-slide-in.is-animate span:nth-child(14) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.text-slide-in.is-animate span:nth-child(15) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.text-slide-in.is-animate span:nth-child(16) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.text-slide-in.is-animate span:nth-child(17) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.text-slide-in.is-animate span:nth-child(18) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.text-slide-in.is-animate span:nth-child(19) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.text-slide-in.is-animate span:nth-child(20) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.text-slide-in.is-animate span:nth-child(21) {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.text-slide-in.is-animate span:nth-child(22) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}
.text-slide-in.is-animate span:nth-child(23) {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}
.text-slide-in.is-animate span:nth-child(24) {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
.text-slide-in.is-animate span:nth-child(25) {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes imgSlideIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes imgSlideIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: scale(1.025, 0.975);
    transform: scale(1.025, 0.975);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: scale(1.025, 0.975);
    transform: scale(1.025, 0.975);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@-webkit-keyframes sway {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes sway {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  50% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@-webkit-keyframes turn {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  90% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  95% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes turn {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  90% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  95% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes lightning {
  0% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  1% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  2% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  98% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  99% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  100% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
}
@keyframes lightning {
  0% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  1% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  2% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  98% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  99% {
    -webkit-filter: brightness(2);
    filter: brightness(2);
  }
  100% {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
}
@-webkit-keyframes changeTochi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeTochi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes changeKodate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeKodate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes changeMansion {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeMansion {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes changeJigyo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes changeJigyo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes progressAnimation {
  0% {
    background: conic-gradient(#4CAF50 0%, transparent 0%);
  }
  1% {
    background: conic-gradient(#4CAF50 1%, transparent 0%);
  }
  2% {
    background: conic-gradient(#4CAF50 2%, transparent 0%);
  }
  3% {
    background: conic-gradient(#4CAF50 3%, transparent 0%);
  }
  4% {
    background: conic-gradient(#4CAF50 4%, transparent 0%);
  }
  5% {
    background: conic-gradient(#4CAF50 5%, transparent 0%);
  }
  6% {
    background: conic-gradient(#4CAF50 6%, transparent 0%);
  }
  7% {
    background: conic-gradient(#4CAF50 7%, transparent 0%);
  }
  8% {
    background: conic-gradient(#4CAF50 8%, transparent 0%);
  }
  9% {
    background: conic-gradient(#4CAF50 9%, transparent 0%);
  }
  10% {
    background: conic-gradient(#4CAF50 10%, transparent 0%);
  }
  11% {
    background: conic-gradient(#4CAF50 11%, transparent 0%);
  }
  12% {
    background: conic-gradient(#4CAF50 12%, transparent 0%);
  }
  13% {
    background: conic-gradient(#4CAF50 13%, transparent 0%);
  }
  14% {
    background: conic-gradient(#4CAF50 14%, transparent 0%);
  }
  15% {
    background: conic-gradient(#4CAF50 15%, transparent 0%);
  }
  16% {
    background: conic-gradient(#4CAF50 16%, transparent 0%);
  }
  17% {
    background: conic-gradient(#4CAF50 17%, transparent 0%);
  }
  18% {
    background: conic-gradient(#4CAF50 18%, transparent 0%);
  }
  19% {
    background: conic-gradient(#4CAF50 19%, transparent 0%);
  }
  20% {
    background: conic-gradient(#4CAF50 20%, transparent 0%);
  }
  21% {
    background: conic-gradient(#4CAF50 21%, transparent 0%);
  }
  22% {
    background: conic-gradient(#4CAF50 22%, transparent 0%);
  }
  23% {
    background: conic-gradient(#4CAF50 23%, transparent 0%);
  }
  24% {
    background: conic-gradient(#4CAF50 24%, transparent 0%);
  }
  25% {
    background: conic-gradient(#4CAF50 25%, transparent 0%);
  }
  26% {
    background: conic-gradient(#4CAF50 26%, transparent 0%);
  }
  27% {
    background: conic-gradient(#4CAF50 27%, transparent 0%);
  }
  28% {
    background: conic-gradient(#4CAF50 28%, transparent 0%);
  }
  29% {
    background: conic-gradient(#4CAF50 29%, transparent 0%);
  }
  30% {
    background: conic-gradient(#4CAF50 30%, transparent 0%);
  }
  31% {
    background: conic-gradient(#4CAF50 31%, transparent 0%);
  }
  32% {
    background: conic-gradient(#4CAF50 32%, transparent 0%);
  }
  33% {
    background: conic-gradient(#4CAF50 33%, transparent 0%);
  }
  34% {
    background: conic-gradient(#4CAF50 34%, transparent 0%);
  }
  35% {
    background: conic-gradient(#4CAF50 35%, transparent 0%);
  }
  36% {
    background: conic-gradient(#4CAF50 36%, transparent 0%);
  }
  37% {
    background: conic-gradient(#4CAF50 37%, transparent 0%);
  }
  38% {
    background: conic-gradient(#4CAF50 38%, transparent 0%);
  }
  39% {
    background: conic-gradient(#4CAF50 39%, transparent 0%);
  }
  40% {
    background: conic-gradient(#4CAF50 40%, transparent 0%);
  }
  41% {
    background: conic-gradient(#4CAF50 41%, transparent 0%);
  }
  42% {
    background: conic-gradient(#4CAF50 42%, transparent 0%);
  }
  43% {
    background: conic-gradient(#4CAF50 43%, transparent 0%);
  }
  44% {
    background: conic-gradient(#4CAF50 44%, transparent 0%);
  }
  45% {
    background: conic-gradient(#4CAF50 45%, transparent 0%);
  }
  46% {
    background: conic-gradient(#4CAF50 46%, transparent 0%);
  }
  47% {
    background: conic-gradient(#4CAF50 47%, transparent 0%);
  }
  48% {
    background: conic-gradient(#4CAF50 48%, transparent 0%);
  }
  49% {
    background: conic-gradient(#4CAF50 49%, transparent 0%);
  }
  50% {
    background: conic-gradient(#4CAF50 50%, transparent 0%);
  }
  51% {
    background: conic-gradient(#4CAF50 51%, transparent 0%);
  }
  52% {
    background: conic-gradient(#4CAF50 52%, transparent 0%);
  }
  53% {
    background: conic-gradient(#4CAF50 53%, transparent 0%);
  }
  54% {
    background: conic-gradient(#4CAF50 54%, transparent 0%);
  }
  55% {
    background: conic-gradient(#4CAF50 55%, transparent 0%);
  }
  56% {
    background: conic-gradient(#4CAF50 56%, transparent 0%);
  }
  57% {
    background: conic-gradient(#4CAF50 57%, transparent 0%);
  }
  58% {
    background: conic-gradient(#4CAF50 58%, transparent 0%);
  }
  59% {
    background: conic-gradient(#4CAF50 59%, transparent 0%);
  }
  60% {
    background: conic-gradient(#4CAF50 60%, transparent 0%);
  }
  61% {
    background: conic-gradient(#4CAF50 61%, transparent 0%);
  }
  62% {
    background: conic-gradient(#4CAF50 62%, transparent 0%);
  }
  63% {
    background: conic-gradient(#4CAF50 63%, transparent 0%);
  }
  64% {
    background: conic-gradient(#4CAF50 64%, transparent 0%);
  }
  65% {
    background: conic-gradient(#4CAF50 65%, transparent 0%);
  }
  66% {
    background: conic-gradient(#4CAF50 66%, transparent 0%);
  }
  67% {
    background: conic-gradient(#4CAF50 67%, transparent 0%);
  }
  68% {
    background: conic-gradient(#4CAF50 68%, transparent 0%);
  }
  69% {
    background: conic-gradient(#4CAF50 69%, transparent 0%);
  }
  70% {
    background: conic-gradient(#4CAF50 70%, transparent 0%);
  }
  71% {
    background: conic-gradient(#4CAF50 71%, transparent 0%);
  }
  72% {
    background: conic-gradient(#4CAF50 72%, transparent 0%);
  }
  73% {
    background: conic-gradient(#4CAF50 73%, transparent 0%);
  }
  74% {
    background: conic-gradient(#4CAF50 74%, transparent 0%);
  }
  75% {
    background: conic-gradient(#4CAF50 75%, transparent 0%);
  }
  76% {
    background: conic-gradient(#4CAF50 76%, transparent 0%);
  }
  77% {
    background: conic-gradient(#4CAF50 77%, transparent 0%);
  }
  78% {
    background: conic-gradient(#4CAF50 78%, transparent 0%);
  }
  79% {
    background: conic-gradient(#4CAF50 79%, transparent 0%);
  }
  80% {
    background: conic-gradient(#4CAF50 80%, transparent 0%);
  }
  81% {
    background: conic-gradient(#4CAF50 81%, transparent 0%);
  }
  82% {
    background: conic-gradient(#4CAF50 82%, transparent 0%);
  }
  83% {
    background: conic-gradient(#4CAF50 83%, transparent 0%);
  }
  84% {
    background: conic-gradient(#4CAF50 84%, transparent 0%);
  }
  85% {
    background: conic-gradient(#4CAF50 85%, transparent 0%);
  }
  86% {
    background: conic-gradient(#4CAF50 86%, transparent 0%);
  }
  87% {
    background: conic-gradient(#4CAF50 87%, transparent 0%);
  }
  88% {
    background: conic-gradient(#4CAF50 88%, transparent 0%);
  }
  89% {
    background: conic-gradient(#4CAF50 89%, transparent 0%);
  }
  90% {
    background: conic-gradient(#4CAF50 90%, transparent 0%);
  }
  91% {
    background: conic-gradient(#4CAF50 91%, transparent 0%);
  }
  92% {
    background: conic-gradient(#4CAF50 92%, transparent 0%);
  }
  93% {
    background: conic-gradient(#4CAF50 93%, transparent 0%);
  }
  94% {
    background: conic-gradient(#4CAF50 94%, transparent 0%);
  }
  95% {
    background: conic-gradient(#4CAF50 95%, transparent 0%);
  }
  96% {
    background: conic-gradient(#4CAF50 96%, transparent 0%);
  }
  97% {
    background: conic-gradient(#4CAF50 97%, transparent 0%);
  }
  98% {
    background: conic-gradient(#4CAF50 98%, transparent 0%);
  }
  99% {
    background: conic-gradient(#4CAF50 99%, transparent 0%);
  }
  100% {
    background: conic-gradient(#4CAF50 100%, transparent 0%);
  }
}
@keyframes progressAnimation {
  0% {
    background: conic-gradient(#4CAF50 0%, transparent 0%);
  }
  1% {
    background: conic-gradient(#4CAF50 1%, transparent 0%);
  }
  2% {
    background: conic-gradient(#4CAF50 2%, transparent 0%);
  }
  3% {
    background: conic-gradient(#4CAF50 3%, transparent 0%);
  }
  4% {
    background: conic-gradient(#4CAF50 4%, transparent 0%);
  }
  5% {
    background: conic-gradient(#4CAF50 5%, transparent 0%);
  }
  6% {
    background: conic-gradient(#4CAF50 6%, transparent 0%);
  }
  7% {
    background: conic-gradient(#4CAF50 7%, transparent 0%);
  }
  8% {
    background: conic-gradient(#4CAF50 8%, transparent 0%);
  }
  9% {
    background: conic-gradient(#4CAF50 9%, transparent 0%);
  }
  10% {
    background: conic-gradient(#4CAF50 10%, transparent 0%);
  }
  11% {
    background: conic-gradient(#4CAF50 11%, transparent 0%);
  }
  12% {
    background: conic-gradient(#4CAF50 12%, transparent 0%);
  }
  13% {
    background: conic-gradient(#4CAF50 13%, transparent 0%);
  }
  14% {
    background: conic-gradient(#4CAF50 14%, transparent 0%);
  }
  15% {
    background: conic-gradient(#4CAF50 15%, transparent 0%);
  }
  16% {
    background: conic-gradient(#4CAF50 16%, transparent 0%);
  }
  17% {
    background: conic-gradient(#4CAF50 17%, transparent 0%);
  }
  18% {
    background: conic-gradient(#4CAF50 18%, transparent 0%);
  }
  19% {
    background: conic-gradient(#4CAF50 19%, transparent 0%);
  }
  20% {
    background: conic-gradient(#4CAF50 20%, transparent 0%);
  }
  21% {
    background: conic-gradient(#4CAF50 21%, transparent 0%);
  }
  22% {
    background: conic-gradient(#4CAF50 22%, transparent 0%);
  }
  23% {
    background: conic-gradient(#4CAF50 23%, transparent 0%);
  }
  24% {
    background: conic-gradient(#4CAF50 24%, transparent 0%);
  }
  25% {
    background: conic-gradient(#4CAF50 25%, transparent 0%);
  }
  26% {
    background: conic-gradient(#4CAF50 26%, transparent 0%);
  }
  27% {
    background: conic-gradient(#4CAF50 27%, transparent 0%);
  }
  28% {
    background: conic-gradient(#4CAF50 28%, transparent 0%);
  }
  29% {
    background: conic-gradient(#4CAF50 29%, transparent 0%);
  }
  30% {
    background: conic-gradient(#4CAF50 30%, transparent 0%);
  }
  31% {
    background: conic-gradient(#4CAF50 31%, transparent 0%);
  }
  32% {
    background: conic-gradient(#4CAF50 32%, transparent 0%);
  }
  33% {
    background: conic-gradient(#4CAF50 33%, transparent 0%);
  }
  34% {
    background: conic-gradient(#4CAF50 34%, transparent 0%);
  }
  35% {
    background: conic-gradient(#4CAF50 35%, transparent 0%);
  }
  36% {
    background: conic-gradient(#4CAF50 36%, transparent 0%);
  }
  37% {
    background: conic-gradient(#4CAF50 37%, transparent 0%);
  }
  38% {
    background: conic-gradient(#4CAF50 38%, transparent 0%);
  }
  39% {
    background: conic-gradient(#4CAF50 39%, transparent 0%);
  }
  40% {
    background: conic-gradient(#4CAF50 40%, transparent 0%);
  }
  41% {
    background: conic-gradient(#4CAF50 41%, transparent 0%);
  }
  42% {
    background: conic-gradient(#4CAF50 42%, transparent 0%);
  }
  43% {
    background: conic-gradient(#4CAF50 43%, transparent 0%);
  }
  44% {
    background: conic-gradient(#4CAF50 44%, transparent 0%);
  }
  45% {
    background: conic-gradient(#4CAF50 45%, transparent 0%);
  }
  46% {
    background: conic-gradient(#4CAF50 46%, transparent 0%);
  }
  47% {
    background: conic-gradient(#4CAF50 47%, transparent 0%);
  }
  48% {
    background: conic-gradient(#4CAF50 48%, transparent 0%);
  }
  49% {
    background: conic-gradient(#4CAF50 49%, transparent 0%);
  }
  50% {
    background: conic-gradient(#4CAF50 50%, transparent 0%);
  }
  51% {
    background: conic-gradient(#4CAF50 51%, transparent 0%);
  }
  52% {
    background: conic-gradient(#4CAF50 52%, transparent 0%);
  }
  53% {
    background: conic-gradient(#4CAF50 53%, transparent 0%);
  }
  54% {
    background: conic-gradient(#4CAF50 54%, transparent 0%);
  }
  55% {
    background: conic-gradient(#4CAF50 55%, transparent 0%);
  }
  56% {
    background: conic-gradient(#4CAF50 56%, transparent 0%);
  }
  57% {
    background: conic-gradient(#4CAF50 57%, transparent 0%);
  }
  58% {
    background: conic-gradient(#4CAF50 58%, transparent 0%);
  }
  59% {
    background: conic-gradient(#4CAF50 59%, transparent 0%);
  }
  60% {
    background: conic-gradient(#4CAF50 60%, transparent 0%);
  }
  61% {
    background: conic-gradient(#4CAF50 61%, transparent 0%);
  }
  62% {
    background: conic-gradient(#4CAF50 62%, transparent 0%);
  }
  63% {
    background: conic-gradient(#4CAF50 63%, transparent 0%);
  }
  64% {
    background: conic-gradient(#4CAF50 64%, transparent 0%);
  }
  65% {
    background: conic-gradient(#4CAF50 65%, transparent 0%);
  }
  66% {
    background: conic-gradient(#4CAF50 66%, transparent 0%);
  }
  67% {
    background: conic-gradient(#4CAF50 67%, transparent 0%);
  }
  68% {
    background: conic-gradient(#4CAF50 68%, transparent 0%);
  }
  69% {
    background: conic-gradient(#4CAF50 69%, transparent 0%);
  }
  70% {
    background: conic-gradient(#4CAF50 70%, transparent 0%);
  }
  71% {
    background: conic-gradient(#4CAF50 71%, transparent 0%);
  }
  72% {
    background: conic-gradient(#4CAF50 72%, transparent 0%);
  }
  73% {
    background: conic-gradient(#4CAF50 73%, transparent 0%);
  }
  74% {
    background: conic-gradient(#4CAF50 74%, transparent 0%);
  }
  75% {
    background: conic-gradient(#4CAF50 75%, transparent 0%);
  }
  76% {
    background: conic-gradient(#4CAF50 76%, transparent 0%);
  }
  77% {
    background: conic-gradient(#4CAF50 77%, transparent 0%);
  }
  78% {
    background: conic-gradient(#4CAF50 78%, transparent 0%);
  }
  79% {
    background: conic-gradient(#4CAF50 79%, transparent 0%);
  }
  80% {
    background: conic-gradient(#4CAF50 80%, transparent 0%);
  }
  81% {
    background: conic-gradient(#4CAF50 81%, transparent 0%);
  }
  82% {
    background: conic-gradient(#4CAF50 82%, transparent 0%);
  }
  83% {
    background: conic-gradient(#4CAF50 83%, transparent 0%);
  }
  84% {
    background: conic-gradient(#4CAF50 84%, transparent 0%);
  }
  85% {
    background: conic-gradient(#4CAF50 85%, transparent 0%);
  }
  86% {
    background: conic-gradient(#4CAF50 86%, transparent 0%);
  }
  87% {
    background: conic-gradient(#4CAF50 87%, transparent 0%);
  }
  88% {
    background: conic-gradient(#4CAF50 88%, transparent 0%);
  }
  89% {
    background: conic-gradient(#4CAF50 89%, transparent 0%);
  }
  90% {
    background: conic-gradient(#4CAF50 90%, transparent 0%);
  }
  91% {
    background: conic-gradient(#4CAF50 91%, transparent 0%);
  }
  92% {
    background: conic-gradient(#4CAF50 92%, transparent 0%);
  }
  93% {
    background: conic-gradient(#4CAF50 93%, transparent 0%);
  }
  94% {
    background: conic-gradient(#4CAF50 94%, transparent 0%);
  }
  95% {
    background: conic-gradient(#4CAF50 95%, transparent 0%);
  }
  96% {
    background: conic-gradient(#4CAF50 96%, transparent 0%);
  }
  97% {
    background: conic-gradient(#4CAF50 97%, transparent 0%);
  }
  98% {
    background: conic-gradient(#4CAF50 98%, transparent 0%);
  }
  99% {
    background: conic-gradient(#4CAF50 99%, transparent 0%);
  }
  100% {
    background: conic-gradient(#4CAF50 100%, transparent 0%);
  }
}
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
  }
}
@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.heading-primary {
  font-size: var(--ha-fontsize-l);
}
@media (min-width: 768px) {
  .heading-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.heading-primary > .en {
  font-size: 4rem;
  font-family: var(--ha-fontfamily-robotoc);
  letter-spacing: 0.25em;
}
@media (min-width: 768px) {
  .heading-primary > .en {
    font-size: 7rem;
  }
}
.heading-primary > .ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 1;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 3em;
}
@media not all and (min-width: 768px) {
  .heading-primary > .ja {
    margin-top: 0.5rem;
    max-width: 90%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    padding: 0.2em 0.4em 0.2em 1.5em;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .heading-primary > .ja {
    height: 5.2rem;
  }
}
.heading-primary > .ja::before {
  content: "";
  display: block;
  width: calc(100% + 1rem);
  height: 100%;
  background-color: #28629D;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .heading-primary > .ja::before {
    border-radius: 2.6rem 0 0 2.6rem;
    width: calc(100% + 50vw - 55rem);
  }
}

.list-merits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  counter-reset: item;
  margin-top: 3rem !important;
}
@media (min-width: 768px) {
  .list-merits {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10rem !important;
    padding: 0 2.5rem !important;
    gap: 4rem 8rem;
  }
}
@media (min-width: 1024px) {
  .list-merits {
    padding: 0 4.5rem !important;
    gap: 6rem 11rem;
  }
}
.list-merits > .item {
  position: relative;
  counter-increment: item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .list-merits > .item {
    padding: 4rem 0 0 5rem;
  }
}
.list-merits > .item::before {
  content: counter(item, decimal-leading-zero);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  font-size: 7.8rem;
  font-weight: 300;
}
.list-merits > .item > .title {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: var(--ha-fontsize-xl);
  margin-top: 1em;
}
.list-merits > .item > .img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.list-merits > .item > .text {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 1em;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .list-merits > .item > .text {
    line-height: 2.375;
  }
}

.list-voice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem !important;
}
@media (min-width: 768px) {
  .list-voice {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 9rem !important;
    gap: 5rem;
  }
}
.list-voice > .item {
  border: 3px solid #1878D9;
  border-radius: 0 0 0 30px;
  background: #fff;
}
@media not all and (min-width: 768px) {
  .list-voice > .item {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.list-voice > .item > .content {
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .list-voice > .item > .content {
    padding: 2rem 3rem;
  }
}
.list-voice > .item > .content > .title {
  font-size: var(--ha-fontsize-xl);
  line-height: 1.5;
  padding-bottom: 0.5em;
  margin-bottom: 0.25em;
  border-bottom: 1px solid #000;
}
.list-voice > .item > .content > .name {
  font-size: var(--ha-fontsize-s);
}
.list-voice > .item > .content > .text {
  margin-top: 1em;
  line-height: 2;
}

.list-company {
  display: grid;
  grid-template-columns: 8em 1fr;
  max-width: 80rem;
  margin: 0 auto !important;
  font-size: var(--ha-fontsize-base);
  font-weight: 500;
}
@media (min-width: 768px) {
  .list-company {
    font-size: var(--ha-fontsize-xl);
  }
}
.list-company > .label, .list-company > .value {
  padding: 0.5em;
  margin-top: 1em;
  border-bottom: 1px solid #000;
}

#gnav {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: var(--ha-zindex-gnav);
  width: 100%;
  height: 100%;
  background: rgba(156, 196, 237, 0.8);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: grid;
  place-items: center;
}
#gnav > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.is-menuopen #gnav {
  opacity: 1;
  pointer-events: initial;
}

.list-nav > .item {
  margin: 1em 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.is-menuopen .list-nav > .item {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.is-menuopen .list-nav > .item:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.is-menuopen .list-nav > .item:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.is-menuopen .list-nav > .item:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.is-menuopen .list-nav > .item:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.is-menuopen .list-nav > .item:nth-child(5) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.is-menuopen .list-nav > .item:nth-child(6) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.is-menuopen .list-nav > .item:nth-child(7) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
.list-nav > .item > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5rem;
  font-size: 2rem;
  color: inherit;
  text-decoration: none;
  padding: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .list-nav > .item > .link {
    font-size: 2.4rem;
  }
}
.list-nav > .item > .link:hover {
  color: #FF914D;
}
.list-nav > .item > .link:hover > span {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.list-nav > .item > .link > span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list-nav > .item > .link::before {
  display: block;
  border-style: solid;
  border-width: 0.6em 0.4em 0 0.4em;
  border-color: #FF914D transparent transparent transparent;
  margin-right: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/**
 * ** Swiper 3.3.1
 * ** Most modern mobile touch slider and framework with hardware accelerated transitions
 * **
 * ** http://www.idangero.us/swiper/
 * **
 * ** Copyright 2016, Vladimir Kharlampidi
 * ** The iDangero.us
 * ** http://www.idangero.us/
 * **
 * ** Licensed under MIT
 * **
 * ** Released on: February 7, 2016
 * **/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  position: relative;
}

.swiper-container-autoheight {
  height: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper-container-cube, .swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-flip .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-next {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.section-introduction > .container > .heading {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .section-introduction > .container > .heading {
    font-size: 3.6rem;
  }
}
.section-introduction > .container > .text {
  font-size: var(--ha-fontsize-l);
  line-height: 1.75;
  text-align: center;
  border: 1px solid #000;
  border-width: 0 0 1px 1px;
  max-width: 83.5rem;
  margin: 2rem auto 0;
  padding-bottom: 2rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .section-introduction > .container > .text {
    line-height: 2.75;
    margin: 6.5rem auto 0;
    padding-bottom: 5rem;
  }
}

.section-insert {
  padding: 8rem 0 10rem;
  background: url(../img/bg-insert.jpg) no-repeat center left/cover;
}
@media (min-width: 768px) {
  .section-insert {
    padding: 165px 0 185px;
  }
}
.section-insert > .inner {
  margin: 0 auto;
  padding: 2rem 1rem;
  max-width: 51.3rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
@media (min-width: 768px) {
  .section-insert > .inner {
    padding: 5rem 7rem;
  }
}
.section-insert > .inner > p {
  font-size: var(--ha-fontsize-l);
  line-height: 2;
  font-weight: 500;
}

.section-promise {
  background: #fff;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section-promise {
    padding: 10rem 0;
  }
}
.section-promise > .container > .image {
  margin: 2rem auto 0;
  max-width: 962px;
}
@media (min-width: 768px) {
  .section-promise > .container > .image {
    margin: 8rem auto 0;
  }
}

.section-company {
  background: #fefefe;
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#fefefe));
  background: linear-gradient(to bottom, #f2f2f2, #fefefe);
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .section-company {
    padding: 6rem 0 8rem;
  }
}
.section-company > .container > .heading-primary {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-company > .container > .heading-primary {
    margin-bottom: 5rem;
  }
}

.section-contact {
  padding: 3rem 0 2rem;
}
@media (min-width: 768px) {
  .section-contact {
    padding: 5rem 0 3rem;
  }
}
@media (min-width: 1024px) {
  .section-contact > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.section-contact > .container > .heading-primary {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-contact > .container > .heading-primary {
    margin-bottom: 2.5rem;
  }
}

.section-contact__note {
  margin: 0 0 2rem;
  font-size: var(--ha-fontsize-s);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}
@media (min-width: 768px) {
  .section-contact__note {
    margin-bottom: 2.5rem;
    font-size: var(--ha-fontsize-base);
  }
}

@media (min-width: 768px) {
  .section-contact__br {
    display: none;
  }
}

.form-contact {
  max-width: 64rem;
  margin: 0 auto;
  color: #fff;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.form-contact__field {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .form-contact__field {
    margin-bottom: 1.5rem;
  }
}
.form-contact__field:last-of-type {
  margin-bottom: 0;
}
.form-contact__field--privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.form-contact__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--ha-fontsize-s);
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .form-contact__label {
    font-size: var(--ha-fontsize-base);
  }
}
.form-contact__label--check {
  margin-bottom: 0;
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form-contact__req {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.1em 0.45em;
  font-size: var(--ha-fontsize-xs);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  vertical-align: 0.05em;
  background: var(--ha-color-accent);
  border-radius: 2px;
}

.form-contact__optional {
  display: inline-block;
  margin-left: 0.5em;
  font-size: var(--ha-fontsize-xs);
  font-weight: 500;
  color: var(--ha-color-gray);
}

.form-contact__control {
  display: block;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0.85em 1em;
  font-family: inherit;
  font-size: var(--ha-fontsize-base);
  line-height: 1.5;
  color: var(--ha-color-text);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.form-contact__control::-webkit-input-placeholder {
  color: var(--ha-color-lightgray);
}
.form-contact__control::-moz-placeholder {
  color: var(--ha-color-lightgray);
}
.form-contact__control:-ms-input-placeholder {
  color: var(--ha-color-lightgray);
}
.form-contact__control::-ms-input-placeholder {
  color: var(--ha-color-lightgray);
}
.form-contact__control::placeholder {
  color: var(--ha-color-lightgray);
}
.form-contact__control:hover {
  border-color: #aaa;
}
.form-contact__control:focus {
  outline: none;
  border-color: var(--ha-color-primary);
  -webkit-box-shadow: 0 0 0 3px rgba(190, 26, 33, 0.15);
  box-shadow: 0 0 0 3px rgba(190, 26, 33, 0.15);
}
.form-contact__control--textarea {
  min-height: 9rem;
  resize: vertical;
}
.form-contact__control--select {
  padding-right: 2.5rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px 6px;
}

.form-contact__select-wrap {
  position: relative;
}

.form-contact__checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: var(--ha-color-primary);
}

.form-contact__link {
  color: #28629D;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-contact__link:hover {
  text-decoration: none;
}

.form-contact__actions {
  margin-top: 2rem;
  text-align: center;
}

.form-contact__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 12rem;
  min-height: 3rem;
  padding: 0.85em 2.5em;
  font-family: inherit;
  font-size: var(--ha-fontsize-base);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  cursor: pointer;
  background: var(--ha-color-primary);
  border: none;
  border-radius: 3px;
  -webkit-transition: background 0.15s ease, opacity 0.15s ease;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.form-contact__submit:hover {
  background: var(--ha-color-secondary);
}
.form-contact__submit:focus-visible {
  outline: 2px solid var(--ha-color-primary);
  outline-offset: 3px;
}
.form-contact__submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.form-contact__feedback {
  margin: 1.25rem 0 0;
  min-height: 1.5em;
  font-size: var(--ha-fontsize-base);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  padding: 0.5em;
}
.form-contact__feedback:empty {
  display: none;
}
.form-contact__feedback.is-loading {
  background-color: rgba(0, 0, 0, 0.3);
}
.form-contact__feedback.is-success {
  background-color: #b8e994;
}
.form-contact__feedback.is-error {
  background-color: #ffb8b8;
}
/*# sourceMappingURL=style.css.map */
