@charset "UTF-8";
/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
- [A] FOUNDATION --------------------
1.variables
2.mixin
3.base
- [B] LAYOUT --------------------
1.wrap
2.main
3.header
4.footer
- [C] OBJECT --------------------
1.conponents
2.project
3.utility
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
/*===============================
// [A] FOUNDATION
===============================*/
:root {
  --color-lightblue: #e2f8ff;
  --color-blue: #01aef0;
  --color-darkblue: #0076a5;
  --color-orange: #ff8c1a;
  --color-yellow: #ffc260;
  --color-peach: #fef1e5;
  --color-line: #ffffff;
}

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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  font-size: 62.5%;
}

body {
  color: #3c3c3c;
  font-size: 2.5vw;
  background-color: white;
}
@media screen and (min-width: 960px) {
  body {
    font-size: 1.8rem;
  }
}

input,
select,
textarea {
  background-color: white;
}

input[type=radio],
input[type=checkbox] {
  background-color: white;
  accent-color: initial;
}

p, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

/*===============================
// [B] LAYOUT
===============================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2%;
  z-index: 999;
}
.l-header .l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.l-header .l-header__inner .l-header__item.l-header__item--logo {
  width: 30%;
}
.l-header .l-header__inner .l-header__item.l-header__item--nav {
  width: 70%;
}
@media screen and (min-width: 960px) {
  .l-header {
    padding: 30px 40px;
  }
  .l-header .l-header__inner .l-header__item.l-header__item--logo {
    width: 40%;
  }
  .l-header .l-header__inner .l-header__item.l-header__item--nav {
    width: 60%;
  }
}

/*===============================
// [C] OBJECT
===============================*/
.p-logo.p-logo--top {
  max-width: 214px;
}
.p-logo.p-logo--bottom {
  width: 30%;
}
@media screen and (min-width: 960px) {
  .p-logo.p-logo--bottom {
    width: initial;
    max-width: 356px;
  }
}

.p-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.p-navi.p-navi--header .p-navi__item {
  margin-left: 3%;
}
.p-navi.p-navi--header .p-navi__item.p-navi__item--contact {
  width: 42%;
}
.p-navi.p-navi--header .p-navi__item.p-navi__item--contact2 {
  width: 42%;
}
.p-navi.p-navi--header .p-navi__item.p-navi__item--contact a {
  background-color: #00b4fc;
}
.p-navi.p-navi--header .p-navi__item.p-navi__item--contact2  a {
  background-color: #ff9d3c;
}
.p-navi.p-navi--header .p-navi__item.p-navi__item--line {
  width: 50%;
}
.p-navi.p-navi--header .p-navi__item.p-navi__item--line a {
  background-color: #06b655;
}
.p-navi.p-navi--header .p-navi__item a {
  display: block;
  padding: 1vw;
  color: white;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-navi.p-navi--header .p-navi__item a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 960px) {
  .p-navi.p-navi--header .p-navi__item {
    margin-left: 20px;
  }
  .p-navi.p-navi--header .p-navi__item.p-navi__item--contact, .p-navi.p-navi--header .p-navi__item.p-navi__item--contact2, .p-navi.p-navi--header .p-navi__item.p-navi__item--line {
    width: initial;
  }
  .p-navi.p-navi--header .p-navi__item a {
    padding: 10px 20px;
  }
}

