@charset "UTF-8"; /*
  Made by Elly Loel - https://ellyloel.com/
*/
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem+1em+0.25rem);
}
*,
::before,
::after {
  box-sizing: border-box;
}
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}
html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}
body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}
:where(input, button, textarea, select),
:where(input[type="file"])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}
:where(textarea) {
  resize: vertical;
}
@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
h1 {
  font-size: 2em;
}
:where(ul, ol) {
  list-style-position: inside;
}
:where(ul, ol)[role="list"] {
  list-style: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
:where(
  a[href],
  area,
  button,
  input,
  label[for],
  select,
  summary,
  textarea,
  [tabindex]:not([tabindex*="-"])
) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(input[type="file"]) {
  cursor: auto;
}
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
:where(:not(:active)):focus-visible {
  outline-offset: 2px;
}
:where(
  button,
  button[type],
  input[type="button"],
  input[type="submit"],
  input[type="reset"]
),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}
:where(
  button,
  button[type],
  input[type="button"],
  input[type="submit"],
  input[type="reset"]
)[disabled] {
  cursor: not-allowed;
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
.en {
  font-family: "Agdasima", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.container {
  width: 1160px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.red {
  color: var(--ss-red);
}

.gray {
  color: var(--ss-gray);
}

.blue {
  color: #18b6e6;
}

.u-bg-black {
  position: relative;
  z-index: 2;
  background-color: #111;
  color: #fff;
  background-image: url("../images/black-overlay.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
.u-bg-black::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/black-overlay.png");
  transform: rotate(180deg);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
.button {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-radius: 50px;
  background-color: var(--ss-red);
  color: #fff;
  overflow: hidden;
  transition: var(--ss-transition);
  transition-property: opacity;
}
.button span {
  display: block;
}
.button:hover {
  opacity: 0.8;
}
.button:disabled {
  background-color: var(--ss-gray);
  cursor: not-allowed;
}

.button--dot::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  transition: var(--ss-transition);
  transition-property: transform;
}
.button--dot:hover::after {
  transform: scale(1.25);
}

.form-group p + p {
  margin-top: 30px;
}
.form-group .required {
  position: relative;
}
.form-group .required::after {
  content: "（必須項目）";
  color: var(--ss-red);
}
.form-group label > span {
  margin-bottom: 8px;
  display: block;
}
.form-group .wpcf7-text,
.form-group .wpcf7-textarea {
  width: 100%;
}
.form-group .wpcf7-submit {
  background-color: var(--ss-red);
  border-radius: 50px;
  padding: 20px 30px;
  width: 100%;
  color: #fff;
  transition: var(--ss-transition);
  transition-property: opacity;
}
.form-group .wpcf7-submit:hover {
  opacity: 0.8;
}
.form-group .wpcf7-submit:disabled {
  background-color: var(--ss-gray);
  cursor: not-allowed;
}
.form-group .wpcf7-radio,
.form-group .wpcf7-checkbox,
.form-group .wpcf7-acceptance {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group .wpcf7-radio label,
.form-group .wpcf7-checkbox label,
.form-group .wpcf7-acceptance label {
  position: relative;
}
.form-group .wpcf7-radio label input,
.form-group .wpcf7-checkbox label input,
.form-group .wpcf7-acceptance label input {
  opacity: 0;
}
.form-group .wpcf7-radio label span,
.form-group .wpcf7-checkbox label span,
.form-group .wpcf7-acceptance label span {
  margin-left: 8px;
}
.form-group .wpcf7-radio label span::before,
.form-group .wpcf7-checkbox label span::before,
.form-group .wpcf7-acceptance label span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--ss-red);
  z-index: 1;
  opacity: 0;
}
.form-group .wpcf7-radio label span:after,
.form-group .wpcf7-checkbox label span:after,
.form-group .wpcf7-acceptance label span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  outline: 1px solid #bdbdbd;
}
.form-group .wpcf7-radio label input:checked + span::before,
.form-group .wpcf7-checkbox label input:checked + span::before,
.form-group .wpcf7-acceptance label input:checked + span::before {
  opacity: 1;
}
.form-group .wpcf7-radio label input:checked + span::after,
.form-group .wpcf7-checkbox label input:checked + span::after,
.form-group .wpcf7-acceptance label input:checked + span::after {
  outline: 1px solid var(--ss-red);
}
.form-group .wpcf7-checkbox label span::before,
.form-group .wpcf7-checkbox label span::after,
.form-group .wpcf7-acceptance label span::before,
.form-group .wpcf7-acceptance label span::after {
  border-radius: 2px;
}
.form-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group .wpcf7-list-item span {
  margin-bottom: 0;
}
.form-group a {
  text-decoration: underline;
}
.form-group a:hover {
  text-decoration: none;
}

.pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--ss-gray);
  border-radius: 4px;
  text-decoration: none;
}

.pagination__link.is-active {
  background: var(--ss-red);
  color: #fff;
  border-color: var(--ss-red);
}

.pagination__link.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.breadcrumb {
  padding-top: 30px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-left: 10px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.breadcrumb__link {
  text-decoration: underline;
  transition: var(--ss-transition);
}
.breadcrumb__link:hover {
  text-decoration: none;
}
.breadcrumb__separator {
  color: var(--ss-color-text);
  font-size: 14px;
}
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: var(--ss-black); */
  color: #fff;
  transition: background-color var(--ss-transition);
}

.header.is-page {
  color: var(--ss-color-text);
}
.header.is-page .header__logo-img.--colored {
  display: block;
}
.header.is-page .header__logo-img.--white {
  display: none;
}
.header.is-page.is-open .header__logo-img.--white {
  display: block;
}
.header.is-page.is-scrolled .header__logo-img.--colored {
  display: none;
}
.header.is-page.is-scrolled .header__logo-img.--white {
  display: block;
}

.header.is-scrolled {
  background-color: var(--ss-black);
  color: #fff;
}
.header.is-scrolled .header__logo-img.--colored {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
}

.header__logo {
  /* margin-left: 10px; */
  position: relative;
  width: 224px;
}

.header__logo-link {
  position: relative;
  display: block;
  z-index: 1;
  height: 36px;
}

.header__logo-img {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.header__logo-img.--white {
  display: block;
}

.header__nav li {
  list-style: none;
}
.header__nav .current {
  color: var(--ss-red);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-item {
  position: relative;
  text-align: center;
}

.header__nav-parent {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  position: relative;
  padding-right: 18px;
}

/* 親トグルの矢印 */
.header__nav-parent::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--ss-transition);
}

.header__nav-link.--nolink {
  pointer-events: none;
}

.header__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #fff;
  color: var(--ss-color-text);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
  padding: 10px 0;
  display: none;
  z-index: 10;
}

.header__submenu-item {
  list-style: none;
}

.header__submenu-link {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.header__nav-item.is-subopen > .header__submenu {
  display: block;
}

.header__nav-item.is-subopen > .header__nav-parent::after {
  transform: translateY(-50%) rotate(-135deg);
}

.header__nav-item--contact a {
  display: block;
  background-color: var(--ss-red);
  padding: 6px 14px;
  border-radius: 50px;
  color: #fff;
}

.header__menu-button {
  display: none;
}
.footer {
  position: relative;
  /* z-index: 2; */
  background-color: #f5f5f5;
  color: var(--ss-text-color);
  padding-top: 82px;
  z-index: 1;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-inline: 20px;
  max-width: 1160px;
  margin-inline: auto;
}
.footer__nav {
  padding-bottom: 120px;
}

.footer__nav-list {
  max-width: 635px;
  width: 100%;
  /* Masonry-like using multi-column to avoid empty spaces */
  list-style: none;
  -moz-column-count: 3;
  column-count: 3;
}

.footer__nav-item {
  font-weight: 600;
  /* keep groups intact within a column */
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 32px;
}

.footer__nav-item.has-children .footer__nav-parent {
  color: var(--ss-color-text);
  position: relative;
}

.footer__submenu {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  font-size: 13px;
}

.footer__submenu-link {
  color: var(--ss-gray);
}

.footer__copyright {
  border-top: 1px solid var(--ss-gray);
  margin-inline: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer__copyright-inner {
  padding-inline: 20px;
  max-width: 1160px;
  margin-inline: auto;
}
.signup {
  position: relative;
  min-height: 100vh;
}
.signup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.signup-form {
  position: fixed;
  z-index: 999;
  top: 96px;
  right: 0;
  width: 375px;
  height: calc(100vh - 96px);
  overflow-y: auto;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.25);
}
.signup-form.at-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}
.signup-form__inner {
  padding-top: 38px;
  padding-left: 30px;
  padding-right: 20px;
  padding-bottom: 38px;
  max-width: 375px;
}
.signup-form__entitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--ss-gray);
  text-transform: capitalize;
}
.signup-form__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
}
.signup-form__form {
  margin-top: 24px;
}
.signup-form__form p + p {
  margin-top: 16px;
}
.signup-main {
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  gap: 60px;
}
.signup-main__box {
  max-width: 340px;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  padding: 24px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(
    100deg,
    #91abb0 0.04%,
    #79afb9 50%,
    #4294a4 99.96%
  );
}

