@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* nomal */
:root {
  --c-white: #ffffff;
  --c-black: #392000;
  --c-dark: #2b2321;
  --c-blue: #0b7aff;
  --c-light-blue: #d0dcff;
  --c-gray: #9c9c9c;
  --c-light-gray: #EEEAE5;
  --c-light: #FFFAFA;
  --c-red: #e60001;
  --c-orange: #fe6400;
  --c-light-pink: #ffd0ba;
  --c-light-purple: #ecd6ff;
  --c-yellow: #ffee58;
  --c-light-yellow: #f5e9bb;
  --c-green: #66bb6a;
  --c-light-green: #cee6b5;
  --f-sans: Noto Sans JP, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, sans-serif;
  --f-serif: Times New Roman, YuMincho, Hiragino Mincho ProN, Yu Mincho, MS PMincho, serif;
  --pos-center: center;
  --pos-left: left;
  --pos-right: right;
  --pos-top: top;
  --pos-bottom: bottom;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  --text-shadow: 0.3rem 0.3rem 0.1rem var(--c-white), -0.3rem -0.3rem 0.1rem var(--c-white), -0.3rem 0.3rem 0.1rem var(--c-white), 0.3rem -0.3rem 0.1rem var(--c-white), 0.3rem 0 0.1rem var(--c-white), -0.3rem 0 0.1rem var(--c-white), 0 0.3rem 0.1rem var(--c-white), 0 -0.3rem 0.1rem var(--c-white);
  --c-fs-h1: 3.6rem;
  --c-fs-h2: 2.8rem;
  --c-fs-h3: 2.4rem;
  --c-fs-h4: 1.8rem;
  --c-fs-main-big: 2rem;
  --c-fs-main: 1.6rem;
  --c-fs-main-small: 1.2rem;
  --c-fw: 400;
  --c-fw-medium: 500;
  --c-fw-bold: 600;
  --c-fw-black: 900;
  --c-fw-light: 300;
  --c-fw-thin: 100;
  --c-lh: 180%;
  --c-lh-medium: 165%;
  --c-lh-heading: 150%;
}
@media screen and (max-width: 750px) {
  :root {
    --c-fs-h1: 4rem;
    --c-fs-h2: 3.6rem;
    --c-fs-h3: 3.2rem;
    --c-fs-h4: 3rem;
    --c-fs-main-big: 2.8rem;
    --c-fs-main: 2.6rem;
    --c-fs-main-small: 2.2rem;
  }
}

html {
  font-size: 62.5%;
}

body {
  color: var(--c-black);
  font-size: 1.6rem;
}
body.hidden {
  overflow: hidden;
}

img {
  max-width: 100%;
  pointer-events: none;
}

a {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

#contents section {
  padding: 12rem 0;
}

.u-sp {
  display: none;
}

.grecaptcha-badge {
  display: none !important;
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
  body {
    font-size: 2.8rem;
    overflow-x: hidden;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
.c-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header__inner {
  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;
  position: relative;
}

.c-header__logo a {
  display: block;
  width: 28rem;
  height: 4.323rem;
  background-color: var(--c-white);
  mask: url(../images/common/logo.svg) center/cover no-repeat;
  -webkit-mask: url(../images/common/logo.svg) center/cover no-repeat;
  -webkit-transition: 1s;
  transition: 1s;
}

.active.c-header {
  background-color: var(--c-white);
}
.active .c-header__logo a {
  background-color: var(--c-black);
}

@media screen and (max-width: 750px) {
  .c-header__logo a {
    width: 32rem;
    height: 4.943rem;
  }
}
.c-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5.5rem;
     -moz-column-gap: 5.5rem;
          column-gap: 5.5rem;
}

.c-nav__item a {
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  color: var(--c-white);
  display: block;
  padding: 3rem 0;
}
@media (hover: hover) {
  .c-nav__item a:hover {
    opacity: 1;
    color: var(--c-gray);
  }
}

.active .c-nav__item a {
  color: var(--c-black);
}
@media (hover: hover) {
  .active .c-nav__item a:hover {
    color: var(--c-gray);
  }
}
.active .c-nav__btn-line {
  background-color: var(--c-black);
}

.c-nav__btn {
  display: none;
  width: 8rem;
  height: 8rem;
  position: relative;
  right: -5rem;
  top: 0;
  cursor: pointer;
}

.c-nav__btn-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6rem;
  height: 0.3rem;
  background-color: var(--c-white);
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
.c-nav__btn-line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) translateY(-1.8rem);
          transform: translate(-50%, -50%) translateY(-1.8rem);
}
.c-nav__btn-line:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-nav__btn-line:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) translateY(1.8rem);
          transform: translate(-50%, -50%) translateY(1.8rem);
}

.u-navlogo {
  display: none;
}
.u-navlogo a {
  display: inline-block;
  margin-left: 3rem;
}
.u-navlogo a img {
  width: 28rem;
}

