@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
  font-size: 62.5%;
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2rem;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */
hr {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */
  overflow: visible;
  /* 3 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
  /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
table {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
  resize: block;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

body {
  padding-top: 95px;
}

@media screen and (max-width: 800px) {
  body {
    padding-top: 54px;
  }
}

.header {
  height: 95px;
  background-color: #000000;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

@media screen and (max-width: 800px) {
  .header {
    height: 54px;
  }
}

.header__container {
  width: 1280px;
  height: 100%;
  margin: 0 auto;
  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;
}

@media screen and (max-width: 1280px) {
  .header__container {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 0 4%;
  }
}

@media screen and (max-width: 800px) {
  .header__container {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 4%;
  }
}

.header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  font-size: 4rem;
  line-height: 6rem;
  font-weight: bold;
  color: #FFFFFF;
  padding-left: 138px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1280px) {
  .header__title {
    padding-left: 0;
  }
}

@media screen and (max-width: 800px) {
  .header__title {
    font-size: 2rem;
    line-height: 1;
  }
}

.header__title a {
  color: #FFFFFF;
}

.header__nav {
  margin-right: 138px;
}

@media screen and (max-width: 1280px) {
  .header__nav {
    margin-right: 0;
  }
}

@media screen and (max-width: 800px) {
  .header__nav {
    display: none;
  }
}

.header__nav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0;
}

.header__nav__item {
  height: 100%;
  margin: 0 15px;
}

.header__nav__item a {
  height: 100%;
  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;
  color: #FFFFFF;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

.header__nav__item__active a {
  color: #789089;
}

.header__hamberger {
  cursor: pointer;
  width: 26px;
  display: none;
}

@media screen and (max-width: 800px) {
  .header__hamberger {
    display: block;
  }
}

.header__hamberger span {
  display: block;
  height: 3px;
  background-color: #FFFFFF;
  margin-bottom: 4px;
}

.header__hamberger span:nth-child(2) {
  width: 73%;
}

.header__hamberger span:nth-child(3) {
  width: 50%;
}

.sp_nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 19000;
  padding: 5%;
}

.sp_nav__top {
  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;
}

.sp_nav__top p {
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

.sp_nav__top img {
  width: 22px;
  cursor: pointer;
}

.sp_nav__list {
  text-align: center;
  margin-top: 32px;
  height: 60%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sp_nav__list li {
  list-style: none;
}

.sp_nav__list li a {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

.footer {
  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;
  background-color: #000000;
  height: 254px;
}

.footer__title {
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  color: #FFFFFF;
  text-align: center;
  font-family: din-condensed,sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
  list-style: none;
  padding: 0;
}

.footer__list li {
  margin: 0 20px;
  margin-left: 0;
}

.footer__list li:first-child {
  margin-left: 0;
}

.footer__list li a {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
  font-family: 'Roboto Condensed', sans-serif;
}

.footer__copyright {
  margin: 0;
  font-family: "Helvetica Neue";
  color: #FFFFFF;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .1rem;
  line-height: 2.5rem;
}

.hamburger {
  display: none;
}

.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(1.35rem) rotate(45deg);
          transform: translateY(1.35rem) rotate(45deg);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-1.35rem) rotate(-45deg);
          transform: translateY(-1.35rem) rotate(-45deg);
}

@media screen and (max-width: 800px) {
  .hamburger {
    display: block;
    z-index: 109000;
    position: fixed;
    top: 0;
    right: 2rem;
    cursor: pointer;
    width: 5rem;
    height: 5.6rem;
  }
}

@media screen and (max-width: 800px) {
  .hamburger span {
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: #FFFFFF;
    border-radius: 4px;
  }
  .hamburger span:nth-child(1) {
    top: 25%;
  }
  .hamburger span:nth-of-type(2) {
    top: 50%;
  }
  .hamburger span:nth-of-type(3) {
    top: 75%;
  }
}

.drawer-nav {
  width: 200px;
  background-color: #fd624a;
  z-index: 10000;
}

.drawer-menu {
  padding-top: 120px;
}

.drawer--right .drawer-nav {
  right: -200px;
}

.drawer-menu-item {
  padding-left: 40px;
  color: #FFFFFF !important;
  margin-bottom: 10px;
  text-decoration: none !important;
}

.drawer-menu-item span {
  display: inline-block;
  font-size: 1.6rem;
}

.drawer-menu-item span::after {
  -webkit-transition: .2s;
  transition: .2s;
  display: block;
  content: '';
  width: 0%;
  height: 2px;
  margin-top: 2px;
  background-color: black;
}

.drawer-menu-item span:hover {
  color: black !important;
}

.drawer-menu-item span:hover::after {
  width: 100%;
}

.drawer-overlay {
  z-index: 9000;
}

.white-button {
  width: 296px;
  height: 60px;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 800px) {
  .white-button {
    width: 228px;
    font-size: 1.6rem;
    letter-spacing: 0.02rem;
    line-height: 3.2rem;
  }
}

@media screen and (max-width: 480px) {
  .white-button {
    width: 148px;
    height: 32px;
    font-size: 1.6rem;
    letter-spacing: 0.02rem;
    line-height: 3.2rem;
  }
}

.white-button span {
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  color: #000000;
  font-family: 'Roboto Condensed', sans-serif;
}

@media screen and (max-width: 480px) {
  .white-button span {
    font-size: 1.4rem;
  }
}

.white-button img {
  width: 24px;
}

@media screen and (max-width: 480px) {
  .white-button img {
    width: 14px;
  }
}

.white-button img:first-child {
  visibility: hidden;
}

.black-radius-button {
  width: 313px;
  height: 74px;
  background-color: #000000;
  border-radius: 37px;
  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;
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .black-radius-button {
    width: 100%;
    height: 64px;
    font-size: 1.6rem;
    letter-spacing: 0.02rem;
    line-height: 3.2rem;
  }
}

.black-button {
  font-size: 1.8rem;
  line-height: 3rem;
  width: 344px;
  height: 63px;
  background-color: #000000;
  color: #FFFFFF;
  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;
}

@media screen and (max-width: 480px) {
  .black-button {
    width: 178px;
    height: 42px;
  }
}

.section {
  width: 1004px;
  margin: 0 auto;
  margin-top: 100px;
}

@media screen and (max-width: 1004px) {
  .section {
    width: 90%;
  }
}

.section__title {
  margin: 0;
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: bold;
  line-height: 1;
  color: #789089;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
}

.section__subtitle {
  margin: 0;
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.section__categories {
  margin-top: 100px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 800px) {
  .section__categories {
    margin-top: 20px;
  }
}

.section__categories__title {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  margin: 0;
  margin-right: 60px;
  color: #789089;
}

@media screen and (max-width: 800px) {
  .section__categories__title {
    display: none;
  }
}

.section__categories__list {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}

@media screen and (max-width: 800px) {
  .section__categories__list {
    display: none;
  }
}

.section__categories__list li {
  margin-right: 60px;
}

.section__categories__list li a {
  color: #000000;
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: bold;
}

.section__categories__list li:last-child {
  margin-right: 0;
}

.section__categories__list li.active a {
  color: #789089;
}

.section__categories__select {
  display: none;
  padding: 10px 40px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .section__categories__select {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .section__categories__select {
    font-size: 1.6rem;
    letter-spacing: 0.02rem;
    line-height: 3.2rem;
  }
}

.content-block {
  display: block;
}

@media screen and (max-width: 1004px) {
  .content-block {
    display: none;
  }
}

.content-none {
  display: none;
}

@media screen and (max-width: 1004px) {
  .content-none {
    display: block;
  }
}

.tab-block {
  display: block;
}

@media screen and (max-width: 800px) {
  .tab-block {
    display: none;
  }
}

.tab-none {
  display: none;
}

@media screen and (max-width: 800px) {
  .tab-none {
    display: block;
  }
}

.pages {
  max-width: 1004px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 64px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: relative;
  min-height: 50px;
}

.pages a.page-numbers,
.pages span.current {
  min-width: 20px;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  color: #000000;
  font-family: 'Roboto Condensed', sans-serif;
}

.pages span.current {
  color: #789089;
}

.prev img,
.next img {
  width: 47px;
}

.prev span,
.next span {
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  font-weight: bold;
  color: #789089;
  font-family: 'Roboto Condensed', sans-serif;
}

.prev {
  position: absolute;
  left: 0;
}

.next {
  position: absolute;
  right: 0;
}

.img-wrap--animated {
  overflow: hidden;
  position: relative;
  background-color: white;
}

.img-wrap--animated img {
  opacity: 0;
  -webkit-animation: imgAnimation 0.4s forwards;
          animation: imgAnimation 0.4s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.img-wrap--animated:before {
  -webkit-animation: img-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: img-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  background: black;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-transform-origin: right;
          transform-origin: right;
}

@-webkit-keyframes img-wrap {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes img-wrap {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

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

@keyframes imgAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

.borderAnimation--top-bottom {
  width: 3px;
  height: 100%;
  position: relative;
}

.borderAnimation--top-bottom--animated::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #000000;
  -webkit-animation: top-bottom 1.5s forwards;
          animation: top-bottom 1.5s forwards;
}

@-webkit-keyframes top-bottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes top-bottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

html {
  overflow-x: hidden;
}

.ajax-loader {
  display: none !important;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 1000000;
  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;
}

.loading__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.loading__title {
  color: #FFFFFF;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 7.7rem;
  letter-spacing: 0.85rem;
  margin: 0;
  font-weight: bold;
  display: none;
  z-index: 10;
}

@media screen and (max-width: 480px) {
  .loading__title {
    font-size: 6rem;
  }
}

.loading__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background-color: #000000;
}

.loading__overlay--animated {
  -webkit-animation: overlay 1s;
          animation: overlay 1s;
}

@-webkit-keyframes overlay {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100vw;
    left: 0;
  }
  100% {
    width: 0;
    left: 100vw;
  }
}

@keyframes overlay {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100vw;
    left: 0;
  }
  100% {
    width: 0;
    left: 100vw;
  }
}

.mainVisual {
  position: relative;
}

.mainVisual__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 11;
}

.mainVisual__content__top {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: .5em 1em;
  letter-spacing: .2rem;
}

@media screen and (max-width: 480px) {
  .mainVisual__content__top {
    font-size: 1.2rem;
    letter-spacing: .1rem;
    line-height: 2.5rem;
  }
}

.mainVisual__content__middle {
  margin: 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 7rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  color: #FFFFFF;
  letter-spacing: .55rem;
  line-height: 1;
}

@media screen and (max-width: 480px) {
  .mainVisual__content__middle {
    font-size: 4.6rem;
    margin: 24px 0;
  }
}

.mainVisual__content__middle span {
  font-size: 8.3rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  color: #FFFFFF;
  letter-spacing: .55rem;
  line-height: 1;
}

@media screen and (max-width: 480px) {
  .mainVisual__content__middle span {
    font-size: 5.6rem;
    letter-spacing: 0.6rem;
  }
}

.mainVisual__content__bottom {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mainVisual__content__bottom p {
  background-color: #FFFFFF;
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-weight: bold;
  padding: 0 .5rem;
  margin: 0;
  margin-bottom: 8px;
  display: inline-block;
}

@media screen and (max-width: 800px) {
  .mainVisual__content__bottom p {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 480px) {
  .mainVisual__content__bottom p {
    font-size: 2rem;
    line-height: 1;
    line-height: 1.2;
  }
}

.mainVisual__content__bottom p span {
  color: #789089;
}

.mainVisual__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.15);
}

.message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 1004px;
  margin: 0 auto;
}

@media screen and (max-width: 1004px) {
  .message {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .message {
    width: 90%;
  }
}

.message__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 210px;
}

@media screen and (max-width: 800px) {
  .message__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

.message__top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 220px;
}

@media screen and (max-width: 800px) {
  .message__top__left {
    height: 210px;
    margin-bottom: 32px;
  }
}

.message__top__left p, .message__top__left span {
  margin: 0;
  text-align: right;
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

.message__top__left p {
  padding-right: 20px;
}

.message__top__left span {
  color: #789089;
}

.message__top__right {
  margin-left: 60px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: .5s;
  transition: .5s;
}

@media screen and (max-width: 800px) {
  .message__top__right {
    margin-left: 40px;
  }
}

@media screen and (max-width: 480px) {
  .message__top__right {
    margin-left: 0;
  }
}

.message__top__right p {
  background-color: #FFFFFF;
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-weight: bold;
  padding: 0 .5rem;
  margin: 0;
  margin-bottom: 8px;
  display: inline-block;
}

@media screen and (max-width: 800px) {
  .message__top__right p {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 480px) {
  .message__top__right p {
    font-size: 2rem;
    line-height: 1;
    line-height: 1.2;
  }
}

.message__top__right p span {
  color: #789089;
}

.message__bottom {
  height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 280px;
}

@media screen and (max-width: 800px) {
  .message__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    margin-left: 0;
  }
}

.message__bottom__left {
  margin-right: 60px;
}

@media screen and (max-width: 800px) {
  .message__bottom__left {
    margin: 0 auto;
  }
}

.message__bottom__left p {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: bold;
}

.message__bottom__right {
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 800px) {
  .message__bottom__right {
    -ms-flex-item-align: end;
        align-self: flex-end;
    padding-bottom: 40px;
    height: 210px;
  }
}

.message__bottom__right p, .message__bottom__right span {
  margin: 0;
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

.message__bottom__right p {
  margin-left: 20px;
}

.message__bottom__right span {
  color: #789089;
}

.philosophy {
  margin-top: 100px;
  height: 486px;
  height: auto;
  background-color: #000000;
  position: relative;
}

@media screen and (max-width: 800px) {
  .philosophy {
    display: none;
  }
}

.philosophy__imgWrap {
  position: absolute;
  top: -100px;
  right: 0;
  width: 85%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.philosophy__imgWrap::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.55);
}

.philosophy__imgWrap img {
  width: 100%;
}

.philosophy__title {
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: bold;
  color: #FFFFFF;
  z-index: 100;
  position: relative;
  text-align: center;
}

.philosophy__description {
  font-size: 1.8rem;
  line-height: 3rem;
  color: #FFFFFF;
  position: relative;
  text-align: center;
  z-index: 100;
}

.philosophy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 20%);
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.philosophy__body__titles {
  margin-bottom: 32px;
}

.philosophy__body__title {
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}

@media screen and (max-width: 1280px) {
  .philosophy__body__title {
    font-size: 2.6rem;
  }
}

.philosophy__body__subtitle {
  margin: 0;
  font-size: 7.7rem;
  letter-spacing: 0.85rem;
  line-height: 1;
  font-weight: bold;
  color: #FFFFFF;
  font-family: 'Roboto Condensed', sans-serif;
}

@media screen and (max-width: 1280px) {
  .philosophy__body__subtitle {
    font-size: 6rem;
    letter-spacing: 0.4rem;
  }
}

.philosophy__body__btn {
  margin-top: 50px;
}

@media screen and (max-width: 1280px) {
  .philosophy__body__btn {
    width: 240px;
  }
}

.philosophy__sp {
  display: none;
}

@media screen and (max-width: 800px) {
  .philosophy__sp {
    display: block;
  }
}

.philosophy__sp__top {
  width: 88%;
  height: 264px;
  background-color: #000000;
  padding-left: 5%;
  padding-top: 5%;
}

.philosophy__sp__top__subtitle {
  margin: 0;
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 16px;
}

.philosophy__sp__top__title {
  margin: 0;
  color: #FFFFFF;
  font-size: 3.6rem;
  line-height: 5rem;
  letter-spacing: .55rem;
  font-weight: bold;
  line-height: 1;
  font-family: 'Roboto Condensed', sans-serif;
}

.philosophy__sp__bottom {
  width: 88%;
  height: 413px;
  margin-left: 12%;
  position: relative;
  margin-top: -120px;
}

.philosophy__sp__bottom::after {
  display: block;
  content: '';
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.philosophy__sp__bottom__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.philosophy__sp__bottom__body {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  color: #FFFFFF;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.philosophy__sp__bottom__body__title {
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  font-weight: bold;
}

.philosophy__sp__bottom__body__message {
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  font-weight: bold;
  margin: 0;
  padding: 0 .5em;
}

.business {
  width: 1004px;
  margin: 0 auto;
}

@media screen and (max-width: 1004px) {
  .business {
    width: 100%;
  }
}

.business__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 240px;
}

@media screen and (max-width: 800px) {
  .business__titles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 5%;
  }
}

.business__titles__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 220px;
  min-width: 220px;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .business__titles__box {
    min-height: 150px;
  }
}

.business__titles__box p, .business__titles__box span {
  text-align: right;
  margin: 0;
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: bold;
  color: #000000;
  font-family: 'Roboto Condensed', sans-serif;
}

.business__titles__box p {
  margin-right: 20px;
}

.business__titles__box span {
  color: #789089;
}

.business__titles__title {
  margin: 0;
  font-size: 3.6rem;
  line-height: 5rem;
}

@media screen and (max-width: 800px) {
  .business__titles__title {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-top: 16px;
  }
}

@media screen and (max-width: 480px) {
  .business__titles__title {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

.business__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

.business__body__box {
  display: block;
  width: 290px;
  height: 318px;
  position: relative;
  padding: 15px;
  margin: 0 20px;
  -webkit-transition: .4s;
  transition: .4s;
}

.business__body__box:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.business__body__box::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.51);
  z-index: 1;
}

.business__body__box__imgWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.business__body__box__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business__body__box__body {
  position: relative;
  z-index: 10;
}

.business__body__box__body__title {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}

.business__body__box__body__icon {
  display: block;
  margin: 20px auto;
}

.business__body__box__body__subtitle {
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  text-align: center;
  color: #FFFFFF;
  font-family: din-condensed,sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.business__body__box__body__subtitle02 {
  margin-top: -26px;
}

.business__body__box__body__name {
  font-size: 2.4rem;
  line-height: 3rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.business__body__box__body__more {
  width: 16px;
  display: block;
  margin: 0 auto;
}

.people {
  margin-top: 200px;
  margin-bottom: 100px;
  position: relative;
}

.people__content {
  width: 85%;
  min-height: 485px;
  position: relative;
}

.people__content__imgWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.people__content__imgWrap::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.people__content__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.people__content__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 10vw;
  padding-right: 2vw;
  padding-bottom: 32px;
  padding-top: 32px;
}

@media screen and (max-width: 1004px) {
  .people__content__body {
    position: relative;
  }
}

@media screen and (max-width: 800px) {
  .people__content__body {
    padding-left: 0;
    padding-right: 0;
    width: 90%;
    margin: 0 auto;
  }
}

.people__content__body__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1004px) {
  .people__content__body__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.people__content__body__top__left {
  min-width: 430px;
}

@media screen and (max-width: 480px) {
  .people__content__body__top__left {
    min-width: auto;
  }
}

.people__content__body__top__left__title {
  margin: 0;
  font-size: 4rem;
  line-height: 6rem;
  font-weight: bold;
  color: #FFFFFF;
  font-family: 'Roboto Condensed', sans-serif;
}

.people__content__body__top__left__subtitle {
  margin: 0;
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: bold;
  color: #FFFFFF;
}

.people__content__body__top__right {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  font-weight: bold;
  color: #FFFFFF;
}

@media screen and (max-width: 1004px) {
  .people__content__body__top__right {
    margin-top: 32px;
  }
}

.people__content__body__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}

@media screen and (max-width: 800px) {
  .people__content__body__bottom {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.people__decoration {
  position: absolute;
  bottom: -.5em;
  right: -1em;
  font-size: 7.7rem;
  letter-spacing: 0.85rem;
  font-weight: bold;
  color: #FFFFFF;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  line-height: 1;
  text-align: right;
}

@media screen and (max-width: 1004px) {
  .people__decoration {
    bottom: -1em;
    right: -1.4em;
  }
}

@media screen and (max-width: 800px) {
  .people__decoration {
    font-size: 6rem;
  }
}

@media screen and (max-width: 480px) {
  .people__decoration {
    bottom: -1.4em;
    right: -1.2em;
    font-size: 3.6rem;
    line-height: 5rem;
    line-height: 1;
  }
}

.people__bg {
  width: 89%;
  height: 485px;
  position: absolute;
  bottom: -100px;
  right: 0;
  background-color: #789089;
  z-index: -1;
}

.people_ {
  height: 485px;
  position: relative;
  margin-top: 200px;
}

@media screen and (max-width: 1004px) {
  .people_ {
    height: auto;
    margin-bottom: 100px;
  }
}

.people___imgWrap {
  position: absolute;
  width: 85%;
  height: 100%;
  top: -100px;
  left: 0;
}

@media screen and (max-width: 1004px) {
  .people___imgWrap {
    top: 0;
  }
}

.people___imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.people___imgWrap::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.people___bg {
  position: absolute;
  width: 85%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #789089;
  z-index: -1;
}

@media screen and (max-width: 1004px) {
  .people___bg {
    top: 100px;
  }
}

.people___content {
  width: 85%;
  position: relative;
  z-index: 10;
}

.people___content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}

@media screen and (max-width: 1004px) {
  .people___content__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 5vw;
  }
}

.people___content__top__left {
  margin-left: 2vw;
  margin-top: 2vw;
}

@media screen and (max-width: 1004px) {
  .people___content__top__left {
    margin-left: 0;
  }
}

.people___content__top__left__title {
  margin: 0;
  font-size: 4rem;
  line-height: 6rem;
  font-weight: bold;
  color: #FFFFFF;
  font-family: 'Roboto Condensed', sans-serif;
}

.people___content__top__left__subtitle {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  letter-spacing: 0;
  font-weight: bold;
  color: #FFFFFF;
}

.people___content__top__right {
  margin: 0;
  margin-right: 2vw;
  width: 436px;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  line-height: 1.5;
  color: #FFFFFF;
}

@media screen and (max-width: 1004px) {
  .people___content__top__right {
    width: auto;
  }
}

.people___content__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

@media screen and (max-width: 1004px) {
  .people___content__bottom {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 5vw;
  }
}

.people___decoration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 86%;
  position: relative;
  z-index: 10;
}

.people___decoration p {
  font-size: 7.7rem;
  letter-spacing: 0.85rem;
  font-weight: bold;
  color: #FFFFFF;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  line-height: 1;
}
/*# sourceMappingURL=index.css.map */