.p-button.p-button--cv {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-button.p-button--cv a {
  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;
  padding: 4vw 5vw;
  color: white;
  text-decoration: none;
  border-radius: 10vw;
  background: -webkit-gradient(linear, right top, left top, from(var(--color-orange)), to(#ff9d3c));
  background: linear-gradient(to left, var(--color-orange), #ff9d3c);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-button.p-button--cv a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 960px) {
  .p-button.p-button--cv a {
    padding: 20px 40px;
    border-radius: 40px;
  }
}

.p-button.p-button--cv2 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-button.p-button--cv2 a {
  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;
  padding: 4vw 5vw;
  color: white;
  text-decoration: none;
  border-radius: 10vw;
  background: #40c6ff;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-button.p-button--cv2 a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 960px) {
  .p-button.p-button--cv2 a {
    padding: 20px 40px;
    border-radius: 40px;
  }
}

.p-button.p-button--cv3 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-button.p-button--cv3 a {
  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;
  padding: 4vw 5vw;
  color: white;
  text-decoration: none;
  border-radius: 10vw;
  background: #ff8c1a;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-button.p-button--cv3 a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 960px) {
  .p-button.p-button--cv3 a {
    padding: 20px 40px;
    border-radius: 40px;
  }
}


.p-button.p-button--backtotop {
  display: none;
  position: fixed;
  bottom: 2%;
  right: 3%;
  width: 20%;
}
.p-button.p-button--backtotop button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-button.p-button--backtotop .p-button__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 4vw;
  font-family: "Gabarito", cursive;
  background-color: var(--color-lightblue);
  border-radius: 100%;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}
.p-button.p-button--backtotop .p-button__item::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-button.p-button--backtotop .p-button__item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-blue);
  line-height: 1;
}
.p-button.p-button--backtotop .p-button__item > span::before {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  margin-bottom: 2%;
  border-top: 3px solid var(--color-blue);
  border-right: 3px solid var(--color-blue);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-button.p-button--backtotop .p-button__item:hover {
  background-color: var(--color-blue);
}
.p-button.p-button--backtotop .p-button__item:hover > span {
  color: white;
}
.p-button.p-button--backtotop .p-button__item:hover > span::before {
  border-color: white;
}
@media screen and (min-width: 960px) {
  .p-button.p-button--backtotop {
    bottom: 30px;
    right: 15px;
    width: 80px;
  }
  .p-button.p-button--backtotop .p-button__item {
    position: relative;
    font-size: 2rem;
  }
  .p-button.p-button--backtotop .p-button__item > span::before {
    width: 20px;
    height: 20px;
  }
}
.p-button.p-button--line {
  position: fixed;
  bottom: 24%;
  left: 0;
  width: 8%;
  max-width: 68px;
}
.p-button.p-button--line .p-button__item {
  display: block;
  width: 100%;
  padding-top: 30%;
  padding-bottom: 30%;
  color: white;
  text-decoration: none;
  background-color: #06b655;
  border-radius: 0 6px 6px 0;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-button.p-button--line .p-button__item > span:not(.p-icon) {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-top: 5%;
  margin-right: auto;
  margin-left: auto;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.p-button.p-button--line .p-button__item > span:not(.p-icon) > span {
  text-shadow: 1px -1px 1px rgba(0, 0, 0, 0.3);
}
.p-button.p-button--line .p-button__item:hover {
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .p-button.p-button--line {
    bottom: 8%;
  }
}
.p-button.p-button--blueline {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.p-button.p-button--blueline a {
  display: block;
  padding: 16px;
  text-decoration: none;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-button.p-button--blueline a::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  font-size: 1.6em;
  vertical-align: middle;
  line-height: 1;
}
.p-button.p-button--blueline a:hover {
  color: white;
  background-color: var(--color-blue);
}
@media screen and (min-width: 960px) {
  .p-button.p-button--blueline {
    width: 90%;
  }
}
.p-button.p-button--office {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
.p-button.p-button--office a {
  display: block;
  padding: 4vw 5vw;
  color: var(--color-blue);
  text-decoration: none;
  border-radius: 10vw;
  background-color: white;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-button.p-button--office a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 960px) {
  .p-button.p-button--office {
    max-width: 514px;
  }
  .p-button.p-button--office a {
    padding: 20px 40px;
    border-radius: 40px;
  }
}
.p-button.p-button--line2 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-button.p-button--line2 a {
  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;
  padding: 4vw 5vw;
  text-decoration: none;
  border-radius: 3vw;
  background-color:#06c755;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-button.p-button--line2 a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 960px) {
  .p-button.p-button--line2 a {
    padding: 10px 30px;
    border-radius: 40px;
  }
}

.p-section {
  width: 100%;
}

.p-hero {
  position: relative;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--color-lightblue);
  background-image: url(../../images/202310_01/hero_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  border-radius: 0 0 15vw 15vw;
  z-index: 0;
}
.p-hero::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 153.75%;
  z-index: 1;
}
.p-hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5%;
  left: 0;
  background-image: url(../../images/202310_01/hero_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.p-hero .p-hero__inner {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  z-index: 2;
}
.p-hero .p-hero__inner .p-hero__item {
  position: absolute;
}
.p-hero .p-hero__inner .p-hero__item.p-hero__item--title {
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 85%;
  font-size: 7vw;
  line-height: 1.2;
  text-align: center;
}
.p-hero .p-hero__inner .p-hero__item.p-hero__item--text {
  top: 52%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  font-size: 4vw;
  line-height: 1.5;
  text-align: center;
}
.p-hero .p-hero__inner .p-hero__item.p-hero__item--list {
  bottom: 0;
  right: 5%;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-hero {
    height: 560px;
    background-image: url(../../images/202310_01/hero_bg_dt.jpg);
    border-radius: 0 0 80px 80px;
    background-size: initial;
    background-position: bottom center;
  }
  .p-hero::before {
    content: none;
  }
  .p-hero::after {
    width: 914px;
    bottom: -62px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url(../../images/202310_01/hero_img_dt.png);
  }
  .p-hero .p-hero__inner {
    position: relative;
    max-width: 1280px;
    width: 90%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    z-index: 2;
  }
  .p-hero .p-hero__inner .p-hero__item {
    position: absolute;
  }
  .p-hero .p-hero__inner .p-hero__item.p-hero__item--title {
    top: 150px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    line-height: 1.4;
    font-size: 5.5rem;
    text-align: center;
  }
  .p-hero .p-hero__inner .p-hero__item.p-hero__item--text {
    top: 300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    font-size: 2.6rem;
    text-align: center;
  }
  .p-hero .p-hero__inner .p-hero__item.p-hero__item--list {
    bottom: 0;
    right: 0;
    max-width: 560px;
    width: 100%;
  }
}

.p-intro {
  overflow: hidden;
}
.p-intro .p-intro__inner {
  position: relative;
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  background-image: url(../../images/202310_01/intro_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.p-intro .p-intro__inner::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 138.125%;
}
.p-intro .p-intro__inner .p-intro__item {
  position: absolute;
  font-size: 3.6vw;
  line-height: 1.3;
}
.p-intro .p-intro__inner .p-intro__item > span {
  font-size: 1.2em;
}
.p-intro .p-intro__inner .p-intro__item:nth-child(1) {
  bottom: 39%;
  left: 13%;
}
.p-intro .p-intro__inner .p-intro__item:nth-child(2) {
  top: 28%;
  left: 5%;
}
.p-intro .p-intro__inner .p-intro__item:nth-child(3) {
  top: 10%;
  left: 36%;
}
.p-intro .p-intro__inner .p-intro__item:nth-child(4) {
  top: 28%;
  right: 10%;
}
.p-intro .p-intro__inner .p-intro__item:nth-child(5) {
  bottom: 39%;
  right: 12%;
}
@media screen and (min-width: 960px) {
  .p-intro .p-intro__inner {
    height: 640px;
    background-image: url(../../images/202310_01/intro_bg_dt.png);
  }
  .p-intro .p-intro__inner .p-intro__item {
    font-size: 2.4rem;
  }
  .p-intro .p-intro__inner .p-intro__item:nth-child(1) {
    bottom: 70px;
    left: 150px;
  }
  .p-intro .p-intro__inner .p-intro__item:nth-child(2) {
    top: 210px;
    left: 180px;
  }
  .p-intro .p-intro__inner .p-intro__item:nth-child(3) {
    top: 120px;
    left: 550px;
  }
  .p-intro .p-intro__inner .p-intro__item:nth-child(4) {
    top: 220px;
    right: 200px;
  }
  .p-intro .p-intro__inner .p-intro__item:nth-child(5) {
    bottom: 80px;
    right: 150px;
  }
}

.p-title.p-title--section {
  line-height: 1.4;
}
.p-title.p-title--section::before {
  content: attr(data-title);
  display: block;
  font-size: 0.6em;
  font-family: "Gabarito", cursive;
  letter-spacing: 0.1em;
}
.p-title.p-title--section.p-title--section--blue::before {
  color: var(--color-blue);
}
.p-title.p-title--section.p-title--section--orange::before {
  color: var(--color-orange);
}
.p-title.p-title--office {
  position: relative;
  color: var(--color-blue);
}
.p-title.p-title--office .p-title__inner .p-title__item.p-title__item--icon {
  display: inline-block;
  width: 16%;
  margin-right: 2%;
}
.p-title.p-title--office .p-title__inner .p-title__item.p-title__item--icon > svg {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-title.p-title--office .p-title__inner .p-title__item.p-title__item--icon {
    width: 140px;
    margin-right: 10px;
  }
}

.p-text.p-text--why {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-text.p-text--why .p-text__item {
  display: block;
}
.p-text.p-text--why .p-text__item.p-text__item--icon > span {
  display: block;
  text-align: center;
}
.p-text.p-text--why .p-text__item.p-text__item--icon > span:nth-child(2) {
  position: relative;
  width: 13vw;
  height: 100%;
  z-index: 0;
}
.p-text.p-text--why .p-text__item.p-text__item--icon > span:nth-child(2) > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  z-index: 2;
}
.p-text.p-text--why .p-text__item.p-text__item--icon > span:nth-child(2)::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  background-color: var(--color-orange);
  border-radius: 100%;
  z-index: 1;
}
.p-text.p-text--why .p-text__item.p-text__item--title {
  padding-left: 10px;
}
@media screen and (min-width: 960px) {
  .p-text.p-text--why .p-text__item.p-text__item--icon > span:nth-child(2) {
    width: 72px;
  }
}

.p-image.p-image--round img {
  border-radius: 3vw;
}
@media screen and (min-width: 960px) {
  .p-image.p-image--round img {
    border-radius: 10px;
  }
}
.p-image.p-image--blue img {
  -webkit-box-shadow: 1vw 1vw 1px #a6e8ff;
          box-shadow: 1vw 1vw 1px #a6e8ff;
}
@media screen and (min-width: 960px) {
  .p-image.p-image--blue img {
    -webkit-box-shadow: 5px 5px 1px #a6e8ff;
            box-shadow: 5px 5px 1px #a6e8ff;
  }
}
.p-image.p-image--yellow img {
  -webkit-box-shadow: 1vw 1vw 1px var(--color-yellow);
          box-shadow: 1vw 1vw 1px var(--color-yellow);
}
@media screen and (min-width: 960px) {
  .p-image.p-image--yellow img {
    -webkit-box-shadow: 8px 8px 1px var(--color-yellow);
            box-shadow: 8px 8px 1px var(--color-yellow);
  }
}

.p-grid {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 960px) {
  .p-grid.p-grid--why {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: -webkit-max-content 1fr;
    -ms-grid-rows: max-content 1fr;
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
  }
  .p-grid.p-grid--why > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-grid.p-grid--why > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-grid.p-grid--why > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-grid.p-grid--why > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .p-grid.p-grid--why .p-grid__item.p-grid__item--title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    padding-right: 40px;
  }
  .p-grid.p-grid--why .p-grid__item.p-grid__item--image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .p-grid.p-grid--why .p-grid__item.p-grid__item--text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding-right: 40px;
  }
  .p-grid.p-grid--why--reverse {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: -webkit-max-content 1fr;
    -ms-grid-rows: max-content 1fr;
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
  }
  .p-grid.p-grid--why--reverse > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-grid.p-grid--why--reverse > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-grid.p-grid--why--reverse > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-grid.p-grid--why--reverse > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .p-grid.p-grid--why--reverse .p-grid__item.p-grid__item--title {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    padding-left: 40px;
  }
  .p-grid.p-grid--why--reverse .p-grid__item.p-grid__item--image {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .p-grid.p-grid--why--reverse .p-grid__item.p-grid__item--text {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding-left: 40px;
  }
}
.p-grid.p-grid--why2 {
  -ms-grid-columns: 20% 1fr;
  grid-template-columns: 20% 1fr;
  -ms-grid-rows: -webkit-max-content -webkit-max-content 1fr;
  -ms-grid-rows: max-content max-content 1fr;
  grid-template-rows: -webkit-max-content -webkit-max-content 1fr;
  grid-template-rows: max-content max-content 1fr;
}
.p-grid.p-grid--why2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-grid.p-grid--why2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.p-grid.p-grid--why2 > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.p-grid.p-grid--why2 > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.p-grid.p-grid--why2 > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-grid.p-grid--why2 > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.p-grid.p-grid--why2 .p-grid__item.p-grid__item--image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
}
.p-grid.p-grid--why2 .p-grid__item.p-grid__item--title {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-left: 5%;
}
.p-grid.p-grid--why2 .p-grid__item.p-grid__item--text {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  padding-left: 5%;
}
.p-grid.p-grid--why2 .p-grid__item.p-grid__item--cap {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  padding-left: 5%;
}
@media screen and (min-width: 960px) {
  .p-grid.p-grid--why2 {
    -ms-grid-columns: 40% 1fr;
    grid-template-columns: 40% 1fr;
    -ms-grid-rows: -webkit-max-content -webkit-max-content 1fr;
    -ms-grid-rows: max-content max-content 1fr;
    grid-template-rows: -webkit-max-content -webkit-max-content 1fr;
    grid-template-rows: max-content max-content 1fr;
  }
  .p-grid.p-grid--why2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-grid.p-grid--why2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-grid.p-grid--why2 > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-grid.p-grid--why2 > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .p-grid.p-grid--why2 > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-grid.p-grid--why2 > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .p-grid.p-grid--why2 .p-grid__item.p-grid__item--image {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding-bottom: 8px;
  }
  .p-grid.p-grid--why2 .p-grid__item.p-grid__item--title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    padding-bottom: 8px;
    padding-left: 0;
  }
  .p-grid.p-grid--why2 .p-grid__item.p-grid__item--text {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
  }
  .p-grid.p-grid--why2 .p-grid__item.p-grid__item--cap {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    padding-left: 0;
  }
}
.p-grid.p-grid--voice {
  -ms-grid-columns: 25% 1fr;
  grid-template-columns: 25% 1fr;
  -ms-grid-rows: -webkit-max-content;
  -ms-grid-rows: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}
.p-grid.p-grid--voice > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-grid.p-grid--voice > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.p-grid.p-grid--voice .p-grid__item:nth-child(2) {
  padding-left: 20px;
}

.p-col-4for0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.p-col-4for0 .p-col__item {
  width: 22%;
  margin-top: 3%;
}
@media screen and (min-width: 960px) {
  .p-col-4for0 .p-col__item {
    width: auto;
    margin-top: 0;
  }
}

@media screen and (min-width: 960px) {
  .p-col-dt {
    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;
  }
}
@media screen and (min-width: 960px) {
  .p-col-dt.p-col-dt--usage {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 960px) {
  .p-col-3-dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-col-3-dt .p-col__item {
    width: 31%;
  }
}
@media screen and (min-width: 960px) {
  .p-col-3-dt.p-col-3-dt--office .p-col__item {
    width: 33%;
  }
}

.p-col-2-dt.p-col-2-dt--reverse {
  border-top: 1px dashed lightgray;
}
@media screen and (min-width: 960px) {
  .p-col-2-dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-col-2-dt.p-col-2-dt--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-col-2-dt .p-col__item {
    width: 48%;
  }
}

.p-cap.p-cap--usage .p-cap__inner, .p-cap.p-cap--why .p-cap__inner {
  position: relative;
}
.p-cap.p-cap--usage .p-cap__inner p, .p-cap.p-cap--why .p-cap__inner p {
  line-height: 1.4;
}
.p-cap.p-cap--usage .p-cap__inner::before, .p-cap.p-cap--usage .p-cap__inner::after, .p-cap.p-cap--why .p-cap__inner::before, .p-cap.p-cap--why .p-cap__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
}
.p-cap.p-cap--usage .p-cap__inner::before, .p-cap.p-cap--why .p-cap__inner::before {
  left: -3vw;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.p-cap.p-cap--usage .p-cap__inner::after, .p-cap.p-cap--why .p-cap__inner::after {
  right: -3vw;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media screen and (min-width: 960px) {
  .p-cap.p-cap--usage .p-cap__inner p, .p-cap.p-cap--why .p-cap__inner p {
    line-height: 1.6;
  }
  .p-cap.p-cap--usage .p-cap__inner::before, .p-cap.p-cap--usage .p-cap__inner::after, .p-cap.p-cap--why .p-cap__inner::before, .p-cap.p-cap--why .p-cap__inner::after {
    width: 2px;
  }
  .p-cap.p-cap--usage .p-cap__inner::before, .p-cap.p-cap--why .p-cap__inner::before {
    left: -30px;
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  .p-cap.p-cap--usage .p-cap__inner::after, .p-cap.p-cap--why .p-cap__inner::after {
    right: -30px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}
.p-cap.p-cap--usage {
  position: absolute;
  top: -10vw;
  right: 0;
}
.p-cap.p-cap--usage .p-cap__inner::before, .p-cap.p-cap--usage .p-cap__inner::after {
  background-color: var(--color-blue);
}
@media screen and (min-width: 960px) {
  .p-cap.p-cap--usage {
    top: -20px;
    right: 60px;
  }
}
.p-cap.p-cap--why {
  position: absolute;
  top: -7vw;
  right: 5vw;
}
.p-cap.p-cap--why .p-cap__inner::before, .p-cap.p-cap--why .p-cap__inner::after {
  background-color: var(--color-orange);
}
@media screen and (min-width: 960px) {
  .p-cap.p-cap--why {
    top: -20px;
    left: 60px;
    right: initial;
  }
}
.p-cap.p-cap-why2, .p-cap.p-cap-why3 {
  z-index: 99;
}
.p-cap.p-cap-why2 p, .p-cap.p-cap-why3 p {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1.4;
  border-radius: 45%;
  background-color: var(--color-lightblue);
  z-index: 0;
}
.p-cap.p-cap-why2 p::before, .p-cap.p-cap-why3 p::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.p-cap.p-cap-why2 {
  position: absolute;
  top: -60%;
  right: 0;
  width: 40%;
}
.p-cap.p-cap-why2 p {
  padding: 6% 0;
}
.p-cap.p-cap-why2 p::before {
  left: 5%;
  border-top: 15px solid var(--color-lightblue);
  border-right: 20px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid var(--color-lightblue);
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media screen and (min-width: 960px) {
  .p-cap.p-cap-why2 {
    top: initial;
    bottom: -100px;
    right: 10px;
    width: initial;
  }
  .p-cap.p-cap-why2 p {
    padding: 40px;
  }
  .p-cap.p-cap-why2 p::before {
    left: 20px;
  }
}
.p-cap.p-cap-why3 {
  position: absolute;
  top: 42%;
  left: 0;
  width: 50%;
}
.p-cap.p-cap-why3 p {
  padding: 6% 0;
}
.p-cap.p-cap-why3 p::before {
  right: 5%;
  border-top: 15px solid var(--color-lightblue);
  border-right: 20px solid var(--color-lightblue);
  border-bottom: 15px solid transparent;
  border-left: 20px solid transparent;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media screen and (min-width: 960px) {
  .p-cap.p-cap-why3 {
    width: 300px;
    top: -50px;
    left: initial;
    right: 10px;
  }
  .p-cap.p-cap-why3 p {
    padding: 30px 0;
  }
  .p-cap.p-cap-why3 p::before {
    right: initial;
    left: 20px;
    border-top: 15px solid var(--color-lightblue);
    border-right: 20px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--color-lightblue);
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
.p-cap.p-cap--line {
  position: absolute;
  top: 0;
  right: 0;
}
.p-cap.p-cap--line > span {
  position: relative;
}
.p-cap.p-cap--line > span::before, .p-cap.p-cap--line > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgb(30, 30, 30);
}
.p-cap.p-cap--line > span::before {
  left: -3vw;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.p-cap.p-cap--line > span::after {
  right: -3vw;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media screen and (min-width: 960px) {
  .p-cap.p-cap--line {
    line-height: 1.2;
  }
  .p-cap.p-cap--line > span::before {
    left: -20px;
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  .p-cap.p-cap--line > span::after {
    right: -20px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}

.p-block.p-block--hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-block.p-block--hero .p-block__item {
  width: 28%;
}
@media screen and (min-width: 960px) {
  .p-block.p-block--hero .p-block__item {
    width: 30%;
    margin-left: 1%;
  }
}
.p-block.p-block--intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.p-block.p-block--intro .p-block__item {
  position: relative;
}
.p-block.p-block--intro .p-block__item:nth-child(1), .p-block.p-block--intro .p-block__item:nth-child(3) {
  width: 40%;
  padding-top: 5%;
  font-size: 5vw;
}
.p-block.p-block--intro .p-block__item:nth-child(1) .p-block__child, .p-block.p-block--intro .p-block__item:nth-child(3) .p-block__child {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.6em;
}
.p-block.p-block--intro .p-block__item:nth-child(2) {
  width: 20%;
  font-size: 3vw;
}
@media screen and (min-width: 960px) {
  .p-block.p-block--intro .p-block__item:nth-child(1), .p-block.p-block--intro .p-block__item:nth-child(3) {
    padding-top: 30px;
    font-size: 4.5rem;
  }
  .p-block.p-block--intro .p-block__item:nth-child(1) .p-block__child, .p-block.p-block--intro .p-block__item:nth-child(3) .p-block__child {
    font-size: 0.5em;
  }
  .p-block.p-block--intro .p-block__item:nth-child(2) {
    font-size: 2.5rem;
  }
}
.p-block.p-block--manager {
  margin-top: 5%;
}
.p-block.p-block--manager .p-block__item.p-block__item--pic {
  width: 30%;
  margin-right: auto;
  margin-left: auto;
}
.p-block.p-block--manager .p-block__item.p-block__item--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  margin-top: 5%;
  padding: 5%;
  background-color: var(--color-peach);
  border-radius: 10px;
}
.p-block.p-block--manager .p-block__item.p-block__item--text::before {
  content: "";
  display: block;
  position: absolute;
  top: -7vw;
  left: 80%;
  border-top: 4vw solid transparent;
  border-right: 4vw solid transparent;
  border-bottom: 4vw solid var(--color-peach);
  border-left: 4vw solid transparent;
}
@media screen and (min-width: 960px) {
  .p-block.p-block--manager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin-top: auto;
  }
  .p-block.p-block--manager .p-block__item.p-block__item--pic {
    width: 24%;
    margin-right: 0;
    margin-left: 0;
  }
  .p-block.p-block--manager .p-block__item.p-block__item--text {
    width: 70%;
    margin-top: 0;
    padding: 16px;
  }
  .p-block.p-block--manager .p-block__item.p-block__item--text::before {
    top: initial;
    bottom: 20px;
    left: -40px;
    border-top: 10px solid transparent;
    border-right: 20px solid var(--color-peach);
    border-bottom: 10px solid transparent;
    border-left: 20px solid transparent;
  }
}
.p-block.p-block--feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-block.p-block--feature .p-block__item:nth-child(1), .p-block.p-block--feature .p-block__item:nth-child(3), .p-block.p-block--feature .p-block__item:nth-child(5), .p-block.p-block--feature .p-block__item:nth-child(7) {
  width: 28%;
}
.p-block.p-block--feature .p-block__item:nth-child(2), .p-block.p-block--feature .p-block__item:nth-child(4), .p-block.p-block--feature .p-block__item:nth-child(6) {
  width: 8%;
}
@media screen and (min-width: 960px) {
  .p-block.p-block--feature {
    width: 90%;
  }
}
.p-block.p-block--flow {
  position: relative;
  padding-top: 3%;
  padding-bottom: 10%;
  z-index: 0;
}
.p-block.p-block--flow::before {
  content: "";
  display: block;
  width: 0.6vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: var(--color-orange);
  z-index: -1;
}
.p-block.p-block--flow::after {
  content: "";
  display: block;
  width: 5vw;
  height: 5vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-right: 0.6vw solid var(--color-orange);
  border-bottom: 0.6vw solid var(--color-orange);
  -webkit-transform: translate(-50%) rotate(45deg);
          transform: translate(-50%) rotate(45deg);
}
.p-block.p-block--flow .p-block__item {
  margin-top: 8%;
  padding: 5%;
  border-radius: 10px;
  background-color: white;
}
.p-block.p-block--flow .p-block__item .p-block__child.p-block__child--title::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10vw;
  height: 10vw;
  margin-right: 3%;
  font-family: "Gabarito", cursive;
  font-size: 5vw;
  line-height: 1;
  color: black;
  text-align: center;
  border: 2px dotted var(--color-orange);
  border-radius: 100%;
}
.p-block.p-block--flow .p-block__item .p-block__child.p-block__child--text {
  margin-top: 3%;
}
.p-block.p-block--flow .p-block__item .p-block__child.p-block__child--point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 3%;
}
.p-block.p-block--flow .p-block__item .p-block__child.p-block__child--point .p-blockChild__item {
  position: relative;
  width: 22%;
  margin-right: 2%;
}
.p-block.p-block--flow .p-block__item .p-block__child.p-block__child--point .p-blockChild__item > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-block.p-block--flow .p-block__item .p-block__child.p-block__child--point .p-blockChild__item::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
  background-color: var(--color-peach);
}
.p-block.p-block--flow .p-block__item:nth-child(1) .p-block__child--title::before {
  content: "1";
}
.p-block.p-block--flow .p-block__item:nth-child(2) .p-block__child--title::before {
  content: "2";
}
.p-block.p-block--flow .p-block__item:nth-child(3) .p-block__child--title::before {
  content: "3";
}
.p-block.p-block--flow .p-block__item:nth-child(4) .p-block__child--title::before {
  content: "4";
}
@media screen and (min-width: 960px) {
  .p-block.p-block--flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 60px;
  }
  .p-block.p-block--flow::before {
    width: 4px;
  }
  .p-block.p-block--flow::after {
    width: 20px;
    height: 20px;
    border-right: 0.6vw solid var(--color-orange);
    border-bottom: 0.6vw solid var(--color-orange);
  }
  .p-block.p-block--flow .p-block__item {
    width: 50%;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background-color: initial;
  }
  .p-block.p-block--flow .p-block__item .p-block__child.p-block__child--title {
    position: relative;
    border-bottom: 3px dotted var(--color-orange);
  }
  .p-block.p-block--flow .p-block__item .p-block__child.p-block__child--title::before {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-right: 0;
    font-size: 2.6rem;
    border: 3px dotted var(--color-orange);
    background-color: var(--color-peach);
  }
  .p-block.p-block--flow .p-block__item .p-block__child.p-block__child--text {
    margin-top: 24px;
  }
  .p-block.p-block--flow .p-block__item .p-block__child.p-block__child--point {
    margin-top: 24px;
  }
  .p-block.p-block--flow .p-block__item .p-block__child.p-block__child--point .p-blockChild__item::before {
    background-color: white;
  }
  .p-block.p-block--flow .p-block__item:nth-child(1) .p-block__child.p-block__child--title, .p-block.p-block--flow .p-block__item:nth-child(1) .p-block__child.p-block__child--text, .p-block.p-block--flow .p-block__item:nth-child(1) .p-block__child.p-block__child--point, .p-block.p-block--flow .p-block__item:nth-child(3) .p-block__child.p-block__child--title, .p-block.p-block--flow .p-block__item:nth-child(3) .p-block__child.p-block__child--text, .p-block.p-block--flow .p-block__item:nth-child(3) .p-block__child.p-block__child--point {
    padding-right: 120px;
  }
  .p-block.p-block--flow .p-block__item:nth-child(1) .p-block__child.p-block__child--title::before, .p-block.p-block--flow .p-block__item:nth-child(3) .p-block__child.p-block__child--title::before {
    bottom: -25px;
    right: -25px;
  }
  .p-block.p-block--flow .p-block__item:nth-child(2), .p-block.p-block--flow .p-block__item:nth-child(4) {
    margin-top: -40px;
    margin-left: auto;
  }
  .p-block.p-block--flow .p-block__item:nth-child(2) .p-block__child.p-block__child--title, .p-block.p-block--flow .p-block__item:nth-child(2) .p-block__child.p-block__child--text, .p-block.p-block--flow .p-block__item:nth-child(2) .p-block__child.p-block__child--point, .p-block.p-block--flow .p-block__item:nth-child(4) .p-block__child.p-block__child--title, .p-block.p-block--flow .p-block__item:nth-child(4) .p-block__child.p-block__child--text, .p-block.p-block--flow .p-block__item:nth-child(4) .p-block__child.p-block__child--point {
    padding-left: 120px;
  }
  .p-block.p-block--flow .p-block__item:nth-child(2) .p-block__child.p-block__child--title::before, .p-block.p-block--flow .p-block__item:nth-child(4) .p-block__child.p-block__child--title::before {
    bottom: -25px;
    left: -25px;
  }
}
.p-block.p-block--flow2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 14%;
  padding-bottom: 10%;
  z-index: 0;
}
.p-block.p-block--flow2::before {
  content: "";
  display: block;
  width: 0.6vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: var(--color-blue);
  z-index: -1;
}
.p-block.p-block--flow2::after {
  content: "";
  display: block;
  width: 5vw;
  height: 5vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  border-right: 0.6vw solid var(--color-blue);
  border-bottom: 0.6vw solid var(--color-blue);
  -webkit-transform: translate(-50%) rotate(45deg);
          transform: translate(-50%) rotate(45deg);
}
.p-block.p-block--flow2 .p-block__item {
  width: 50%;
}
.p-block.p-block--flow2 .p-block__item .p-block__child.p-block__child--title {
  position: relative;
  border-bottom: 2px dotted var(--color-blue);
}
.p-block.p-block--flow2 .p-block__item .p-block__child.p-block__child--title::before {
  content: "";
  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;
  width: 10vw;
  height: 10vw;
  position: absolute;
  font-family: "Gabarito", cursive;
  font-size: 5vw;
  line-height: 1;
  color: black;
  text-align: center;
  border-radius: 100%;
  border: 2px dotted var(--color-blue);
  background-color: white;
}
.p-block.p-block--flow2 .p-block__item .p-block__child.p-block__child--text {
  margin-top: 3%;
}
.p-block.p-block--flow2 .p-block__item:nth-child(1) .p-block__child--title::before {
  content: "1";
}
.p-block.p-block--flow2 .p-block__item:nth-child(2) .p-block__child--title::before {
  content: "2";
}
.p-block.p-block--flow2 .p-block__item:nth-child(3) .p-block__child--title::before {
  content: "3";
}
.p-block.p-block--flow2 .p-block__item:nth-child(4) .p-block__child--title::before {
  content: "4";
}
.p-block.p-block--flow2 .p-block__item:nth-child(5) .p-block__child--title::before {
  content: "5";
}
.p-block.p-block--flow2 .p-block__item:nth-child(2) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(2) .p-block__child.p-block__child--text, .p-block.p-block--flow2 .p-block__item:nth-child(4) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(4) .p-block__child.p-block__child--text {
  padding-right: 15%;
}
.p-block.p-block--flow2 .p-block__item:nth-child(2) .p-block__child.p-block__child--title::before, .p-block.p-block--flow2 .p-block__item:nth-child(4) .p-block__child.p-block__child--title::before {
  bottom: -5vw;
  right: -5vw;
}
.p-block.p-block--flow2 .p-block__item:nth-child(1), .p-block.p-block--flow2 .p-block__item:nth-child(3), .p-block.p-block--flow2 .p-block__item:nth-child(5) {
  margin-top: -5%;
  margin-left: auto;
}
.p-block.p-block--flow2 .p-block__item:nth-child(1) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(1) .p-block__child.p-block__child--text, .p-block.p-block--flow2 .p-block__item:nth-child(3) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(3) .p-block__child.p-block__child--text, .p-block.p-block--flow2 .p-block__item:nth-child(5) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(5) .p-block__child.p-block__child--text {
  padding-left: 15%;
}
.p-block.p-block--flow2 .p-block__item:nth-child(1) .p-block__child.p-block__child--title::before, .p-block.p-block--flow2 .p-block__item:nth-child(3) .p-block__child.p-block__child--title::before, .p-block.p-block--flow2 .p-block__item:nth-child(5) .p-block__child.p-block__child--title::before {
  bottom: -5vw;
  left: -5vw;
}
@media screen and (min-width: 960px) {
  .p-block.p-block--flow2 {
    padding-top: 60px;
  }
  .p-block.p-block--flow2::before {
    width: 4px;
  }
  .p-block.p-block--flow2::after {
    width: 20px;
    height: 20px;
    border-right: 4px solid var(--color-blue);
    border-bottom: 4px solid var(--color-blue);
  }
  .p-block.p-block--flow2 .p-block__item .p-block__child.p-block__child--title {
    border-bottom: 3px dotted var(--color-blue);
  }
  .p-block.p-block--flow2 .p-block__item .p-block__child.p-block__child--title::before {
    width: 50px;
    height: 50px;
    font-size: 2.6rem;
    border: 3px dotted var(--color-blue);
  }
  .p-block.p-block--flow2 .p-block__item .p-block__child.p-block__child--text {
    margin-top: 24px;
  }
  .p-block.p-block--flow2 .p-block__item:nth-child(2) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(2) .p-block__child.p-block__child--text, .p-block.p-block--flow2 .p-block__item:nth-child(4) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(4) .p-block__child.p-block__child--text {
    padding-right: 120px;
  }
  .p-block.p-block--flow2 .p-block__item:nth-child(2) .p-block__child.p-block__child--title::before, .p-block.p-block--flow2 .p-block__item:nth-child(4) .p-block__child.p-block__child--title::before {
    bottom: -25px;
    right: -25px;
  }
  .p-block.p-block--flow2 .p-block__item:nth-child(1), .p-block.p-block--flow2 .p-block__item:nth-child(3), .p-block.p-block--flow2 .p-block__item:nth-child(5) {
    margin-top: -40px;
    margin-left: auto;
  }
  .p-block.p-block--flow2 .p-block__item:nth-child(1) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(1) .p-block__child.p-block__child--text, .p-block.p-block--flow2 .p-block__item:nth-child(3) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(3) .p-block__child.p-block__child--text, .p-block.p-block--flow2 .p-block__item:nth-child(5) .p-block__child.p-block__child--title, .p-block.p-block--flow2 .p-block__item:nth-child(5) .p-block__child.p-block__child--text {
    padding-left: 120px;
  }
  .p-block.p-block--flow2 .p-block__item:nth-child(1) .p-block__child.p-block__child--title::before, .p-block.p-block--flow2 .p-block__item:nth-child(3) .p-block__child.p-block__child--title::before, .p-block.p-block--flow2 .p-block__item:nth-child(5) .p-block__child.p-block__child--title::before {
    bottom: -25px;
    left: -25px;
  }
}
.p-block.p-block--use {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 44% 1fr 44%;
  grid-template-columns: 44% 1fr 44%;
  -ms-grid-rows: -webkit-max-content 1fr;
  -ms-grid-rows: max-content 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  text-align: center;
  padding-bottom: 5%;
}
.p-block.p-block--use > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-block.p-block--use > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.p-block.p-block--use > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-block.p-block--use > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.p-block.p-block--use > *:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.p-block.p-block--use > *:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.p-block.p-block--use .p-block__item {
  padding-top: 8%;
}
.p-block.p-block--use .p-block__item:nth-child(1), .p-block.p-block--use .p-block__item:nth-child(3), .p-block.p-block--use .p-block__item:nth-child(4) {
  background-color: var(--color-peach);
}
.p-block.p-block--use .p-block__item:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-block.p-block--use .p-block__item:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-block.p-block--use .p-block__item:nth-child(3) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-block.p-block--use .p-block__item:nth-child(4) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  width: 100%;
  margin-top: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.p-block.p-block--use .p-block__item:nth-child(1), .p-block.p-block--use .p-block__item:nth-child(3) {
  position: relative;
  width: 100%;
  margin-bottom: 5%;
}
.p-block.p-block--use .p-block__item:nth-child(1)::after, .p-block.p-block--use .p-block__item:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  width: 100%;
  background-color: var(--color-peach);
  height: 30.3108891325px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 960px) {
  .p-block.p-block--use {
    place-items: initial;
    -ms-grid-columns: 40% 1fr 40%;
    grid-template-columns: 40% 1fr 40%;
    padding-bottom: 60px;
  }
  .p-block.p-block--use .p-block__item {
    padding-top: 40px;
  }
  .p-block.p-block--use .p-block__item:nth-child(4) {
    margin-top: 0;
    padding-bottom: 40px;
  }
  .p-block.p-block--use .p-block__item:nth-child(1), .p-block.p-block--use .p-block__item:nth-child(3) {
    margin-bottom: 60px;
  }
  .p-block.p-block--use .p-block__item:nth-child(1)::after, .p-block.p-block--use .p-block__item:nth-child(3)::after {
    bottom: -52px;
    height: 51.9615242271px;
  }
}
.p-block.p-block--faq {
  background-image: linear-gradient(to right, var(--color-blue) 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.p-block.p-block--faq:last-of-type {
  background: none;
}
.p-block.p-block--faq .p-block__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-block.p-block--faq .p-block__inner .p-block__item:nth-child(1) {
  width: 8%;
}
.p-block.p-block--faq .p-block__inner .p-block__item:nth-child(2) {
  width: 88%;
}
.p-block.p-block--office a {
  text-decoration: underline;
}
.p-block.p-block--office a:hover {
  text-decoration: none;
}
.p-block.p-block--cv .p-block__item {
  width: 100%;
}
.p-block.p-block--cv .p-block__item.p-block__item--line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-block.p-block--cv .p-block__item .p-block__child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.p-block.p-block--cv .p-block__item .p-block__child .p-blockChild__item.p-blockChild__item--woman {
  position: relative;
  width: 36%;
}
.p-block.p-block--cv .p-block__item .p-block__child .p-blockChild__item.p-blockChild__item--woman::before {
  content: "";
  display: block;
  padding-top: 92.647%;
}
.p-block.p-block--cv .p-block__item .p-block__child .p-blockChild__item.p-blockChild__item--woman img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .p-block.p-block--cv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-block.p-block--cv .p-block__item {
    /*width: 48%;*/
  }
  .p-block.p-block--cv .p-block__item .p-block__child {
    width: 80%;
  }
}

.p-icon.p-icon--search, .p-icon.p-icon--contact, .p-icon.p-icon--line, .p-icon.p-icon--mail {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 5vw;
  margin-right: 2%;
}
.p-icon.p-icon--search::before, .p-icon.p-icon--contact::before, .p-icon.p-icon--line::before, .p-icon.p-icon--mail::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-icon.p-icon--search img, .p-icon.p-icon--contact img, .p-icon.p-icon--line img, .p-icon.p-icon--mail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.3));
          filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--search, .p-icon.p-icon--contact, .p-icon.p-icon--line, .p-icon.p-icon--mail {
    width: 30px;
    margin-right: 5px;
  }
}
.p-icon.p-icon--line {
  margin-right: 0;
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--line {
    margin-right: 0;
  }
}
.p-icon.p-icon--line.p-icon--line2 {
  margin-right: 2%;
}
.p-icon.p-icon--line.p-icon--line2 img {
  -webkit-filter: none;
          filter: none;
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--line.p-icon--line2 {
    width: 30px;
    margin-right: 5px;
  }
}
.p-icon.p-icon--mail {
  width: 6vw;
  margin-right: 3%;
}
.p-icon.p-icon--mail img {
  top: -1px;
  -webkit-filter: none;
          filter: none;
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--mail {
    width: 30px;
    margin-right: 8px;
  }
  .p-icon.p-icon--mail img {
    top: -3px;
  }
}
.p-icon.p-icon--usage {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 10vw;
  margin-right: 5%;
}
.p-icon.p-icon--usage::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-icon.p-icon--usage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--usage {
    display: block;
    width: 60px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5px;
  }
}
.p-icon.p-icon--program {
  display: block;
  width: 8vw;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-icon.p-icon--program::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-icon.p-icon--program img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--program {
    width: 40px;
    top: 10px;
  }
}
.p-icon.p-icon--flow {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  width: 10vw;
  margin-bottom: 2%;
  margin-left: 2%;
}
.p-icon.p-icon--flow::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-icon.p-icon--flow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--flow {
    width: 60px;
    margin-bottom: 5px;
    margin-left: 10px;
  }
}
.p-icon.p-icon--flow2 {
  position: absolute;
  top: -10vw;
  left: 0;
  display: block;
  width: 10vw;
}
.p-icon.p-icon--flow2.p-icon--flow2--right {
  left: 6vw;
}
.p-icon.p-icon--flow2::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-icon.p-icon--flow2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--flow2 {
    position: relative;
    top: initial;
    left: initial;
    display: inline-block;
    vertical-align: bottom;
    width: 60px;
    margin-bottom: 5px;
    margin-left: 10px;
  }
  .p-icon.p-icon--flow2.p-icon--flow2--right {
    left: initial;
  }
}
.p-icon.p-icon--faq {
  position: relative;
  display: block;
  text-align: center;
  line-height: 0;
  z-index: 0;
}
.p-icon.p-icon--faq::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  padding-top: 100%;
  background-color: var(--color-blue);
  border-radius: 100%;
  z-index: -1;
}
.p-icon.p-icon--search--white {
  vertical-align: text-bottom;
}
.p-icon.p-icon--search--white img {
  -webkit-filter: invert(44%) sepia(50%) saturate(1000%) hue-rotate(180deg) brightness(100%) contrast(140%);
          filter: invert(44%) sepia(50%) saturate(1000%) hue-rotate(180deg) brightness(100%) contrast(140%);
}
.p-icon.p-icon--office {
  position: relative;
}
.p-icon.p-icon--office::after {
  content: attr(data-title) "";
  white-space: pre;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -5%;
  left: -5%;
  width: 20%;
  aspect-ratio: 1;
  color: white;
  font-size: 3.2vw;
  font-weight: bold;
  border-radius: 100%;
  background-color: var(--color-blue);
}
.p-icon.p-icon--office.p-icon--reverse::after {
  left: initial;
  right: -5%;
}
@media screen and (min-width: 960px) {
  .p-icon.p-icon--office::after {
    top: -20px;
    left: -20px;
    width: 120px;
    font-size: 2rem;
  }
  .p-icon.p-icon--office.p-icon--reverse::after {
    right: -20px;
  }
}