.nav-open {
  overflow: hidden;
}
.nav-open .c-nav__openbg {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (min-width: 751px) and (max-width: 1260px) {
  .c-nav__list {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .c-nav__item a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1170px) {
  .c-nav__list {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .u-navlogo {
    display: block;
  }
  .c-nav__wrap {
    position: fixed;
    right: -100%;
    top: 0;
    width: 54rem;
    height: 100vh;
    height: 100dvh;
    overflow: scroll;
    background-color: var(--c-white);
    padding-top: 6rem;
    padding-right: 0;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    z-index: 99;
  }
  .c-nav__wrap.active {
    right: 0;
  }
  .c-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-nav__item {
    position: relative;
  }
  .c-nav__item::after {
    content: "";
    display: block;
    width: calc(100% - 6rem);
    height: 0.2rem;
    position: absolute;
    bottom: 0;
    left: 3rem;
    background-color: var(--c-gray);
  }
  .c-nav__item a {
    font-size: 1.6rem;
    padding: 3rem 5rem;
  }
  .c-nav__btn {
    display: block;
    z-index: 999;
  }
  .c-nav__btn.active .c-nav__btn-line:nth-of-type(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .c-nav__btn.active .c-nav__btn-line:nth-of-type(2) {
    opacity: 0;
  }
  .c-nav__btn.active .c-nav__btn-line:nth-of-type(3) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media screen and (max-width: 750px) {
  .u-navlogo {
    margin-bottom: 3rem;
  }
  .u-navlogo a {
    margin-left: 6rem;
  }
  .u-navlogo a img {
    width: 36rem;
  }
  .c-nav__wrap {
    width: 100%;
    overflow-y: scroll;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .c-nav__btn {
    right: 0;
  }
  .c-nav__item::after {
    width: calc(100% - 12rem);
    left: 6rem;
  }
  .c-nav__item a {
    padding: 3.5rem 8rem;
    font-size: 3.2rem;
  }
}
.c-footer {
  background-color: var(--c-light-gray);
  padding: 6rem 0 0;
}
.c-footer p {
  line-height: var(--c-lh-medium);
}
.c-footer small {
  display: block;
  text-align: center;
  background-color: var(--c-black);
  color: var(--c-white);
  font-size: 1.4rem;
  padding: 1.5rem 0;
}

.c-footer__logo {
  margin-bottom: 1rem;
}
.c-footer__logo img {
  width: 28rem;
}

.c-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6rem;
}

.c-footer__list {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
.c-footer__list a {
  color: var(--c-black);
}

.float-bnr {
  position: fixed;
  right: 0;
  bottom: 10rem;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.float-bnr.is-show {
  opacity: 1;
  visibility: visible;
}
.float-bnr .access a {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main-small);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-heading);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 10rem;
  height: 10rem;
  border: 1px solid var(--c-black);
  color: var(--c-black);
  background-color: var(--c-light);
  border-radius: 1.6rem 0 0 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .float-bnr .access a:hover {
    background-color: var(--c-light-gray);
  }
}
.float-bnr .access i img {
  width: 3rem;
}
.float-bnr .contact {
  margin-top: 1.5rem;
}
.float-bnr .contact a {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main-small);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-heading);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 10rem;
  height: 10rem;
  border: 1px solid var(--c-black);
  color: var(--c-black);
  background-color: var(--c-light);
  border-radius: 1.6rem 0 0 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .float-bnr .contact a:hover {
    background-color: var(--c-light-gray);
  }
}
.float-bnr .contact i img {
  width: 3rem;
}

@media screen and (max-width: 1000px) {
  .c-footer__flex {
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .c-footer small {
    font-size: 2.2rem;
  }
  .c-footer__logo img {
    width: 32rem;
  }
  .c-footer__flex {
    gap: 6rem;
  }
  .float-bnr .access a {
    width: 16rem;
    height: 16rem;
  }
  .float-bnr .access i img {
    width: 6rem;
  }
  .float-bnr .contact a {
    width: 16rem;
    height: 16rem;
  }
  .float-bnr .contact i img {
    width: 6rem;
  }
}
.l-container {
  width: 100%;
  max-width: calc(1200px + 10rem);
  padding-inline: 5rem;
  margin-left: auto;
  margin-right: auto;
}
.l-container.-md {
  max-width: calc(1145px + 10rem);
}
.l-container.-sm {
  max-width: calc(960px + 10rem);
}
.l-container.-xs {
  max-width: calc(760px + 10rem);
}
.l-container.-lg {
  max-width: calc(1460px + 10rem);
}
.l-container.-xl {
  max-width: calc(1460px + 1.5rem);
  padding-inline: 3rem;
}

@media screen and (max-width: 750px) {
  .l-container {
    padding-inline: 3.5rem;
  }
}
.c-btn {
  line-height: var(--c-lh-medium);
}

.c-btn__link {
  display: inline-block;
  padding: 0.3rem 2.5rem 0.3rem 0.3rem;
  border-bottom: 1px solid var(--c-black);
  min-width: 18rem;
  color: var(--c-black);
  position: relative;
}
.c-btn__link::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1.028rem;
  background-color: var(--c-black);
  mask: url(../images/common/angle-right-solid-full.svg) center/cover no-repeat;
  -webkit-mask: url(../images/common/angle-right-solid-full.svg) center/cover no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.c-btn2__link {
  font-family: var(--f-serif);
  font-size: var(--c-fs-h4);
  font-weight: var(--c-fw-medium);
  line-height: var(--c-lh-heading);
  font-weight: bold;
  color: var(--c-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--c-black);
  border-radius: 0.6rem;
  padding: 2rem 3rem;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media (hover: hover) {
  .c-btn2__link:hover {
    opacity: 1;
    background-color: var(--c-light-gray);
  }
}

@media screen and (max-width: 750px) {
  .c-btn__link::after {
    width: 1.2rem;
    height: 2.056rem;
  }
}
.c-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-black);
}

.c-card__tag {
  background-color: var(--c-light-gray);
  padding: 1rem;
  min-height: 8rem;
}

.c-card__taglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem;
}
.c-card__taglist li {
  background-color: var(--c-black);
  color: var(--c-white);
  border-radius: 0.6rem;
  padding: 0.3rem 0.6rem;
}

.c-card__item {
  padding: 1rem;
}

.c-card__item--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-card__item--tag {
  min-height: 3.5rem;
}

.c-card__recommend {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main-small);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-heading);
  line-height: 1;
  display: inline-block;
  background-color: var(--c-blue);
  color: var(--c-white);
  padding: 0.3rem 0.6rem;
}
.c-card__recommend.-recommend {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
}
.c-card__recommend.-recommend::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../images/common/icn-recommend.png") no-repeat center/contain;
}
.c-card__recommend.-new {
  background-color: var(--c-orange);
}

