@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;
}

.business {
  margin-bottom: 32px;
}

.business__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 117px;
  background-color: #000000;
  margin-top: 64px;
}

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

.business__btn {
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 50%;
}

@media screen and (max-width: 800px) {
  .business__btn {
    width: 100%;
    min-height: 60px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.business__btn__inner {
  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-right: 1px solid #FFFFFF;
  height: 100%;
}

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

.business__btn:last-child .business__btn__inner {
  border-right: 0;
}

.business__btn__no {
  font-size: 4rem;
  line-height: 6rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  line-height: 1;
  color: #789089;
}

@media screen and (max-width: 1004px) {
  .business__btn__no {
    font-size: 3.6rem;
    line-height: 5rem;
    line-height: 1;
  }
}

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

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

@media screen and (max-width: 1004px) {
  .business__btn__title {
    font-size: 1.8rem;
    line-height: 3rem;
    line-height: 1;
  }
}

.business__btn__img {
  width: 12px;
}

.advertising,
.media,
.sales {
  width: 1004px;
  margin: 0 auto;
  margin-top: 200px;
}

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

.advertising__top,
.media__top,
.sales__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advertising__top__left,
.media__top__left,
.sales__top__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 40px;
}

@media screen and (max-width: 1004px) {
  .advertising__top__left,
  .media__top__left,
  .sales__top__left {
    margin-right: 0;
  }
}

.advertising__top__left__titles,
.media__top__left__titles,
.sales__top__left__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.advertising__top__left__title,
.media__top__left__title,
.sales__top__left__title {
  font-size: 5rem;
  font-weight: bold;
  color: #1E6091;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
  margin: 0;
}

@media screen and (max-width: 480px) {
  .advertising__top__left__title,
  .media__top__left__title,
  .sales__top__left__title {
    font-size: 3rem;
    letter-spacing: .55rem;
    line-height: 5rem;
    line-height: 1.2;
  }
}

.advertising__top__left__subtitle,
.media__top__left__subtitle,
.sales__top__left__subtitle {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: bold;
  color: #1E6091;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  .advertising__top__left__subtitle,
  .media__top__left__subtitle,
  .sales__top__left__subtitle {
    margin-bottom: 0;
  }
}

.advertising__top__left__no,
.media__top__left__no,
.sales__top__left__no {
  font-size: 10rem;
  letter-spacing: 0.6rem;
  font-weight: bold;
  color: #1E6091;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}

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

.advertising__top__left__content,
.media__top__left__content,
.sales__top__left__content {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: bold;
}

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

.advertising__top__right,
.media__top__right,
.sales__top__right {
  width: 400px;
  height: 285px;
  position: relative;
}

@media screen and (max-width: 1004px) {
  .advertising__top__right,
  .media__top__right,
  .sales__top__right {
    display: none;
  }
}

.advertising__top__right img,
.media__top__right img,
.sales__top__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.advertising {
  margin-top: 120px;
}

.advertising__body {
  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;
  margin-top: 40px;
}

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

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

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

.advertising__body__box__imgWrap {
  width: 367px;
  height: 228px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

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

.advertising__body__box__imgWrap img {
  width: 100%;
}

.advertising__body__box__title {
  font-size: 2rem;
  line-height: 1;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .advertising__body__box__title {
    line-height: 1.4;
  }
}

.advertising__body__box__title span {
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  line-height: 2;
  letter-spacing: 0;
  color: #1E6091;
}

@media screen and (max-width: 480px) {
  .advertising__body__box__title span {
    font-size: 2rem;
    line-height: 1;
    line-height: 1.4;
  }
}

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

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

.operate__title {
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.operate__subtitle {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.operate__body {
  margin-top: 80px;
  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: 800px) {
  .operate__body {
    -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;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .operate__body .img-wrap {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1004px) {
  .operate__body img {
    width: 30%;
  }
}

@media screen and (max-width: 800px) {
  .operate__body img {
    width: 100%;
  }
}

.operate__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EDEDED;
  height: 142px;
  margin-top: 60px;
}

.operate__bottom__left {
  color: #1E6091;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  margin-left: 100px;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .operate__bottom__left {
    margin-left: 20px;
    min-width: 180px;
  }
}

@media screen and (max-width: 480px) {
  .operate__bottom__left {
    min-width: 128px;
    font-size: 1.4rem;
  }
}

.operate__bottom__bar {
  height: 100px;
  width: 1px;
  border-right: 1px dashed #1E6091;
  margin: 0 70px;
}

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

.operate__bottom__right {
  color: #1E6091;
  font-size: 2rem;
  line-height: 1;
  line-height: 1;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

.operate__bottom__right p {
  margin: 0;
  margin-right: 20px;
}

@media screen and (max-width: 800px) {
  .operate__bottom__right p {
    margin-bottom: 10px;
  }
}

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

.media__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 80px;
}

@media screen and (max-width: 800px) {
  .media__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}

.media__middle__left {
  width: 410px;
}

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

.media__middle__left__title {
  margin: 0;
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.5;
}

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

.media__middle__left__subtitle {
  margin: 0;
  margin-top: 10px;
  font-size: 4rem;
  line-height: 6rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  color: #EDEDED;
  letter-spacing: .55rem;
}

@media screen and (max-width: 480px) {
  .media__middle__left__subtitle {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

.media__middle__right {
  width: 460px;
}

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

.media__middle__right p {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  font-weight: bold;
}

.media__bottom {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

.media__bottom img {
  width: 45%;
}

@media screen and (max-width: 480px) {
  .media__bottom img {
    width: 100%;
    margin-bottom: 40px;
  }
}

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

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

.supports__title {
  margin: 0;
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-weight: bold;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
}

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

.supports__subtitle {
  margin: 0;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: bold;
  text-align: center;
}

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

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

@media screen and (max-width: 1004px) {
  .supports__middle {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (max-width: 480px) {
  .supports__middle {
    margin-top: 40px;
  }
}

.supports__middle img {
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .supports__middle img {
    width: 45%;
    margin-bottom: 20px;
  }
}

.supports__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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.supports__bottom__bar {
  width: 1px;
  height: 100px;
  border-right: 1px dashed #000000;
  margin-bottom: 40px;
  margin-top: 20px;
}

.supports__bottom__message {
  margin: 0;
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .supports__bottom__message {
    font-size: 1.8rem;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 10px;
  }
}

.supports__bottom__message span {
  color: #1E6091;
}

.supports__bottom__message br {
  display: none;
}

@media screen and (max-width: 480px) {
  .supports__bottom__message br {
    display: block;
  }
}

.supports__bottom__message__big {
  font-size: 3.6rem;
  line-height: 5rem;
  letter-spacing: 0;
}

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

.sales__top__left__title {
  color: #789089;
}

.sales__top__left__subtitle {
  color: #789089;
}

.sales__top__left__no {
  color: #789089;
}

.sales__body {
  margin-top: 100px;
}

.sales__body__title {
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  text-align: center;
  letter-spacing: .4rem;
}

.sales__body__subtitle {
  font-size: 2.4rem;
  line-height: 3rem;
  margin: 0;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.sales__body__table {
  margin-top: 80px;
}

.sales__body__table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 205px;
  background-color: #000000;
  color: #FFFFFF;
  margin-bottom: 40px;
  padding-left: 50px;
}

@media screen and (max-width: 1004px) {
  .sales__body__table__row {
    -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;
    height: auto;
    padding: 20px;
  }
}

.sales__body__table__row__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sales__body__table__row__subtitle {
  font-size: 1.4rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}

.sales__body__table__row__nos {
  margin-right: 40px;
  min-width: 60px;
}

@media screen and (max-width: 480px) {
  .sales__body__table__row__nos {
    margin-right: 20px;
  }
}

.sales__body__table__row__no {
  font-size: 5rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

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

.sales__body__table__row__title {
  font-size: 3rem;
  letter-spacing: .55rem;
  line-height: 5rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  margin-right: 50px;
  letter-spacing: 0;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .sales__body__table__row__title {
    font-size: 2rem;
    line-height: 1;
    line-height: 1.5;
    margin-right: 0;
  }
}

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

.sales__body__table__row__bar {
  height: 100px;
  width: 1px;
  border-right: 1px dashed #FFFFFF;
  margin-right: 50px;
}

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

.sales__body__table__row__message {
  max-width: 460px;
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 1004px) {
  .sales__body__table__row__message {
    margin-bottom: 0;
    max-width: none;
  }
}

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

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

.contactus {
  width: 1004px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 40px;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  border-top: 2px solid #C9C9C9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1004px) {
  .contactus {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
}

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

.contactus__top {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 5%;
}

@media screen and (max-width: 800px) {
  .contactus__top {
    margin-right: 0;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .contactus__top {
    margin-bottom: 32px;
  }
}

.contactus__title {
  font-size: 3.6rem;
  line-height: 5rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .contactus__title {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}

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

.contactus__bar {
  height: 74px;
  width: 1px;
  border-right: 1px dashed #000000;
}

@media screen and (max-width: 800px) {
  .contactus__bar {
    margin: 0 5%;
  }
}

.contactus__text {
  font-size: 2rem;
  line-height: 1;
  line-height: 1.5;
  font-weight: bold;
}

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

.business__row__img {
  display: none;
  width: 100%;
  position: relative;
  margin-top: 64px;
}

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

.business__row__img::after {
  display: block;
  content: '';
  padding-top: 46.7%;
}

.business__row__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 800px) {
  .blue-arrow {
    -webkit-transform: rotate(91deg);
            transform: rotate(91deg);
    margin: 64px 0;
  }
}
/*# sourceMappingURL=business.css.map */