.p-label.p-label--hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  z-index: 0;
}
.p-label.p-label--hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding-top: 100%;
  background-image: url(../../images/202401_01/hero_bg_medal.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
.p-label.p-label--hero .p-label__item {
  font-size: 4vw;
}
.p-label.p-label--hero .p-label__item.p-label__item--title {
  line-height: 1;
}
.p-label.p-label--hero .p-label__item.p-label__item--title > span {
  display: block;
  font-size: 0.8em;
  line-height: 1.4;
}
.p-label.p-label--hero .p-label__item.p-label__item--text {
  font-size: 4em;
  letter-spacing: -0.05em;
  line-height: 0.8;
}
.p-label.p-label--hero .p-label__item.p-label__item--text > span:nth-child(1) {
  display: inline-block;
  line-height: 0;
}
.p-label.p-label--hero .p-label__item.p-label__item--text > span:nth-child(2) {
  display: inline-block;
  padding-left: 0.1em;
  font-size: 0.4em;
  font-weight: bold;
  line-height: 1;
}
.p-label.p-label--hero .p-label__item.p-label__item--text > span:nth-child(2) > span {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .p-label.p-label--hero .p-label__item {
    font-size: 1.6rem;
  }
  .p-label.p-label--hero .p-label__item.p-label__item--text {
    font-size: 3em;
  }
}
.p-label.p-label--feature {
  position: relative;
  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;
  z-index: 0;
}
.p-label.p-label--feature::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding-top: 100%;
  background-color: var(--color-blue);
  border-radius: 100%;
  z-index: -1;
}
.p-label.p-label--feature.p-label--feature--first::before {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-blue)), color-stop(50%, var(--color-blue)), color-stop(50%, var(--color-darkblue)), to(var(--color-darkblue)));
  background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue) 50%, var(--color-darkblue) 50%, var(--color-darkblue) 100%);
}
.p-label.p-label--feature .p-label__item {
  display: block;
}
.p-label.p-label--usage {
  position: relative;
}
.p-label.p-label--usage::after {
  content: "";
  display: inline-block;
  margin-top: 20px;
  border-top: 14px solid var(--color-blue);
  border-right: 10px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 10px solid transparent;
}
.p-label.p-label--usage:nth-of-type(5)::after {
  content: none;
}
.p-label.p-label--usage .p-label__inner .p-label__item.p-label__item--text {
  width: 100%;
  padding: 5% 0;
  border-radius: 10px;
  background-color: var(--color-lightblue);
}
@media screen and (min-width: 960px) {
  .p-label.p-label--usage {
    position: static;
    width: 150px;
    height: 180px;
    text-align: center;
  }
  .p-label.p-label--usage::after {
    content: none;
  }
  .p-label.p-label--usage .p-label__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }
  .p-label.p-label--usage .p-label__inner::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: -56px;
    top: 50%;
    margin-top: 0;
    border-top: 14px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid var(--color-blue);
  }
  .p-label.p-label--usage .p-label__inner .p-label__item.p-label__item--title {
    width: 100%;
  }
  .p-label.p-label--usage .p-label__inner .p-label__item.p-label__item--text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 0;
    line-height: 1.2;
    background-color: initial;
    z-index: 0;
  }
  .p-label.p-label--usage .p-label__inner .p-label__item.p-label__item--text::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    padding-top: 100%;
    background-color: var(--color-lightblue);
    border-radius: 100%;
    z-index: -1;
  }
  .p-label.p-label--usage:nth-of-type(5) .p-label__inner::after {
    content: none;
  }
}
.p-label.p-label--program {
  position: relative;
}
.p-label.p-label--program .p-label__item {
  display: block;
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-label.p-label--program::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  background-color: white;
  border-radius: 100%;
}
@media screen and (min-width: 960px) {
  .p-label.p-label--program {
    width: 94px;
  }
  .p-label.p-label--program .p-label__item {
    bottom: 5px;
  }
}