.c-card__title {
  font-family: var(--f-serif);
  font-size: var(--c-fs-h3);
  font-weight: var(--c-fw-medium);
  line-height: var(--c-lh-heading);
}

.c-card__img {
  margin-top: auto;
}

.c-cv__lead {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main-big);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-medium);
  line-height: var(--c-lh-medium);
}

body:not(.home) .c-cv__lead {
  display: none;
}
body:not(.home) .c-cv__flex {
  margin-top: 0;
}

.c-cv__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6rem;
  margin: 6rem auto 0;
  max-width: 90rem;
}

.c-cv__item {
  width: 100%;
}
.c-cv__item a {
  font-family: var(--f-serif);
  font-size: var(--c-fs-h3);
  font-weight: var(--c-fw-medium);
  line-height: var(--c-lh-heading);
  color: var(--c-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--c-gray);
  border-radius: 1rem;
  width: 100%;
  height: 10rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .c-cv__item a:hover {
    opacity: 1;
    background-color: var(--c-light-gray);
  }
}
.c-cv__item.-tel a {
  font-family: var(--f-serif);
  font-size: var(--c-fs-h2);
  font-weight: var(--c-fw-medium);
  line-height: var(--c-lh-heading);
}

.c-cv__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 7rem;
  height: 7rem;
  border: 1px solid var(--c-gray);
  background-color: var(--c-white);
  border-radius: 100%;
  position: absolute;
  top: -2rem;
  left: -2rem;
}
.c-cv__icon.-mail::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.6rem;
  background-color: var(--c-black);
  mask: url(../images/common/envelope-circle-check-solid-full.svg) center/cover no-repeat;
  -webkit-mask: url(../images/common/envelope-circle-check-solid-full.svg) center/cover no-repeat;
}
.c-cv__icon.-tel::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: var(--c-black);
  mask: url(../images/common/phone-solid-full.svg) center/cover no-repeat;
  -webkit-mask: url(../images/common/phone-solid-full.svg) center/cover no-repeat;
}