.signup-benefits {
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  margin-top: 60px;
}
.signup-benefits__title {
  background-color: var(--ss-red);
  border-radius: 10px 10px 0 0;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 16px;
  line-height: 1.6;
}
.signup-benefits__list {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 24px 40px;
  font-size: 24px;
  line-height: 1.6;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.signup-benefits__item {
  padding-left: 55px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2239%22%20height%3D%2227%22%20viewBox%3D%220%200%2039%2027%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M0.724609%2011.5586L13.4909%2024.9642L37.748%200.707031%22%20stroke%3D%22%23B60002%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 37px auto;
}

.signup-flow {
  margin-top: 60px;
}
.signup-flow__title {
  color: var(--ss-color-text);
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
}
.signup-flow__list {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  list-style: none;
}
.signup-flow__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}
.signup-flow__item:last-of-type .signup-flow__number::before {
  display: none;
}
.signup-flow__number {
  position: relative;
  background-color: var(--ss-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 400;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signup-flow__number::before {
  content: "";
  display: block;
  position: absolute;
  width: 15vw;
  max-width: 190px;
  height: 3px;
  background-color: var(--ss-red);
  top: 60px;
  left: 60px;
}
.signup-flow__itemtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.company {
  padding-top: 88px;
  padding-bottom: 88px;
}
.company__title {
  text-align: center;
}
.company__maincopy {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}
.company__text {
  width: 620px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 16px;
  text-align: center;
}
.company__button {
  width: 310px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 25px;
}
.engineer {
  padding-top: 130px;
  padding-bottom: 45px;
}
.engineer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.engineer__image img {
  margin: auto;
}

.engineer-contents {
  flex: 1 0 490px;
}
.engineer-contents__heading {
  margin-top: 4px;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
}
.engineer-contents__text {
  margin-top: 24px;
}
.engineer-contents__button {
  margin-top: 40px;
  width: 310px;
  max-width: 100%;
}
.mv {
  position: relative;
  z-index: 3;
  background-color: #130607;
  background-image: url("../images/mv-overlay.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/contact-overlay.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.mv__inner {
  position: relative;
  width: 1160px;
  max-width: 100%;
  padding-top: 280px;
  padding-bottom: 25px;
  padding-inline: 20px;
  margin-inline: auto;
}
.mv__contents {
  margin-left: -70px;
}
.mv__copy {
  font-size: 70px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.mv__text {
  font-size: 32px;
  font-weight: 400;
  color: var(--ss-gray);
}
.mv__button {
  margin-top: 20px;
  width: 310px;
}
.mv__bgpointimg {
  position: absolute;
  top: 65px;
  right: 0;
}
.news {
  padding-top: 72px;
  padding-bottom: 72px;
}
.news__grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 36px;
}
.news__contents {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 60%;
}
.news__item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--ss-gray);
  padding: 30px 0;
  line-height: 2;
}
.news__date {
  white-space: nowrap;
  min-width: 160px;
}
.news__item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.news__button {
  width: 284px;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 36px;
}
.service {
  padding-top: 120px;
  padding-bottom: 95px;
}
.service__maintext {
  margin-top: 24px;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
.service-content__eyecatch {
  flex: 0 0 auto;
  position: relative;
  width: 50%;
  height: 350px;
}
.service-content__eyecatch img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.service-content__title {
  font-size: 32px;
  font-weight: 500;
}
.service-content__subtitle {
  margin-top: 24px;
  font-weight: 500;
}
.service-content__text {
  margin-top: 24px;
}
.service-content__button {
  margin-top: 40px;
  width: 310px;
  max-width: 100%;
}
.vision {
  padding-block: 120px;
}
.vision__maincopy {
  margin-top: 24px;
}
.vision__text {
  margin-top: 40px;
}
.contact {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 130px;
  padding-inline: 20px;
  background-color: #fff;
  color: var(--ss-color-text);
  background-image: url("../images/contact-overlay.png");
  background-size: cover;
  background-position: center bottom;
}
.contact__title {
  text-align: center;
  color: var(--ss-gray);
  font-size: 32px;
  font-weight: 400;
}
.contact__text {
  text-align: center;
  margin-top: 1em;
}
.contact__button {
  margin-top: 2.5em;
  margin-inline: auto;
  width: 310px;
  max-width: 100%;
}
.contact__bgtext {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 840px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center bottom;
  object-position: center bottom;
}
.contact__heading {
  text-align: center;
}
.contact__form {
  margin-top: 60px;
  width: 100%;
  max-width: 690px;
  margin-inline: auto;
}

.contactlist__container {
  width: 100%;
  max-width: 830px;
  margin-inline: auto;
  margin-top: 60px;
}
.contactlist__maintitle {
  font-size: 60px;
  font-weight: 500;
}
.contactlist__subtitle {
  color: var(--ss-red);
  font-size: 24px;
  font-weight: 600;
}

.contactlist-list {
  margin-bottom: 60px;
}
.contactlist-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.contactlist-list__item--press {
  margin-top: 60px;
}
.contactlist-list__label {
  font-size: 24px;
  font-weight: 500;
}
.contactlist-list__content-text {
  margin-bottom: 10px;
}
.contactlist-list__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-start;
}
.contactlist-list__button {
  width: 240px;
  max-width: 100%;
  justify-content: center;
}
.contactlist-list__button--black {
  background-color: var(--ss-black);
}
.news {
  padding-bottom: 72px;
}
.news__grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 36px;
}
.news__contents {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 80%;
  margin-inline: auto;
  max-width: 800px;
}
.news__detail-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--ss-gray);
  padding-bottom: 20px;
}
.news__detail-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.news__detail-body {
  margin-top: 24px;
  line-height: 2;
}
.news__back-button {
  margin-top: 32px;
  align-self: flex-start;
  margin-inline: auto;
}
.news {
  padding-bottom: 72px;
}
.news__grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 36px;
}
.news__contents {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 80%;
  margin-inline: auto;
  max-width: 800px;
}
.news__item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--ss-gray);
  padding: 30px 0;
  line-height: 2;
}
.news__date {
  white-space: nowrap;
  min-width: 160px;
}
.news__item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.news__button {
  width: 284px;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 36px;
}
.company-top {
  padding-bottom: 150px;
  overflow: hidden;
}
.company-top__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: linear-gradient(
    100deg,
    #3f2525 0.04%,
    #781a1b 50%,
    var(--ss-red) 99.96%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.company-top__text {
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  margin-top: 24px;
}
.company-top__images {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.company-top__images img {
  position: relative;
  border-radius: 10px;
  display: block;
}
.company-top__images img.--1 {
  left: -20px;
}
.company-top__images img.--2 {
  margin-top: 60px;
}
.company-top__images img.--3 {
  right: -20px;
  margin-top: 110px;
}

.company-message {
  background-color: #111;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 140px;
  background-image: url("../images/company/message-bg.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.company-message__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.company-message__heading {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.25em;
}
.company-message__row {
  margin-top: 60px;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.company-message__content {
  width: 100%;
}
.company-message__content p + p {
  margin-top: 1.5em;
}
.company-message__image {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  border-radius: 10px;
}

.company-profile {
  padding-top: 120px;
  padding-bottom: 120px;
}
.company-profile__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.company-profile__list {
  margin-top: 40px;
  list-style: none;
  width: 930px;
  max-width: 100%;
  margin-inline: auto;
}
.company-profile__item {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
}
.company-profile__item:last-of-type dt {
  border-bottom: 1px solid var(--ss-red);
}
.company-profile__item:last-of-type dd {
  border-bottom: 1px solid #d8d5d5;
}
.company-profile__item dt {
  height: 100%;
  text-align: center;
  padding: 30px;
  font-weight: 600;
  border-top: 1px solid var(--ss-red);
}
.company-profile__item dd {
  height: 100%;
  padding: 30px;
  border-top: 1px solid #d8d5d5;
}

.company-access {
  padding-top: 120px;
  padding-bottom: 120px;
}
.company-access__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.company-access__row {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
}
.engineer__title {
  color: var(--ss-color-text);
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
}

.engineer-concerns__title {
  color: va(--ss-color-text);
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
}
.engineer-concerns__text {
  background-color: var(--ss-red);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  margin-top: 45px;
  padding: 5px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
}

.engineer-concerns-list {
  margin-top: 40px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.engineer-concerns-list__item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.engineer-concerns-list__title {
  border-radius: 20px 20px 0 0;
  background: var(--ss-red);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 2px 20px;
  text-align: center;
  line-height: 1.25;
}
.engineer-concerns-list__content {
  color: var(--ss-color-text);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.engineer-concerns-list__text {
  padding: 16px 24px;
  border-radius: 0 0 20px 20px;
  background: #d8d5d5;
}

.engineer-features {
  padding-top: 84px;
  padding-bottom: 84px;
  background-image: url(../images/contact-overlay.png);
  background-size: contain;
  background-position: center top -200px;
  background-repeat: no-repeat;
}

.engineer-features-list {
  margin-top: 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.engineer-features-list__label {
  position: relative;
  color: var(--ss-red);
  font-family: Agdasima;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}
.engineer-features-list__label::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 85px);
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-left: 90px;
  background-color: var(--ss-red);
}
.engineer-features-list__title {
  color: var(--ss-color-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 16px;
}
.engineer-features-list__text {
  color: var(--ss-color-text);
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.engineer-result {
  margin-top: 84px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.engineer-result__image {
  width: 70%;
  max-width: 587px;
  margin-left: -16%;
}
.engineer-result__content {
  flex: 0 0 auto;
}
.engineer-result__title {
  margin-top: 24px;
  color: var(--ss-color-text);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
}
.engineer-result__number {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  line-height: 1;
  background: linear-gradient(transparent 80%, #e0c043 80%);
}
.engineer-result__number-value {
  color: var(--ss-red);
  text-align: center;
  font-family: Roboto;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -5px;
}
.engineer-result__number-unit {
  color: var(--ss-color-text);
  font-size: 24px;
  font-weight: 500;
}
.engineer-result__number-unit.--percent {
  color: var(--ss-red);
  font-family: Roboto;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -2.5px;
}

.engineer-voice {
  padding-top: 80px;
  padding-bottom: 120px;
}
.engineer-voice .engineer-concerns-list__text {
  background-color: #fff;
}

.engineer-points {
  padding-bottom: 120px;
}

.engineer-points-list {
  margin-top: 60px;
  margin-bottom: 60px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 46px;
  counter-reset: engineer-points-item;
}
.engineer-points-list__item {
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
  padding: 24px 62px;
  counter-increment: engineer-points-item;
}
.engineer-points-list__item::before {
  content: "0" counter(engineer-points-item);
  font-family: Agdasima;
  font-size: 60px;
  font-weight: 400;
  color: var(--ss-red);
  position: absolute;
  left: -0.3em;
  top: -0.7em;
  bottom: 0;
  margin: auto;
}
.engineer-points-list__title {
  color: var(--ss-red);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.engineer-points-list__text {
  margin-top: 16px;
  line-height: 1.8;
}

.engineer-points-innerbox {
  flex: 0 0 320px;
  background-color: var(--ss-red);
  color: #fff;
  border-radius: 10px;
  padding: 24px;
}
.engineer-points-innerbox__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.engineer-points-innerbox__title::before {
  content: "Point";
  display: block;
  font-family: Agdasima;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
.engineer-points-innerbox__text {
  margin-top: 8px;
  line-height: 1.8;
}

.engineer-cta {
  text-align: center;
}
.engineer-cta__text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  font-size: 24px;
  font-weight: 500;
}
.engineer-cta__text::before,
.engineer-cta__text::after {
  content: "";
  display: block;
  position: absolute;
  width: 33px;
  height: 3px;
  top: 0.5em;
  bottom: 0;
  margin: auto;
  background-color: #e8c900;
}
.engineer-cta__text::before {
  left: -1.5em;
  transform: rotate(45deg);
}
.engineer-cta__text::after {
  right: -1.5em;
  transform: rotate(-45deg);
}
.engineer-cta__button {
  margin-inline: auto;
  margin-top: 8px;
  width: 300px;
}

.engineer-offer {
  padding-bottom: 120px;
}

.engineer-offer-list {
  margin-top: 40px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.engineer-offer-list__content {
  padding: 16px 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.engineer-offer-list__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background-color: var(--ss-red);
  padding: 8px 20px;
}
.engineer-offer-list__text {
  font-size: 22px;
  font-weight: 500;
}
.engineer-offer-list__income {
  font-size: 24px;
  color: #fff;
  padding: 8px 24px;
  text-align: center;
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(
    100deg,
    #91abb0 0.04%,
    #79afb9 50%,
    var(--ss-red) 99.96%
  );
}

.engineer-cases {
  padding-bottom: 120px;
}
.engineer-cases__list {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 75px;
  counter-reset: engineer-cases-item;
}
.engineer-cases__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  counter-increment: engineer-cases-item;
}
.engineer-cases__header {
  width: 360px;
  background-color: var(--ss-red);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
}
.engineer-cases__header::before {
  content: "Case 0" counter(engineer-cases-item);
  font-family: Agdasima;
  font-weight: 400;
  color: #fff;
}
.engineer-cases__title {
  font-weight: 500;
}
.engineer-cases__content {
  line-height: 1.8;
}

.engineer-cases-compare {
  margin-top: 24px;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 50px;
  position: relative;
}
.engineer-cases-compare::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2245%22%20height%3D%2232%22%20viewBox%3D%220%200%2045%2032%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M16%2016L4%209.0718L4%2022.9282L16%2016Z%22%20fill%3D%22%23777777%22%2F%3E%20%3Cpath%20d%3D%22M44.6504%2016L20.6504%202.14359L20.6504%2029.8564L44.6504%2016Z%22%20fill%3D%22%23E8C900%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 45px;
  height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 170px;
}
.engineer-cases-compare__item {
  line-height: 2;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
}
.engineer-cases-compare__item:nth-of-type(1) {
  background-color: #777;
  color: #d8d5d5;
  padding: 8px;
}
.engineer-cases-compare__item:nth-of-type(2) {
  border-radius: 10px;
  background: linear-gradient(
    100deg,
    #91abb0 0.04%,
    #79afb9 50%,
    var(--ss-red) 99.96%
  );
  padding: 16px;
}
.engineer-cases-compare__heading {
  font-weight: 400;
}
.engineer-cases-compare__text {
  font-size: 12px;
}
.engineer-cases-compare__number {
  font-size: 24px;
}

.engineer-flow {
  padding-bottom: 120px;
}
.engineer-flow .engineer-cta {
  margin-top: 60px;
}

.engineer-flow-list {
  margin-top: 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 50px;
  counter-reset: engineer-flow-item;
}
.engineer-flow-list__item {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: var(--ss-red);
  color: #fff;
  line-height: 1.8;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
  counter-increment: engineer-flow-item;
}
.engineer-flow-list__item::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2270%22%20height%3D%2260%22%20viewBox%3D%220%200%2070%2060%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M34.6406%2060L69.2816%200H-0.000392914L34.6406%2060Z%22%20fill%3D%22%234294A4%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  height: 60px;
  position: absolute;
  top: calc(100% - 20px);
  left: 80px;
}
.engineer-flow-list__item:last-of-type::after {
  display: none;
}
.engineer-flow-list__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.engineer-flow-list__title::before {
  content: "0" counter(engineer-flow-item);
  font-family: Agdasima;
  font-size: 40px;
}
.number-top {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  padding-top: 100px;
  padding-bottom: 215px;
  z-index: 1;
}
.number-top__bg {
  position: absolute;
  left: -200px;
  bottom: -200px;
  z-index: -2;
  width: 1220px;
  height: auto;
  max-width: 1220px;
}
.number-top__row {
  position: relative;
}
.number-top__content {
  width: 50%;
}
.number-top__image {
  width: 70%;
  max-width: 900px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.number-top__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
}
.number-top__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 60px;
}
.number-top__message {
  margin-top: 30px;
  line-height: 1.8;
  font-weight: 400;
}
.number-top__message p + p {
  margin-top: 1.5em;
}

.number-list {
  padding-top: 105px;
  padding-bottom: 105px;
}
.number-list__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.number-list__list {
  margin-top: 60px;
  display: grid;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}
.number-list__list.--ses {
  margin-top: 60px;
}
.number-list__item {
  display: flex;
  flex-direction: column;
  border: 3px solid var(--ss-red);
  border-radius: 20px;
  background-color: #fff;
  height: 445px;
  position: relative;
}
.number-list__item img {
  position: absolute;
}
.number-list__item.--sales1,
.number-list__item.--ses1 {
  padding: 20px;
  padding-top: 80px;
  padding-bottom: 60px;
  color: #fff;
  background: linear-gradient(
    100deg,
    #91abb0 0.04%,
    #4294a4 50%,
    var(--ss-red) 99.96%
  );
}
.number-list__item.--sales1 img {
  position: relative;
  margin-top: 50px;
  display: block;
  margin-inline: auto;
}
.number-list__item.--sales2 {
  padding-top: 55px;
  align-items: center;
}
.number-list__item.--sales2 img {
  bottom: 0;
  left: 40px;
}
.number-list__item.--sales3 img {
  position: relative;
  margin-inline: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 11px;
}
.number-list__item.--sales4 {
  padding-top: 50px;
}
.number-list__item.--sales4 .number-list__number {
  margin-top: 60px;
}
.number-list__item.--sales4 .number-list__number span:nth-of-type(1) {
  display: inline-block;
}
.number-list__item.--sales4 .number-list__number span:nth-of-type(3) {
  display: inline-block;
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--sales4 img {
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.number-list__item.--sales5 {
  padding-top: 50px;
}
.number-list__item.--sales5 span:nth-of-type(2) {
  display: inline-block;
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--sales5 img {
  bottom: 0;
  right: 30px;
}
.number-list__item.--sales6 {
  padding-top: 50px;
}
.number-list__item.--sales6 span:nth-of-type(2) {
  display: inline-block;
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--sales6 img {
  bottom: 15px;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.number-list__item.--sales7 img {
  display: block;
  position: relative;
  margin-top: 50px;
  margin-inline: auto;
  margin-bottom: 25px;
}
.number-list__item.--sales8 {
  padding-top: 50px;
}
.number-list__item.--sales8 img {
  bottom: 30px;
  right: 0;
  left: 0;
  margin-inline: auto;
}
.number-list__item.--sales7 span:nth-of-type(2),
.number-list__item.--sales8 span:nth-of-type(2) {
  display: inline-block;
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--sales7 span:nth-of-type(3),
.number-list__item.--sales8 span:nth-of-type(3) {
  display: inline-block;
}
.number-list__item.--sales9 {
  padding-top: 20px;
}
.number-list__item.--sales9 span {
  display: inline-block;
}
.number-list__item.--sales9 span:nth-of-type(2) {
  display: inline-block;
}
.number-list__item.--sales9 span:nth-of-type(3) {
  font-size: 50px;
  font-weight: bold;
}
.number-list__item.--sales9 img {
  position: relative;
  display: block;
  margin-inline: auto;
  margin-bottom: 25px;
}
.number-list__item.--ses1 img {
  bottom: 70px;
  right: 40px;
}
.number-list__item.--ses2 {
  padding-top: 50px;
  align-items: center;
}
.number-list__item.--ses2 span {
  display: inline-block;
}
.number-list__item.--ses2 span:nth-of-type(3) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses2 img {
  bottom: 20px;
  right: 0;
  left: 0;
  margin-inline: auto;
}
.number-list__item.--ses3 span {
  display: inline-block;
}
.number-list__item.--ses3 span:nth-of-type(2) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses3 img {
  position: relative;
  display: block;
  margin-inline: auto;
  margin-bottom: 20px;
  margin-top: 50px;
}
.number-list__item.--ses4 {
  padding-top: 30px;
}
.number-list__item.--ses4 span {
  display: inline-block;
}
.number-list__item.--ses4 span:nth-of-type(2) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses4 img {
  bottom: 35px;
  right: 0;
  left: 0;
  margin-inline: auto;
}
.number-list__item.--ses5 {
  padding-top: 30px;
}
.number-list__item.--ses5 span {
  display: inline-block;
}
.number-list__item.--ses5 span:nth-of-type(1),
.number-list__item.--ses5 span:nth-of-type(3) {
  font-size: 80px;
}
.number-list__item.--ses5 span:nth-of-type(2),
.number-list__item.--ses5 span:nth-of-type(4) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses5 span:last-of-type {
  display: block;
  text-align: right;
}
.number-list__item.--ses5 img {
  bottom: 30px;
  right: 0;
  left: 0;
  margin-inline: auto;
}
.number-list__item.--ses6 {
  padding-top: 30px;
}
.number-list__item.--ses6 span {
  display: inline-block;
}
.number-list__item.--ses6 span:nth-of-type(2) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses6 img {
  bottom: 30px;
  right: 0;
  left: 0;
  margin-inline: auto;
}
.number-list__item.--ses7 span {
  display: inline-block;
}
.number-list__item.--ses7 span:nth-of-type(2) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses7 img {
  position: relative;
  display: block;
  margin-inline: auto;
  margin-bottom: 20px;
  margin-top: 40px;
}
.number-list__item.--ses8 {
  padding-top: 50px;
}
.number-list__item.--ses8 span {
  display: inline-block;
}
.number-list__item.--ses8 span:nth-of-type(2) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses8 img {
  bottom: 30px;
  right: 0;
  left: 0;
  margin-inline: auto;
}
.number-list__item.--ses9 span {
  display: inline-block;
}
.number-list__item.--ses9 span:nth-of-type(2) {
  font-size: 50px;
  font-weight: 800;
}
.number-list__item.--ses9 img {
  position: relative;
  display: block;
  margin-inline: auto;
  margin-bottom: 20px;
  margin-top: 40px;
}
.number-list__heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
.number-list__number {
  line-height: 0.9;
  margin-top: 20px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.number-list__number .value {
  font-weight: 800;
  font-size: 100px;
  letter-spacing: -0.05em;
}
.number-list__number .unit {
  font-size: 24px;
  display: block;
  text-align: right;
}

.number-list-maintitle__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #777;
}
.number-list-maintitle__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.static-page h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
  color: #2c3e50;
}
.static-page h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem 0;
  color: #34495e;
}
.static-page p {
  margin-bottom: 1rem;
  text-align: justify;
}
.static-page ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.static-page ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.static-page a {
  color: #3498db;
  text-decoration: underline;
}
.static-page a:hover {
  color: #2980b9;
}

.enactmentdate {
  text-align: right;
  margin-top: 16px;
}
.salespromotion-header {
  padding-bottom: 320px;
  background-image: url("../images/sales/bg-mv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.salespromotion-header__title {
  padding-bottom: 0;
}
.salespromotion-header__list {
  margin-top: 60px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
}
.salespromotion-header__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 234px;
}
.salespromotion-header__crown {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../images/sales/bg-crown.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
.salespromotion-header__itemtitle {
  font-size: 12px;
  text-align: center;
}
.salespromotion-header__itemnumber {
  margin-top: 8px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
.salespromotion-header__itemnumber b {
  font-size: 80px;
}
.salespromotion-header__itemdescription {
  font-size: 24px;
}

.salespromotion-about {
  padding-top: 60px;
  padding-bottom: 140px;
}
.salespromotion-about__title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
}
.salespromotion-about__text {
  margin-top: 16px;
}
.salespromotion-about__list {
  margin-top: 24px;
  margin-bottom: 140px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
.salespromotion-about__list li a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.salespromotion-about__chart {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 140px;
}
.salespromotion-about__chart img {
  display: block;
  margin-inline: auto;
}
.salespromotion-usecase {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
  padding: 60px 40px;
  position: relative;
  margin-top: 100px;
  margin-bottom: 140px;
  list-style: none;
}
.salespromotion-usecase__itemtitle {
  font-size: 40px;
  font-weight: 500;
  color: var(--ss-red);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  margin-top: -0.8em;
}
.salespromotion-usecase__itemlist {
  font-size: 24px;
  font-weight: 500;
  list-style: none;
  counter-reset: salespromotion-usecase-item;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.salespromotion-usecase__itemlistitemtitle {
  position: relative;
  counter-increment: salespromotion-usecase-item;
}
.salespromotion-usecase__itemlistitemtitle::before {
  content: "0" counter(salespromotion-usecase-item);
  margin-right: 14px;
  font-family: Agdasima;
  font-size: 60px;
  font-weight: 400;
  color: var(--ss-red);
  line-height: 0.5;
}
.salespromotion-usecase__itemlistitemtext {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 500;
  color: var(--ss-red);
}

.salespromotion-capability {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
.salespromotion-capability__item {
  width: 100%;
  max-width: 360px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  justify-content: center;
  align-items: center;
  justify-items: center;
  border-radius: 10px;
  gap: 16px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
}
.salespromotion-capability__item:nth-of-type(2n-1) {
  color: #fff;
  background-color: var(--ss-red);
}
.salespromotion-capability__itemtitle {
  font-size: 24px;
  font-weight: 500;
}
.salespromotion-capability__itemtext {
  font-weight: 400;
}

.salespromotion-services {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
.salespromotion-services__contents {
  position: relative;
  padding-right: 45%;
  padding-bottom: 20%;
}
.salespromotion-services__contents .salespromotion-services__eyecatch {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 55%;
  width: 730px;
  height: 651px;
}
.salespromotion-services__contents .salespromotion-services__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom right;
  object-position: bottom right;
}
.salespromotion-services__contents:nth-of-type(2) {
  margin-top: 60px;
  padding-top: 30px;
  padding-right: 0;
  padding-left: 45%;
}
.salespromotion-services__contents:nth-of-type(2)
  .salespromotion-services__eyecatch {
  left: 0;
  top: 0;
  bottom: 0;
}
.salespromotion-services__contents:nth-of-type(2)
  .salespromotion-services__eyecatch
  img {
  -o-object-position: center left;
  object-position: center left;
}
.salespromotion-services__title {
  font-size: 48px;
  font-weight: 500;
}
.salespromotion-services__subtitle {
  margin-top: 60px;
  font-size: 24px;
}
.salespromotion-services__label {
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 600;
  padding: 2px 50px;
  background-color: #fff;
  color: var(--ss-color-text);
}
.salespromotion-services__label:nth-of-type(2n) {
  background-color: var(--ss-red);
  color: #fff;
}
.salespromotion-services__text {
  margin-top: 24px;
  font-weight: 400;
  line-height: 1.8;
}
.salespromotion-services__text p + p {
  margin-top: 1.5em;
}

.salespromotion-cases {
  padding-top: 120px;
  padding-bottom: 100px;
}
.salespromotion-cases__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.salespromotion-cases__item {
  display: flex;
  flex-direction: column;
  padding: 46px 74px;
  gap: 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
}
.salespromotion-cases__item:nth-of-type(2n-1) {
  background-color: #d8d5d5;
}
.salespromotion-cases__itemheader {
  display: flex;
  gap: 40px;
}
.salespromotion-cases__itemcontent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.salespromotion-cases__itemtitle {
  background-color: var(--ss-red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 500;
}

.salespromotion-cta__list {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}
.salespromotion-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  gap: 8px;
  background-image: url("../images/sales/bg01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.salespromotion-cta__item:nth-of-type(2n-1) {
  color: #fff;
}
.salespromotion-cta__item:nth-of-type(2) {
  background-image: url("../images/sales/bg02.png");
}
.salespromotion-cta__itemtitle {
  font-size: 48px;
  font-weight: 500;
}
.ses__title {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
}

.ses-about {
  padding-top: 100px;
  padding-bottom: 150px;
}
.ses-about .container {
  position: relative;
}
.ses-about__content {
  max-width: 570px;
  position: relative;
}
.ses-about__title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 18px;
}
.ses-about__text {
  font-weight: 400;
  line-height: 1.8;
}
.ses-about__text p + p {
  margin-top: 1.5em;
}
.ses-about__eyecatch {
  display: block;
  position: absolute;
  top: -100px;
  right: 0;
  height: auto;
}

.ses-service {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.ses-service::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(180deg);
  background-image: url("../images/contact-overlay.png");
  background-size: contain;
  background-position: center top -200px;
  background-repeat: no-repeat;
}
.ses-service__box {
  border-radius: 10px;
  background: #fff;
  padding: 90px 45px;
  box-shadow: 0 3px 15px 0 rgba(60, 60, 60, 0.25);
}
.ses-service__box + .ses-service__box {
  margin-top: 60px;
}
.ses-service__title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
}
.ses-service__text {
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.ses-service-innerbox {
  background-color: #f5f5f5;
  padding: 35px;
  padding-top: 20px;
  border-radius: 10px;
  margin-top: 60px;
  position: relative;
  counter-reset: ses-service-innerbox;
}
.ses-service-innerbox + .ses-service-innerbox {
  margin-top: 70px;
}
.ses-service-innerbox__title {
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 5px 5px 5px 0;
  background-color: #111;
  padding: 10px 30px;
  color: #fff;
  font-weight: 400;
}
.ses-service-innerbox__item-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: 18px;
}
.ses-service-innerbox__item-title::before {
  content: "merit0" counter(ses-service-innerbox);
  counter-increment: ses-service-innerbox;
  color: var(--ss-red);
  font-family: Agdasima;
  font-size: 18px;
  font-weight: 400;
  margin-right: 24px;
}
.ses-service-innerbox__item-text {
  margin-top: 8px;
}
.ses-service-innerbox__list {
  display: grid;
}

.ses-service-projects {
  display: flex;
  gap: 40px;
  justify-content: center;
  list-style: none;
  padding-top: 45px;
}
.ses-service-projects__item {
  text-align: center;
}
.ses-service-projects__item-image {
  display: block;
  margin-inline: auto;
  margin-bottom: 18px;
}
.ses-service-projects__item-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 8px;
}

.ses-service-strength {
  padding-top: 150px;
  padding-inline: 20px;
}

.ses-service-strength-list {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 840px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ses-service-strength-list__label {
  position: relative;
  color: var(--ss-red);
  font-family: Agdasima;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}
.ses-service-strength-list__label::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 85px);
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-left: 90px;
  background-color: var(--ss-red);
}
.ses-service-strength-list__title {
  color: var(--ss-color-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 16px;
}
.ses-service-strength-list__text {
  color: var(--ss-color-text);
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.ses-results {
  padding-top: 100px;
  padding-bottom: 250px;
}

.ses-cases__title {
  font-size: 48px;
  font-weight: 500;
}
.ses-cases__tabs {
  margin-top: 40px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #d8d5d5;
  color: var(--ss-color-text);
  text-align: center;
  border-radius: 50px;
}
.ses-cases__tab {
  font-size: 20px;
  font-weight: 500;
  padding: 18px;
  line-height: 1;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
}
.ses-cases__tab.is-active {
  background-color: var(--ss-red);
  color: #fff;
}
.ses-cases__tab.is-active::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--ss-red);
  border-radius: 50%;
  top: 70px;
  left: 0;
  right: 0;
  margin: auto;
}
.ses-cases__tab.is-active::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 58px;
  background-color: var(--ss-red);
  top: 100px;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
}
.ses-cases__contents {
  margin-top: 75px;
  background-color: #fff;
  color: var(--ss-color-text);
  border-radius: 10px;
}
.ses-cases__content {
  display: none;
  padding: 60px 30px;
}
.ses-cases__content.is-active {
  display: block;
}
.ses-cases__row {
  display: flex;
  gap: 40px;
}
.ses-cases__row + .ses-cases__row {
  margin-top: 30px;
}
.ses-cases__inner {
  width: 50%;
}
.ses-cases__image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ses-cases__image img {
  height: auto;
}
.ses-cases__contenttitle {
  font-size: 24px;
  font-weight: 500;
}
.ses-cases__contentsubtitle {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  margin-top: 5px;
  color: var(--ss-red);
}
.ses-cases__contentsubtitle::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--ss-red);
  border-radius: 50%;
  margin-right: 10px;
  top: 1px;
  position: relative;
}
.ses-cases__contenttext {
  font-weight: 400;
  line-height: 1.8;
}
.ses-cases__table {
  border: 1px solid #d8d5d5;
  border-radius: 10px;
  flex: 0 1 50%;
}
.ses-cases__tabletitle {
  margin-bottom: 10px;
  background-color: #d8d5d5;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.ses-cases__tabletext {
  font-size: 16px;
  font-weight: 400;
}
.ses-cases__tablelist {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 15px;
  padding-inline: 50px;
}
.ses-cases__tabletext {
  color: var(--ss-red);
  font-weight: 600;
  margin-top: 14px;
  padding-left: 50px;
}
.ses-cases__tableitem {
  display: flex;
}
.ses-cases__tableitem b {
  margin-left: 10px;
}

.ses-numbers {
  position: relative;
  padding-top: 100px;
}
.ses-numbers__box {
  position: relative;
  border-radius: 20px;
  border: 3px solid var(--ss-red, #4294a4);
  background: linear-gradient(
    100deg,
    #91abb0 0.04%,
    #79afb9 50%,
    var(--ss-red) 99.96%
  );
  padding-top: 80px;
  padding-bottom: 80px;
  padding-inline: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ses-numbers__box::before {
  content: "In Numbers";
  font-family: Agdasima;
  font-size: 100px;
  line-height: 1;
  font-weight: 400;
  color: rgba(119, 119, 119, 0.5);
  position: absolute;
  bottom: -0.1em;
  right: 0;
}
.ses-numbers__title {
  font-size: 48px;
  font-weight: 500;
}
.ses-numbers__button {
  margin-top: 50px;
}

.ses-area {
  padding-top: 120px;
  padding-bottom: 120px;
}
.ses-area__text {
  margin-top: 24px;
  width: 610px;
  max-width: 100%;
  margin-inline: auto;
}
.ses-area__list {
  margin-top: 30px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ses-area__item {
  padding: 35px 30px;
  border-radius: 10px;
  background-color: #fff;
  color: var(--ss-color-text);
  background-size: auto 80%;
  background-position: center right 30px;
  background-repeat: no-repeat;
}
.ses-area__item:nth-of-type(1) {
  background-image: url("../images/service/ses-area01.png");
}
.ses-area__item:nth-of-type(2) {
  background-image: url("../images/service/ses-area02.png");
}
.ses-area__item:nth-of-type(3) {
  background-image: url("../images/service/ses-area03.png");
}
.ses-area__itemtitle {
  font-size: 24px;
  font-weight: 500;
}
.ses-area__itemlist {
  width: 85%;
  margin-top: 16px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ses-area__itemlist li:before {
  content: "・";
}

.ses-availability__title {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
}
.ses-availability__box {
  margin-top: 40px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, fit-content(100%));
  gap: 60px;
  background-color: #fff;
  color: var(--ss-color-text);
  padding: 60px 50px;
  border-radius: 10px;
}
.ses-availability__itemtitle {
  font-size: 24px;
  font-weight: 500;
}
.ses-availability__itemlist {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
:root {
  --ss-red: #4294a4;
  --ss-black: #111;
  --ss-gray: #777777;
  --ss-color-text: #3a3434;
  --ss-transition: 0.3s ease-out;
}

body {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.015em;
  color: var(--ss-color-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--ss-transition);
  transition-property: opacity;
}

a:hover {
  opacity: 0.7;
  /* color: var(--ss-red); */
}

body {
  background-color: #f5f5f5;
}

input,
textarea,
select {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  padding: 20px 24px;
  max-width: 100%;
}

.home__wrapper .container {
  position: relative;
  z-index: 3;
}
.home__darkbg {
  background-color: #130607;
  color: #fff;
  background-image: url("../images/contact-overlay.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.home__texture {
  position: fixed;
  top: 140px;
  right: calc(50vw - 580px);
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}
.home__title-en {
  color: var(--ss-gray);
  font-size: 32px;
  font-weight: 400;
}
.home__maincopy {
  font-size: 60px;
  font-weight: 500;
}

.page__wrapper {
  padding-top: 100px;
  padding-bottom: 60px;
}
.page__wrapper .container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-message {
  padding-bottom: 120px;
}
.page-message .container {
  padding-inline: 20px;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
}
.page-message .page-message__text {
  text-align: center;
  margin-top: 20px;
}
.page-message .page-message__button {
  margin-top: 40px;
  margin-inline: auto;
  width: 240px;
  max-width: 100%;
  justify-content: center;
}

.signup .container {
  position: relative;
  width: 100%;
  width: calc(100% - 375px);
  margin-right: 0;
  margin-left: 0;
}
.page-header {
  position: relative;
  background-image: url("../images/contact-overlay.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-top: 200px;
  padding-bottom: 60px;
}
.page-header__inner {
  position: relative;
  width: 1160px;
  max-width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
.page-header__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
}
.page-header__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--ss-gray);
  text-transform: capitalize;
}
.page-header--center {
  text-align: center;
}
.page-header--center .page-header__inner {
  padding-top: 250px;
  padding-bottom: 0;
}
.page-header--center .page-header__subtitle {
  color: var(--ss-red);
  font-size: 40px;
}
@media screen and (min-width: 781px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 981px) {
  .number-list__list.--ses .number-list__item.--ses1 {
    grid-column: 3;
    grid-row: 1;
  }
}
@media screen and (min-width: 1281px) {
  .footer__logo {
    margin-left: -35px;
  }
}
@media screen and (min-width: 1400px) {
  .salespromotion-header {
    background-size: cover;
    background-position: right top;
  }
  .signup .container {
    max-width: 1000px;
    margin-left: calc(50% - 660px);
  }
}
@media screen and (min-width: 1441px) {
  .signup-form {
    left: calc(50vw + 345px);
    right: auto;
    width: calc(50vw - 345px);
  }
}
@media screen and (max-width: 1280px) {
  .mv__contents {
    margin-left: 0;
  }
}
@media screen and (max-width: 1280px) and (min-width: 981px) {
  .header__logo {
    margin-left: 0;
    width: 160px;
  }
  .header__nav-list {
    gap: 25px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1180px) {
  .engineer-result__image {
    width: 60%;
    margin-left: -10%;
  }
  .engineer-result__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }
  .engineer-result__text {
    font-size: 12px;
  }
  .engineer-result__number-value {
    font-size: 60px;
  }
  .engineer-result__number-unit {
    font-size: 20px;
  }
}
@media screen and (max-width: 980px) {
  .header.is-page {
    color: #fff;
  }
  .header__logo {
    position: relative;
    z-index: 101;
    width: 60%;
  }
  .header__inner {
    padding: 20px;
  }
  .header__nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--ss-black);
    z-index: 100;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .header__nav-item.has-children {
    width: 90%;
    max-width: 480px;
  }
  .header__submenu {
    position: static;
    display: none;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 8px 0 0;
    color: #fff;
  }
  .header__submenu-link {
    padding: 12px 0;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-align: center;
  }
  .header__nav-parent::after {
    right: -14px;
    border-color: #fff;
  }
  .header__nav-item.is-subopen > .header__submenu {
    display: block;
  }
  .header__menu-button {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 24px;
    z-index: 100;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .header__menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--ss-gray);
    transition: var(--ss-transition);
    transition-property: transform, opacity;
  }
  .header__menu-button span:first-child {
    transform: translateY(-6px);
  }
  .header__menu-button span:nth-child(2) {
    opacity: 1;
  }
  .header__menu-button span:last-child {
    transform: translateY(6px);
  }
  .header.is-open .header__logo-img.--colored {
    display: none;
  }
  .header.is-open .header__nav {
    display: block;
  }
  .header.is-open .header__menu-button {
    /* cross */
  }
  .header.is-open .header__menu-button span:first-child {
    transform: translateY(2px) rotate(45deg);
  }
  .header.is-open .header__menu-button span:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .header__menu-button span:last-child {
    transform: translateY(-2px) rotate(-45deg);
  }
  .footer {
    padding-top: 60px;
  }
  .footer__logo {
    width: 80%;
    max-width: 259px;
    margin-inline: auto;
    text-align: center;
    display: block;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer__nav-list {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .footer__submenu {
    gap: 16px;
    font-size: 16px;
  }
  .footer__copyright {
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .signup__overlay {
    margin-top: -100px;
  }
  .signup-form {
    position: relative;
    margin-top: 100px;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    background-color: #fff;
  }
  .signup-form__inner {
    max-width: 100%;
  }
  .signup-main {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-inline: 20px;
  }
  .signup-main img {
    width: 80%;
  }
  .signup-main__box {
    font-size: 20px;
  }
  .signup-benefits {
    margin-top: 40px;
  }
  .signup-benefits__title {
    font-size: 20px;
  }
  .signup-benefits__list {
    font-size: 20px;
    font-weight: 600;
    padding: 24px 15px;
  }
  .signup-benefits__item {
    padding-left: 40px;
    background-size: 27px auto;
  }
  .signup-flow__list {
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .signup-flow__item {
    flex-direction: row;
  }
  .signup-flow__number::before {
    width: 3px;
    height: 100%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
  .engineer {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .engineer__row {
    flex-direction: column;
  }
  .engineer__image {
    overflow: hidden;
    width: 100%;
  }
  .engineer-contents__heading {
    font-size: 24px;
  }
  .engineer-contents__text {
    margin-top: 48px;
  }
  .engineer-contents__button {
    margin-top: 50px;
  }
  .mv {
    overflow: hidden;
  }
  .mv__inner {
    padding-top: 365px;
    padding-bottom: 55px;
  }
  .mv__copy {
    font-size: 40px;
    line-height: normal;
  }
  .mv__text {
    font-size: 18px;
    margin-top: 7px;
  }
  .mv__bgpointimg {
    height: auto;
  }
  .vision {
    padding-block: 90px;
  }
  .contact__button {
    margin-top: 1.8em;
  }
  .contactlist__maintitle {
    font-size: 20px;
  }
  .contactlist__subtitle {
    font-size: 20px;
    text-align: center;
  }
  .contactlist__container {
    margin-top: 40px;
  }
  .contactlist-list__item {
    flex-direction: column;
    align-items: center;
  }
  .contactlist-list__label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
  }
  .contactlist-list__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .contactlist-list__button {
    width: 330px;
  }
  .contactlist-list__content-text {
    text-align: center;
    margin-bottom: 10px;
  }
  .company-top {
    padding-bottom: 80px;
  }
  .company-top__title {
    text-align: left;
    font-size: 24px;
  }
  .company-top__text {
    text-align: left;
  }
  .company-top__images {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
  .company-top__images img {
    width: 80%;
  }
  .company-top__images img.--1 {
    left: 0;
  }
  .company-top__images img.--2 {
    margin-top: 0;
    right: 0;
    left: 0;
    margin-inline: auto;
  }
  .company-top__images img.--3 {
    margin-top: 0;
    right: 0;
    margin-left: auto;
  }
  .company-message {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .company-message__title {
    font-size: 24px;
  }
  .company-message__heading {
    font-size: 18px;
  }
  .company-message__row {
    margin-top: 30px;
    gap: 24px;
  }
  .company-message__content {
    width: 100%;
  }
  .company-message__image {
    width: 100%;
    margin-inline: auto;
  }
  .company-profile {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .company-profile__title {
    font-size: 24px;
  }
  .company-profile__list {
    margin-top: 30px;
    width: 100%;
  }
  .company-profile__item {
    grid-template-columns: 1fr;
  }
  .company-profile__item dt {
    background-color: var(--ss-gray);
    color: #fff;
    padding: 15px;
    border-top: 0;
    border-bottom: 0;
  }
  .company-profile__item dd {
    text-align: left;
    padding: 15px;
    border-top: 0;
    border-bottom: 0;
    background-color: #fff;
  }
  .company-profile__item ul {
    text-align: left;
  }
  .company-access {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .company-access__title {
    font-size: 24px;
  }
  .company-access__row {
    margin-top: 30px;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .company-access__map iframe {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .engineer__title {
    font-size: 24px;
  }
  .engineer-concerns__title {
    font-size: 24px;
  }
  .engineer-concerns__text {
    padding: 8px;
    font-size: 24px;
    text-align: left;
  }
  .engineer-concerns-list__item {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .engineer-features {
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: 1400px auto;
  }
  .engineer-features__title {
    font-size: 24px;
  }
  .engineer-result {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .engineer-result__image {
    width: 100%;
    margin-left: 0;
  }
  .engineer-result__number {
    margin-inline: auto;
  }
  .engineer-points {
    padding-bottom: 80px;
  }
  .engineer-points-list {
    margin-bottom: 16px;
  }
  .engineer-points-list__item {
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 16px;
  }
  .engineer-cta__button {
    margin-top: 16px;
  }
  .engineer-offer {
    padding-bottom: 80px;
  }
  .engineer-offer-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .engineer-cases {
    padding-bottom: 80px;
  }
  .engineer-cases__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .engineer-cases-compare {
    flex-direction: column;
    gap: 50px;
  }
  .engineer-cases-compare::before {
    left: 0;
    right: 0;
    transform: rotate(90deg);
  }
  .engineer-flow-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .engineer-flow-list__item::after {
    left: 40px;
  }
  .number-top {
    margin-top: -50px;
    padding-top: 50px;
    padding-bottom: 40px;
    overflow: hidden;
  }
  .number-top__content {
    width: 100%;
  }
  .number-top__bg {
    left: -50%;
    top: 0;
    width: 200%;
  }
  .number-top__image {
    margin-top: -15px;
    position: relative;
    left: -25%;
    width: 150%;
    max-width: initial;
  }
  .number-top__title {
    font-size: 24px;
  }
  .number-top__subtitle {
    margin-top: 24px;
    font-size: 20px;
  }
  .number-top__message {
    margin-top: 16px;
  }
  .number-list {
    padding-top: 0;
    margin-top: 40px;
  }
  .number-list .container {
    padding-inline: 10px;
  }
  .number-list__title {
    font-size: 24px;
  }
  .number-list__list {
    margin-top: 50px;
    grid-template-columns: repeat(1, 1fr);
  }
  .number-list__list.--ses .number-list__item,
  .number-list__list.--sales .number-list__item {
    padding-inline: 15px;
  }
  .number-list__list.--ses {
    margin-top: 60px;
  }
  .salespromotion-header {
    padding-bottom: 300px;
    background-size: auto 400px;
  }
  .salespromotion-header__list {
    margin-top: 30px;
    justify-content: center;
    gap: 0 40px;
  }
  .salespromotion-header__item {
    width: 44.4%;
  }
  .salespromotion-header__crown {
    padding-bottom: 40px;
  }
  .salespromotion-header__itemtitle {
    font-size: 10px;
  }
  .salespromotion-header__itemnumber {
    font-size: 24px;
  }
  .salespromotion-header__itemnumber b {
    font-size: 40px;
  }
  .salespromotion-header__itemdescription {
    font-size: 20px;
  }
  .salespromotion-about__title {
    font-size: 24px;
  }
  .salespromotion-about__list {
    margin-bottom: 60px;
  }
  .salespromotion-about__list li img {
    width: 100%;
  }
  .salespromotion-about__chart {
    margin-top: 24px;
    margin-bottom: 60px;
  }
  .salespromotion-usecase {
    padding: 30px 25px;
  }
  .salespromotion-usecase__itemtitle {
    font-size: 24px;
  }
  .salespromotion-usecase__itemlistitemtitle {
    font-size: 20px;
  }
  .salespromotion-usecase__itemlistitemtitle::before {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
  }
  .salespromotion-capability {
    margin-top: 30px;
  }
  .salespromotion-capability__item {
    max-width: 100%;
    width: 100%;
  }
  .salespromotion-services__contents {
    padding-right: 0;
    padding-bottom: 0;
  }
  .salespromotion-services__contents:nth-of-type(2) {
    padding-left: 0;
  }
  .salespromotion-services__contents .salespromotion-services__eyecatch {
    position: relative;
    width: 100%;
    height: auto;
    left: 30%;
  }
  .salespromotion-services__contents .salespromotion-services__eyecatch img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
  }
  .salespromotion-services__title {
    font-size: 24px;
    margin-top: 40px;
    text-align: center;
  }
  .salespromotion-services__subtitle {
    font-size: 20px;
    margin-top: 40px;
    text-align: center;
  }
  .salespromotion-services__text {
    font-size: 16px;
    margin-top: 16px;
  }
  .salespromotion-services__label {
    font-size: 20px;
    padding-inline: 10px;
    width: 100%;
    text-align: center;
  }
  .salespromotion-cases {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .salespromotion-cases__list {
    margin-top: 40px;
    flex-direction: column;
  }
  .salespromotion-cases__item {
    padding: 40px 20px;
  }
  .salespromotion-cases__itemheader {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .salespromotion-cta {
    width: 100vw;
    margin-left: -20px;
  }
  .salespromotion-cta__list {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }
  .salespromotion-cta__item {
    padding: 60px 20px;
  }
  .salespromotion-cta__itemtitle {
    font-size: 24px;
  }
  .ses-about__title {
    font-size: 24px;
    text-align: center;
  }
  .ses-about__eyecatch {
    position: relative;
    top: 0;
  }
  .ses-service {
    padding-top: 60px;
  }
  .ses-service .container {
    padding-inline: 0;
  }
  .ses-service__title {
    font-size: 24px;
  }
  .ses-service__box {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-inline: 20px;
  }
  .ses-service__box + .ses-service__box {
    margin-top: 40px;
  }
  .ses-service-innerbox {
    padding: 30px 15px;
  }
  .ses-service-innerbox + .ses-service-innerbox {
    margin-top: 40px;
  }
  .ses-service-innerbox__title {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
  .ses-service-innerbox__item-title {
    font-size: 20px;
  }
  .ses-service-innerbox__item-title::before {
    margin-right: 16px;
  }
  .ses-service-projects {
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
  }
  .ses-service-projects__item-title {
    font-size: 20px;
  }
  .ses-results {
    padding-bottom: 150px;
  }
  .ses-cases {
    overflow: hidden;
  }
  .ses-cases__title {
    text-align: center;
    font-size: 24px;
  }
  .ses-cases__tabs {
    width: 100vw;
    margin-left: -20px;
    padding-left: 20px;
    display: flex;
    gap: 15px;
    margin-top: 14px;
    overflow-x: auto;
    border-radius: 10px;
    background-color: transparent;
  }
  .ses-cases__tab {
    flex: 0 0 auto;
    font-size: 16px;
    padding: 16px 40px;
    background-color: #d8d5d5;
  }
  .ses-cases__tab.is-active::before,
  .ses-cases__tab.is-active::after {
    display: none;
  }
  .ses-cases__row {
    flex-direction: column;
    gap: 16px;
  }
  .ses-cases__row:first-of-type {
    flex-direction: column-reverse;
  }
  .ses-cases__contents {
    margin-top: 24px;
  }
  .ses-cases__inner {
    width: 100%;
  }
  .ses-cases__image {
    width: 100%;
  }
  .ses-cases__contenttitle {
    font-size: 20px;
  }
  .ses-cases__contentsubtitle {
    font-size: 16px;
  }
  .ses-cases__tabletext {
    padding-left: 20px;
  }
  .ses-cases__tablelist {
    padding-inline: 20px;
  }
  .ses-numbers__box {
    padding-top: 60px;
    padding-inline: 20px;
    flex-direction: column;
  }
  .ses-numbers__box::before {
    display: none;
  }
  .ses-numbers__title {
    font-size: 24px;
  }
  .ses-numbers__button {
    width: 100%;
  }
  .ses-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ses-area__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .ses-availability__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding: 40px;
    padding-inline: 20px;
  }
  .ses-availability__title {
    font-size: 24px;
  }
  .ses-availability__itemtitle {
    font-size: 20px;
  }
  .ses-availability__itemtext {
    font-size: 16px;
  }
  .home__maincopy {
    font-size: 24px;
  }
  .signup .container {
    padding-right: 20px;
    width: 100%;
  }
  .page-header {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .page-header__title {
    font-size: 24px;
  }
  .page-header__subtitle {
    font-size: 18px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 780px) {
  .pc {
    display: none;
  }
  .breadcrumb {
    padding-top: 10px;
  }
  .company {
    padding-top: 0;
    padding-bottom: 90px;
  }
  .company__maincopy {
    font-size: 24px;
    margin-top: 16px;
  }
  .mv__bgpointimg {
    min-width: 692px;
    margin-inline: auto;
    left: 0;
    right: 0;
    transform: translateX(-20%);
    max-width: initial;
    width: 120vw;
  }
  .news__grid {
    flex-direction: column;
  }
  .news__aside {
    display: contents;
  }
  .news__contents {
    width: 100%;
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .news__button {
    margin-top: 20px;
    order: 3;
  }
  .service__maintext {
    margin-top: 16px;
  }
  .service-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-content__subtitle {
    margin-top: 16px;
  }
  .service-content__text {
    margin-top: 8px;
  }
  .service-content__eyecatch {
    width: 100%;
    height: 280px;
  }
  .service-content__button {
    margin-top: 24px;
  }
  .news__grid {
    flex-direction: column;
  }
  .news__contents {
    width: 100%;
  }
  .news__grid {
    flex-direction: column;
  }
  .news__aside {
    display: contents;
  }
  .news__contents {
    width: 100%;
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .news__button {
    margin-top: 20px;
    order: 3;
  }
  .home__texture {
    min-width: 692px;
    margin-inline: auto;
    left: 0;
    right: 0;
    transform: translateX(-20%);
    max-width: initial;
    width: 120vw;
  }
  .page__wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-header {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .page-header--center {
    padding-top: 150px;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .static-page h2 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
  }
  .static-page h3 {
    font-size: 1.1rem;
  }
  .static-page ul {
    padding-left: 1.2rem;
  }
}