.p-table.p-table--use {
  width: 100%;
}
.p-table.p-table--use tbody tr th,
.p-table.p-table--use tbody tr td {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
}
.p-table.p-table--use tbody tr th {
  font-weight: normal;
}

.p-accordion.p-accordion--office {
  position: relative;
  cursor: pointer;
  opacity: 1;
}
.p-accordion.p-accordion--office::after {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  position: absolute;
  top: 50%;
  right: 4%;
  margin-top: -1%;
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.p-accordion.p-accordion--office:hover {
  opacity: 0.8;
}
.p-accordion.p-accordion--office:hover::after {
  right: 3%;
}
.p-accordion.p-accordion--office.is-active::after {
  margin-top: -4%;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
}
@media screen and (min-width: 960px) {
  .p-accordion.p-accordion--office::after {
    width: 10px;
    height: 10px;
    right: 10px;
    margin-top: 0;
  }
  .p-accordion.p-accordion--office:hover::after {
    right: 8px;
  }
  .p-accordion.p-accordion--office.is-active::after {
    margin-top: -5px;
  }
}

.u-pos-relative {
  position: relative;
}

@media screen and (min-width: 960px) {
  .u-hidden-dt {
    display: none !important;
  }
}

.u-hidden-mb {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .u-hidden-mb {
    display: initial !important;
  }
}

.u-visible-dt {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .u-visible-dt {
    display: block !important;
  }
}

.u-mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.u-w-100 {
  width: 100%;
  height: auto;
}

/* spacing */
@media screen and (min-width: 960px) {
  .u-m-0-dt {
    margin: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-mx-0-dt {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-mt-0-dt {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-mr-0-dt {
    margin-right: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-mb-0-dt {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-ml-0-dt {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-p-0-dt {
    padding: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-px-0-dt {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-pt-0-dt {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-pr-0-dt {
    padding-right: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-pb-0-dt {
    padding-bottom: 0 !important;
  }
}

@media screen and (min-width: 960px) {
  .u-pl-0-dt {
    padding-left: 0 !important;
  }
}

.u-mt-auto {
  margin-top: auto;
}

.u-m-8 {
  margin: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-m-8-dt {
    margin: 8px !important;
  }
}

.u-mx-8 {
  margin-right: 0.8333333333%;
  margin-left: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mx-8-dt {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
}

.u-mt-8 {
  margin-top: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mt-8-dt {
    margin-top: 8px !important;
  }
}

.u-mr-8 {
  margin-right: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mr-8-dt {
    margin-right: 8px !important;
  }
}

.u-mb-8 {
  margin-bottom: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mb-8-dt {
    margin-bottom: 8px !important;
  }
}

.u-ml-8 {
  margin-left: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-ml-8-dt {
    margin-left: 8px !important;
  }
}

.u-p-8 {
  padding: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-p-8-dt {
    padding: 8px !important;
  }
}

.u-px-8 {
  padding-right: 0.8333333333%;
  padding-left: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-px-8-dt {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
}

.u-pt-8 {
  padding-top: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pt-8-dt {
    padding-top: 8px !important;
  }
}

.u-pr-8 {
  padding-right: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pr-8-dt {
    padding-right: 8px !important;
  }
}

.u-pb-8 {
  padding-bottom: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pb-8-dt {
    padding-bottom: 8px !important;
  }
}

.u-pl-8 {
  padding-left: 0.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pl-8-dt {
    padding-left: 8px !important;
  }
}

.u-m-16 {
  margin: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-m-16-dt {
    margin: 16px !important;
  }
}

.u-mx-16 {
  margin-right: 1.6666666667%;
  margin-left: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mx-16-dt {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
}

.u-mt-16 {
  margin-top: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mt-16-dt {
    margin-top: 16px !important;
  }
}

.u-mr-16 {
  margin-right: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mr-16-dt {
    margin-right: 16px !important;
  }
}

.u-mb-16 {
  margin-bottom: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mb-16-dt {
    margin-bottom: 16px !important;
  }
}

.u-ml-16 {
  margin-left: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-ml-16-dt {
    margin-left: 16px !important;
  }
}

.u-p-16 {
  padding: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-p-16-dt {
    padding: 16px !important;
  }
}

.u-px-16 {
  padding-right: 1.6666666667%;
  padding-left: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-px-16-dt {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

.u-pt-16 {
  padding-top: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pt-16-dt {
    padding-top: 16px !important;
  }
}

.u-pr-16 {
  padding-right: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pr-16-dt {
    padding-right: 16px !important;
  }
}

.u-pb-16 {
  padding-bottom: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pb-16-dt {
    padding-bottom: 16px !important;
  }
}

.u-pl-16 {
  padding-left: 1.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pl-16-dt {
    padding-left: 16px !important;
  }
}

.u-m-24 {
  margin: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-m-24-dt {
    margin: 24px !important;
  }
}

.u-mx-24 {
  margin-right: 2.5%;
  margin-left: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-mx-24-dt {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
}

.u-mt-24 {
  margin-top: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-mt-24-dt {
    margin-top: 24px !important;
  }
}

.u-mr-24 {
  margin-right: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-mr-24-dt {
    margin-right: 24px !important;
  }
}

.u-mb-24 {
  margin-bottom: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-mb-24-dt {
    margin-bottom: 24px !important;
  }
}

.u-ml-24 {
  margin-left: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-ml-24-dt {
    margin-left: 24px !important;
  }
}

.u-p-24 {
  padding: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-p-24-dt {
    padding: 24px !important;
  }
}

.u-px-24 {
  padding-right: 2.5%;
  padding-left: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-px-24-dt {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}

.u-pt-24 {
  padding-top: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-pt-24-dt {
    padding-top: 24px !important;
  }
}

.u-pr-24 {
  padding-right: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-pr-24-dt {
    padding-right: 24px !important;
  }
}

.u-pb-24 {
  padding-bottom: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-pb-24-dt {
    padding-bottom: 24px !important;
  }
}

.u-pl-24 {
  padding-left: 2.5%;
}

@media screen and (min-width: 960px) {
  .u-pl-24-dt {
    padding-left: 24px !important;
  }
}

.u-m-32 {
  margin: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-m-32-dt {
    margin: 32px !important;
  }
}

.u-mx-32 {
  margin-right: 3.3333333333%;
  margin-left: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mx-32-dt {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
}

.u-mt-32 {
  margin-top: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mt-32-dt {
    margin-top: 32px !important;
  }
}

.u-mr-32 {
  margin-right: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mr-32-dt {
    margin-right: 32px !important;
  }
}

.u-mb-32 {
  margin-bottom: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mb-32-dt {
    margin-bottom: 32px !important;
  }
}

.u-ml-32 {
  margin-left: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-ml-32-dt {
    margin-left: 32px !important;
  }
}

.u-p-32 {
  padding: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-p-32-dt {
    padding: 32px !important;
  }
}

.u-px-32 {
  padding-right: 3.3333333333%;
  padding-left: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-px-32-dt {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
}

.u-pt-32 {
  padding-top: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pt-32-dt {
    padding-top: 32px !important;
  }
}

.u-pr-32 {
  padding-right: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pr-32-dt {
    padding-right: 32px !important;
  }
}

.u-pb-32 {
  padding-bottom: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pb-32-dt {
    padding-bottom: 32px !important;
  }
}

.u-pl-32 {
  padding-left: 3.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pl-32-dt {
    padding-left: 32px !important;
  }
}

.u-m-40 {
  margin: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-m-40-dt {
    margin: 40px !important;
  }
}

.u-mx-40 {
  margin-right: 4.1666666667%;
  margin-left: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-mx-40-dt {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
}

.u-mt-40 {
  margin-top: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-mt-40-dt {
    margin-top: 40px !important;
  }
}

.u-mr-40 {
  margin-right: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-mr-40-dt {
    margin-right: 40px !important;
  }
}

.u-mb-40 {
  margin-bottom: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-mb-40-dt {
    margin-bottom: 40px !important;
  }
}

.u-ml-40 {
  margin-left: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-ml-40-dt {
    margin-left: 40px !important;
  }
}

.u-p-40 {
  padding: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-p-40-dt {
    padding: 40px !important;
  }
}

.u-px-40 {
  padding-right: 4.1666666667%;
  padding-left: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-px-40-dt {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
}

.u-pt-40 {
  padding-top: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-pt-40-dt {
    padding-top: 40px !important;
  }
}

.u-pr-40 {
  padding-right: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-pr-40-dt {
    padding-right: 40px !important;
  }
}

.u-pb-40 {
  padding-bottom: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-pb-40-dt {
    padding-bottom: 40px !important;
  }
}

.u-pl-40 {
  padding-left: 4.1666666667%;
}

@media screen and (min-width: 960px) {
  .u-pl-40-dt {
    padding-left: 40px !important;
  }
}

.u-m-48 {
  margin: 5%;
}

@media screen and (min-width: 960px) {
  .u-m-48-dt {
    margin: 48px !important;
  }
}

.u-mx-48 {
  margin-right: 5%;
  margin-left: 5%;
}

@media screen and (min-width: 960px) {
  .u-mx-48-dt {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
}

.u-mt-48 {
  margin-top: 5%;
}

@media screen and (min-width: 960px) {
  .u-mt-48-dt {
    margin-top: 48px !important;
  }
}

.u-mr-48 {
  margin-right: 5%;
}

@media screen and (min-width: 960px) {
  .u-mr-48-dt {
    margin-right: 48px !important;
  }
}

.u-mb-48 {
  margin-bottom: 5%;
}

@media screen and (min-width: 960px) {
  .u-mb-48-dt {
    margin-bottom: 48px !important;
  }
}

.u-ml-48 {
  margin-left: 5%;
}

@media screen and (min-width: 960px) {
  .u-ml-48-dt {
    margin-left: 48px !important;
  }
}

.u-p-48 {
  padding: 5%;
}

@media screen and (min-width: 960px) {
  .u-p-48-dt {
    padding: 48px !important;
  }
}

.u-px-48 {
  padding-right: 5%;
  padding-left: 5%;
}

@media screen and (min-width: 960px) {
  .u-px-48-dt {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
}

.u-pt-48 {
  padding-top: 5%;
}

@media screen and (min-width: 960px) {
  .u-pt-48-dt {
    padding-top: 48px !important;
  }
}

.u-pr-48 {
  padding-right: 5%;
}

@media screen and (min-width: 960px) {
  .u-pr-48-dt {
    padding-right: 48px !important;
  }
}

.u-pb-48 {
  padding-bottom: 5%;
}

@media screen and (min-width: 960px) {
  .u-pb-48-dt {
    padding-bottom: 48px !important;
  }
}

.u-pl-48 {
  padding-left: 5%;
}

@media screen and (min-width: 960px) {
  .u-pl-48-dt {
    padding-left: 48px !important;
  }
}

.u-m-56 {
  margin: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-m-56-dt {
    margin: 56px !important;
  }
}

.u-mx-56 {
  margin-right: 5.8333333333%;
  margin-left: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mx-56-dt {
    margin-right: 56px !important;
    margin-left: 56px !important;
  }
}

.u-mt-56 {
  margin-top: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mt-56-dt {
    margin-top: 56px !important;
  }
}

.u-mr-56 {
  margin-right: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mr-56-dt {
    margin-right: 56px !important;
  }
}

.u-mb-56 {
  margin-bottom: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-mb-56-dt {
    margin-bottom: 56px !important;
  }
}

.u-ml-56 {
  margin-left: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-ml-56-dt {
    margin-left: 56px !important;
  }
}

.u-p-56 {
  padding: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-p-56-dt {
    padding: 56px !important;
  }
}

.u-px-56 {
  padding-right: 5.8333333333%;
  padding-left: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-px-56-dt {
    padding-right: 56px !important;
    padding-left: 56px !important;
  }
}

.u-pt-56 {
  padding-top: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pt-56-dt {
    padding-top: 56px !important;
  }
}

.u-pr-56 {
  padding-right: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pr-56-dt {
    padding-right: 56px !important;
  }
}

.u-pb-56 {
  padding-bottom: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pb-56-dt {
    padding-bottom: 56px !important;
  }
}

.u-pl-56 {
  padding-left: 5.8333333333%;
}

@media screen and (min-width: 960px) {
  .u-pl-56-dt {
    padding-left: 56px !important;
  }
}

.u-m-64 {
  margin: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-m-64-dt {
    margin: 64px !important;
  }
}

.u-mx-64 {
  margin-right: 6.6666666667%;
  margin-left: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mx-64-dt {
    margin-right: 64px !important;
    margin-left: 64px !important;
  }
}

.u-mt-64 {
  margin-top: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mt-64-dt {
    margin-top: 64px !important;
  }
}

.u-mr-64 {
  margin-right: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mr-64-dt {
    margin-right: 64px !important;
  }
}

.u-mb-64 {
  margin-bottom: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-mb-64-dt {
    margin-bottom: 64px !important;
  }
}

.u-ml-64 {
  margin-left: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-ml-64-dt {
    margin-left: 64px !important;
  }
}

.u-p-64 {
  padding: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-p-64-dt {
    padding: 64px !important;
  }
}

.u-px-64 {
  padding-right: 6.6666666667%;
  padding-left: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-px-64-dt {
    padding-right: 64px !important;
    padding-left: 64px !important;
  }
}

.u-pt-64 {
  padding-top: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pt-64-dt {
    padding-top: 64px !important;
  }
}

.u-pr-64 {
  padding-right: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pr-64-dt {
    padding-right: 64px !important;
  }
}

.u-pb-64 {
  padding-bottom: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pb-64-dt {
    padding-bottom: 64px !important;
  }
}

.u-pl-64 {
  padding-left: 6.6666666667%;
}

@media screen and (min-width: 960px) {
  .u-pl-64-dt {
    padding-left: 64px !important;
  }
}

.u-m-72 {
  margin: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-m-72-dt {
    margin: 72px !important;
  }
}

.u-mx-72 {
  margin-right: 7.5%;
  margin-left: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-mx-72-dt {
    margin-right: 72px !important;
    margin-left: 72px !important;
  }
}

.u-mt-72 {
  margin-top: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-mt-72-dt {
    margin-top: 72px !important;
  }
}

.u-mr-72 {
  margin-right: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-mr-72-dt {
    margin-right: 72px !important;
  }
}

.u-mb-72 {
  margin-bottom: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-mb-72-dt {
    margin-bottom: 72px !important;
  }
}

.u-ml-72 {
  margin-left: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-ml-72-dt {
    margin-left: 72px !important;
  }
}

.u-p-72 {
  padding: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-p-72-dt {
    padding: 72px !important;
  }
}

.u-px-72 {
  padding-right: 7.5%;
  padding-left: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-px-72-dt {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }
}

.u-pt-72 {
  padding-top: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-pt-72-dt {
    padding-top: 72px !important;
  }
}

.u-pr-72 {
  padding-right: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-pr-72-dt {
    padding-right: 72px !important;
  }
}

.u-pb-72 {
  padding-bottom: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-pb-72-dt {
    padding-bottom: 72px !important;
  }
}

.u-pl-72 {
  padding-left: 7.5%;
}

@media screen and (min-width: 960px) {
  .u-pl-72-dt {
    padding-left: 72px !important;
  }
}

.u-m-80 {
  margin: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-m-80-dt {
    margin: 80px !important;
  }
}

.u-mx-80 {
  margin-right: 8.3333333333%;
  margin-left: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mx-80-dt {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
}

.u-mt-80 {
  margin-top: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mt-80-dt {
    margin-top: 80px !important;
  }
}

.u-mr-80 {
  margin-right: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mr-80-dt {
    margin-right: 80px !important;
  }
}

.u-mb-80 {
  margin-bottom: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-mb-80-dt {
    margin-bottom: 80px !important;
  }
}

.u-ml-80 {
  margin-left: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-ml-80-dt {
    margin-left: 80px !important;
  }
}

.u-p-80 {
  padding: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-p-80-dt {
    padding: 80px !important;
  }
}

.u-px-80 {
  padding-right: 8.3333333333%;
  padding-left: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-px-80-dt {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
}

.u-pt-80 {
  padding-top: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pt-80-dt {
    padding-top: 80px !important;
  }
}

.u-pr-80 {
  padding-right: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pr-80-dt {
    padding-right: 80px !important;
  }
}

.u-pb-80 {
  padding-bottom: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pb-80-dt {
    padding-bottom: 80px !important;
  }
}

.u-pl-80 {
  padding-left: 8.3333333333%;
}

@media screen and (min-width: 960px) {
  .u-pl-80-dt {
    padding-left: 80px !important;
  }
}

.u-m-100 {
  margin: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-m-100-dt {
    margin: 100px !important;
  }
}

.u-mx-100 {
  margin-right: 10.4166666667%;
  margin-left: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-mx-100-dt {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
}

.u-mt-100 {
  margin-top: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-mt-100-dt {
    margin-top: 100px !important;
  }
}

.u-mr-100 {
  margin-right: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-mr-100-dt {
    margin-right: 100px !important;
  }
}

.u-mb-100 {
  margin-bottom: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-mb-100-dt {
    margin-bottom: 100px !important;
  }
}

.u-ml-100 {
  margin-left: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-ml-100-dt {
    margin-left: 100px !important;
  }
}

.u-p-100 {
  padding: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-p-100-dt {
    padding: 100px !important;
  }
}

.u-px-100 {
  padding-right: 10.4166666667%;
  padding-left: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-px-100-dt {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
}

.u-pt-100 {
  padding-top: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-pt-100-dt {
    padding-top: 100px !important;
  }
}

.u-pr-100 {
  padding-right: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-pr-100-dt {
    padding-right: 100px !important;
  }
}

.u-pb-100 {
  padding-bottom: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-pb-100-dt {
    padding-bottom: 100px !important;
  }
}

.u-pl-100 {
  padding-left: 10.4166666667%;
}

@media screen and (min-width: 960px) {
  .u-pl-100-dt {
    padding-left: 100px !important;
  }
}

.u-m-120 {
  margin: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-m-120-dt {
    margin: 120px !important;
  }
}

.u-mx-120 {
  margin-right: 12.5%;
  margin-left: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-mx-120-dt {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
}

.u-mt-120 {
  margin-top: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-mt-120-dt {
    margin-top: 120px !important;
  }
}

.u-mr-120 {
  margin-right: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-mr-120-dt {
    margin-right: 120px !important;
  }
}

.u-mb-120 {
  margin-bottom: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-mb-120-dt {
    margin-bottom: 120px !important;
  }
}

.u-ml-120 {
  margin-left: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-ml-120-dt {
    margin-left: 120px !important;
  }
}

.u-p-120 {
  padding: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-p-120-dt {
    padding: 120px !important;
  }
}

.u-px-120 {
  padding-right: 12.5%;
  padding-left: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-px-120-dt {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
}

.u-pt-120 {
  padding-top: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-pt-120-dt {
    padding-top: 120px !important;
  }
}

.u-pr-120 {
  padding-right: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-pr-120-dt {
    padding-right: 120px !important;
  }
}

.u-pb-120 {
  padding-bottom: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-pb-120-dt {
    padding-bottom: 120px !important;
  }
}

.u-pl-120 {
  padding-left: 12.5%;
}

@media screen and (min-width: 960px) {
  .u-pl-120-dt {
    padding-left: 120px !important;
  }
}

.u-d-none {
  display: none !important;
}

.u-d-inlineblock {
  display: inline-block;
}

.u-d-block {
  display: block;
}

.u-d-flex--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.u-maw-1100 {
  width: 90%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.u-maw-1032 {
  width: 90%;
  max-width: 1032px;
  margin-right: auto;
  margin-left: auto;
}

.u-maw-960 {
  width: 100%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.u-maw-880 {
  width: 90%;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.u-maw-724 {
  width: 90%;
  max-width: 724px;
  margin-right: auto;
  margin-left: auto;
}

.u-ff-zenkakugo {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-ff-kiwimaru {
  font-family: "Kiwi Maru", serif;
}

.u-ff-gabarito {
  font-family: "Gabarito", cursive;
}

.u-ff-lato {
  font-family: "Lato", sans-serif;
}

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

.u-ls-large {
  letter-spacing: 0.1em;
}

.u-ls-small {
  letter-spacing: -0.1em;
}

.u-lh-large {
  line-height: 2;
}

.u-lh-small {
  line-height: 1.2;
}

.u-lh-normal {
  line-height: 1;
}

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

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

.u-fz-9 {
  /*font-size: 2.8vw;*/
}

.u-fz-10 {
  font-size: 3.1vw;
}

.u-fz-11 {
  font-size: 3.4vw;
}

.u-fz-12 {
  font-size: 3.8vw;
}

.u-fz-13 {
  font-size: 4.1vw;
}

.u-fz-14 {
  font-size: 4.4vw;
}

.u-fz-15 {
  font-size: 4.7vw;
}

.u-fz-16 {
  font-size: 5vw;
}

.u-fz-18 {
  font-size: 5.6vw;
}

.u-fz-20 {
  font-size: 6.2vw;
}

.u-fz-21 {
  font-size: 6.6vw;
}

.u-fz-25 {
  font-size: 7.8vw;
}

@media screen and (min-width: 960px) {
  .u-fz-12-dt {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-13-dt {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-14-dt {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-15-dt {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-16-dt {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-17-dt {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-18-dt {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-19-dt {
    font-size: 1.9rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-20-dt {
    font-size: 2rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-21-dt {
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-22-dt {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-23-dt {
    font-size: 2.3rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-24-dt {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-26-dt {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-27-dt {
    font-size: 2.7rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-28-dt {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-30-dt {
    font-size: 3rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-32-dt {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-40-dt {
    font-size: 4rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-42-dt {
    font-size: 4.2rem;
  }
}

@media screen and (min-width: 960px) {
  .u-fz-48-dt {
    font-size: 4.8rem;
  }
}

/*
.u-fz-
T1 42 21
PB 26 14
T2 22 20
P 18 25
CT 30 15
T3 32 20
PS 18 13
ST 24 12
T4 21 11
PSS 14 10
T5 22 12
PSSS 13 9
T6 24 16 

*/
.u-sp-32 {
  padding-top: 3.2vw;
}

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

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

.u-fc-white {
  color: white;
}

.u-fc-blue {
  color: var(--color-blue);
}

.u-fc-orange {
  color: var(--color-orange);
}

.u-fc-line {
  color: var(--color-line);
}

.u-bgc-white {
  background-color: white;
}

.u-bgc-blue {
  background-color: var(--color-blue);
}

.u-bgc-lightblue {
  background-color: var(--color-lightblue);
}

.u-bgc-orange {
  background-color: var(--color-orange);
}

.u-bgc-peach {
  background-color: var(--color-peach);
}

.u-bgc-green {
  background-color: var(--color-line);
}

.u-bgc-line {
  background-color: #faedce;
}

.u-bd-gray {
  border: 1px solid #afafaf;
}

.u-bb-blue {
  border-bottom: 2px dotted var(--color-blue);
}

.u-bb-orange {
  border-bottom: 2px dotted var(--color-orange);
}

.u-marker-peach {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, var(--color-peach)));
  background: linear-gradient(transparent 80%, var(--color-peach) 80%);
}

.u-marker-peach-full {
  background: var(--color-peach);
}

.u-marker-lightblue {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, var(--color-lightblue)));
  background: linear-gradient(transparent 80%, var(--color-lightblue) 80%);
}

.u-marker-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, var(--color-yellow)));
  background: linear-gradient(transparent 80%, var(--color-yellow) 80%);
}

.u-br-20 {
  border-radius: 1rem;
}
@media screen and (min-width: 960px) {
  .u-br-20 {
    border-radius: 20px;
  }
}

.u-br-100 {
  border-radius: 100%;
}

.u-hr-dot {
  border-top-style: dotted;
}

/*
.u-underline-dot {
	background-size: 6px 2px;
	background-repeat: repeat-x;
	background-position: left bottom;
	&.u-underline-dot--blue {
		background-image: linear-gradient(to right, var(--color-blue) 2px, transparent 2px);
	}
	&.u-underline-dot--orange {
		background-image: linear-gradient(to right, var(--color-orange) 2px, transparent 2px);
	}
}
*/
@media screen and (min-width: 960px) {
  .u-deco-line::before, .u-deco-line::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 50px;
    background-color: white;
  }
  .u-deco-line::before {
    margin-right: 20px;
    -webkit-transform: rotate(-35deg);
            transform: rotate(-35deg);
  }
  .u-deco-line::after {
    margin-left: 20px;
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
}
@media screen and (min-width: 960px) {
  .u-deco-line.u-deco-line--line::before, .u-deco-line.u-deco-line--line::after {
    background-color: var(--color-line);
  }
}

/* これ以降追加*/


@font-face {
  font-family: 'webflow-icons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
  font-weight: normal;
  font-style: normal;
}
[class^="w-icon-"],
[class*=" w-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webflow-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.w-icon-slider-right:before {
  content: "\e600";
}
.w-icon-slider-left:before {
  content: "\e601";
}
.w-icon-nav-menu:before {
  content: "\e602";
}
.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "\e603";
}
.w-icon-file-upload-remove:before {
  content: "\e900";
}
.w-icon-file-upload-icon:before {
  content: "\e903";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}
.w-block {
  display: block;
}
.w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-clearfix:after {
  clear: both;
}
.w-hidden {
  display: none;
}
.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #00b4fc;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  font-size: 15px;
}
input.w-button {
  -webkit-appearance: button;
}
html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}
.w-code-block {
  margin: unset;
}
pre.w-code-block code {
  all: inherit;
}
.w-optimization {
  display: contents;
}
.w-webflow-badge,
.w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}
.w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #aaadb0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px !important;
  font-size: 12px !important;
  opacity: 1 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}
figure {
  margin: 0;
  margin-bottom: 10px;
}
figcaption {
  margin-top: 5px;
  text-align: center;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.w-embed:before,
.w-embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-embed:after {
  clear: both;
}
.w-video {
  width: 100%;
  position: relative;
  padding: 0;
}
.w-video iframe,
.w-video object,
.w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
button,
[type='button'],
[type='reset'] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.w-form {
  margin: 0 0 15px;
}
.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.w-input::placeholder,
.w-select::placeholder {
  color: #999;
}
.w-input:focus,
.w-select:focus {
  border-color: #3898EC;
  outline: 0;
}
.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
}
.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eeeeee;
}
textarea.w-input,
textarea.w-select {
  height: auto;
}
.w-select {
  background-color: #f3f3f3;
}
.w-select[multiple] {
  height: auto;
}
.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}
.w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.w-radio:before,
.w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-radio:after {
  clear: both;
}
.w-radio-input {
  margin: 4px 0 0;
  line-height: normal;
  float: left;
  margin-left: -20px;
}
.w-radio-input {
  margin-top: 3px;
}
.w-file-upload {
  display: block;
  margin-bottom: 10px;
}
.w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}
.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  display: inline-block;
  color: #333333;
}
.w-file-upload-error {
  display: block;
  margin-top: 10px;
}
.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}
.w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}
.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}
.w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}
.w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}
.w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}
.w-icon-file-upload-uploading {
  height: 20px;
}
.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.w-container:before,
.w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-container:after {
  clear: both;
}
.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.w-row:before,
.w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-row:after {
  clear: both;
}
.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.w-col-1 {
  width: 8.33333333%;
}
.w-col-2 {
  width: 16.66666667%;
}
.w-col-3 {
  width: 25%;
}
.w-col-4 {
  width: 33.33333333%;
}
.w-col-5 {
  width: 41.66666667%;
}
.w-col-6 {
  width: 50%;
}
.w-col-7 {
  width: 58.33333333%;
}
.w-col-8 {
  width: 66.66666667%;
}
.w-col-9 {
  width: 75%;
}
.w-col-10 {
  width: 83.33333333%;
}
.w-col-11 {
  width: 91.66666667%;
}
.w-col-12 {
  width: 100%;
}
.w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: none !important;
  }
  .w-col-medium-1 {
    width: 8.33333333%;
  }
  .w-col-medium-2 {
    width: 16.66666667%;
  }
  .w-col-medium-3 {
    width: 25%;
  }
  .w-col-medium-4 {
    width: 33.33333333%;
  }
  .w-col-medium-5 {
    width: 41.66666667%;
  }
  .w-col-medium-6 {
    width: 50%;
  }
  .w-col-medium-7 {
    width: 58.33333333%;
  }
  .w-col-medium-8 {
    width: 66.66666667%;
  }
  .w-col-medium-9 {
    width: 75%;
  }
  .w-col-medium-10 {
    width: 83.33333333%;
  }
  .w-col-medium-11 {
    width: 91.66666667%;
  }
  .w-col-medium-12 {
    width: 100%;
  }
  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: none !important;
  }
  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .w-col-small-1 {
    width: 8.33333333%;
  }
  .w-col-small-2 {
    width: 16.66666667%;
  }
  .w-col-small-3 {
    width: 25%;
  }
  .w-col-small-4 {
    width: 33.33333333%;
  }
  .w-col-small-5 {
    width: 41.66666667%;
  }
  .w-col-small-6 {
    width: 50%;
  }
  .w-col-small-7 {
    width: 58.33333333%;
  }
  .w-col-small-8 {
    width: 66.66666667%;
  }
  .w-col-small-9 {
    width: 75%;
  }
  .w-col-small-10 {
    width: 83.33333333%;
  }
  .w-col-small-11 {
    width: 91.66666667%;
  }
  .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: inherit !important;
  }
  .w-hidden-tiny {
    display: none !important;
  }
  .w-col {
    width: 100%;
  }
  .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .w-col-tiny-3 {
    width: 25%;
  }
  .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .w-col-tiny-6 {
    width: 50%;
  }
  .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .w-col-tiny-9 {
    width: 75%;
  }
  .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .w-col-tiny-12 {
    width: 100%;
  }
}
.w-widget {
  position: relative;
}
.w-widget-map {
  width: 100%;
  height: 400px;
}
.w-widget-map label {
  width: auto;
  display: inline;
}
.w-widget-map img {
  max-width: inherit;
}
.w-widget-map .gm-style-iw {
  text-align: center;
}
.w-widget-map .gm-style-iw > button {
  display: none !important;
}
.w-widget-twitter {
  overflow: hidden;
}
.w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}
.w-widget-twitter-count-shim * {
  pointer-events: none;
  user-select: none;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}
.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}
.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}
.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}
.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}
.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}
.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}
.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}
.w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}
.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}
.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}
.w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}
.w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}
.w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.w-background-video--control {
  position: absolute;
  bottom: 1em;
  right: 1em;
  background-color: transparent;
  padding: 0;
}
.w-background-video--control > [hidden] {
  display: none !important;
}
.w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-nav.w-round > div {
  border-radius: 100%;
}
.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}
.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.w-slider-nav-invert {
  color: #fff;
}
.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}
.w-slider-dot.w-active {
  background-color: #fff;
}
.w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}
.w-slider-dot:focus.w-active {
  box-shadow: none;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
}
.w-slider-arrow-left [class^='w-icon-'],
.w-slider-arrow-right [class^='w-icon-'],
.w-slider-arrow-left [class*=' w-icon-'],
.w-slider-arrow-right [class*=' w-icon-'] {
  position: absolute;
}
.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}
.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.w-slider-force-show {
  display: block !important;
}
.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.w-dropdown-toggle {
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.w-dropdown-toggle:focus {
  outline: 0;
}
.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}
.w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.w-dropdown-list.w--open {
  display: block;
}
.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}
.w-dropdown-link.w--current {
  color: #0082f3;
}
.w-dropdown-link:focus {
  outline: 0;
}
@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}
/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
  cursor: auto;
  font-style: normal;
  letter-spacing: normal;
  list-style: disc;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  /* 1 */
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
  /* 2 */
}
/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.w-lightbox-view:before {
  content: "";
  height: 100vh;
}
/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.w-lightbox-frame,
.w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}
/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
  position: relative;
  margin: 0;
  /* 1 */
}
.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}
/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
  display: block;
  float: none;
  /* 1 */
  max-width: 100vw;
  max-height: 100vh;
}
.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}
.w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}
/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
  right: 0;
  height: 2.6em;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
}
/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  /* 1 */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  /* 1 */
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  /* 2 */
}
.w-lightbox-active {
  opacity: 0.3;
}
.w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}
.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
}
.w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}
/*
 * Utility classes
 */