@media screen and (max-width: 1000px) {
  .c-cv__item {
    min-width: initial;
    width: calc(50% - 3rem);
  }
}
@media screen and (max-width: 750px) {
  .c-cv__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6rem;
    margin-top: 9rem;
  }
  .c-cv__icon {
    width: 12rem;
    height: 12rem;
    top: -1rem;
    left: -4rem;
  }
  .c-cv__icon.-mail::after {
    width: 6.75rem;
    height: 5.25rem;
  }
  .c-cv__icon.-tel::after {
    width: 5.55rem;
    height: 5.55rem;
  }
  .c-cv__item {
    width: calc(100% - 4rem);
    margin-left: 4rem;
  }
}
.c-fadein {
  opacity: 0;
  pointer-events: none;
}
.c-fadein.active {
  -webkit-animation: fadein 1s linear forwards;
          animation: fadein 1s linear forwards;
  pointer-events: auto;
}
.active .c-fadein {
  -webkit-animation: fadein 1s linear forwards;
          animation: fadein 1s linear forwards;
  pointer-events: auto;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-fade-bottom {
  opacity: 0;
  position: relative;
  top: 3rem;
}
.c-fade-bottom.active {
  -webkit-animation: fadeinbottom 1s linear forwards;
          animation: fadeinbottom 1s linear forwards;
}
.active .c-fade-bottom {
  -webkit-animation: fadeinbottom 1s linear forwards;
          animation: fadeinbottom 1s linear forwards;
}

@-webkit-keyframes fadeinbottom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes fadeinbottom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
[delay="2"] {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}

[delay="4"] {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}

[delay="6"] {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}

[delay="8"] {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}

[delay="10"] {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}

[delay="12"] {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}

[delay="14"] {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}

[delay="16"] {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}

[delay="18"] {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}

[delay="20"] {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}

[delay="22"] {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
}

[delay="24"] {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
}

[delay="26"] {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
}

[delay="28"] {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
}

[delay="30"] {
  -webkit-animation-delay: 3s !important;
          animation-delay: 3s !important;
}

[delay="32"] {
  -webkit-animation-delay: 3.2s !important;
          animation-delay: 3.2s !important;
}

[delay="34"] {
  -webkit-animation-delay: 3.4s !important;
          animation-delay: 3.4s !important;
}

[delay="36"] {
  -webkit-animation-delay: 3.6s !important;
          animation-delay: 3.6s !important;
}

[delay="38"] {
  -webkit-animation-delay: 3.8s !important;
          animation-delay: 3.8s !important;
}

[delay="40"] {
  -webkit-animation-delay: 4s !important;
          animation-delay: 4s !important;
}

[delay="42"] {
  -webkit-animation-delay: 4.2s !important;
          animation-delay: 4.2s !important;
}

[delay="44"] {
  -webkit-animation-delay: 4.4s !important;
          animation-delay: 4.4s !important;
}

[delay="46"] {
  -webkit-animation-delay: 4.6s !important;
          animation-delay: 4.6s !important;
}

[delay="48"] {
  -webkit-animation-delay: 4.8s !important;
          animation-delay: 4.8s !important;
}

[delay="50"] {
  -webkit-animation-delay: 5s !important;
          animation-delay: 5s !important;
}

[delay="52"] {
  -webkit-animation-delay: 5.2s !important;
          animation-delay: 5.2s !important;
}

[delay="54"] {
  -webkit-animation-delay: 5.4s !important;
          animation-delay: 5.4s !important;
}

[delay="56"] {
  -webkit-animation-delay: 5.6s !important;
          animation-delay: 5.6s !important;
}

[delay="58"] {
  -webkit-animation-delay: 5.8s !important;
          animation-delay: 5.8s !important;
}

[delay="60"] {
  -webkit-animation-delay: 6s !important;
          animation-delay: 6s !important;
}

@media screen and (max-width: 750px) {
  [sp-delay="0"] {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
  [sp-delay="2"] {
    -webkit-animation-delay: 0.2s !important;
            animation-delay: 0.2s !important;
  }
  [sp-delay="4"] {
    -webkit-animation-delay: 0.4s !important;
            animation-delay: 0.4s !important;
  }
  [sp-delay="6"] {
    -webkit-animation-delay: 0.6s !important;
            animation-delay: 0.6s !important;
  }
  [sp-delay="8"] {
    -webkit-animation-delay: 0.8s !important;
            animation-delay: 0.8s !important;
  }
  [sp-delay="10"] {
    -webkit-animation-delay: 1s !important;
            animation-delay: 1s !important;
  }
  [sp-delay="12"] {
    -webkit-animation-delay: 1.2s !important;
            animation-delay: 1.2s !important;
  }
  [sp-delay="14"] {
    -webkit-animation-delay: 1.4s !important;
            animation-delay: 1.4s !important;
  }
  [sp-delay="16"] {
    -webkit-animation-delay: 1.6s !important;
            animation-delay: 1.6s !important;
  }
  [sp-delay="18"] {
    -webkit-animation-delay: 1.8s !important;
            animation-delay: 1.8s !important;
  }
  [sp-delay="20"] {
    -webkit-animation-delay: 2s !important;
            animation-delay: 2s !important;
  }
  [sp-delay="22"] {
    -webkit-animation-delay: 2.2s !important;
            animation-delay: 2.2s !important;
  }
  [sp-delay="24"] {
    -webkit-animation-delay: 2.4s !important;
            animation-delay: 2.4s !important;
  }
  [sp-delay="26"] {
    -webkit-animation-delay: 2.6s !important;
            animation-delay: 2.6s !important;
  }
  [sp-delay="28"] {
    -webkit-animation-delay: 2.8s !important;
            animation-delay: 2.8s !important;
  }
  [sp-delay="30"] {
    -webkit-animation-delay: 3s !important;
            animation-delay: 3s !important;
  }
  [sp-delay="32"] {
    -webkit-animation-delay: 3.2s !important;
            animation-delay: 3.2s !important;
  }
  [sp-delay="34"] {
    -webkit-animation-delay: 3.4s !important;
            animation-delay: 3.4s !important;
  }
  [sp-delay="36"] {
    -webkit-animation-delay: 3.6s !important;
            animation-delay: 3.6s !important;
  }
  [sp-delay="38"] {
    -webkit-animation-delay: 3.8s !important;
            animation-delay: 3.8s !important;
  }
  [sp-delay="40"] {
    -webkit-animation-delay: 4s !important;
            animation-delay: 4s !important;
  }
  [sp-delay="42"] {
    -webkit-animation-delay: 4.2s !important;
            animation-delay: 4.2s !important;
  }
  [sp-delay="44"] {
    -webkit-animation-delay: 4.4s !important;
            animation-delay: 4.4s !important;
  }
  [sp-delay="46"] {
    -webkit-animation-delay: 4.6s !important;
            animation-delay: 4.6s !important;
  }
  [sp-delay="48"] {
    -webkit-animation-delay: 4.8s !important;
            animation-delay: 4.8s !important;
  }
  [sp-delay="50"] {
    -webkit-animation-delay: 5s !important;
            animation-delay: 5s !important;
  }
  [sp-delay="52"] {
    -webkit-animation-delay: 5.2s !important;
            animation-delay: 5.2s !important;
  }
  [sp-delay="54"] {
    -webkit-animation-delay: 5.4s !important;
            animation-delay: 5.4s !important;
  }
  [sp-delay="56"] {
    -webkit-animation-delay: 5.6s !important;
            animation-delay: 5.6s !important;
  }
  [sp-delay="58"] {
    -webkit-animation-delay: 5.8s !important;
            animation-delay: 5.8s !important;
  }
  [sp-delay="60"] {
    -webkit-animation-delay: 6s !important;
            animation-delay: 6s !important;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pt-5 {
  padding-top: 0.5rem !important;
}

.u-pt-10 {
  padding-top: 1rem !important;
}

.u-pt-15 {
  padding-top: 1.5rem !important;
}

.u-pt-20 {
  padding-top: 2rem !important;
}

.u-pt-25 {
  padding-top: 2.5rem !important;
}

.u-pt-30 {
  padding-top: 3rem !important;
}

.u-pt-35 {
  padding-top: 3.5rem !important;
}

.u-pt-40 {
  padding-top: 4rem !important;
}

.u-pt-45 {
  padding-top: 4.5rem !important;
}

.u-pt-50 {
  padding-top: 5rem !important;
}

.u-pt-55 {
  padding-top: 5.5rem !important;
}

.u-pt-60 {
  padding-top: 6rem !important;
}

.u-pt-65 {
  padding-top: 6.5rem !important;
}

.u-pt-70 {
  padding-top: 7rem !important;
}

.u-pt-75 {
  padding-top: 7.5rem !important;
}

.u-pt-80 {
  padding-top: 8rem !important;
}

.u-pt-85 {
  padding-top: 8.5rem !important;
}

.u-pt-90 {
  padding-top: 9rem !important;
}

.u-pt-95 {
  padding-top: 9.5rem !important;
}

.u-pt-100 {
  padding-top: 10rem !important;
}

.u-pt-105 {
  padding-top: 10.5rem !important;
}

.u-pt-110 {
  padding-top: 11rem !important;
}

.u-pt-115 {
  padding-top: 11.5rem !important;
}

.u-pt-120 {
  padding-top: 12rem !important;
}

.u-pt-125 {
  padding-top: 12.5rem !important;
}

.u-pt-130 {
  padding-top: 13rem !important;
}

.u-pt-135 {
  padding-top: 13.5rem !important;
}

.u-pt-140 {
  padding-top: 14rem !important;
}

.u-pt-145 {
  padding-top: 14.5rem !important;
}

.u-pt-150 {
  padding-top: 15rem !important;
}

@media screen and (max-width: 750px) {
  .u-pt-sp-0 {
    padding-top: 0rem !important;
  }
  .u-pt-sp-5 {
    padding-top: 0.5rem !important;
  }
  .u-pt-sp-10 {
    padding-top: 1rem !important;
  }
  .u-pt-sp-15 {
    padding-top: 1.5rem !important;
  }
  .u-pt-sp-20 {
    padding-top: 2rem !important;
  }
  .u-pt-sp-25 {
    padding-top: 2.5rem !important;
  }
  .u-pt-sp-30 {
    padding-top: 3rem !important;
  }
  .u-pt-sp-35 {
    padding-top: 3.5rem !important;
  }
  .u-pt-sp-40 {
    padding-top: 4rem !important;
  }
  .u-pt-sp-45 {
    padding-top: 4.5rem !important;
  }
  .u-pt-sp-50 {
    padding-top: 5rem !important;
  }
  .u-pt-sp-55 {
    padding-top: 5.5rem !important;
  }
  .u-pt-sp-60 {
    padding-top: 6rem !important;
  }
  .u-pt-sp-65 {
    padding-top: 6.5rem !important;
  }
  .u-pt-sp-70 {
    padding-top: 7rem !important;
  }
  .u-pt-sp-75 {
    padding-top: 7.5rem !important;
  }
  .u-pt-sp-80 {
    padding-top: 8rem !important;
  }
  .u-pt-sp-85 {
    padding-top: 8.5rem !important;
  }
  .u-pt-sp-90 {
    padding-top: 9rem !important;
  }
  .u-pt-sp-95 {
    padding-top: 9.5rem !important;
  }
  .u-pt-sp-100 {
    padding-top: 10rem !important;
  }
  .u-pt-sp-105 {
    padding-top: 10.5rem !important;
  }
  .u-pt-sp-110 {
    padding-top: 11rem !important;
  }
  .u-pt-sp-115 {
    padding-top: 11.5rem !important;
  }
  .u-pt-sp-120 {
    padding-top: 12rem !important;
  }
  .u-pt-sp-125 {
    padding-top: 12.5rem !important;
  }
  .u-pt-sp-130 {
    padding-top: 13rem !important;
  }
  .u-pt-sp-135 {
    padding-top: 13.5rem !important;
  }
  .u-pt-sp-140 {
    padding-top: 14rem !important;
  }
  .u-pt-sp-145 {
    padding-top: 14.5rem !important;
  }
  .u-pt-sp-150 {
    padding-top: 15rem !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-pb-5 {
  padding-bottom: 0.5rem !important;
}

.u-pb-10 {
  padding-bottom: 1rem !important;
}

.u-pb-15 {
  padding-bottom: 1.5rem !important;
}

.u-pb-20 {
  padding-bottom: 2rem !important;
}

.u-pb-25 {
  padding-bottom: 2.5rem !important;
}

.u-pb-30 {
  padding-bottom: 3rem !important;
}

.u-pb-35 {
  padding-bottom: 3.5rem !important;
}

.u-pb-40 {
  padding-bottom: 4rem !important;
}

.u-pb-45 {
  padding-bottom: 4.5rem !important;
}

.u-pb-50 {
  padding-bottom: 5rem !important;
}

.u-pb-55 {
  padding-bottom: 5.5rem !important;
}

.u-pb-60 {
  padding-bottom: 6rem !important;
}

.u-pb-65 {
  padding-bottom: 6.5rem !important;
}

.u-pb-70 {
  padding-bottom: 7rem !important;
}

.u-pb-75 {
  padding-bottom: 7.5rem !important;
}

.u-pb-80 {
  padding-bottom: 8rem !important;
}

.u-pb-85 {
  padding-bottom: 8.5rem !important;
}

.u-pb-90 {
  padding-bottom: 9rem !important;
}

.u-pb-95 {
  padding-bottom: 9.5rem !important;
}

.u-pb-100 {
  padding-bottom: 10rem !important;
}

.u-pb-105 {
  padding-bottom: 10.5rem !important;
}

.u-pb-110 {
  padding-bottom: 11rem !important;
}

.u-pb-115 {
  padding-bottom: 11.5rem !important;
}

.u-pb-120 {
  padding-bottom: 12rem !important;
}

.u-pb-125 {
  padding-bottom: 12.5rem !important;
}

.u-pb-130 {
  padding-bottom: 13rem !important;
}

.u-pb-135 {
  padding-bottom: 13.5rem !important;
}

.u-pb-140 {
  padding-bottom: 14rem !important;
}

.u-pb-145 {
  padding-bottom: 14.5rem !important;
}

.u-pb-150 {
  padding-bottom: 15rem !important;
}

@media screen and (max-width: 750px) {
  .u-pb-sp-0 {
    padding-bottom: 0rem !important;
  }
  .u-pb-sp-5 {
    padding-bottom: 0.5rem !important;
  }
  .u-pb-sp-10 {
    padding-bottom: 1rem !important;
  }
  .u-pb-sp-15 {
    padding-bottom: 1.5rem !important;
  }
  .u-pb-sp-20 {
    padding-bottom: 2rem !important;
  }
  .u-pb-sp-25 {
    padding-bottom: 2.5rem !important;
  }
  .u-pb-sp-30 {
    padding-bottom: 3rem !important;
  }
  .u-pb-sp-35 {
    padding-bottom: 3.5rem !important;
  }
  .u-pb-sp-40 {
    padding-bottom: 4rem !important;
  }
  .u-pb-sp-45 {
    padding-bottom: 4.5rem !important;
  }
  .u-pb-sp-50 {
    padding-bottom: 5rem !important;
  }
  .u-pb-sp-55 {
    padding-bottom: 5.5rem !important;
  }
  .u-pb-sp-60 {
    padding-bottom: 6rem !important;
  }
  .u-pb-sp-65 {
    padding-bottom: 6.5rem !important;
  }
  .u-pb-sp-70 {
    padding-bottom: 7rem !important;
  }
  .u-pb-sp-75 {
    padding-bottom: 7.5rem !important;
  }
  .u-pb-sp-80 {
    padding-bottom: 8rem !important;
  }
  .u-pb-sp-85 {
    padding-bottom: 8.5rem !important;
  }
  .u-pb-sp-90 {
    padding-bottom: 9rem !important;
  }
  .u-pb-sp-95 {
    padding-bottom: 9.5rem !important;
  }
  .u-pb-sp-100 {
    padding-bottom: 10rem !important;
  }
  .u-pb-sp-105 {
    padding-bottom: 10.5rem !important;
  }
  .u-pb-sp-110 {
    padding-bottom: 11rem !important;
  }
  .u-pb-sp-115 {
    padding-bottom: 11.5rem !important;
  }
  .u-pb-sp-120 {
    padding-bottom: 12rem !important;
  }
  .u-pb-sp-125 {
    padding-bottom: 12.5rem !important;
  }
  .u-pb-sp-130 {
    padding-bottom: 13rem !important;
  }
  .u-pb-sp-135 {
    padding-bottom: 13.5rem !important;
  }
  .u-pb-sp-140 {
    padding-bottom: 14rem !important;
  }
  .u-pb-sp-145 {
    padding-bottom: 14.5rem !important;
  }
  .u-pb-sp-150 {
    padding-bottom: 15rem !important;
  }
}
.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt-5 {
  margin-top: 0.5rem !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-15 {
  margin-top: 1.5rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-25 {
  margin-top: 2.5rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-35 {
  margin-top: 3.5rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-45 {
  margin-top: 4.5rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-55 {
  margin-top: 5.5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-65 {
  margin-top: 6.5rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-75 {
  margin-top: 7.5rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-85 {
  margin-top: 8.5rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-95 {
  margin-top: 9.5rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mt-105 {
  margin-top: 10.5rem !important;
}

.u-mt-110 {
  margin-top: 11rem !important;
}

.u-mt-115 {
  margin-top: 11.5rem !important;
}

.u-mt-120 {
  margin-top: 12rem !important;
}

.u-mt-125 {
  margin-top: 12.5rem !important;
}

.u-mt-130 {
  margin-top: 13rem !important;
}

.u-mt-135 {
  margin-top: 13.5rem !important;
}

.u-mt-140 {
  margin-top: 14rem !important;
}

.u-mt-145 {
  margin-top: 14.5rem !important;
}

.u-mt-150 {
  margin-top: 15rem !important;
}

@media screen and (max-width: 750px) {
  .u-mt-sp-0 {
    margin-top: 0rem !important;
  }
  .u-mt-sp-5 {
    margin-top: 0.5rem !important;
  }
  .u-mt-sp-10 {
    margin-top: 1rem !important;
  }
  .u-mt-sp-15 {
    margin-top: 1.5rem !important;
  }
  .u-mt-sp-20 {
    margin-top: 2rem !important;
  }
  .u-mt-sp-25 {
    margin-top: 2.5rem !important;
  }
  .u-mt-sp-30 {
    margin-top: 3rem !important;
  }
  .u-mt-sp-35 {
    margin-top: 3.5rem !important;
  }
  .u-mt-sp-40 {
    margin-top: 4rem !important;
  }
  .u-mt-sp-45 {
    margin-top: 4.5rem !important;
  }
  .u-mt-sp-50 {
    margin-top: 5rem !important;
  }
  .u-mt-sp-55 {
    margin-top: 5.5rem !important;
  }
  .u-mt-sp-60 {
    margin-top: 6rem !important;
  }
  .u-mt-sp-65 {
    margin-top: 6.5rem !important;
  }
  .u-mt-sp-70 {
    margin-top: 7rem !important;
  }
  .u-mt-sp-75 {
    margin-top: 7.5rem !important;
  }
  .u-mt-sp-80 {
    margin-top: 8rem !important;
  }
  .u-mt-sp-85 {
    margin-top: 8.5rem !important;
  }
  .u-mt-sp-90 {
    margin-top: 9rem !important;
  }
  .u-mt-sp-95 {
    margin-top: 9.5rem !important;
  }
  .u-mt-sp-100 {
    margin-top: 10rem !important;
  }
  .u-mt-sp-105 {
    margin-top: 10.5rem !important;
  }
  .u-mt-sp-110 {
    margin-top: 11rem !important;
  }
  .u-mt-sp-115 {
    margin-top: 11.5rem !important;
  }
  .u-mt-sp-120 {
    margin-top: 12rem !important;
  }
  .u-mt-sp-125 {
    margin-top: 12.5rem !important;
  }
  .u-mt-sp-130 {
    margin-top: 13rem !important;
  }
  .u-mt-sp-135 {
    margin-top: 13.5rem !important;
  }
  .u-mt-sp-140 {
    margin-top: 14rem !important;
  }
  .u-mt-sp-145 {
    margin-top: 14.5rem !important;
  }
  .u-mt-sp-150 {
    margin-top: 15rem !important;
  }
}
.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-mb-5 {
  margin-bottom: 0.5rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-15 {
  margin-bottom: 1.5rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-25 {
  margin-bottom: 2.5rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-35 {
  margin-bottom: 3.5rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-45 {
  margin-bottom: 4.5rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-55 {
  margin-bottom: 5.5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-65 {
  margin-bottom: 6.5rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-75 {
  margin-bottom: 7.5rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-85 {
  margin-bottom: 8.5rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-95 {
  margin-bottom: 9.5rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-mb-105 {
  margin-bottom: 10.5rem !important;
}

.u-mb-110 {
  margin-bottom: 11rem !important;
}

.u-mb-115 {
  margin-bottom: 11.5rem !important;
}

.u-mb-120 {
  margin-bottom: 12rem !important;
}

.u-mb-125 {
  margin-bottom: 12.5rem !important;
}

.u-mb-130 {
  margin-bottom: 13rem !important;
}

.u-mb-135 {
  margin-bottom: 13.5rem !important;
}

.u-mb-140 {
  margin-bottom: 14rem !important;
}

.u-mb-145 {
  margin-bottom: 14.5rem !important;
}

.u-mb-150 {
  margin-bottom: 15rem !important;
}

@media screen and (max-width: 750px) {
  .u-mb-sp-0 {
    margin-bottom: 0rem !important;
  }
  .u-mb-sp-5 {
    margin-bottom: 0.5rem !important;
  }
  .u-mb-sp-10 {
    margin-bottom: 1rem !important;
  }
  .u-mb-sp-15 {
    margin-bottom: 1.5rem !important;
  }
  .u-mb-sp-20 {
    margin-bottom: 2rem !important;
  }
  .u-mb-sp-25 {
    margin-bottom: 2.5rem !important;
  }
  .u-mb-sp-30 {
    margin-bottom: 3rem !important;
  }
  .u-mb-sp-35 {
    margin-bottom: 3.5rem !important;
  }
  .u-mb-sp-40 {
    margin-bottom: 4rem !important;
  }
  .u-mb-sp-45 {
    margin-bottom: 4.5rem !important;
  }
  .u-mb-sp-50 {
    margin-bottom: 5rem !important;
  }
  .u-mb-sp-55 {
    margin-bottom: 5.5rem !important;
  }
  .u-mb-sp-60 {
    margin-bottom: 6rem !important;
  }
  .u-mb-sp-65 {
    margin-bottom: 6.5rem !important;
  }
  .u-mb-sp-70 {
    margin-bottom: 7rem !important;
  }
  .u-mb-sp-75 {
    margin-bottom: 7.5rem !important;
  }
  .u-mb-sp-80 {
    margin-bottom: 8rem !important;
  }
  .u-mb-sp-85 {
    margin-bottom: 8.5rem !important;
  }
  .u-mb-sp-90 {
    margin-bottom: 9rem !important;
  }
  .u-mb-sp-95 {
    margin-bottom: 9.5rem !important;
  }
  .u-mb-sp-100 {
    margin-bottom: 10rem !important;
  }
  .u-mb-sp-105 {
    margin-bottom: 10.5rem !important;
  }
  .u-mb-sp-110 {
    margin-bottom: 11rem !important;
  }
  .u-mb-sp-115 {
    margin-bottom: 11.5rem !important;
  }
  .u-mb-sp-120 {
    margin-bottom: 12rem !important;
  }
  .u-mb-sp-125 {
    margin-bottom: 12.5rem !important;
  }
  .u-mb-sp-130 {
    margin-bottom: 13rem !important;
  }
  .u-mb-sp-135 {
    margin-bottom: 13.5rem !important;
  }
  .u-mb-sp-140 {
    margin-bottom: 14rem !important;
  }
  .u-mb-sp-145 {
    margin-bottom: 14.5rem !important;
  }
  .u-mb-sp-150 {
    margin-bottom: 15rem !important;
  }
}
.u-txtpos-center {
  text-align: center !important;
}

.u-align-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-txtpos-left {
  text-align: left !important;
}

.u-align-left {
  -webkit-box-align: left !important;
      -ms-flex-align: left !important;
          align-items: left !important;
}

.u-txtpos-right {
  text-align: right !important;
}

.u-align-right {
  -webkit-box-align: right !important;
      -ms-flex-align: right !important;
          align-items: right !important;
}

.u-txtpos-top {
  text-align: top !important;
}

.u-align-top {
  -webkit-box-align: top !important;
      -ms-flex-align: top !important;
          align-items: top !important;
}

.u-txtpos-bottom {
  text-align: bottom !important;
}

.u-align-bottom {
  -webkit-box-align: bottom !important;
      -ms-flex-align: bottom !important;
          align-items: bottom !important;
}

@media screen and (max-width: 750px) {
  .u-txtpos-sp-center {
    text-align: center !important;
  }
  .u-align-sp-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .u-txtpos-sp-left {
    text-align: left !important;
  }
  .u-align-sp-left {
    -webkit-box-align: left !important;
        -ms-flex-align: left !important;
            align-items: left !important;
  }
  .u-txtpos-sp-right {
    text-align: right !important;
  }
  .u-align-sp-right {
    -webkit-box-align: right !important;
        -ms-flex-align: right !important;
            align-items: right !important;
  }
  .u-txtpos-sp-top {
    text-align: top !important;
  }
  .u-align-sp-top {
    -webkit-box-align: top !important;
        -ms-flex-align: top !important;
            align-items: top !important;
  }
  .u-txtpos-sp-bottom {
    text-align: bottom !important;
  }
  .u-align-sp-bottom {
    -webkit-box-align: bottom !important;
        -ms-flex-align: bottom !important;
            align-items: bottom !important;
  }
}
.u-c-white {
  color: #ffffff !important;
}

.u-bg-white {
  background-color: #ffffff !important;
}

.u-c-black {
  color: #392000 !important;
}

.u-bg-black {
  background-color: #392000 !important;
}

.u-c-dark {
  color: #2b2321 !important;
}

.u-bg-dark {
  background-color: #2b2321 !important;
}

.u-c-blue {
  color: #0b7aff !important;
}

.u-bg-blue {
  background-color: #0b7aff !important;
}

.u-c-light-blue {
  color: #d0dcff !important;
}

.u-bg-light-blue {
  background-color: #d0dcff !important;
}

.u-c-gray {
  color: #9c9c9c !important;
}

.u-bg-gray {
  background-color: #9c9c9c !important;
}

.u-c-light-gray {
  color: #EEEAE5 !important;
}

.u-bg-light-gray {
  background-color: #EEEAE5 !important;
}

.u-c-light {
  color: #FFFAFA !important;
}

.u-bg-light {
  background-color: #FFFAFA !important;
}

.u-c-red {
  color: #e60001 !important;
}

.u-bg-red {
  background-color: #e60001 !important;
}

.u-c-orange {
  color: #fe6400 !important;
}

.u-bg-orange {
  background-color: #fe6400 !important;
}

.u-c-light-pink {
  color: #ffd0ba !important;
}

.u-bg-light-pink {
  background-color: #ffd0ba !important;
}

.u-c-light-purple {
  color: #ecd6ff !important;
}

.u-bg-light-purple {
  background-color: #ecd6ff !important;
}

.u-c-yellow {
  color: #ffee58 !important;
}

.u-bg-yellow {
  background-color: #ffee58 !important;
}

.u-c-light-yellow {
  color: #f5e9bb !important;
}

.u-bg-light-yellow {
  background-color: #f5e9bb !important;
}

.u-c-green {
  color: #66bb6a !important;
}

.u-bg-green {
  background-color: #66bb6a !important;
}

.u-c-light-green {
  color: #cee6b5 !important;
}

.u-bg-light-green {
  background-color: #cee6b5 !important;
}

.c-title {
  font-family: var(--f-serif);
  font-size: var(--c-fs-h1);
  font-weight: var(--c-fw-medium);
  line-height: var(--c-lh-heading);
}
.c-title.c-vertical {
  letter-spacing: 0.2em;
}
.c-title.c-vertical > span:not([class]) {
  display: inline-block;
  margin-top: 2rem;
}
.c-title.c-vertical > span:not([class]):nth-of-type(3) {
  margin-top: 7rem;
}
.c-title .sm {
  display: block;
  font-family: var(--f-sans);
  font-size: var(--c-fs-main-small);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-heading);
}
.c-title.-icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.c-title.-icn i {
  line-height: 1;
}
.c-title.-icn i img {
  height: 6rem;
}
.c-title.-icn span {
  display: block;
}

.c-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.safari .c-title.c-vertical {
  white-space: nowrap;
}
.safari .u-business__flex--item.-title {
  min-width: 13rem;
}
@media screen and (max-width: 750px) {
  .safari .u-business__flex--item.-title {
    min-width: 15rem;
  }
}

.u-font-sans {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.u-font-serif {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.c-grid {
  display: grid;
  gap: 2rem;
}

.c-grid__space0 {
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}

.c-grid__cols--2 {
  grid-template-columns: repeat(2, 1fr);
}
.c-grid__cols--3 {
  grid-template-columns: repeat(3, 1fr);
}
.c-grid__cols--4 {
  grid-template-columns: repeat(4, 1fr);
}
.c-grid__cols--5 {
  grid-template-columns: repeat(5, 1fr);
}
.c-grid__cols--6 {
  grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 1000px) {
  .c-grid__cols--tb--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid__cols--tb--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid__cols--tb--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid__cols--tb--5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid__cols--tb--6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 1260px) {
  .c-grid__cols--md--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid__cols--md--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid__cols--md--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid__cols--md--5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid__cols--md--6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .c-grid {
    gap: 3.5rem;
  }
  .c-grid__cols--sp--1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid__cols--sp--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid__cols--sp--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid__cols--sp--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid__cols--sp--5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid__cols--sp--6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.u-mv {
  padding-top: 16rem !important;
  padding-bottom: 6rem !important;
}

.u-mv__border {
  border-bottom: 0.2rem solid var(--c-gray);
  margin-bottom: 2rem;
}

.u-mv__title {
  font-family: var(--f-serif);
  font-size: var(--c-fs-h1);
  font-weight: var(--c-fw-medium);
  line-height: var(--c-lh-heading);
  font-size: 4rem;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 2rem;
  position: relative;
}
.u-mv__title::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  border-bottom: 0.2rem solid var(--c-light-gray);
}
.u-mv__title .sm {
  display: block;
  font-family: var(--f-serif);
  font-size: var(--c-fs-h4);
  font-weight: var(--c-fw-medium);
  line-height: var(--c-lh-heading);
}

.u-mv__lead {
  font-family: var(--f-sans);
  font-size: var(--c-fs-main);
  font-weight: var(--c-fw);
  line-height: var(--c-lh-medium);
}

.c-table {
  width: 100%;
  border: 0.2rem solid var(--c-light-gray);
  table-layout: fixed;
}
.c-table tr:not(:last-of-type) {
  border-bottom: 0.2rem solid var(--c-light-gray);
}
.c-table th {
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--f-serif);
  background-color: var(--c-light-gray);
  padding: 2rem;
}
.c-table td {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--f-serif);
  padding: 2rem;
}

@media screen and (max-width: 750px) {
  .c-table th {
    font-size: 2.6rem;
  }
  .c-table td {
    font-size: 2.6rem;
  }
}
.c-contact__table {
  width: 100%;
}
.c-contact__table th {
  text-align: left;
  font-weight: 600;
  vertical-align: middle;
  padding-bottom: 2rem;
  width: 20rem;
}
.c-contact__table th.-top {
  vertical-align: top;
  padding-top: 1rem;
}
.c-contact__table th span {
  font-size: 1.2rem;
  color: var(--c-red);
  position: relative;
  top: -0.4rem;
  margin-left: 0.6rem;
}
.c-contact__table td {
  width: calc(100% - 20rem);
  vertical-align: middle;
  padding-bottom: 2rem;
}

@media screen and (max-width: 750px) {
  .c-contact__table th {
    display: block;
    width: 100%;
  }
  .c-contact__table th span {
    font-size: 2rem;
    top: -0.8rem;
    margin-left: 1.2rem;
  }
  .c-contact__table td {
    display: block;
    width: 100%;
    padding-bottom: 6rem;
  }
}