.w-lightbox-hide {
  display: none;
}
.w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }
  /* .w-lightbox-content */
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .w-lightbox-left,
  .w-lightbox-right {
    display: block;
    opacity: 0.5;
  }
  .w-lightbox-close {
    opacity: 0.8;
  }
  .w-lightbox-control:hover {
    opacity: 1;
  }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}
.w-richtext:before,
.w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-richtext:after {
  clear: both;
}
.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
  white-space: initial;
}
.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after {
  outline: 2px solid #2895f7;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}
.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
  content: '';
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.w-richtext figure {
  position: relative;
  max-width: 60%;
}
.w-richtext figure > div:before {
  cursor: default!important;
}
.w-richtext figure img {
  width: 100%;
}
.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}
.w-richtext figure div {
  /* fix incorrectly sized selection border in the data manager */
  font-size: 0px;
  color: transparent;
}
.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
  display: table;
}
.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}
.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
  display: table-caption;
  caption-side: bottom;
}
.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}
.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}
.w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}
.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}
.w-richtext figure.w-richtext-align-normal {
  clear: both;
}
.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  /* padding-bottom is used for aspect ratios in video figures
      we want the div to inherit that so hover/selection borders in the designer-canvas
      fit right*/
  padding-bottom: inherit;
}
.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}
.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}
.w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}
.w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}
.w-nav:before,
.w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-nav:after {
  clear: both;
}
.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}
.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.w-nav-link.w--current {
  color: #0082f3;
}
.w-nav-menu {
  position: relative;
  float: right;
}
[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #C8C8C8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.w--nav-link-open {
  display: block;
  position: relative;
}
.w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}
.w-nav[data-animation='over-left'] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation='over-left'] .w-nav-overlay,
.w-nav[data-animation='over-left'] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}
.w-nav[data-animation='over-right'] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation='over-right'] .w-nav-overlay,
.w-nav[data-animation='over-right'] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}
.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
}
.w-nav-button:focus {
  outline: 0;
}
.w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}
.w-nav[data-collapse='all'] .w-nav-menu {
  display: none;
}
.w-nav[data-collapse='all'] .w-nav-button {
  display: block;
}
.w--nav-dropdown-open {
  display: block;
}
.w--nav-dropdown-toggle-open {
  display: block;
}
.w--nav-dropdown-list-open {
  position: static;
}
@media screen and (max-width: 991px) {
  .w-nav[data-collapse='medium'] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse='medium'] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .w-nav[data-collapse='small'] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse='small'] .w-nav-button {
    display: block;
  }
  .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .w-nav[data-collapse='tiny'] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse='tiny'] .w-nav-button {
    display: block;
  }
}
.w-tabs {
  position: relative;
}
.w-tabs:before,
.w-tabs:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-tabs:after {
  clear: both;
}
.w-tab-menu {
  position: relative;
}
.w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}
.w-tab-link.w--current {
  background-color: #C8C8C8;
}
.w-tab-link:focus {
  outline: 0;
}
.w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.w-tab-pane {
  position: relative;
  display: none;
}
.w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}
.w-ix-emptyfix:after {
  content: "";
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}
.w-dyn-hide {
  display: none !important;
}
.w-dyn-bind-empty {
  display: none !important;
}
.w-condition-invisible {
  display: none !important;
}
.wf-layout-layout {
  display: grid;
}
.w-code-component > * {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
 html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector
 */
button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input
 * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed
 *    (similar to normalize.css >=4.0.0)
 */
input[type='search'] {
  -webkit-appearance: none;
  /* 1 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.div-block_zigyousyo {
  background-color: #eee;
  border-radius: 20px;
  width: 100%;
  height: auto;
  padding: 10px 20px 40px;
}

.heading_zigyousyo {
  color: #00b4fc;
  text-align: center;
  font-size: 25px;
  margin-top: 20px;
}

.text-block_address {
  text-align: center;
  font-size: 10px;
}

.button_to_office {
  text-align: center;
  vertical-align: baseline;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 3px 3px 3px 1px #00000075;
}

.image_office {
  
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}

.headline_contents_title_1 {
  color: #00adfd;
  text-align: center;
  margin-left: 10px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  display: flex;
}

.text_title_zigyousyo {
  font-size: 20px;
  font-style: normal;
}

.paragraph_zigyousyo {
  font-size: 14px;
}

.text_paragraph_zigyousyo, .italic-text {
  font-style: normal;
}

.headline_zigyou_title {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 20px;
}

.section {
  background-color: #61bdff;
}

.cvarea_title_zigyousyo {
  color: #fff;
  text-align: center;
  background-color: #fff0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 27px;
  font-weight: 400;
}

.div-block {
  background-color: #fffc;
  border-radius: 10px;
  width: 100%;
  height: 124px;
}

.paragraph {
  font-size: 12px;
}

.heading {
  color: #01a6ff;
  font-size: 20px;
}

.link-block {
  text-decoration: none;
}



.image, .image-2, .image-3 {
  
  object-fit: cover;
}

.link-block-2, .link-block-3 {
  text-decoration: none;
}

.image-4 {
  width: 80px;
  height: 61px;
}

.container {
  justify-content: center;
  margin-top: 10px;
  display: flex;
}

.image-5 {
  width: 20px;
  height: 20px;
  margin-top: 7px;
  margin-left: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.cell {
  flex-flow: column;
}

.div-block-2, .div-block-3, .div-block-4 {
  display: flex;
}

@media screen and (max-width: 479px) {
  .div-block_zigyousyo {
    height: auto;
  }

  .div-block {
    height: auto;
  }

  .text-block_address {
    font-size: 9px;
  }

  .headline_contents_title_1 {
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    font-size: 18px;
    display: block;
  }

  .paragraph_zigyousyo, .headline_zigyou_title {
    display: none;
  }

  .cvarea_title_zigyousyo {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
  }

  .paragraph {
    font-size: 10px;
  }

  .image-4 {
    margin-top: 0px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#w-node-_74f0ad1f-3d99-f054-6f74-8275560dd967-a98fa1d7, #w-node-b94b7684-2413-97f7-14ea-44c447908fb1-a98fa1d7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-fc36a1ab-6198-9c0c-878f-5087702b309f-a98fa1d7, #w-node-dc12505b-b2df-ff58-1d4b-be6cbfcf5338-a98fa1d7, #w-node-c3191e80-abd4-cef5-2802-e826f9d5e409-a98fa1d7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.75fr;
}

@media screen and (max-width: 479px) {
  #w-node-_74f0ad1f-3d99-f054-6f74-8275560dd967-a98fa1d7, #w-node-b94b7684-2413-97f7-14ea-44c447908fb1-a98fa1d7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.div-block_zigyousyo {
  background-color: #eee;
  border-radius: 20px;
  width: 100%;
  height: auto;
  padding: 10px 20px 40px;
}

.heading_zigyousyo {
  color: #00b4fc;
  text-align: center;
  font-size: 25px;
}

.text-block_address {
  text-align: center;
  font-size: 10px;
}

.button_to_office {
  text-align: center;
  vertical-align: baseline;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 3px 3px 3px 1px #00000075;
}

.image_office {
  width: 250px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}

.headline_contents_title_1 {
  color: #00adfd;
  text-align: center;
  margin-left: 10px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  display: flex;
}

.text_title_zigyousyo {
  font-size: 20px;
  font-style: normal;
}

.paragraph_zigyousyo {
  font-size: 14px;
}

.text_paragraph_zigyousyo, .italic-text {
  font-style: normal;
}

.headline_zigyou_title {
  color: #333;
  font-size: 20px;
}

.section {
  background-color: #61bdff;
}

.cvarea_title_zigyousyo {
  color: #fff;
  text-align: center;
  background-color: #fff0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 27px;
  font-weight: 400;
}

.div-block {
  background-color: #fffc;
  border-radius: 10px;
  width: 100%;
  height: 124px;
}

.paragraph {
  font-size: 12px;
}

.heading {
  color: #01a6ff;
  font-size: 20px;
}

.link-block {
  text-decoration: none;
}

.image {
  box-sizing: content-box;
  object-fit: cover;
  width: 100%;
  max-width: auto;
  height: auto;
  max-height: none;
  display: block;
  overflow: clip;
}

.image-2, .image-3 {
  object-fit: cover;
}

.link-block-2, .link-block-3 {
  text-decoration: none;
}

.image-4 {
  width: 80px;
  height: 61px;
}

.container {
  justify-content: center;
  margin-top: 10px;
  display: flex;
}

.image-5 {
  width: 20px;
  height: 20px;
  margin-top: 7px;
  margin-left: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.cell {
  flex-flow: column;
}

.div-block-2, .div-block-3, .div-block-4 {
  display: flex;
}

@media screen and (max-width: 479px) {
  .div-block_zigyousyo {
    height: auto;
  }

  .div-block {
    height: auto;
  }

  .text-block_address {
    font-size: 9px;
  }

  .headline_contents_title_1 {
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    font-size: 18px;
    display: block;
  }

  .paragraph_zigyousyo, .headline_zigyou_title {
    display: none;
  }

  .cvarea_title_zigyousyo {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
  }

  .paragraph {
    font-size: 10px;
  }

  .image {
    width: auto;
  }

  .image-4 {
    margin-top: 20px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#w-node-_14c14b06-2b4c-3c51-b661-d99ff3065710-c67ce513, #w-node-_74f0ad1f-3d99-f054-6f74-8275560dd967-c67ce513, #w-node-e46d139e-633e-e834-94c6-317ac158f99f-c67ce513 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e46d139e-633e-e834-94c6-317ac158f9a3-c67ce513, #w-node-e46d139e-633e-e834-94c6-317ac158f9b0-c67ce513, #w-node-e46d139e-633e-e834-94c6-317ac158f9bd-c67ce513 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.75fr;
}

#w-node-b94b7684-2413-97f7-14ea-44c447908fb1-c67ce513 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-fc36a1ab-6198-9c0c-878f-5087702b309f-c67ce513, #w-node-dc12505b-b2df-ff58-1d4b-be6cbfcf5338-c67ce513 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.75fr;
}

@media screen and (max-width: 479px) {
  #w-node-_14c14b06-2b4c-3c51-b661-d99ff3065710-c67ce513, #w-node-_74f0ad1f-3d99-f054-6f74-8275560dd967-c67ce513, #w-node-e46d139e-633e-e834-94c6-317ac158f99f-c67ce513, #w-node-b94b7684-2413-97f7-14ea-44c447908fb1-c67ce513 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    padding-top: 0px;
  }
}

/* SP（スマホ）：ボタンは縦並び */
.p-block__buttons {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  width: 100%;
  gap: 10px;
}

/* ボタンのスタイルは `.p-block__buttons` 内の `.p-button` のみに適用 */
.p-block__buttons .p-button {
  width: 100% !important;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .p-block__buttons {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important; /* 2列の比率を統一 */
      grid-template-rows: auto auto !important;
      gap: 10px !important;
      justify-content: center;
      /*max-width: 600px;*/
      width: 100%;
  }

  /* 1行目の相談・見学申込ボタン */
  .p-block__buttons > .p-button--cv2 {
      /*grid-column: 1 / -1 !important;*/ /* 1行目を2列分占有 */
      display: flex !important;
      align-items: center;
      justify-content: center;
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
  }

  /* `a` タグの横幅を100%にする */
  .p-button--cv2 a {
      display: flex !important;
      align-items: center;
      justify-content: center;
      width: 100% !important;  /* ボタンの幅と一致させる */
      max-width: 100% !important; /* 余計な幅制限を解除 */
      box-sizing: border-box !important; /* padding の影響を排除 */
      padding-left: 20px !important;
      padding-right: 20px !important;
      text-align: center;
  }

  /* 2行目のボタン */
  .p-block__buttons > .p-button--cv,
  .p-block__buttons > .p-button--cv3 {
      width: 100% !important;
      max-width: none !important;
  }

  /* `a` タグの横幅を100%にする（2行目） */
  .p-button--cv a,
  .p-button--cv3 a {
      display: flex !important;
      align-items: center;
      justify-content: center;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 20px !important;
      padding-right: 20px !important;
      text-align: center;
  }
}

@media screen and (min-width: 1024px) { /* デスクトップサイズの基準 */
  .u-maw-1100.u-ta-center {
      display: none;
  }
}



