@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  overflow-x: hidden;
  font-size: 16px;
}
@media screen and (max-width: 1204px) {
  html {
    font-size: 1.3289036545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, Meiryo, sans-serif;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-drawerOpen {
  overflow: hidden;
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: inline;
  }
}

.u-pc {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-xs {
  display: none;
}
@media (max-width: 425px) {
  .u-xs {
    display: inline;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

.breadcrumb {
  position: absolute;
  top: 6.875rem;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    top: 5.625rem;
  }
}

.sub-mv--service .breadcrumb {
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--service .breadcrumb {
    top: 5.625rem;
  }
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 8rem;
  list-style: none;
  font-size: 0.75rem;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    padding: 0 16px;
  }
}

.breadcrumb__item a {
  color: #1A1A1A;
  text-decoration: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .breadcrumb__item a:hover {
    opacity: 0.7;
  }
}
.breadcrumb__item::after {
  content: ">";
  margin-right: 0.5rem;
  color: #1A1A1A;
}

.breadcrumb__item:last-of-type::after {
  content: none;
}

.btn-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16.625rem;
  height: 3.875rem;
  border: 2px solid #DC010C;
  border-radius: 2.0625rem;
  padding: 0 1.25rem;
  background-color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-link {
    width: 15rem;
    height: 3.5rem;
  }
}

.btn-link__text {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #DC010C;
}

.btn-link__arrow {
  position: absolute;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: #DC010C;
}

.btn-link__arrow::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.375rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
}

@media (any-hover: hover) {
  .btn-link:hover {
    background-color: #DC010C;
  }
  .btn-link:hover .btn-link__text {
    color: #fff;
  }
  .btn-link:hover .btn-link__arrow {
    background-color: #fff;
  }
  .btn-link:hover .btn-link__arrow::after {
    background-image: url("../img/common/arrow-red.svg");
  }
}
.btn {
  background-image: url("../img/");
  background-position: center right 1.5em;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  background-color: transparent;
  border: 1px solid #D9D9D9;
  color: #000;
  padding: 0 0.625rem;
  min-height: 3.75rem;
  line-height: 1.2;
  transition: background-color 0.3s, color 0.3s;
  width: 13.75rem;
  max-width: 100%;
}
.btn span {
  display: block;
  font-size: 0.75rem;
}

@media (any-hover: hover) {
  .btn:hover {
    color: #fff;
  }
}
.column__grid .column-card {
  width: 100%;
  max-width: 22.75rem;
  background-color: #fff;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.16);
  overflow: hidden;
  text-decoration: none;
  display: block;
  padding-bottom: 2.5rem;
}
.column__grid .column-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.column__grid .column-card__img {
  height: 13.0625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .column__grid .column-card__img {
    height: 12.3125rem;
  }
}

.column__grid .column-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.column__grid .column-card__body {
  padding: 1.25rem 1.625rem 1.625rem;
}
@media screen and (max-width: 767px) {
  .column__grid .column-card__body {
    display: block;
  }
}

.column__grid .column-card__date {
  display: block;
  font-size: 0.875rem;
  color: #e60e11;
}
@media screen and (max-width: 767px) {
  .column__grid .column-card__date {
    font-size: 0.8125rem;
  }
}

.column__grid .column-card__text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column__grid .column-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #1A1A1A;
  margin-top: 0.5rem;
  margin-left: auto;
  position: absolute;
  bottom: -1.25rem;
  right: 1.25rem;
}

.column__grid .column-card__arrow::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.625rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .column__grid .column-card:hover .column-card__img img {
    transform: scale(1.1);
  }
  .column__grid .column-card:hover .column-card__arrow::after {
    transform: translateX(3px);
  }
}
.column {
  padding: 4.875rem 0 7.875rem;
}
@media screen and (max-width: 767px) {
  .column {
    padding: 3.875rem 0 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .column__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.column__head {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .column__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.0625rem;
  }
}

.column__desc {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .column__desc {
    margin-bottom: 0rem;
  }
}

.column__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2.3125rem;
  max-width: 100%;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .column__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2.4375rem;
    justify-items: center;
  }
}

.column__btn-wrap {
  display: flex;
  justify-content: flex-end;
  padding-right: 5rem;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .column__btn-wrap {
    justify-content: center;
    padding-right: 0;
    margin-top: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  .column__btn-wrap .btn-link {
    display: flex;
    width: 16.625rem;
    margin: 0 auto;
  }
}

.concept {
  padding: 14rem 0 9.625rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .concept {
    padding: 8.75rem 0 4.625rem;
  }
}

.concept__inner {
  display: flex;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5625rem;
  gap: 6.875rem;
}
@media screen and (max-width: 767px) {
  .concept__inner {
    max-width: 77;
    flex-direction: column-reverse;
    padding: 0 16px;
    gap: 3.125rem;
  }
}

.concept__img {
  flex-shrink: 0;
  width: 39.25rem;
  height: 52.1875rem;
  border-radius: 0 5.125rem 5.125rem 0;
  overflow: hidden;
  margin-left: calc(-1 * (1.5625rem + max(0px, (100vw - 80rem) / 2)));
}
@media screen and (max-width: 767px) {
  .concept__img {
    align-self: flex-start;
    width: 77%;
    height: auto;
    aspect-ratio: 290/249;
    margin-left: calc(-1 * 16px);
    border-radius: 0 2.5rem 2.5rem 0;
  }
}

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

.concept__content {
  position: relative;
  flex: 1;
  margin-top: -5.625rem;
}
.concept__content::before {
  content: "";
  position: absolute;
  top: -6.25rem;
  left: 9.375rem;
  width: 34.75rem;
  height: 34.75rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .concept__content::before {
    width: 25rem;
    height: 25rem;
    top: 0rem;
    left: auto;
    right: -6.25rem;
  }
}
@media screen and (max-width: 425px) {
  .concept__content::before {
    right: -11.25rem;
  }
}

.concept__catch {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .concept__catch {
    margin-top: 1.25rem;
  }
}

.concept__catch img {
  width: 19.3125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .concept__catch img {
    width: 13.75rem;
  }
}

.concept__subtitle {
  margin-top: 1.8125rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .concept__subtitle {
    font-size: 1.125rem;
  }
}

.concept__text {
  margin-top: 2.5625rem;
  max-width: 26.25rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept__text {
    margin-top: 1.25rem;
  }
}

.concept__content .btn-link {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .concept__content .btn-link {
    display: flex;
    width: 16.625rem;
    margin: 2.5rem auto 0;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.16);
  z-index: 100;
  padding: 0.875rem 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
@media screen and (max-width: 767px) {
  .cookie-banner {
    padding: 1rem 0 1.875rem;
  }
}

.cookie-banner__inner.inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cookie-banner__inner.inner {
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 39.375rem;
    margin-inline: auto;
  }
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 3.4375rem;
  height: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .cookie-banner__icon {
    width: 2.5rem;
    height: auto;
  }
}

.cookie-banner__text {
  flex: 1;
  max-width: 42.375rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
  letter-spacing: 0;
  margin-right: 7%;
}
@media screen and (max-width: 767px) {
  .cookie-banner__text {
    flex: 1;
    max-width: none;
    font-size: 0.8125rem;
    margin-right: 0;
    line-height: 1.5384615385;
  }
}

.cookie-banner__actions {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 2.125rem;
  border-radius: 1.0625rem;
  font-family: "Hind Madurai", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
  border: none;
}

.cookie-banner__btn--accept {
  background-color: #fff;
  border: 1px solid #707070;
  color: #1A1A1A;
  padding-top: 0.25rem;
}

.cookie-banner__btn--reject {
  background-color: #707070;
  color: #fff;
  padding-top: 0.25rem;
}

@media (any-hover: hover) {
  .cookie-banner__btn:hover {
    opacity: 0.7;
  }
}
.corporate {
  padding: 9.25rem 0 0;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .corporate {
    padding: 3.875rem 0 0;
  }
}

.corporate__inner {
  display: flex;
  align-items: center;
  padding: 0 0 0 calc(50% - 36.125rem);
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .corporate__inner {
    max-width: 37.5rem;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 2.4375rem;
  }
}

.corporate__content {
  position: relative;
  flex: 1;
  max-width: 31.25rem;
  margin-top: -5.625rem;
}
.corporate__content::before {
  content: "";
  position: absolute;
  top: -4.375rem;
  left: -25rem;
  width: 45.1875rem;
  height: 44.0625rem;
  background: url("/img/top/corporate-title-bg.png") no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .corporate__content {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .corporate__content::before {
    width: 31.25rem;
    height: 28.125rem;
    top: -1.875rem;
    left: -15.3125rem;
    background: url("/img/top/corporate-title-bg_sp.png") no-repeat center/contain;
  }
}

.corporate__catch {
  margin-top: 1.3125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .corporate__catch {
    font-size: 1.125rem;
    margin-top: 1.0625rem;
  }
}

.corporate__text {
  margin-top: 2.5rem;
  max-width: 27.25rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .corporate__text {
    margin-top: 1.25rem;
  }
}

.corporate__content .btn-link {
  margin-top: 5.375rem;
  margin-left: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .corporate__content .btn-link {
    display: flex;
    width: 16.625rem;
    margin: 2.5rem auto 0;
  }
}

.corporate__visual {
  position: relative;
  flex-shrink: 0;
  width: 39.25rem;
  min-height: 36.875rem;
}
@media screen and (max-width: 767px) {
  .corporate__visual {
    width: 100%;
    min-height: 66.1137931034vw;
  }
}

.corporate__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 36.875rem;
  background-color: #ea1a19;
  border-radius: 5.125rem 0 0 5.125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .corporate__visual::before {
    left: auto;
    right: calc((100% - 100vw) / 2 - 0rem);
    width: 77%;
    height: auto;
    aspect-ratio: 290/249;
    border-radius: 2.5rem 0 0 2.5rem;
  }
}

.corporate__visual img {
  position: absolute;
  top: -3.75rem;
  right: -8.125rem;
  width: 31.875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .corporate__visual img {
    width: 60%;
    top: -9%;
    right: -14%;
  }
}

.cta {
  padding: 4.25rem 1.5rem 4.6875rem;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 3.125rem 0 3.75rem;
  }
}

.cta__inner {
  max-width: 72.25rem;
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 2.5rem;
  background: url("../img/top/cta-bg.jpg") center/cover no-repeat;
  overflow: hidden;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    max-width: 37.5rem;
    grid-template-columns: 1fr;
    gap: 3.125rem;
    padding: 2.5rem 16px 3.125rem;
    width: 91%;
  }
}

.cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .cta__item {
    padding: 0;
  }
}

.cta__item:first-child {
  grid-column: 1;
}

.cta__item:last-child {
  grid-column: 3;
}
@media screen and (max-width: 767px) {
  .cta__item:last-child {
    grid-column: 1;
  }
}

.cta__divider {
  width: 1px;
  background-color: #fff;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  .cta__divider {
    width: 100%;
    height: 1px;
  }
}

.cta__label {
  font-size: 1.625rem;
  color: #fff;
}

.cta__label-en {
  margin-top: 0.25rem;
  font-family: "Hind Madurai", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

.cta__img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 6.875rem;
  margin-bottom: -1.875rem;
}

@media screen and (max-width: 767px) {
  .cta__item--contact .cta__img {
    height: 5rem;
  }
}

.cta__img img {
  width: 11.375rem;
  height: auto;
}

.cta__item--contact .cta__img {
  padding-bottom: 0.625rem;
}

.cta__item--contact .cta__img img {
  width: 4.75rem;
}

.cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 21.3125rem;
  height: 11.75rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 1.25rem;
  margin-top: -0.625rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cta__card {
    width: 100%;
    height: auto;
    padding: 2.8125rem 1.25rem 1.25rem;
  }
}

.cta__text {
  font-size: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cta__text {
    margin-top: 0;
  }
}

.cta__item--download .cta__text {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .cta__item--download .cta__text {
    margin-top: 0.625rem;
  }
}

.cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16.125rem;
  height: 3.1875rem;
  border-radius: 1.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1.25rem;
  border: 2px solid transparent;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.cta__btn-text {
  transition: color 0.3s;
}

.cta__btn-arrow {
  position: absolute;
  right: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.cta__btn-arrow::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.375rem;
  background: url("../img/common/arrow-dark-only.svg") center/contain no-repeat;
}

.cta__item--download .cta__btn {
  background-color: #ffde27;
  border-color: #ffde27;
  color: #1A1A1A;
}

.cta__item--download .cta__btn-arrow {
  background-color: #fff;
}

.cta__item--download .cta__btn-arrow::after {
  background-image: url("../img/common/arrow-dark-only.svg");
}

.cta__item--contact .cta__btn {
  background-color: #DC010C;
  color: #fff;
}

.cta__item--contact .cta__btn-arrow {
  background-color: #fff;
}

.cta__item--contact .cta__btn-arrow::after {
  background-image: url("../img/common/arrow-dark-only.svg");
}

@media (any-hover: hover) {
  .cta__item--download .cta__btn:hover,
  .cta__item--download .cta__card:hover .cta__btn {
    background-color: #fff;
    border-color: #ffde27;
  }
  .cta__item--download .cta__btn:hover .cta__btn-arrow,
  .cta__item--download .cta__card:hover .cta__btn-arrow {
    background-color: #ffde27;
  }
  .cta__item--contact .cta__btn:hover,
  .cta__item--contact .cta__card:hover .cta__btn {
    background-color: #fff;
    border-color: #DC010C;
    color: #DC010C;
  }
  .cta__item--contact .cta__btn:hover .cta__btn-arrow,
  .cta__item--contact .cta__card:hover .cta__btn-arrow {
    background-color: #DC010C;
  }
  .cta__item--contact .cta__btn:hover .cta__btn-arrow::after,
  .cta__item--contact .cta__card:hover .cta__btn-arrow::after {
    background-image: url("../img/common/arrow-white.svg");
  }
}
.download-card {
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16);
}
.download-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.download-card__img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E5E5E5;
  aspect-ratio: 318/207;
  overflow: hidden;
}

.download-card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.download-card__title {
  margin-top: 1.75rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #4D4D4D;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.6470588235;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .download-card__title {
    margin-top: 1.3125rem;
  }
}

.download-card__divider {
  width: calc(100% - 2rem);
  height: 1px;
  background-color: #E5E5E5;
  margin: 2.125rem 1rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .download-card__divider {
    margin: 1.25rem 1rem 1.25rem;
  }
}

.download-card__text {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  margin: 0 1rem 1.6875rem;
  font-size: 0.875rem;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .download-card__text {
    margin: 0 0.9375rem 1.25rem;
  }
}

.download {
  padding: 4.6875rem 0 3.8125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .download {
    padding: 5.625rem 0 2.6875rem;
    overflow: visible;
  }
}

.download__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 3.75rem;
  max-width: none;
  margin: 0;
  padding: 0 0 0 calc(50% - 36.125rem);
}
@media screen and (max-width: 767px) {
  .download__inner {
    max-width: 37.5rem;
    margin: 0 auto;
    flex-direction: column;
    padding: 0 16px;
    gap: 2.5rem;
  }
}

.download__head {
  flex-shrink: 0;
  max-width: 25rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .download__head {
    max-width: 100%;
    margin-top: 0;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .download__head .section-title {
    order: -2;
  }
}

.download__head .btn-link {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .download__head .btn-link {
    width: 16.625rem;
    margin: 0rem auto 0;
    order: -1;
  }
}

.download__slider {
  flex: 1;
  overflow: hidden;
  background-color: #F5F5F5;
  border-radius: 3.75rem 0 0 3.75rem;
  padding: 4.125rem 2.25rem 3.625rem 3.3125rem;
}
@media screen and (max-width: 767px) {
  .download__slider {
    border-radius: 2.5rem 0 0 2.5rem;
    padding: 10% clamp(1rem, 1rem + (100vw - 31.25rem) * 84 / 267, 6.25rem) 12.7% 7%;
    align-self: stretch;
    margin-right: calc(-1 * max(16px, (100vw - 37.5rem) / 2 + 16px));
    overflow: visible;
  }
}

.download__swiper {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .download__swiper {
    overflow: visible;
  }
  .download__swiper .swiper-wrapper {
    display: block;
  }
}

.download__swiper .swiper-slide {
  width: 19.875rem;
}
@media screen and (max-width: 767px) {
  .download__swiper .swiper-slide {
    width: 100% !important;
    margin-bottom: 1.25rem;
  }
}

.download__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .download__controls {
    display: none;
  }
}

.download__arrow {
  width: 1.9375rem;
  height: 1.125rem;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s;
}

.download__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2px solid #707070;
}

.download__arrow::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  transform: rotate(45deg);
  transform-origin: top right;
}

.download__arrow--prev {
  transform: rotate(180deg);
}

.download__arrow.swiper-button-disabled::before {
  border-color: #D4D4D6;
}

.download__arrow.swiper-button-disabled::after {
  border-color: #D4D4D6;
}

.download__arrow.swiper-button-disabled {
  cursor: default;
  opacity: 1;
}

.download__pager {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
  min-width: 2.5rem;
  text-align: center;
}

.download__pager-slash {
  color: #C1C7D5;
  margin: 0 0.25rem;
}

@media (any-hover: hover) {
  .download__arrow:hover {
    opacity: 0.7;
  }
}
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 19;
  pointer-events: none;
  visibility: hidden;
}

.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer.is-open .drawer__overlay {
  opacity: 1;
}

.drawer__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 5rem 1.5rem 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.drawer.is-open .drawer__body {
  transform: translateX(0);
}

.drawer__submenu-toggle {
  position: absolute;
  top: 0.125rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s;
}
.drawer__submenu-toggle::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 2px #838383;
  border-right: solid 2px #838383;
  transform: rotate(135deg);
}

.drawer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.drawer__nav-list li {
  position: relative;
}
.drawer__nav-list li a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s;
}
.drawer__nav-list li .sub-menu {
  display: none;
}
.drawer__nav-list li.is-open a {
  color: #DC010C;
}
.drawer__nav-list li.is-open > .sub-menu a {
  color: #838383;
  font-weight: 400;
  font-size: 0.875rem;
}
.drawer__nav-list li.is-open > .drawer__submenu-toggle {
  transform: rotate(180deg);
  right: -0.625rem;
  top: 0.9375rem;
}
.drawer__nav-list li.is-open > .drawer__submenu-toggle::after {
  border-color: #DC010C;
}

.drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 13.125rem;
  width: 100%;
  height: 3.125rem;
  margin: 1.875rem auto 0;
  border-radius: 1.5625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.3s, background 0.3s, border-color 0.3s, color 0.3s;
}

.drawer__cta::after {
  content: "";
  position: absolute;
  right: 0.8125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.drawer__cta--contact {
  background-color: #1A1A1A;
  color: #fff;
}

.drawer__cta--contact::after {
  background: #fff url("../img/common/arrow-dark-only.svg") center/1rem 1rem no-repeat;
}

.drawer__cta--download {
  margin-top: 1rem;
  background: linear-gradient(120deg, #FFF119 0%, #FFD564 100%);
  color: #1A1A1A;
}

.drawer__cta--download::after {
  background: #1A1A1A url("../img/common/download-arrows-white.svg") center/0.875rem 0.875rem no-repeat;
}

@media (any-hover: hover) {
  .drawer__nav-item a:hover {
    color: #DC010C;
  }
  .drawer__cta--contact:hover {
    background-color: #fff;
    border-color: #1A1A1A;
    color: #1A1A1A;
  }
  .drawer__cta--contact:hover::after {
    background-color: #1A1A1A;
    background-image: url("../img/common/arrow-white.svg");
  }
  .drawer__cta--download:hover {
    background: #fff;
    border-color: #FFD564;
    color: #1A1A1A;
  }
  .drawer__cta--download:hover::after {
    background-color: #FFD564;
    background-image: url("../img/common/download-arrows-dark.svg");
  }
}
.faq {
  padding: 7.8125rem 0 6.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 3.9375rem 0 4rem;
  }
}

.faq__inner {
  max-width: 48.75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.faq__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 2.375rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
    margin-bottom: 1.25rem;
  }
}

.faq-item {
  border-bottom: 1px solid #F5F5F5;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0 1.5rem;
  cursor: pointer;
  position: relative;
  padding-right: 1.625rem;
}
@media screen and (max-width: 767px) {
  .faq-item__question {
    gap: 1rem;
    padding: 1.25rem 0;
    padding-right: 2.25rem;
  }
}

.faq-item__number {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  color: #DC010C;
  flex-shrink: 0;
  line-height: 1.7826086957;
}
@media screen and (max-width: 767px) {
  .faq-item__number {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.faq-item__question-text {
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.7826086957;
  letter-spacing: 0;
  flex: 1;
  color: #000;
}
@media screen and (max-width: 767px) {
  .faq-item__question-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75;
  }
}

.faq-item__toggle {
  position: absolute;
  right: 0;
  top: 2.8125rem;
  width: 1.25rem;
  height: 0.75rem;
  background: url("../img/common/chevron-blue.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq-item__toggle {
    top: 1.875rem;
    width: 1rem;
    height: 0.625rem;
  }
}

.faq-item.is-open .faq-item__toggle {
  transform: rotate(180deg);
}

.faq-item__answer {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  display: none;
  padding: 0 0 2rem 4.25rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0;
  color: #000;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .faq-item__answer {
    padding: 0 0 1.25rem 0rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.footer {
  background-color: #ddd;
  padding: 3.75rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.375rem 0 2.875rem;
  }
}

.footer__inner.inner {
  display: flex;
  max-width: 72.125rem;
  margin-inline: auto;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__inner.inner {
    max-width: 37.5rem;
    margin-inline: auto;
    flex-direction: column;
    padding: 0 1.875rem 2.5rem;
    gap: 0.875rem;
  }
}

.footer__info {
  flex-shrink: 0;
  width: 17.5rem;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-self: start;
  gap: 0 2.5rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .footer__info {
    width: 100%;
    grid-template-columns: 3.75rem 1fr;
    align-self: initial;
    margin-top: 0rem;
  }
}

.footer__logo {
  grid-row: 1/3;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    align-self: initial;
  }
}

.footer__logo img {
  width: 3.5rem;
  height: auto;
}

.footer__company-label {
  font-size: 0.625rem;
  line-height: 2.8;
  grid-column: 2;
  letter-spacing: 0;
  align-self: end;
}
@media screen and (max-width: 767px) {
  .footer__company-label {
    align-self: end;
  }
}

.footer__company-name {
  font-size: 1.25rem;
  line-height: 1;
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .footer__company-name {
    align-self: start;
    margin-bottom: 0rem;
    line-height: 1;
  }
}

.footer__address {
  margin-top: 2.4375rem;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.9166666667;
  grid-column: 1/-1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: 1.875rem;
  }
}

.footer__sns {
  display: flex;
  gap: 0.75rem;
  margin-top: 4.375rem;
  grid-column: 1/-1;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    margin-top: 1.875rem;
  }
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  transition: opacity 0.3s;
}

.footer__sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__info .btn-link {
  margin-top: 1.25rem;
  width: 15.3125rem;
  height: 3.125rem;
  border-radius: 1.5625rem;
  background-color: #fff;
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__info .btn-link {
    display: flex;
    width: 15.3125rem;
    grid-column: 1/-1;
    margin-top: 1rem;
  }
}

.footer__info .btn-link .btn-link__text {
  color: #e60e11;
}

.footer__info .btn-link .btn-link__arrow {
  background-color: transparent;
  border: none;
}

.footer__info .btn-link .btn-link__arrow::after {
  background-image: url("../img/common/arrow-red.svg");
}

.footer__nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-col {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav-col:nth-child(1) > :nth-child(1) {
    order: 1;
  }
  .footer__nav-col:nth-child(1) > :nth-child(2) {
    order: 5;
  }
  .footer__nav-col:nth-child(1) > :nth-child(3) {
    order: 6;
  }
  .footer__nav-col:nth-child(2) > :nth-child(1) {
    order: 2;
  }
  .footer__nav-col:nth-child(2) > :nth-child(2) {
    order: 3;
  }
  .footer__nav-col:nth-child(2) > :nth-child(3) {
    order: 7;
  }
  .footer__nav-col:nth-child(2) > :nth-child(4) {
    order: 11;
  }
  .footer__nav-col:nth-child(2) > :nth-child(5) {
    order: 9;
  }
  .footer__nav-col:nth-child(3) > :nth-child(1) {
    order: 10;
  }
  .footer__nav-col:nth-child(3) > :nth-child(2) {
    order: 12;
  }
}
.footer__nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4285714286;
  color: #383838;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .footer__nav-heading {
    padding: 1.25rem 0 0;
    border-bottom: none;
  }
}

.footer__nav-heading--light {
  font-weight: 400;
}

.footer__nav-heading + .footer__nav-heading,
.footer__nav-list + .footer__nav-heading {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-heading + .footer__nav-heading,
  .footer__nav-list + .footer__nav-heading {
    margin-top: 0;
  }
}

.footer__nav-heading::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.875rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.js-footerToggle {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .js-footerToggle.is-open::after {
    transform: rotate(90deg);
  }
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    display: none;
    padding: 0.625rem 0 0 1rem;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav-list.is-open {
    display: flex;
  }
}

.footer__nav-list a {
  font-size: 0.875rem;
  color: #383838;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__nav-list a {
    padding: 0.125rem 0;
  }
}

.footer__nav-list a::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.875rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .footer__nav-col > .footer__nav-heading {
    border-bottom: 1px solid #fff;
  }
}
@media (any-hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.7;
  }
  .footer__nav-list a:hover {
    opacity: 0.7;
  }
  .footer__nav-list a:hover::after {
    transform: translateX(3px);
  }
  .footer__nav-heading:hover {
    opacity: 0.7;
  }
  .footer__nav-heading:hover::after {
    transform: translateX(3px);
  }
  .footer__info .btn-link:hover {
    background-color: #e60e11;
    border-color: #e60e11;
  }
  .footer__info .btn-link:hover .btn-link__text {
    color: #fff;
  }
  .footer__info .btn-link:hover .btn-link__arrow {
    background-color: #fff;
    border-color: #fff;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.9375rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.3125rem;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
  }
}

.header__logo-heading {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 2.0625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 1.8125rem;
    height: 2.875rem;
  }
}

.header__nav {
  margin-left: auto;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.header__nav-list li {
  position: relative;
}
.header__nav-list li a {
  position: relative;
  display: block;
  padding: 1rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}
.header__nav-list li a::after {
  content: "";
  position: absolute;
  left: 0.9375rem;
  right: 0.9375rem;
  bottom: 0.625rem;
  height: 2px;
  background-color: #DC010C;
  transform: scaleX(0);
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .header__nav-list li a:hover {
    color: #DC010C;
  }
  .header__nav-list li a:hover::after {
    transform: scaleX(1);
  }
}
header .sub-menu {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  transition: opacity 0.3s, max-height 0.3s, visibility 0.3s;
  position: absolute;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.25rem 0.9375rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  width: 13.5rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
}
header .sub-menu li a {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.429;
  font-weight: 500;
}
header .sub-menu li a::after {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228.202%22%20height%3D%2211.536%22%20viewBox%3D%220%200%208.202%2011.536%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_45337%22%20data-name%3D%22%E3%83%91%E3%82%B9%2045337%22%20d%3D%22M1783.306%2C386.871l5%2C6%2C5-6%22%20transform%3D%22translate(-386.231%201794.075)%20rotate(-90)%22%20fill%3D%22none%22%20stroke%3D%22%23dc010c%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: none;
  left: auto;
  right: 0;
  top: 0.375rem;
  height: 8px;
  width: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
header .sub-menu li a:hover::after {
  opacity: 1;
  transform: none;
}
header .sub-menu.active {
  opacity: 1;
  max-height: 50rem;
  visibility: visible;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 13.125rem;
  height: 3.0625rem;
  padding-left: 1.125rem;
  background-color: #1A1A1A;
  border: 2px solid transparent;
  border-radius: 2.3125rem;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 767px) {
  .header__cta {
    display: none;
  }
}

.header__cta-text {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: #fff;
  transition: color 0.3s;
}

.header__cta-arrow {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  margin-left: 0.375rem;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("../img/common/arrow-dark-only.svg");
  background-position: center;
  background-size: 0.875rem 0.875rem;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5625rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: flex;
    margin-left: auto;
  }
}

.header__hamburger-lines {
  display: block;
  width: 2.25rem;
  height: 1.125rem;
  position: relative;
  border-top: 2px solid #000;
  transition: border-color 0.3s;
}

.header__hamburger-lines::before,
.header__hamburger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2px solid #000;
  transition: transform 0.3s, top 0.3s;
}

.header__hamburger-lines::before {
  top: 0.4375rem;
}

.header__hamburger-lines::after {
  top: 1rem;
}

.header__hamburger-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1;
}

.header__hamburger.is-open .header__hamburger-lines {
  height: 1.3125rem;
  border-color: transparent;
}

.header__hamburger.is-open .header__hamburger-lines::before {
  top: 0.5625rem;
  transform: rotate(30deg);
}

.header__hamburger.is-open .header__hamburger-lines::after {
  top: 0.5625rem;
  transform: rotate(-30deg);
}

@media (any-hover: hover) {
  .header__cta:hover {
    background-color: #fff;
    border-color: #1A1A1A;
  }
  .header__cta:hover .header__cta-text {
    color: #1A1A1A;
  }
  .header__cta:hover .header__cta-arrow {
    background-color: #1A1A1A;
    background-image: url("../img/common/arrow-white.svg");
  }
}
.inner {
  max-width: 1204px;
  padding-left: 24px;
  padding-right: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.lightbox-overlay__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.link {
  position: relative;
  line-height: 1;
}

.link::after {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  right: -0.9375rem;
  top: 0.3em;
  background: url(../img/common/link.svg) center center/contain no-repeat;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 100;
  display: none;
}

.modal__block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 27.5rem;
  background-color: #FEAEBB;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .modal__block {
    width: 80%;
  }
}

.modal__wrap {
  position: relative;
  padding: 3.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .modal__wrap {
    padding: 2.5rem 0 1.875rem;
  }
}

.mv {
  position: relative;
  padding-top: 5.9375rem;
  height: 49.9375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 4.3125rem;
    height: 100vh;
    height: 100dvh;
    min-height: 50.8125rem;
  }
}

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

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

.mv__circle {
  position: absolute;
  top: 27%;
  left: max(-29%, (100vw - 80rem) / 2 - 16rem);
  width: 62.5rem;
  height: 62.5rem;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .mv__circle {
    width: 48.125rem;
    height: 48.125rem;
    left: -16.9375rem;
    top: -10.9375rem;
    transform: none;
  }
}

.mv__deco {
  position: absolute;
  top: -14.0625rem;
  left: -13.375rem;
  width: 35.0625rem;
  height: 42.25rem;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__deco {
    top: -13.4375rem;
    left: -9.375rem;
    width: 25rem;
    height: auto;
  }
}

.mv__deco img {
  width: 100%;
  height: 100%;
}

.mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.8125rem 3.4375rem 0 8rem;
  min-height: 44rem;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    flex-direction: column;
    padding: 1.375rem 16px 0;
    min-height: calc(100vh - 4.3125rem);
    min-height: calc(100dvh - 4.3125rem);
  }
}

.mv__content {
  max-width: 37.5rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__content {
    width: 100%;
  }
}

.mv__label {
  font-size: 0.75rem;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .mv__label {
    font-size: 0.75rem;
  }
}

.mv__title {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .mv__title {
    margin-top: 2.3125rem;
  }
}

.mv__title img {
  width: 19.3125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .mv__title img {
    width: 13.75rem;
    margin-left: min(50vw - 6.875rem - 16px, 8.71875rem - 16px);
  }
}

.mv__text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .mv__text {
    margin-top: 2.625rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2.125;
    letter-spacing: 0;
  }
}

.mv__content .btn-link {
  margin-top: 1rem;
  width: 13.125rem;
  height: 3.0625rem;
  border-radius: 2.3125rem;
  padding: 0 1rem;
  gap: 0.5rem;
  background: linear-gradient(180deg, #F045A1 0%, #C96DEB 100%);
  border: 2px solid transparent;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .mv__content .btn-link {
    display: none;
  }
}

.mv__content .btn-link__text {
  color: #fff;
}

.mv__content .btn-link__arrow {
  right: auto;
  left: 1rem;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #fff;
}

.mv__content .btn-link__arrow::after {
  width: 0.875rem;
  height: 1.125rem;
  background-image: url("../img/common/arrow-pink.svg");
}

.mv__form {
  width: 12.875rem;
  max-height: 18.5625rem;
  background-color: #F7FDFF;
  border-radius: 1.25rem;
  padding: 1.0625rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .mv__form {
    max-width: 100%;
    max-height: none;
  }
}

.mv__form-title {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #2E4D9F;
  text-align: center;
  line-height: 1.2941176471;
}

.mv__form-body {
  margin-top: 0.9375rem;
}

.mv__form-field {
  margin-top: 0.4375rem;
}

.mv__form-field:first-child {
  margin-top: 0;
}

.mv__form-label {
  display: block;
  font-size: 0.75rem;
  color: #838383;
  margin-bottom: 0.25rem;
}

.mv__form-input {
  width: 100%;
  height: 1.3125rem;
  border: 1px solid #D3D3D3;
  border-radius: 1.25rem;
  padding: 0 0.625rem;
  font-size: 0.75rem;
  background-color: #fff;
}

.mv__form-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.3125rem;
  margin-top: 1.25rem;
  background-color: #2E4D9F;
  border: 2px solid transparent;
  border-radius: 2.3125rem;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  color: #fff;
}
.mv__form-btn::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../img/common/arrow-gray.svg") center/contain no-repeat;
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.9375rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.mv__form-btn-text {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 0.625rem;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .mv__form-btn:hover {
    background-color: #fff;
    border-color: #2E4D9F;
  }
  .mv__form-btn:hover .mv__form-btn-text {
    color: #2E4D9F;
  }
  .mv__form-btn:hover .mv__form-btn-arrow {
    background-color: #2E4D9F;
  }
  .mv__form-btn:hover .mv__form-btn-arrow::after {
    background-image: url("../img/common/arrow-white.svg");
  }
}
.mv__right {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 1rem;
  margin-top: 5%;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__right {
    display: none;
  }
}

.mv__download {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 16.3125rem;
  height: 9.5rem;
  background: linear-gradient(120deg, #FFF119 0%, #FFD564 100%);
  border-radius: 1.25rem 0 0 1.25rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 1.25rem 1rem;
  text-decoration: none;
  transition: opacity 0.3s;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .mv__download {
    width: 100%;
    border-radius: 1.25rem;
  }
}

.mv__download-img {
  margin-top: -0.625rem;
}

.mv__download-img img {
  max-width: none;
  width: 16.25rem;
  height: auto;
  margin-left: -2.5rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.mv__download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 14.625rem;
  height: 1.9375rem;
  flex-shrink: 0;
  margin: 0.125rem auto 0;
  background-color: #1A1A1A;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: background-color 0.3s, border-color 0.3s;
}

.mv__download-btn-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  transition: color 0.3s;
}

.mv__download-btn-arrow {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: #FFF227;
  background-image: url("../img/common/arrow-dark-only.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.mv__download-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: none;
  border: none;
  font-size: 0.875rem;
  color: #1A1A1A;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.mv__download-wrap {
  position: fixed;
  right: 0;
  bottom: 1.875rem;
  z-index: 30;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__download-wrap {
    display: none;
  }
}

.mv__download-tab {
  display: none;
  width: 1.3125rem;
  height: 9.5rem;
  background: linear-gradient(172deg, #FFF119 0%, #FFD564 100%);
  border: none;
  border-radius: 1.25rem 0 0 1.25rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: opacity 0.3s;
}

.mv__download-tab-arrow {
  display: block;
  width: 1.125rem;
  height: 1.625rem;
  background: url("../img/common/arrow-download-tab.svg") center/contain no-repeat;
}

.mv__download-wrap.is-closed .mv__download {
  display: none;
}

.mv__download-wrap.is-closed .mv__download-tab {
  display: flex;
}

.mv__cta-bar {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv__cta-bar {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    position: absolute;
    bottom: 3.125rem;
    left: 16px;
    right: 16px;
    z-index: 2;
  }
}

.mv__cta-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(50% - 0.3125rem);
  max-width: 15rem;
  height: 2.5625rem;
  border-radius: 1.3125rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 0 0.625rem 0 2.375rem;
}

.mv__cta-bar-btn::before {
  content: "";
  position: absolute;
  left: 0.8125rem;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.mv__cta-bar-btn--contact {
  background: linear-gradient(180deg, #F045A1 0%, #C96DEB 100%);
  color: #fff;
}

.mv__cta-bar-btn--contact::before {
  background: #fff url("../img/common/arrow-pink.svg") center/0.75rem 0.875rem no-repeat;
}

.mv__cta-bar-btn--download {
  background: linear-gradient(120deg, #FFF119 0%, #FFD564 100%);
  color: #1A1A1A;
}

.mv__cta-bar-btn--download::before {
  background: #1A1A1A url("../img/common/download-arrows-white.svg") center/0.875rem 0.875rem no-repeat;
}

@media (any-hover: hover) {
  .mv__download-tab:hover {
    opacity: 0.8;
  }
  .mv__download:hover .mv__download-btn {
    background-color: #fff;
    border-color: #1A1A1A;
  }
  .mv__download:hover .mv__download-btn-text {
    color: #1A1A1A;
  }
  .mv__download:hover .mv__download-btn-arrow {
    background-color: #1A1A1A;
    background-image: url("../img/common/arrow-yellow.svg");
  }
  .mv__content .btn-link:hover {
    background: #fff;
    border-color: #F045A1;
  }
  .mv__content .btn-link:hover .btn-link__text {
    color: #F045A1;
  }
  .mv__content .btn-link:hover .btn-link__arrow {
    background-color: #F045A1;
  }
  .mv__content .btn-link:hover .btn-link__arrow::after {
    background-image: url("../img/common/arrow-white.svg");
  }
  .mv__cta-bar-btn--contact:hover {
    background: #fff;
    border-color: #F045A1;
    color: #F045A1;
  }
  .mv__cta-bar-btn--contact:hover::before {
    background-color: #F045A1;
    background-image: url("../img/common/arrow-white.svg");
  }
  .mv__cta-bar-btn--download:hover {
    background: #fff;
    border-color: #FFD564;
  }
  .mv__cta-bar-btn--download:hover::before {
    background-color: #FFD564;
    background-image: url("../img/common/download-arrows-dark.svg");
  }
}
.page-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.875rem;
  z-index: 90;
  width: 3.5625rem;
  height: 3.5625rem;
  border: none;
  border-radius: 50%;
  background-color: #DC010C;
  cursor: pointer;
  transition: opacity 0.3s;
  display: none;
}
.page-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.5rem 0.75rem 0.5rem;
  border-color: transparent transparent #fff transparent;
  transform: translate(-50%, -60%);
}
.page-top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .page-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}

body.is-drawerOpen .page-top {
  visibility: hidden;
}

body.is-top .page-top {
  bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  body.is-top .page-top {
    bottom: 1rem;
  }
}

.project-card {
  max-width: 22.75rem;
  background-color: #F8F8F8;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16);
  transition: transform 0.3s;
}
.project-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .project-card {
    width: 100%;
    border-radius: 0.625rem;
  }
}

.project-card__img {
  height: 12.9375rem;
  overflow: hidden;
  background-color: #E5E5E5;
}
@media screen and (max-width: 767px) {
  .project-card__img {
    height: 13.9375rem;
  }
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card__body {
  min-height: 14.1875rem;
  padding: 1.25rem;
}

.project-card__title {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6470588235;
  color: #4D4D4D;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .project-card__title {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.project-card__divider {
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  margin: 0.75rem 0;
}

.project-card__logo {
  width: 6rem;
}

.project-card__logo img {
  width: 100%;
  height: auto;
}

.project-card__company {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #1A1A1A;
}

.project-card__meta {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.25rem 0.5rem;
  margin-top: 0.625rem;
  font-size: 0.625rem;
  line-height: 1.7;
  color: #1A1A1A;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.project-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.25rem;
  height: 1.375rem;
  padding: 0 0.75rem;
  background-color: #E60E11;
  border-radius: 0.6875rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
}

@media (any-hover: hover) {
  .project-card:hover .project-card__img img {
    transform: scale(1.05);
  }
}
.project {
  padding: 6.75rem 0 8.125rem;
  overflow: visible;
  background-color: #F5F5F5;
  position: relative;
}
.project::before {
  content: "";
  position: absolute;
  top: 2.625rem;
  left: calc(50% - 53.75rem);
  width: 34.75rem;
  height: 34.75rem;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .project {
    padding: 5.625rem 0 2.6875rem;
    overflow: visible;
  }
  .project::before {
    left: -12.5rem;
    width: 25rem;
    height: 25rem;
    top: 0.625rem;
  }
}

.project__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 3.75rem;
  max-width: none;
  margin: 0;
  padding: 0 0 0 calc(50% - 36.125rem);
}
@media screen and (max-width: 767px) {
  .project__inner {
    max-width: 37.5rem;
    margin: 0 auto;
    flex-direction: column;
    padding: 0 16px;
    gap: 1.875rem;
  }
}

.project__head {
  flex-shrink: 0;
  max-width: 25rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .project__head {
    max-width: 100%;
    margin-top: 0rem;
    display: contents;
  }
}

.project__desc {
  max-width: 17.9375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .project__desc {
    margin-top: 1.0625rem;
    max-width: 100%;
  }
}

.project__head .btn-link {
  margin-top: 5.625rem;
  margin-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .project__head .btn-link {
    width: 16.625rem;
    margin: 1.25rem auto 0;
    order: 1;
  }
}

.project__slider {
  flex: 1;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5.125rem 0 0 5.125rem;
  padding: 5.625rem 2.25rem 3.3125rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .project__slider {
    background-color: #fff;
    border-radius: 1.25rem 0 0 1.25rem;
    padding: 6.1% clamp(1rem, 1rem + (100vw - 31.25rem) * 84 / 267, 6.25rem) 11.7% 7%;
    align-self: stretch;
    margin-right: calc(-1 * max(16px, (100vw - 37.5rem) / 2 + 16px));
    overflow: visible;
  }
}

.project__swiper {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .project__swiper {
    overflow: visible;
  }
  .project__swiper .swiper-wrapper {
    display: block;
  }
}

.project__swiper .swiper-slide {
  width: 19.875rem;
}
@media screen and (max-width: 767px) {
  .project__swiper .swiper-slide {
    width: 100% !important;
    margin-bottom: 1.25rem;
  }
}

.project__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .project__controls {
    display: none;
  }
}

.project__arrow {
  width: 1.9375rem;
  height: 1.125rem;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s;
}

.project__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2px solid #707070;
}

.project__arrow::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  transform: rotate(45deg);
  transform-origin: top right;
}

.project__arrow--prev {
  transform: rotate(180deg);
}

.project__arrow.swiper-button-disabled::before {
  border-color: #D4D4D6;
}

.project__arrow.swiper-button-disabled::after {
  border-color: #D4D4D6;
}

.project__arrow.swiper-button-disabled {
  cursor: default;
  opacity: 1;
}

.project__pager {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
  min-width: 2.5rem;
  text-align: center;
}

.project__pager-slash {
  color: #C1C7D5;
  margin: 0 0.25rem;
}

.project__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .project__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.project__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .project__btn-wrap {
    margin-top: 1.875rem;
  }
}

.project--sub {
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .project--sub {
    padding: 5rem 0;
  }
}

.project--sub .project__inner {
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0 1.5625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .project--sub .project__inner {
    padding: 0 16px;
  }
}

@media (any-hover: hover) {
  .project__arrow:hover {
    opacity: 0.7;
  }
}
.section-title__ja {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.3888888889;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    font-size: 1rem;
  }
}

.section-title__en {
  display: flex;
  flex-wrap: wrap;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.0625rem;
  font-weight: 400;
  line-height: 1.2769230769;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 3rem;
  }
}

.section-title--sub .section-title__en {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.9047619048;
  letter-spacing: 0;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  color: #2E4D9F;
}
@media screen and (max-width: 767px) {
  .section-title--sub .section-title__en {
    font-size: 0.75rem;
  }
}

.section-title--sub .section-title__ja {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.7666666667;
  letter-spacing: 0.04em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .section-title--sub .section-title__ja {
    font-size: 1.5rem;
    margin-top: 0.9375rem;
  }
}

.section-title--sub .char-text {
  transform: translateX(0);
  transition: none;
}

.char {
  overflow: hidden;
}

.char-text {
  display: inline-block;
  transform: translateX(var(--x, -101%));
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}

.section-title.is-active .char-text,
.youtube__head.is-active .char-text,
.wd-section-head.is-active .char-text {
  --x: 0;
}

.sub-mv__content .char {
  overflow: visible;
}

.sub-mv__content .char-text {
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition-delay: calc(0.04s * var(--char-index));
}

.sub-mv__content.is-active .char-text {
  transform: translateX(0);
  opacity: 1;
}

.section {
  padding: 3.75rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 5rem 0 6.25rem;
  }
}

.section--01 {
  padding: 3.5rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .section--01 {
    padding: 4.5rem 0 5.75rem;
  }
}

.service-card {
  max-width: 22.75rem;
  background-color: #fff;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.service-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card--single {
  width: 22.75rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .service-card--single {
    width: 100%;
  }
}

.service-card__img {
  height: 13.0625rem;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .service-card__title {
    font-size: 1.125rem;
  }
}

.service-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #1A1A1A;
  flex-shrink: 0;
}

.service-card__arrow::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.625rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
  transition: transform 0.3s;
}

.service-card__text {
  padding: 1.25rem 1.4375rem 1.625rem;
  font-size: 0.875rem;
  line-height: 2;
  color: #4D4D4D;
  letter-spacing: 0;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
}

@media (any-hover: hover) {
  .service-card:hover .service-card__img img {
    transform: scale(1.1);
  }
  .service-card:hover .service-card__arrow::after {
    transform: translateX(3px);
  }
}
.service-category {
  position: relative;
  z-index: 100;
  max-width: 67.375rem;
  margin: -1.875rem auto 0;
  padding-top: 2.5625rem;
  filter: drop-shadow(0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 1200px) {
  .service-category {
    max-width: calc(100% - 24px * 2);
  }
}
@media screen and (max-width: 767px) {
  .service-category {
    margin: 2.5rem auto 0;
    padding: 2.25rem 16px 0;
    max-width: calc(37.5rem + 32px);
  }
}

.service-category.is-fixed {
  position: fixed !important;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
}
@media screen and (max-width: 1200px) {
  .service-category.is-fixed {
    max-width: calc(100% - 24px * 2);
  }
}
@media screen and (max-width: 767px) {
  .service-category.is-fixed {
    max-width: calc(37.5rem + 32px);
    margin-left: auto;
    margin-right: auto;
  }
}

.service-category__tab {
  position: absolute;
  top: 0;
  left: 1.6875rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  width: 9.5625rem;
  height: 2.625rem;
  padding: 0 1.375rem 0 1.1875rem;
  background-color: #DC010C;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .service-category__tab {
    width: 9.5625rem;
    height: 2.4375rem;
    left: 16px;
    padding: 0 1.375rem 0 1.1875rem;
  }
}

.service-category__tab-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.service-category__tab-close {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
}
.service-category__tab-close::before, .service-category__tab-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.125rem;
  background-color: #fff;
}
.service-category__tab-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.service-category__tab-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-category__body {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .service-category__body {
    padding: 1.375rem;
  }
}

.service-category.is-fixed .service-category__body {
  border-radius: 0.625rem 0.625rem 0 0;
}

.service-category__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.125rem;
  column-gap: 5.625rem;
}
@media screen and (max-width: 767px) {
  .service-category__list {
    row-gap: 0.75rem;
    column-gap: 1.5rem;
  }
}

.service-category__item {
  width: auto;
}

.service-category__item a {
  font-size: 0.875rem;
  color: #1A1A1A;
  text-decoration: none;
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}

.service-category__item a:hover {
  color: #DC010C;
}

.service-category__item.is-current a {
  border-bottom: 0.125rem solid #DC010C;
}

.service-category__tab {
  cursor: pointer;
}

.service-category.is-closed {
  padding-top: 0;
}

.service-category.is-closed .service-category__tab {
  position: relative;
  left: auto;
  margin-left: 1.6875rem;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .service-category.is-closed .service-category__tab {
    margin-left: 0;
  }
}

.service-category.is-closed .service-category__body {
  display: none;
}

body.is-drawerOpen .service-category {
  visibility: hidden;
}

.service-category.is-closed .service-category__tab-close::before {
  width: 0.5625rem;
  transform: translate(-85%, -80%) rotate(-45deg);
}
.service-category.is-closed .service-category__tab-close::after {
  width: 0.5625rem;
  transform: translate(-15%, -80%) rotate(45deg);
}

.page-solution .service-category {
  transform: translateY(-6.25rem);
}
.page-solution .service-category.is-fixed {
  transform: translateY(0);
}

.service {
  padding: 7.75rem 0 7.8125rem;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 4.1875rem 0 3.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .service__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.service__head {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.0625rem;
  }
}

.service__desc {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 1.25rem;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.4375rem 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .service__grid {
    grid-template-columns: 1fr;
    gap: 1.125rem;
    justify-items: center;
    margin-top: 3.25rem;
  }
}

.service__bottom {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.service__btn-wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .service__btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  .service__btn-wrap .btn-link {
    display: flex;
    width: 16.625rem;
    margin: 0 auto;
  }
}

.slider {
  height: 100%;
  width: 100%;
}
.slider .swiper-slide {
  overflow: hidden;
}
.slider .slide-img {
  height: 100%;
}
.slider .slide-img img {
  width: 100%;
}
.slider img {
  height: 100%;
  object-fit: cover;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.slider .swiper-slide-active .slide-img,
.slider .swiper-slide-duplicate-active .slide-img,
.slider .swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}
.slider .slide-img img {
  display: block;
}

.solution-card {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 1.625rem;
  box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.16);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.solution-card__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .solution-card__img {
    position: relative;
    height: auto;
    border-bottom: 2px solid #F5F5F5;
  }
}

.solution-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s all;
}
@media screen and (max-width: 767px) {
  .solution-card__img img {
    height: auto;
    aspect-ratio: 343/114;
  }
}

.solution-card__body {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 2.5rem 0 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .solution-card__body {
    width: 100%;
    padding: 1.25rem 1.125rem 1.875rem;
  }
}

.solution-card__title-en {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.8125rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .solution-card__title-en {
    display: none;
  }
}

.solution-card__title-ja {
  margin-top: 0.625rem;
  font-size: 1.1875rem;
  font-weight: 500;
  color: #1A1A1A;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .solution-card__title-ja {
    display: none;
  }
}

.solution-card__title-en--sp,
.solution-card__title-ja--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .solution-card__title-en--sp,
  .solution-card__title-ja--sp {
    display: block;
    position: absolute;
    left: 1.25rem;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .solution-card__title-en--sp {
    font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 1;
    top: 50%;
    transform: translateY(calc(-50% - 0.75rem));
  }
}

@media screen and (max-width: 767px) {
  .solution-card__title-ja--sp {
    font-size: 1rem;
    font-weight: 500;
    color: #1A1A1A;
    top: 50%;
    transform: translateY(calc(-50% + 1.125rem));
  }
}

.solution-card__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .solution-card__text {
    font-size: 0.875rem;
    margin-top: 0rem;
    line-height: 2;
  }
}

@media (any-hover: hover) {
  .solution-card:hover .solution-card__img img {
    transform: scale(1.2, 1.2);
  }
  .solution-card:hover .solution-card__title-ja {
    color: #DC010C;
  }
}
.solution {
  padding: 9.375rem 0 9.0625rem;
  overflow: visible;
  position: relative;
}
.solution::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 68.125rem);
  width: 41.875rem;
  height: 41.875rem;
  border-radius: 50%;
  background: #F5F5F5 0% 0% no-repeat padding-box;
  z-index: 0;
}
.solution::after {
  content: "";
  position: absolute;
  bottom: -3.125rem;
  right: calc(50% - 45.625rem);
  width: 17.5rem;
  height: 24.0625rem;
  background: url("../img/top/solution-deco.svg") no-repeat center/contain;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .solution {
    padding: 3.5rem 0;
  }
  .solution::before {
    left: -12.5rem;
    width: 23.75rem;
    height: 23.75rem;
    top: 0rem;
  }
}

.solution__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .solution__inner {
    flex-direction: column;
    gap: 1rem;
  }
}

.solution__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .solution__left {
    display: contents;
  }
  .solution__left > :nth-child(1) {
    order: 1;
  }
  .solution__left > :nth-child(2) {
    order: 3;
  }
  .solution__left > :nth-child(3) {
    order: 5;
  }
  .solution__left > :nth-child(4) {
    order: 7;
  }
}

.solution__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .solution__right {
    display: contents;
  }
  .solution__right > :nth-child(1) {
    order: 2;
  }
  .solution__right > :nth-child(2) {
    order: 4;
  }
  .solution__right > :nth-child(3) {
    order: 6;
  }
}

.solution__head {
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .solution__head {
    max-width: 100%;
  }
}

.solution__desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .solution__desc {
    margin-top: 1.0625rem;
    margin-bottom: 1.25rem;
  }
}

.solution__btn {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .solution__btn {
    width: 16.625rem;
    margin: 1.25rem auto 0;
  }
}

.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash__logo {
  opacity: 0;
}

.splash__logo img {
  width: 4.125rem;
  height: auto;
}

.splash__circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  clip-path: circle(0% at 0% 25%);
  z-index: 9998;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .splash__circle {
    clip-path: circle(0% at 30% 30%);
  }
}

.splash--shrink {
  animation: shrinkCircle 1.5s ease-in-out 0.3s forwards;
}

@keyframes shrinkCircle {
  from {
    clip-path: circle(150% at var(--circle-center));
  }
  to {
    clip-path: var(--circle-end);
  }
}
.is-hidden {
  opacity: 0;
}

.mv__content {
  opacity: 0;
}

.mv__right {
  opacity: 0;
}

.sub-mv {
  position: relative;
  z-index: 2;
  padding-top: 5.9375rem;
  min-height: 43.75rem;
  overflow: visible;
  background-color: #F5F5F5;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 624.9375rem 0 0 0 #F5F5F5, -624.9375rem 0 0 0 #F5F5F5;
}
@media screen and (max-width: 767px) {
  .sub-mv {
    padding-top: 4.3125rem;
    min-height: auto;
  }
}

.sub-mv::before {
  content: "";
  position: absolute;
  width: 61.5rem;
  height: 61.5rem;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: -21.5rem;
  transform: translateY(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .sub-mv::before {
    width: 29.375rem;
    height: 29.375rem;
    left: -10.75rem;
    top: -37%;
  }
}

.sub-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 37.8125rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 8rem;
}
@media screen and (max-width: 767px) {
  .sub-mv__inner {
    min-height: auto;
    padding: 0 16px;
    align-items: flex-start;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.sub-mv__title-en {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.0625rem;
  font-weight: 400;
  line-height: 1.2769230769;
  letter-spacing: 0;
  color: #1A1A1A;
  visibility: hidden;
}
.sub-mv__title-en.is-split {
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-en {
    font-size: 2.25rem;
  }
}

.sub-mv__title-ja {
  margin-top: 0.8125rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
  visibility: hidden;
}
.sub-mv__title-ja.is-split {
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-ja {
    margin-top: 0;
  }
}

.sub-mv__desc {
  margin-top: 3.0625rem;
  font-size: 1rem;
  line-height: 1.875;
  color: #000;
  letter-spacing: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .sub-mv__desc {
    margin-top: 1.875rem;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.sub-mv__content.is-active .sub-mv__desc {
  opacity: 1;
}

.sub-mv--center .sub-mv__inner {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sub-mv--center .sub-mv__inner {
    justify-content: flex-start;
  }
}

.sub-mv--center .sub-mv__content {
  text-align: center;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .sub-mv--center .sub-mv__content {
    text-align: left;
  }
}

.sub-mv__deco {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.sub-mv:not(.concept-mv) .sub-mv__deco {
  opacity: 0;
  transition: opacity 1.2s ease;
  transition-delay: 0.5s;
}

.sub-mv.is-active:not(.concept-mv) .sub-mv__deco {
  opacity: 1;
}

.sub-mv__deco--img {
  border-radius: 0;
  z-index: 1;
  right: -2.6875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 27.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sub-mv__deco--img {
    display: none;
  }
}

.sub-mv__deco--circle1 {
  width: 26.25rem;
  height: 26.25rem;
  background-color: #EDEDED;
  top: 1.875rem;
  right: -5rem;
}
@media screen and (max-width: 767px) {
  .sub-mv__deco--circle1 {
    width: 13.75rem;
    height: 13.75rem;
    top: 1.875rem;
    right: -5rem;
  }
}

.sub-mv__deco--circle2 {
  width: 21.25rem;
  height: 21.25rem;
  background-color: #EDEDED;
  bottom: 1.25rem;
  left: -2.5rem;
}
@media screen and (max-width: 767px) {
  .sub-mv__deco--circle2 {
    width: 12.5rem;
    height: 12.5rem;
    bottom: 0.625rem;
    left: -3.75rem;
  }
}

.sub-mv__deco--circle3 {
  width: 16.25rem;
  height: 16.25rem;
  background-color: #EDEDED;
  bottom: -3.75rem;
  right: 10rem;
}
@media screen and (max-width: 767px) {
  .sub-mv__deco--circle3 {
    width: 9.375rem;
    height: 9.375rem;
    right: 1.25rem;
    bottom: -2.5rem;
  }
}

.sub-mv--detail {
  min-height: 50.0625rem;
  max-width: none;
  box-shadow: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sub-mv--detail {
    min-height: 37.3125rem;
  }
}

.sub-mv--detail::before {
  width: 73rem;
  height: 73rem;
  left: calc(50% - 58.75rem);
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 1;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s ease;
}
@media screen and (max-width: 767px) {
  .sub-mv--detail::before {
    width: 43.5625rem;
    height: 43.5625rem;
    left: -10.0625rem;
    top: -13.375rem;
    transform: scale(0);
    opacity: 0;
  }
}

.sub-mv--detail.is-active::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .sub-mv--detail.is-active::before {
    transform: scale(1);
  }
}

.sub-mv--detail .sub-mv__content .char-text {
  transition-delay: calc(1s + 0.04s * var(--char-index));
}

.sub-mv--detail .sub-mv__lead,
.sub-mv--detail .sub-mv__desc {
  transition-delay: 1.5s;
}

.sub-mv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sub-mv__bg--corporate {
  transform: scale(1.2) translateX(1.875rem) translateY(3.75rem);
}
@media screen and (max-width: 767px) {
  .sub-mv__bg--corporate {
    transform: scale(1) translateX(0rem) translateY(0rem);
  }
}

.sub-mv__bg--ownedmedia,
.sub-mv__bg--crossmedia,
.sub-mv__bg--recruitingsite,
.sub-mv__bg--rebranding {
  transform: scale(1) translateX(0rem) translateY(0rem);
}

.sub-mv__lead {
  margin-top: 3.9375rem;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
  letter-spacing: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  transition-delay: 0.5s;
}

.sub-mv__content.is-active .sub-mv__lead {
  opacity: 1;
}

.sub-mv--detail .sub-mv__inner {
  min-height: 44.125rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sub-mv--detail .sub-mv__inner {
    min-height: 33rem;
    align-items: flex-start;
    padding-top: 3.375rem;
  }
}

.sub-mv--detail .breadcrumb {
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .sub-mv--detail .sub-mv__lead {
    display: none;
  }
}

.sub-mv--detail .sub-mv__title-en {
  font-size: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--detail .sub-mv__title-en {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.5;
  }
}

.sub-mv--detail .sub-mv__desc {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--detail .sub-mv__desc {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.875;
    max-width: 26.875rem;
  }
}

.sub-mv--detail .sub-mv__deco--img {
  z-index: 3;
  right: 1.0625rem;
  top: 34.375rem;
  width: 23.375rem;
  transition-delay: 1.5s;
}
@media screen and (max-width: 767px) {
  .sub-mv--detail .sub-mv__deco--img {
    display: none;
  }
}

.sub-mv--detail .sub-mv__deco--top-right {
  top: 20.625rem;
  right: -7.5rem;
}

.sub-mv--detail .sub-mv__deco--circle1,
.sub-mv--detail .sub-mv__deco--circle2,
.sub-mv--detail .sub-mv__deco--circle3 {
  display: none;
}

.sub-mv__photo {
  position: absolute;
  width: 53rem;
  height: 53rem;
  border-radius: 50%;
  overflow: hidden;
  right: -15.125rem;
  top: -6.25rem;
  z-index: 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .sub-mv__photo {
    right: -18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__photo {
    width: 10.75rem;
    height: 10.75rem;
    right: -0.8125rem;
    top: 0.5rem;
  }
}
@media screen and (max-width: 767px) and (min-width: 551px) {
  .sub-mv__photo {
    width: 16.25rem;
    height: 16.25rem;
    right: -1.875rem;
    top: 0.5rem;
  }
}

.sub-mv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-mv--service {
  background-color: #fff;
  min-height: auto;
  overflow: visible;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
}

.sub-mv--service::before {
  display: none;
}

.sub-mv--service .sub-mv__title-ja {
  margin-top: 0;
}

.sub-mv--service .sub-mv__title-en {
  margin-top: 0.8125rem;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--service .sub-mv__title-en {
    font-size: 2.25rem;
  }
}

.sub-mv--service .sub-mv__lead {
  margin-top: 2.875rem;
  font-size: 1.625rem;
  line-height: 1.9230769231;
}
@media screen and (max-width: 767px) {
  .sub-mv--service .sub-mv__lead {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}

@media screen and (max-width: 767px) {
  .sub-mv--service .sub-mv__inner {
    padding-bottom: 1rem;
  }
}

.sub-mv--service .sub-mv__desc {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--service .sub-mv__desc {
    margin-top: 1.25rem;
  }
}

.sub-mv--service .sub-mv__deco--img {
  right: -7.625rem;
  top: 16.25rem;
  width: 23.375rem;
}

.sub-mv--service .sub-mv__deco--circle1,
.sub-mv--service .sub-mv__deco--circle2,
.sub-mv--service .sub-mv__deco--circle3 {
  display: none;
}

.sub-mv--webadvertisement .sub-mv__inner {
  margin-top: 1.875rem;
}

.sub-mv--webadvertisement .sub-mv__content {
  max-width: 37.5rem;
}

.page-solution .sub-mv__content {
  position: relative;
  z-index: 1;
  max-width: 42.5rem;
  transform: translateY(-3.125rem);
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .page-solution .sub-mv__content {
    padding-top: 4.8125rem;
  }
}

.voice {
  padding: 10rem 0 5.875rem;
  background-color: #F5F5F5;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 4.1875rem 0 5.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .voice__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.voice__head {
  display: flex;
  align-items: flex-end;
  gap: 22%;
  position: relative;
}
.voice__head::before {
  content: "";
  position: absolute;
  width: 27.875rem;
  height: 38.25rem;
  background: url("../img/top/voice-deco.png") no-repeat center/contain;
  top: 176%;
  left: -14%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .voice__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.0625rem;
  }
  .voice__head::before {
    width: 21.875rem;
    height: 30rem;
    top: 120%;
    left: -19%;
  }
}

.voice__subtitle {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .voice__subtitle {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
  }
}

.voice__list {
  margin-top: 3.125rem;
  max-width: 63.875rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .voice__list {
    margin-top: 3.6875rem;
    gap: 3.5rem;
  }
}

.voice-item {
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .voice-item {
    flex-direction: column;
    gap: 0.6875rem;
  }
}

.voice-item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .voice-item--reverse {
    flex-direction: column;
  }
}

.voice-item__img {
  flex-shrink: 0;
  width: 20.5625rem;
  height: 12.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voice-item__img {
    max-width: 20.5625rem;
    width: 100%;
    height: auto;
    margin-inline: auto;
  }
}

.voice-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-item__body {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .voice-item__body {
    display: contents;
  }
}

.voice-item__number {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid #1A1A1A;
  background-color: #fff;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  color: #DC010C;
}
@media screen and (max-width: 767px) {
  .voice-item__number {
    font-size: 1.0625rem;
    order: 1;
    align-self: flex-start;
    position: relative;
    z-index: 1;
  }
}

.voice-item__company {
  margin-top: 0.75rem;
  font-size: 1.5625rem;
  line-height: 2.16;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .voice-item__company {
    margin-top: 0;
    font-size: 1.25rem;
    line-height: 1.6;
    order: 2;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .voice-item__img {
    order: 3;
    margin-top: 0.25rem;
  }
}

.voice-item__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .voice-item__text {
    order: 4;
    margin-top: 0.4375rem;
  }
}

.voice-item__btn {
  margin-top: 1.875rem;
}

.voice-item__img-wrap {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .voice-item__img-wrap {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .voice-item__btn {
    display: flex;
    width: 16.625rem;
    margin: 0.5625rem auto 0;
    order: 5;
  }
}

.works {
  position: relative;
  overflow: visible;
  padding: 6.25rem 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 3.75rem 0 5rem;
  }
}

.works__deco {
  position: absolute;
  bottom: -15.625rem;
  right: calc(50% - 58.4375rem);
  width: 31.25rem;
  height: auto;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .works__deco {
    width: 20.3125rem;
    bottom: -11.25rem;
    right: -10rem;
  }
}

.works__inner {
  max-width: 67.25rem;
  margin: 0 auto;
}

.works__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #000;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .works__title {
    font-size: 1.625rem;
  }
}

.works__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 3.4375rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .works__grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.works-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works-card__img {
  overflow: hidden;
  border-radius: 0.25rem;
  background-color: #C6C6C6;
  aspect-ratio: 16/10;
}
@media screen and (max-width: 767px) {
  .works-card__img {
    max-width: 19.0625rem;
    height: 12.375rem;
    aspect-ratio: auto;
    margin: 0 auto;
  }
}

.works-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1s;
  object-fit: cover;
}

.works-card__company {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .works-card__company {
    margin-top: 0.5rem;
    max-width: 19.0625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.works-card__category {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .works-card__category {
    max-width: 19.0625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.works__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .works__btn-wrap {
    margin-top: 2.5rem;
  }
}

@media (any-hover: hover) {
  .works-card > a:hover .works-card__img img {
    transform: scale(1.2);
  }
}
.youtube-card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s;
}
.youtube-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.youtube-card__img {
  width: 100%;
  aspect-ratio: 248/139;
  border-radius: 0.625rem;
  overflow: hidden;
  background-color: #E5E5E5;
}

.youtube-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-card__title {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: #4D4D4D;
}

@media (any-hover: hover) {
  .youtube-card:hover {
    transform: translateY(-4px);
  }
}
.youtube {
  padding: 6.5625rem 0 6.3125rem;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .youtube {
    padding: 3.75rem 0;
  }
}

.youtube__inner {
  display: flex;
  align-items: flex-start;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .youtube__inner {
    max-width: 37.5rem;
    margin: 0 auto;
    flex-direction: column;
    gap: 1.875rem;
  }
}

.youtube__head {
  flex-shrink: 0;
  width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .youtube__head {
    width: 100%;
  }
}

.youtube__title {
  display: flex;
  flex-wrap: wrap;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.0625rem;
  font-weight: 400;
  line-height: 1.2769230769;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .youtube__title {
    font-size: 3rem;
  }
}

.youtube__head .btn-link {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .youtube__head .btn-link {
    display: flex;
    width: 16.625rem;
    margin: 1.875rem auto 0;
  }
}

.youtube__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1875rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .youtube__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 25rem;
    margin-inline: auto;
  }
}

.column-detail-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
  overflow: visible;
  min-height: 11.25rem;
}
@media screen and (max-width: 767px) {
  .column-detail-mv {
    min-height: 8.125rem;
  }
}

.column-detail-mv.sub-mv::before {
  background-color: #F5F5F5;
  top: 80%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .column-detail-mv.sub-mv::before {
    top: 50%;
  }
}

.column-detail-mv .sub-mv__inner {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.column-detail-mv .sub-mv__deco--circle1,
.column-detail-mv .sub-mv__deco--circle2,
.column-detail-mv .sub-mv__deco--circle3 {
  display: none;
}

.column-detail-mv .sub-mv__deco--img {
  right: auto;
  left: 0rem;
  top: 25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .column-detail-mv .sub-mv__deco--img {
    display: none;
  }
}

.column-detail {
  position: relative;
  z-index: 2;
  margin-top: 3.125rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .column-detail {
    margin-top: 1.25rem;
    padding-bottom: 3.125rem;
  }
}

.column-detail__inner {
  display: flex;
  gap: 5.5625rem;
  max-width: 72.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .column-detail__inner {
    flex-direction: column;
    gap: 3.125rem;
  }
}

.column-detail__main {
  flex: 1;
  min-width: 0;
  max-width: 49.25rem;
}
@media screen and (max-width: 767px) {
  .column-detail__main {
    max-width: 37.5rem;
    margin: 0 auto;
  }
}

.column-detail__sidebar {
  width: 14.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .column-detail__sidebar {
    width: 100%;
    max-width: 25rem;
    margin: 0 auto;
  }
}

.column-detail__meta {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .column-detail__meta {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
}

.column-detail__date {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .column-detail__date {
    font-size: 0.75rem;
  }
}

.column-detail__date--publish {
  color: #e60e11;
}

.column-detail__date--update {
  color: #838383;
}

.column-detail__date-icon {
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (max-width: 767px) {
  .column-detail__date-icon {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}

.column-detail__tags {
  display: flex;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .column-detail__tags {
    flex-basis: 100%;
  }
}

.column-detail__tag {
  font-size: 0.875rem;
  font-weight: 400;
  color: #838383;
}
@media screen and (max-width: 767px) {
  .column-detail__tag {
    font-size: 0.75rem;
  }
}

.column-detail__title {
  margin-top: 1.375rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.7916666667;
  color: #000;
}
@media screen and (max-width: 767px) {
  .column-detail__title {
    margin-top: 2.125rem;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.column-detail__thumbnail {
  margin-top: 0.75rem;
  width: 100%;
  height: 28.9375rem;
  background-color: #ccc;
  overflow: hidden;
}
.column-detail__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .column-detail__thumbnail {
    margin-top: 1.6875rem;
    height: auto;
    aspect-ratio: 343/202;
  }
}

.column-detail__toc {
  margin-top: 2.5rem;
  padding: 2.4375rem 3.625rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .column-detail__toc {
    padding: 1.25rem 1.25rem;
  }
}

.column-detail__toc-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

.column-detail__toc-list {
  margin-top: 1rem;
  list-style: none;
}
.column-detail__toc-list li {
  font-size: 1rem;
  line-height: 2.6875;
  color: #000;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .column-detail__toc-list li {
    font-size: 0.875rem;
    line-height: 2.1428571429;
    margin-bottom: 1.25rem;
  }
}
.column-detail__toc-list a {
  display: inline;
  color: inherit;
  text-decoration: none;
  border-bottom: 0.125rem solid #E8E8E8;
  padding-bottom: 0.25rem;
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .column-detail__toc-list a:hover {
    border-bottom-color: #DC010C;
  }
}
.column-detail__content {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .column-detail__content {
    margin-top: 1.5625rem;
  }
}
.column-detail__content h2 {
  position: relative;
  margin-top: 5rem;
  padding-top: 2.0625rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
  color: #000;
}
.column-detail__content h2:first-child {
  margin-top: 0;
}
.column-detail__content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4375rem;
  background: linear-gradient(to right, #DC010C 7.6875rem, #F5F5F5 7.6875rem);
}
@media screen and (max-width: 767px) {
  .column-detail__content h2 {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}
.column-detail__content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8333333333;
  color: #000;
}
@media screen and (max-width: 767px) {
  .column-detail__content h3 {
    font-size: 1rem;
  }
}
.column-detail__content p {
  margin-top: 1.625rem;
  font-size: 1rem;
  line-height: 1.875;
  color: #000;
}
@media screen and (max-width: 767px) {
  .column-detail__content p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.column-detail__content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.column-detail__content ul,
.column-detail__content ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}
.column-detail__content li {
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .column-detail__content li {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.column-detail__author {
  margin-top: 4.3125rem;
  padding: 2.5rem 2.4375rem;
  background-color: #F5F5F5;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .column-detail__author {
    margin-top: 2.3125rem;
    padding: 1.375rem;
  }
}

.column-detail__author-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #DC010C;
}
@media screen and (max-width: 767px) {
  .column-detail__author-label {
    font-size: 0.75rem;
  }
}

.column-detail__author-name {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .column-detail__author-name {
    margin-top: 0.5rem;
  }
}

.column-detail__author-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #000;
}
@media screen and (max-width: 767px) {
  .column-detail__author-desc {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.column-detail__newsletter {
  padding: 1.125rem 1.875rem 1.75rem;
  background-color: #1A1A1A;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .column-detail__newsletter {
    display: none;
  }
}

.column-detail__newsletter-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

.column-detail__newsletter-form {
  margin-top: 0.8125rem;
}

.column-detail__newsletter-field + .column-detail__newsletter-field {
  margin-top: 0.4375rem;
}

.column-detail__newsletter-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.25rem;
}
.column-detail__newsletter-field input {
  width: 100%;
  height: 1.3125rem;
  padding: 0 0.625rem;
  background-color: #fff;
  border: 0.0625rem solid #d3d3d3;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  appearance: none;
}

.column-detail__newsletter-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.3125rem;
  margin-top: 1.5625rem;
  background-color: #DC010C;
  border: none;
  border-radius: 2.3125rem;
  box-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.3s;
}

.column-detail__newsletter-btn-arrow {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.9375rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 50%;
}
.column-detail__newsletter-btn-arrow::after {
  content: "";
  display: block;
  width: 0.4375rem;
  height: 0.6875rem;
  background: url("../img/common/arrow-white-bold.svg") center/contain no-repeat;
  filter: brightness(0) saturate(100%) invert(30%);
}

@media (any-hover: hover) {
  .column-detail__newsletter-btn:hover {
    opacity: 0.8;
  }
}
.column-detail__recommend {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend {
    margin-top: 0;
  }
}

.column-detail__recommend-heading {
  font-size: 1.875rem;
  font-weight: 500;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend-heading {
    font-size: 1.25rem;
  }
}

.column-detail__recommend-list {
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend-list {
    margin-top: 0.8125rem;
  }
}

.column-detail__recommend-item {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend-item {
    display: grid;
    grid-template-columns: 9.375rem 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 0.6875rem;
  }
}

.column-detail__recommend-item + .column-detail__recommend-item {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend-item + .column-detail__recommend-item {
    margin-top: 2.5rem;
  }
}

@media (any-hover: hover) {
  .column-detail__recommend-item:hover {
    opacity: 0.7;
  }
}
.column-detail__recommend-thumb {
  width: 100%;
  height: 8.5625rem;
  background-color: #ccc;
  overflow: hidden;
}
.column-detail__recommend-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend-thumb {
    grid-row: 1/-1;
    width: 9.375rem;
    height: 5.5rem;
  }
}

.column-detail__recommend-date {
  display: block;
  margin-top: 0.6875rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #e60e11;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend-date {
    margin-top: 0;
  }
}

.column-detail__recommend-text {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8125;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .column-detail__recommend-text {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .column-detail-related {
    padding-bottom: 3.125rem;
    max-width: 37.5rem;
    margin: 0 auto;
  }
}

.column-detail-related__inner {
  max-width: 72.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.column-detail-related__heading {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .column-detail-related__heading {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.column-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 22.75rem);
  gap: 2rem;
  margin-top: 2.75rem;
  padding-top: 0.9375rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .column-detail-related__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.625rem;
    justify-items: center;
  }
}

.column-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
  overflow: visible;
  min-height: 28.75rem;
}
@media screen and (max-width: 767px) {
  .column-mv {
    min-height: auto;
  }
}

.column-mv::before {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .column-mv::before {
    top: 12%;
  }
}

.column-mv .sub-mv__deco--circle1,
.column-mv .sub-mv__deco--circle2,
.column-mv .sub-mv__deco--circle3 {
  display: none;
}

.column-mv .sub-mv__deco--img {
  right: auto;
  left: 0rem;
  top: 25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .column-mv .sub-mv__deco--img {
    display: none;
  }
}

.column-mv .sub-mv__inner {
  min-height: 22.8125rem;
}
@media screen and (max-width: 767px) {
  .column-mv .sub-mv__inner {
    min-height: auto;
  }
}

.column-list {
  position: relative;
  z-index: 2;
  margin-top: -1.25rem;
}

.column-filter {
  display: flex;
  gap: 0.625rem;
  max-width: 72.25rem;
  margin: 0 auto 3.125rem;
}
@media screen and (max-width: 767px) {
  .column-filter {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.875rem;
  }
}

.column-filter__select-wrap {
  position: relative;
  width: 15.75rem;
}
@media screen and (max-width: 767px) {
  .column-filter__select-wrap {
    width: 100%;
    max-width: 21.4375rem;
    margin: 0 auto;
  }
}
.column-filter__select-wrap::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625rem;
  height: 0.375rem;
  background: url("../img/column/icon-chevron.svg") center/contain no-repeat;
  pointer-events: none;
}

.column-filter__select {
  width: 100%;
  height: 2.5625rem;
  padding: 0 2.5rem 0 1.25rem;
  background-color: #fff;
  border: none;
  border-radius: 1.3125rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.1em;
  appearance: none;
  cursor: pointer;
}

.column-filter__links span,
.project-list__links span {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.625rem;
}
.column-filter__links span a,
.project-list__links span a {
  display: block;
  background-color: #fff;
  border: 1px solid #838383;
  border-radius: 1.5625rem;
  padding: 0.1875rem 0.875rem 0.3125rem 0.875rem;
  color: #838383;
  font-size: 0.875rem;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.column-filter__links span a.is-current, .column-filter__links span a:hover,
.project-list__links span a.is-current,
.project-list__links span a:hover {
  background-color: #E60E11;
  color: #fff;
  border-color: #E60E11;
}

.column-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.9375rem 2rem;
  max-width: 72.25rem;
  margin: 0 auto;
  overflow: visible;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .column-cards {
    grid-template-columns: 1fr;
    gap: 2.9375rem;
    justify-items: center;
  }
}

.column-card {
  width: 22.75rem;
  background-color: #fff;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.16);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .column-card {
    width: 100%;
    max-width: 25rem;
  }
}

.column-card__link {
  position: relative;
  display: block;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .column-card .column-card__link {
    display: grid;
    grid-template-columns: 1fr 5.8125rem;
    grid-template-rows: auto 1fr auto;
    gap: 0 1rem;
    padding: 2.1875rem 1.0625rem 1.0625rem;
  }
}

.column-card__thumb {
  width: 100%;
  height: 13.375rem;
  background-color: #ccc;
  overflow: hidden;
}
.column-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .column-card__thumb {
    grid-column: 2;
    grid-row: 2;
    width: 5.8125rem;
    height: 3.4375rem;
    margin-top: 1.125rem;
  }
}

@media (any-hover: hover) {
  .column-card__link:hover .column-card__thumb img {
    transform: scale(1.05);
  }
  .column-card__link:hover .column-card__arrow {
    transform: translateX(0.5rem);
  }
}
.column-card__body {
  position: relative;
  padding: 1.5rem;
  padding-top: 0.9375rem;
  padding-bottom: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .column-card__body {
    display: contents;
  }
}

.column-card__category {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
  height: 1.3125rem;
  padding: 0 1rem;
  background-color: #E02720;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  margin-right: 0.75rem;
  position: absolute;
  top: -0.7rem;
  left: 0.625rem;
}

.column-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .column-card__meta {
    grid-column: 1/-1;
    grid-row: 1;
    justify-content: space-between;
  }
}

.column-card__date {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.column-card__date--publish {
  color: #e60e11;
}

.column-card__date--update {
  color: #838383;
}

.column-card__date-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.column-card__title {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .column-card__title {
    grid-column: 1;
    grid-row: 2;
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 2;
    -webkit-line-clamp: 5;
  }
}

.column-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column-card__bottom {
    grid-column: 1/-1;
    grid-row: 3;
    margin-top: 0.75rem;
  }
}

.column-card__tag {
  font-size: 0.875rem;
  font-weight: 400;
  color: #e60e11;
}

.column-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #e60e11;
  transition: transform 0.3s;
  position: absolute;
  right: 0;
  bottom: -3.125rem;
}
.column-card__arrow::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.375rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
}

.column-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1875rem;
  max-width: 72.25rem;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .column-pagination {
    justify-content: center;
    margin-top: 2.5rem;
  }
}

.column-pagination__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.column-pagination__num {
  font-size: 1.125rem;
  font-weight: 500;
  color: #838383;
  text-decoration: none;
  transition: color 0.3s;
}

.column-pagination__num--active {
  color: #e60e11;
}

@media (any-hover: hover) {
  a.column-pagination__num:hover {
    color: #e60e11;
  }
}
.column-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9375rem;
  height: 1.125rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.column-pagination__arrow img {
  width: 100%;
  height: 100%;
}

.column-pagination__arrow--disabled {
  pointer-events: none;
}

@media (any-hover: hover) {
  a.column-pagination__arrow:hover {
    opacity: 0.7;
  }
}
.company-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
  overflow: visible;
  min-height: 28.75rem;
}
@media screen and (max-width: 767px) {
  .company-mv {
    min-height: auto;
  }
}

.company-mv::before {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .company-mv::before {
    top: 5%;
  }
}

.company-mv .sub-mv__deco--circle1,
.company-mv .sub-mv__deco--circle2,
.company-mv .sub-mv__deco--circle3 {
  display: none;
}

.company-mv .sub-mv__deco--img {
  right: auto;
  left: 0rem;
  top: 25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .company-mv .sub-mv__deco--img {
    display: none;
  }
}

.company-mv .sub-mv__inner {
  min-height: 22.8125rem;
}
@media screen and (max-width: 767px) {
  .company-mv .sub-mv__inner {
    min-height: auto;
  }
}

.company-nav {
  position: relative;
  z-index: 10;
  margin-top: -1.6875rem;
}
.company-nav.is-fixed {
  position: fixed;
  top: 6.5625rem;
  left: 0;
  right: 0;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .company-nav.is-fixed {
    top: 4.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .company-nav {
    margin-top: -1.375rem;
    padding: 0 16px;
    max-width: 22.75rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.company-nav__select-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .company-nav__select-wrap {
    display: block;
    position: relative;
  }
  .company-nav__select-wrap::after {
    content: "";
    position: absolute;
    right: 1.0625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 0.5rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8'%3E%3Cpath d='M1 1l7 6 7-6' stroke='%23000' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
  }
}

.company-nav__select {
  display: none;
}
@media screen and (max-width: 767px) {
  .company-nav__select {
    display: block;
    appearance: none;
    width: 100%;
    height: 2.5625rem;
    padding: 0 2.5rem 0 1.25rem;
    background-color: #fff;
    border: none;
    border-radius: 1.3125rem;
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 400;
    color: #1A1A1A;
    cursor: pointer;
  }
}

.company-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 64rem;
  height: 3.3125rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border-radius: 1.6875rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .company-nav__list {
    display: none;
  }
}

.company-nav__link {
  position: relative;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  padding: 0.5rem 0.625rem 0.25rem;
  transition: color 0.3s;
}
.company-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #DC010C;
  transform: scaleX(0);
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .company-nav__link:hover {
    color: #DC010C;
  }
  .company-nav__link:hover::after {
    transform: scaleX(1);
  }
}
.company-message {
  position: relative;
  z-index: 3;
  overflow: visible;
  padding: 3.125rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .company-message {
    z-index: 3;
    padding: 1.25rem 0 4.75rem;
  }
}

.company-message__inner {
  max-width: 80rem;
  padding-left: 8rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .company-message__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.company-message .section-title__en {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-message .section-title__en {
    font-size: 2.25rem;
  }
}

.company-message .section-title__ja {
  font-size: 1rem;
  font-weight: 600;
  color: #DC010C;
}

.company-message .section-title--center {
  text-align: center;
}

.company-message .section-title--center .section-title__en,
.company-message .section-title--center .section-title__ja {
  justify-content: center;
}

.company-message__body {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .company-message__body {
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 2.3125rem;
  }
}

.company-message__text-area {
  flex: 1;
  max-width: 37.375rem;
}

.company-message__heading {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.7619047619;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .company-message__heading {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.company-message__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #1A1A1A;
}
.company-message__text p + p {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .company-message__text p + p {
    margin-top: 1.625rem;
  }
}

.company-message__name {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.3125;
  color: #1A1A1A;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .company-message__name {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 2.6428571429;
  }
}

.company-message__photo {
  position: relative;
  z-index: 2;
  width: 29.625rem;
  height: 36.75rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .company-message__photo {
    width: 100%;
    height: auto;
    max-width: 29.625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.company-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-message__deco {
  position: absolute;
  right: calc(50% - 45rem);
  bottom: -11.625rem;
  width: 27.5rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .company-message__deco {
    width: 13.75rem;
    bottom: -8.75rem;
    right: -8.75rem;
    z-index: -1;
  }
}

.company-mvv {
  position: relative;
  z-index: 2;
  padding: 5rem 0 12.5rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .company-mvv {
    padding: 0rem 0 8.0625rem;
    background-color: #fff;
  }
}

.company-mvv__deco {
  position: absolute;
  left: calc(50% - 49.375rem);
  bottom: -13.125rem;
  width: 35.0625rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .company-mvv__deco {
    left: -5rem;
    bottom: -11.875rem;
    width: 13.75rem;
  }
}

.company-mvv .section-title__en {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-mvv .section-title__en {
    font-size: 1.75rem;
  }
}

.company-mvv .section-title__ja {
  font-size: 1rem;
  font-weight: 600;
  color: #DC010C;
}

.company-mvv .section-title--center {
  text-align: center;
}

.company-mvv .section-title--center .section-title__en,
.company-mvv .section-title--center .section-title__ja {
  justify-content: center;
}

.company-mvv__body {
  display: grid;
  grid-template-columns: 32rem 1fr;
  grid-template-rows: minmax(9.25rem, auto) minmax(9.25rem, auto) minmax(9.25rem, auto);
  max-width: 64rem;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .company-mvv__body {
    display: flex;
    flex-direction: column;
    margin-top: 2.9375rem;
  }
}

.company-mvv__pyramid {
  grid-column: 1;
  grid-row: 1/4;
}
@media screen and (max-width: 767px) {
  .company-mvv__pyramid {
    display: none;
  }
}

.company-mvv__pyramid svg {
  width: 100%;
  height: auto;
}

.company-mvv__item {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .company-mvv__item {
    text-align: left;
  }
}

.company-mvv__item:nth-child(2) {
  grid-row: 1;
  padding-top: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .company-mvv__item:nth-child(2) {
    padding-top: 0;
  }
}

.company-mvv__item:nth-child(3) {
  grid-row: 2;
  padding-top: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .company-mvv__item:nth-child(3) {
    padding-top: 0;
    margin-top: 1.9375rem;
  }
}

.company-mvv__item:nth-child(4) {
  grid-row: 3;
  padding-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .company-mvv__item:nth-child(4) {
    padding-top: 0;
    margin-top: 2.25rem;
  }
}

.company-mvv__label {
  display: none;
}
@media screen and (max-width: 767px) {
  .company-mvv__label {
    display: block;
  }
}

.company-mvv__label-en {
  display: block;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6818181818;
  color: #DC010C;
}

.company-mvv__label-ja {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.6428571429;
  color: #DC010C;
}
@media screen and (max-width: 767px) {
  .company-mvv__label-ja {
    line-height: 1;
  }
}

.company-mvv__heading {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .company-mvv__heading {
    margin-top: 0.75rem;
  }
}

.company-mvv__text {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6428571429;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .company-mvv__text {
    margin-top: 0.75rem;
  }
}

.company-mvv__item:nth-child(4) .company-mvv__text {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .company-mvv__item:nth-child(4) .company-mvv__text {
    margin-top: 0.75rem;
  }
}

.company-overview {
  position: relative;
  background-color: #F5F5F5;
  box-shadow: 624.9375rem 0 0 0 #F5F5F5, -624.9375rem 0 0 0 #F5F5F5;
  padding: 6.5625rem 0 9rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .company-overview {
    padding: 3.75rem 0 5rem;
    overflow: visible;
  }
}

.company-overview .section-title__en {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-overview .section-title__en {
    font-size: 1.75rem;
  }
}

.company-overview .section-title__ja {
  font-size: 1rem;
  font-weight: 600;
  color: #DC010C;
}

.company-overview .section-title--center {
  text-align: center;
}

.company-overview .section-title--center .section-title__en,
.company-overview .section-title--center .section-title__ja {
  justify-content: center;
}

.company-overview__list {
  max-width: 37.4375rem;
  margin: 4.75rem auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .company-overview__list {
    margin-top: 2.5rem;
  }
}

.company-overview__row {
  display: flex;
  gap: 1.4375rem;
  padding: 0.6875rem 0 0.75rem;
  border-bottom: 2px solid #fff;
  font-size: 1rem;
  line-height: 1.5625;
  color: #1A1A1A;
}
.company-overview__row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .company-overview__row {
    border-bottom-width: 1px;
  }
}

.company-overview__label {
  width: 7.8125rem;
  flex-shrink: 0;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .company-overview__label {
    width: 6.375rem;
  }
}

.company-overview__value {
  flex: 1;
  font-weight: 400;
  margin: 0;
}

.company-overview__deco-circles {
  position: absolute;
  left: calc(50% - 50.4375rem);
  bottom: -24.875rem;
  width: 27.5rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .company-overview__deco-circles {
    display: none;
  }
}

.company-overview__deco-svg {
  position: absolute;
  right: calc(50% - 41.25rem);
  top: 39.25rem;
  width: 23.375rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .company-overview__deco-svg {
    display: none;
  }
}

.company-history {
  position: relative;
  padding: 7.375rem 0 5rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .company-history {
    padding: 3.75rem 0;
  }
}

.company-history__deco {
  display: none;
}
@media screen and (max-width: 767px) {
  .company-history__deco {
    display: block;
    position: absolute;
    left: -6.875rem;
    top: -5.1875rem;
    width: 13.75rem;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
}

.company-history .section-title__en {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-history .section-title__en {
    font-size: 1.75rem;
  }
}

.company-history .section-title__ja {
  font-size: 1rem;
  font-weight: 600;
  color: #DC010C;
}

.company-history .section-title--center {
  text-align: center;
}

.company-history .section-title--center .section-title__en,
.company-history .section-title--center .section-title__ja {
  justify-content: center;
}

.company-history__list {
  max-width: 37.4375rem;
  margin: 3.8125rem auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .company-history__list {
    margin-top: 2.5rem;
  }
}

.company-history__row {
  display: flex;
  padding: 0.75rem 0 0.8125rem;
  border-bottom: 1px solid #838383;
  font-size: 1rem;
  line-height: 1.5625;
  color: #1A1A1A;
}
.company-history__row:last-child {
  border-bottom: none;
}

.company-history__label {
  width: 7.8125rem;
  flex-shrink: 0;
  font-weight: 600;
  margin: 0;
}

.company-history__value {
  flex: 1;
  font-weight: 400;
  margin: 0;
}

.company-access {
  position: relative;
  padding: 6.25rem 0 6.25rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .company-access {
    padding: 3.75rem 0 0.625rem;
  }
}

.company-access__bg-circle {
  position: absolute;
  right: calc(50% - 74.5rem);
  top: 0rem;
  width: 72.625rem;
  height: 72.625rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .company-access__bg-circle {
    right: auto;
    left: 10.75rem;
    top: 0;
    width: 43.5rem;
    height: 43.5rem;
  }
}

.company-access__inner {
  position: relative;
  z-index: 1;
}

.company-access .section-title__en {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-access .section-title__en {
    font-size: 1.75rem;
  }
}

.company-access .section-title__ja {
  font-size: 1rem;
  font-weight: 600;
  color: #DC010C;
}

.company-access .section-title--center {
  text-align: center;
}

.company-access .section-title--center .section-title__en,
.company-access .section-title--center .section-title__ja {
  justify-content: center;
}

.company-access__info {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company-access__info {
    text-align: left;
    margin-top: 1.6875rem;
  }
}

.company-access__address {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .company-access__address {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.company-access__note {
  margin-top: 0.8125rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .company-access__note {
    margin-top: 0.9375rem;
    font-size: 0.75rem;
    line-height: 1.9166666667;
  }
}

.company-access__map {
  max-width: 50.125rem;
  height: 21.3125rem;
  margin: 2.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .company-access__map {
    height: auto;
    aspect-ratio: 349/151;
    margin-top: 1.6875rem;
  }
}

.company-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.company-access__deco-shapes {
  position: absolute;
  left: calc(50% - 48.1875rem);
  bottom: -25.3125rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .company-access__deco-shapes {
    display: none;
  }
}

.company-access__deco-svg {
  position: absolute;
  right: calc(50% - 44.625rem);
  top: 13.75rem;
  width: 25.25rem;
  height: auto;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .company-access__deco-svg {
    right: -7.8125rem;
    top: 9.375rem;
    width: 16.6875rem;
  }
}

.u-sm-only {
  display: none;
}
@media (max-width: 425px) {
  .u-sm-only {
    display: inline;
  }
}

@keyframes conceptFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.concept-mv::before {
  display: none;
}

.concept-mv {
  min-height: 59.375rem;
  max-width: none;
  box-shadow: none;
}

.concept-mv .sub-mv__inner {
  justify-content: center;
  padding: 8.75rem 0 7.5rem;
  min-height: 47.1875rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .concept-mv .sub-mv__inner {
    padding: 5rem 0 8.75rem;
    min-height: 30.0625rem;
  }
}

.concept-mv .sub-mv__content {
  text-align: center;
  max-width: none;
}

.concept-mv .sub-mv__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 39.375rem;
  height: 39.375rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: conceptFadeIn 1.2s ease forwards;
}
@media screen and (max-width: 767px) {
  .concept-mv .sub-mv__content::before {
    width: 33.875rem;
    height: 33.875rem;
    top: 55%;
  }
}

.concept-mv__label {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0;
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 1.2s forwards;
}
@media screen and (max-width: 767px) {
  .concept-mv__label {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .concept-mv__label {
    font-size: 0.75rem;
  }
}

.concept-mv__title {
  font-size: inherit;
  font-weight: inherit;
  margin-top: 1.5rem;
  margin-left: 5.625rem;
  max-width: 15.375rem;
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 1.2s forwards;
}
@media screen and (max-width: 767px) {
  .concept-mv__title {
    margin-left: 2.125rem;
    max-width: 12.5rem;
  }
}

.concept-mv__title img {
  width: 22.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .concept-mv__title img {
    width: 16.25rem;
  }
}

.concept-mv__text {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 2.125;
  color: #2E4D9F;
  letter-spacing: 0;
  font-weight: 700;
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 1.2s forwards;
}
@media screen and (max-width: 767px) {
  .concept-mv__text {
    line-height: 1.75;
  }
}

.concept-mv__deco--left {
  width: 35.0625rem;
  height: auto;
  border-radius: 0;
  top: -17.1875rem;
  left: calc(50% - 38.75rem);
  z-index: 6;
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 3s forwards;
}
@media screen and (max-width: 767px) {
  .concept-mv__deco--left {
    display: none;
  }
}

.concept-mv__deco--right {
  width: 23.4375rem;
  height: auto;
  border-radius: 0;
  top: 18.0625rem;
  right: calc(50% - 43.125rem);
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 3s forwards;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .concept-mv__deco--right {
    display: none;
  }
}

.concept-mv .sub-mv__deco--circle1 {
  width: 21rem;
  height: 21rem;
  background-color: #E8E8E8;
  top: 0rem;
  right: calc(50% - 24.375rem);
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 1.2s forwards;
}
@media screen and (max-width: 767px) {
  .concept-mv .sub-mv__deco--circle1 {
    width: 16.75rem;
    height: 16.75rem;
    top: 0;
    right: calc(42vw - 21.1875rem);
  }
}

.concept-mv .sub-mv__deco--circle2 {
  width: 21rem;
  height: 21rem;
  top: 17.1875rem;
  left: calc(50% - 33.125rem);
  bottom: auto;
  z-index: 6;
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 0.6s forwards;
}
@media screen and (max-width: 767px) {
  .concept-mv .sub-mv__deco--circle2 {
    width: 18rem;
    height: 18rem;
    top: 13.125rem;
    left: calc(50.5vw - 29.875rem);
  }
}

.concept-mv .sub-mv__deco--circle3 {
  width: 25rem;
  height: 25rem;
  background-color: #EFEFEF;
  top: 30.625rem;
  right: calc(50% - 30rem);
  bottom: auto;
  opacity: 0;
  animation: conceptFadeIn 1.2s ease 1.8s forwards;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .concept-mv .sub-mv__deco--circle3 {
    width: 18rem;
    height: 18rem;
    top: 27.5rem;
    right: calc(35.7vw - 20.875rem);
    z-index: 4;
  }
}

.workflow {
  background-color: #F5F5F5;
  margin-top: -3.125rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .workflow {
    margin-top: -1.875rem;
  }
}

.workflow__inner {
  max-width: 67.25rem;
  margin: 0 auto;
}

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.125rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .workflow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
    margin-top: 2rem;
  }
}

.workflow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 0.625rem 2.125rem;
  background-color: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .workflow__step {
    padding: 0.25rem 0.625rem 1.75rem;
  }
}

.workflow__step:nth-child(n+1):nth-child(-n+4)::after {
  content: "";
  position: absolute;
  right: -0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.375rem 0 0.375rem 0.6875rem;
  border-color: transparent transparent transparent #DC010C;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .workflow__step:nth-child(n+1):nth-child(-n+4)::after {
    border-width: 0.3125rem 0 0.3125rem 0.625rem;
  }
}

.workflow__step:nth-child(5)::after {
  content: "";
  position: absolute;
  bottom: -0.9375rem;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6875rem 0.375rem 0 0.375rem;
  border-color: #DC010C transparent transparent transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .workflow__step:nth-child(5)::after {
    border-width: 0.625rem 0.3125rem 0 0.3125rem;
  }
}

.workflow__step:nth-child(n+7):nth-child(-n+10)::after {
  content: "";
  position: absolute;
  left: -0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.375rem 0.6875rem 0.375rem 0;
  border-color: transparent #DC010C transparent transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .workflow__step:nth-child(n+7):nth-child(-n+10)::after {
    border-width: 0.3125rem 0.625rem 0.3125rem 0;
  }
}

@media screen and (max-width: 767px) {
  .workflow__step:nth-child(1) {
    order: 1;
  }
  .workflow__step:nth-child(2) {
    order: 2;
  }
  .workflow__step:nth-child(3) {
    order: 4;
  }
  .workflow__step:nth-child(4) {
    order: 6;
  }
  .workflow__step:nth-child(5) {
    order: 8;
  }
  .workflow__step:nth-child(6) {
    order: 3;
  }
  .workflow__step:nth-child(7) {
    order: 5;
  }
  .workflow__step:nth-child(8) {
    order: 7;
  }
  .workflow__step:nth-child(9) {
    order: 9;
  }
  .workflow__step:nth-child(10) {
    order: 10;
  }
  .workflow__step::after {
    display: none !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    border-width: 0 !important;
  }
  .workflow__step:nth-child(1)::after {
    display: block !important;
    right: -0.8125rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border-width: 0.375rem 0 0.375rem 0.6875rem !important;
    border-color: transparent transparent transparent #DC010C !important;
  }
  .workflow__step:nth-child(2)::after,
  .workflow__step:nth-child(3)::after,
  .workflow__step:nth-child(4)::after,
  .workflow__step:nth-child(5)::after {
    display: block !important;
    bottom: -0.8125rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-width: 0.6875rem 0.375rem 0 0.375rem !important;
    border-color: #DC010C transparent transparent transparent !important;
  }
  .workflow__step:nth-child(7)::after,
  .workflow__step:nth-child(8)::after,
  .workflow__step:nth-child(9)::after {
    display: block !important;
    top: -0.8125rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-width: 0 0.375rem 0.6875rem 0.375rem !important;
    border-color: transparent transparent #DC010C transparent !important;
  }
  .workflow__step:nth-child(10)::after {
    display: block !important;
    left: -0.8125rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border-width: 0.375rem 0.6875rem 0.375rem 0 !important;
    border-color: transparent #DC010C transparent transparent !important;
  }
}
.workflow__step-num {
  align-self: flex-start;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #DEDEDE;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .workflow__step-num {
    font-size: 1.625rem;
  }
}

.workflow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.workflow__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.workflow__step-title {
  margin-top: 1.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .workflow__step-title {
    font-size: 0.8125rem;
    margin-top: 1rem;
  }
}

.pain {
  position: relative;
  padding: 10.625rem 0 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .pain {
    padding: 5.125rem 0 0;
  }
}

.pain__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}

.pain__body {
  display: flex;
  align-items: flex-start;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .pain__body {
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
}

.pain__content {
  flex: 1;
}

.pain__diagram {
  flex-shrink: 0;
  width: 25.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EAEAEA;
  border-radius: 0.625rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pain__diagram {
    width: 100%;
    max-width: 21.4375rem;
    margin: 0 auto;
    padding: 1.875rem;
  }
}

.pain__diagram img {
  width: 100%;
  height: auto;
}

.pain__list {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .pain__list {
    gap: 0.75rem;
  }
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .pain__item {
    gap: 0.375rem;
  }
}

.pain__check {
  flex-shrink: 0;
  width: 1.375rem;
  height: auto;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .pain__check {
    width: 1rem;
  }
}

.pain__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .pain__text {
    font-size: 0.8125rem;
  }
}

.provide {
  padding: 7.5rem 0 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .provide {
    padding: 4.75rem 0 0;
  }
}

.provide__inner {
  max-width: 67.5rem;
  margin: 0 auto;
}

.provide__body {
  display: flex;
  align-items: flex-start;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .provide__body {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.provide__content {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .provide__content .section-title__ja {
    display: block;
  }
}

.provide__list {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .provide__list {
    gap: 0.75rem;
  }
}

.provide__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .provide__item {
    gap: 0.375rem;
  }
}

.provide__check {
  flex-shrink: 0;
  width: 1.375rem;
  height: auto;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .provide__check {
    width: 1rem;
  }
}

.provide__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 767px) {
  .provide__text {
    font-size: 0.8125rem;
  }
}

.provide__diagram {
  flex-shrink: 0;
  width: 25.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EAEAEA;
  border-radius: 0.625rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .provide__diagram {
    width: 100%;
    max-width: 21.4375rem;
    margin: 0 auto;
    padding: 1.875rem;
  }
}

.provide__diagram img {
  width: 100%;
  height: auto;
}

.strongpoint {
  padding: 7.5rem 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .strongpoint {
    padding: 4.5625rem 0;
  }
}

.strongpoint__inner {
  max-width: 67.5rem;
  margin: 0 auto;
}

.strongpoint__body {
  display: flex;
  align-items: flex-start;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .strongpoint__body {
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
}

.strongpoint__logo {
  flex-shrink: 0;
  width: 25.375rem;
  height: 25.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EAEAEA;
  border-radius: 0.625rem;
  padding: 3.125rem;
}
@media screen and (max-width: 767px) {
  .strongpoint__logo {
    width: 100%;
    max-width: 21.4375rem;
    margin: 0 auto;
    padding: 2.5rem;
  }
}

.strongpoint__logo img {
  width: 100%;
  max-width: 7.5rem;
  height: auto;
}

.strongpoint__content {
  flex: 1;
}

.strongpoint__list {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .strongpoint__list {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}

.strongpoint__item {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  font-weight: regular;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 767px) {
  .strongpoint__item {
    font-size: 0.8125rem;
    padding-left: 1.375rem;
  }
}

.strongpoint__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 1rem;
  height: 1rem;
  background-color: #DC010C;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .strongpoint__item::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.contact-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
  overflow: visible;
  min-height: 28.75rem;
}
@media screen and (max-width: 767px) {
  .contact-mv {
    min-height: auto;
  }
}

.contact-mv::before {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .contact-mv::before {
    top: 1%;
  }
}

.contact-mv .sub-mv__deco--circle1,
.contact-mv .sub-mv__deco--circle2,
.contact-mv .sub-mv__deco--circle3 {
  display: none;
}

.contact-mv .sub-mv__deco--img {
  right: auto;
  left: 0rem;
  top: 25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .contact-mv .sub-mv__deco--img {
    display: none;
  }
}

.contact-mv .sub-mv__inner {
  min-height: 22.8125rem;
}
@media screen and (max-width: 767px) {
  .contact-mv .sub-mv__inner {
    min-height: auto;
  }
}

.contact__mv-heading {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 0.9333333333;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .contact__mv-heading {
    font-size: 1.5rem;
    line-height: 0.8333333333;
    margin-top: 2.5rem;
  }
}

.contact-section {
  position: relative;
  z-index: 2;
  padding: 0 0 6.25rem;
  margin-top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .contact-section {
    padding: 0 0 3.75rem;
    margin-top: 0;
  }
}

.contact-section__form-wrap {
  max-width: 42.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contact-section__form-wrap {
    max-width: 37.5rem;
  }
}

.contact-form__group + .contact-form__group {
  margin-top: 1.75rem;
}

.contact-form__label-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.contact-form__label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 1.25rem;
  background-color: #d13a3a;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.contact-form__input {
  display: block;
  width: 100%;
  height: 2.75rem;
  margin-top: 1rem;
  padding: 0 1rem;
  background-color: #fff;
  border: 1px solid #838383;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
}
.contact-form__input::placeholder {
  color: #ccc;
}

.contact-form__textarea {
  display: block;
  width: 100%;
  height: 15rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #838383;
  border-radius: 0.1875rem;
  font-size: 1rem;
  font-weight: 400;
  color: #1A1A1A;
  resize: vertical;
}
.contact-form__textarea::placeholder {
  color: #ccc;
}
@media screen and (max-width: 767px) {
  .contact-form__textarea {
    height: 5.625rem;
  }
}

.contact-form__privacy {
  margin-top: 2.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy {
    margin-top: 1.875rem;
  }
}

.contact-form__privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.contact-form__checkbox {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.contact-form__privacy-text {
  font-family: "Yu Gothic Medium", "貂ｸ繧ｴ繧ｷ繝・け Medium", YuGothic, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.contact-form__privacy-text a {
  color: #1571da;
  text-decoration: none;
}

.contact-form__external-icon {
  display: inline;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.contact-form__submit-wrap {
  margin-top: 3.125rem;
  text-align: center;
}

.contact-form__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15.3125rem;
  height: 3.5rem;
  background-color: #fff;
  border: 2px solid #DC010C;
  border-radius: 2.0625rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

@media (any-hover: hover) {
  .contact-form__submit:hover {
    background-color: #DC010C;
  }
  .contact-form__submit:hover .contact-form__submit-text {
    color: #fff;
  }
  .contact-form__submit:hover .contact-form__submit-arrow {
    background-color: #fff;
  }
  .contact-form__submit:hover .contact-form__submit-arrow::after {
    background-image: url("../img/common/arrow-red.svg");
  }
}
.contact-form__submit-text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.4;
  color: #DC010C;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.contact-form__submit-arrow {
  position: absolute;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: #DC010C;
  transition: background-color 0.3s;
}

.contact-form__submit-arrow::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.375rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
}

.download-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
  overflow: visible;
  min-height: 28.75rem;
}
@media screen and (max-width: 767px) {
  .download-mv {
    min-height: auto;
  }
}

.download-mv::before {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .download-mv::before {
    top: 13%;
  }
}

.download-mv .sub-mv__deco--circle1,
.download-mv .sub-mv__deco--circle2,
.download-mv .sub-mv__deco--circle3 {
  display: none;
}

.download-mv .sub-mv__deco--img {
  right: auto;
  left: 0rem;
  top: 25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .download-mv .sub-mv__deco--img {
    display: none;
  }
}

.download-mv .sub-mv__inner {
  min-height: 22.8125rem;
}
@media screen and (max-width: 767px) {
  .download-mv .sub-mv__inner {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 4.5625rem;
  }
}

.download-cards {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .download-cards {
    padding: 0 0 3.75rem;
  }
}

.download-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  max-width: 72.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .download-cards__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 25rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.dl-card {
  display: flex;
  width: 35rem;
  height: 18.25rem;
  padding: 2rem 2rem 0 1.875rem;
  gap: 2.6875rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16);
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .dl-card {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 1.625rem 1.5rem 2.125rem;
    gap: 0.875rem;
  }
}

.dl-card__left {
  width: 15.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .dl-card__left {
    width: 100%;
  }
}

.dl-card__thumb {
  width: 100%;
  aspect-ratio: 250/151;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .dl-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 250/151;
  }
}

.dl-card__thumb img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  object-fit: cover;
  object-position: 50% 50%;
}
@media screen and (max-width: 767px) {
  .dl-card__thumb img {
    max-width: 9.625rem;
  }
}

@media (any-hover: hover) {
  .dl-card:hover .dl-card__thumb img {
    transform: scale(1.05);
  }
}
.dl-card__title {
  margin-top: 1.375rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7222222222;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .dl-card__title {
    margin-top: 1.125rem;
    font-size: 1rem;
    line-height: 1.875;
    text-align: left;
  }
}

.dl-card__right {
  display: flex;
  flex-direction: column;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .dl-card__right {
    padding-top: 0;
  }
}

.dl-card__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #838383;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.dl-card__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 2.3125rem;
  flex-shrink: 0;
  margin-top: 2.3125rem;
  background-color: #1A1A1A;
  border-radius: 2.3125rem;
  box-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s;
  border: 1px solid #1A1A1A;
}
@media screen and (max-width: 767px) {
  .dl-card__btn {
    margin-top: 1.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (any-hover: hover) {
  .dl-card:hover .dl-card__btn {
    background-color: #fff;
    border-color: #1A1A1A;
  }
  .dl-card:hover .dl-card__btn-text {
    color: #1A1A1A;
  }
  .dl-card:hover .dl-card__btn-arrow {
    background-color: #1A1A1A;
  }
  .dl-card:hover .dl-card__btn-arrow::after {
    background-image: url("../img/common/arrow-white.svg");
  }
}
.dl-card__btn-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.dl-card__btn-arrow {
  position: absolute;
  right: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color 0.3s;
  overflow: hidden;
}

.dl-card__btn-arrow::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: url("../img/common/arrow-gray.svg") center/contain no-repeat;
}

.download-detail__mv-heading {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 0.9333333333;
  color: #1A1A1A;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .download-detail__mv-heading {
    text-align: left;
  }
}

.download-detail-mv .sub-mv__content {
  max-width: 100%;
}

.download-detail-mv .sub-mv__inner {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .download-detail-mv .sub-mv__inner {
    justify-content: flex-start;
  }
}

.download-detail {
  position: relative;
  z-index: 2;
  padding: 0 0 8.3125rem;
}
@media screen and (max-width: 767px) {
  .download-detail {
    padding: 0 0 3.125rem;
  }
}
.download-detail .swiper-button-next,
.download-detail .swiper-button-prev {
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.101rem !important;
  aspect-ratio: 11.01/21.88;
  opacity: 1 !important;
  z-index: 99 !important;
}
.download-detail .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.006%22%20height%3D%2221.875%22%20viewBox%3D%220%200%2011.006%2021.875%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_45337%22%20data-name%3D%22%E3%83%91%E3%82%B9%2045337%22%20d%3D%22M10.56%2C26.843a1.559%2C1.559%2C0%2C0%2C1-1.2-2.557l6.985-8.356L9.609%2C7.558a1.594%2C1.594%2C0%2C1%2C1%2C2.51-1.964l7.53%2C9.354a1.559%2C1.559%2C0%2C0%2C1%2C0%2C1.98l-7.8%2C9.354A1.559%2C1.559%2C0%2C0%2C1%2C10.56%2C26.843Z%22%20transform%3D%22translate(-8.998%20-4.971)%22%20fill%3D%22%23cbcbcb%22%2F%3E%0A%3C%2Fsvg%3E");
}
.download-detail .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.006%22%20height%3D%2221.875%22%20viewBox%3D%220%200%2011.006%2021.875%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_45337%22%20data-name%3D%22%E3%83%91%E3%82%B9%2045337%22%20d%3D%22M10.56%2C26.843a1.559%2C1.559%2C0%2C0%2C1-1.2-2.557l6.985-8.356L9.609%2C7.558a1.594%2C1.594%2C0%2C1%2C1%2C2.51-1.964l7.53%2C9.354a1.559%2C1.559%2C0%2C0%2C1%2C0%2C1.98l-7.8%2C9.354A1.559%2C1.559%2C0%2C0%2C1%2C10.56%2C26.843Z%22%20transform%3D%22translate(20.004%2026.846)%20rotate(180)%22%20fill%3D%22%23cbcbcb%22%2F%3E%0A%3C%2Fsvg%3E");
}

.download-detail__body {
  display: flex;
  gap: 8rem;
  max-width: 59.9375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .download-detail__body {
    flex-direction: column;
    gap: 2.125rem;
  }
}

.download-detail__info {
  flex: 1;
  max-width: 27.625rem;
}
@media screen and (max-width: 767px) {
  .download-detail__info {
    max-width: 100%;
  }
}

.download-detail__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
  color: #000;
}
@media screen and (max-width: 767px) {
  .download-detail__title {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.download-detail__image {
  margin-top: 2.4375rem;
  width: 27.625rem;
  height: 16.6875rem;
  background-color: #cecece;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .download-detail__image {
    width: 100%;
    height: auto;
    aspect-ratio: 343/207;
    margin-top: 1.5rem;
  }
}

.download-detail__image .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-detail__desc {
  margin-top: 2.4375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .download-detail__desc {
    margin-top: 1.5rem;
  }
}
.download-detail__desc p + p {
  margin-top: 1.25rem;
}
.download-detail__desc h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.download-detail__desc h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.download-detail__desc ul,
.download-detail__desc ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.download-detail__desc li {
  margin-top: 0.5rem;
}
.download-detail__desc a {
  color: #1571da;
  text-decoration: underline;
}
.download-detail__desc strong {
  font-weight: 700;
}

.download-detail__form-area {
  width: 24.3125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .download-detail__form-area {
    width: 100%;
  }
}

.download-form__group + .download-form__group {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .download-form__group + .download-form__group {
    margin-top: 1.5rem;
  }
}

.download-form__label-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.download-form__label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
}

.download-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 1.25rem;
  background-color: #d13a3a;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.download-form__input {
  display: block;
  width: 100%;
  height: 2.75rem;
  margin-top: 1rem;
  padding: 0 1rem;
  background-color: #fff;
  border: 1px solid #838383;
  border-radius: 0.3125rem;
  font-family: "Yu Gothic Medium", "貂ｸ繧ｴ繧ｷ繝・け Medium", YuGothic, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
}
.download-form__input::placeholder {
  color: #ccc;
}

.download-form__privacy {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .download-form__privacy {
    margin-top: 1.6875rem;
  }
}

.download-form__privacy-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.download-form__checkbox {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.download-form__privacy-text {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.download-form__privacy-text a {
  color: #1571da;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .download-form__privacy-text a:hover {
    opacity: 0.7;
  }
}
.download-form__external-icon {
  display: inline;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.download-form__submit-wrap {
  margin-top: 4.0625rem;
  text-align: center;
  position: relative;
  width: 15.3125rem;
  height: 3.5rem;
  background-color: #fff;
  border: 2px solid #DC010C;
  border-radius: 2.0625rem;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .download-form__submit-wrap {
    margin-top: 3.75rem;
  }
}
.download-form__submit-wrap::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_9110%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%209110%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%0A%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_7%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%207%22%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20fill%3D%22%23dc010c%22%2F%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_63%22%20data-name%3D%22%E3%83%91%E3%82%B9%2063%22%20d%3D%22M9.909%2C17.73a.909.909%2C0%2C0%2C1-.7-1.492l4.074-4.875L9.355%2C6.48a.93.93%2C0%2C1%2C1%2C1.464-1.146l4.393%2C5.457a.909.909%2C0%2C0%2C1%2C0%2C1.155L10.664%2C17.4A.909.909%2C0%2C0%2C1%2C9.909%2C17.73Z%22%20transform%3D%22translate(-0.815%20-0.45)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E");
  width: 1.375rem;
  height: 1.375rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1.25rem;
  top: 1.0625rem;
  transition: background-image 0.3s;
}
.download-form__submit-wrap:hover {
  background-color: #DC010C;
}
.download-form__submit-wrap:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_9110%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%209110%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%0A%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_7%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%207%22%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_63%22%20data-name%3D%22%E3%83%91%E3%82%B9%2063%22%20d%3D%22M9.909%2C17.73a.909.909%2C0%2C0%2C1-.7-1.492l4.074-4.875L9.355%2C6.48a.93.93%2C0%2C1%2C1%2C1.464-1.146l4.393%2C5.457a.909.909%2C0%2C0%2C1%2C0%2C1.155L10.664%2C17.4A.909.909%2C0%2C0%2C1%2C9.909%2C17.73Z%22%20transform%3D%22translate(-0.815%20-0.45)%22%20fill%3D%22%23dc010c%22%2F%3E%0A%3C%2Fsvg%3E");
}

.download-form__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #DC010C;
  width: 100%;
  height: 100%;
}
.download-form__submit:hover {
  color: #fff;
}

.download-form__submit-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #DC010C;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

/*
.download-form__submit-arrow {
  position: absolute;
  right: rem(20);
  display: flex;
  align-items: center;
  justify-content: center;
  width: rem(22);
  height: rem(22);
  border-radius: 50%;
  background-color: $theme;
  transition: background-color 0.3s;
}

.download-form__submit-arrow::after {
  content: "";
  display: block;
  width: rem(18);
  height: rem(22);
  background: url("../img/common/arrow-white.svg") center / contain no-repeat;
}

*/
.project-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
  overflow: visible;
}

.project-mv::before {
  background-color: #F5F5F5;
  top: -16.375rem;
  transform: none;
}
@media screen and (max-width: 767px) {
  .project-mv::before {
    top: -1%;
  }
}

.project-mv .sub-mv__deco--circle1,
.project-mv .sub-mv__deco--circle2,
.project-mv .sub-mv__deco--circle3 {
  display: none;
}

.project-mv .sub-mv__inner {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .project-mv .sub-mv__inner {
    padding-top: 4.375rem;
  }
}

.project-mv .sub-mv__deco--img {
  right: -1.875rem;
  bottom: -15rem;
  top: auto;
  transform: none;
  z-index: 3;
}

.project-mv .sub-mv__lead {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .project-mv .sub-mv__lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-top: 2.25rem;
  }
}

.project-mv .sub-mv__desc {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .project-mv .sub-mv__desc {
    margin-top: 3.8125rem;
    max-width: 37.5rem;
  }
}

.project-list {
  position: relative;
  margin-top: -0.625rem;
  padding: 0rem 0 5rem;
  background-color: transparent;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .project-list {
    margin-top: -1.25rem;
    padding: 0rem 0 3.75rem;
  }
}

.project-list .project-card__body {
  height: auto;
}

.project-list__filter {
  position: relative;
  z-index: 3;
  margin-bottom: 1.75rem;
  margin-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .project-list__filter {
    margin-left: 0;
    margin-bottom: 2.0625rem;
    display: flex;
    justify-content: center;
  }
}

.project-list__select {
  appearance: none;
  width: 21.4375rem;
  height: 2.5625rem;
  padding: 0 2.5rem 0 1.0625rem;
  background-color: #fff;
  border: none;
  border-radius: 1.3125rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
  font-family: inherit;
  font-size: 0.875rem;
  color: #1A1A1A;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8'%3E%3Cpath d='M1 1l7 6 7-6' stroke='%23000' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.0625rem center;
  background-size: 1rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .project-list__select {
    width: 100%;
    max-width: 21.4375rem;
  }
}

.project-list__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .project-list__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
}

.project-list__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .project-list__pagination {
    justify-content: center;
    margin-top: 3.3125rem;
  }
}

.project-list__page-numbers {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-list__page-num {
  font-size: 1.125rem;
  font-weight: 500;
  color: #838383;
  text-decoration: none;
  transition: color 0.3s;
}
.project-list__page-num.is-active {
  color: #E60E11;
}

@media (any-hover: hover) {
  .project-list__page-num:hover {
    color: #E60E11;
  }
}
.project-list__page-arrow {
  width: 1.9375rem;
  height: 1.125rem;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.project-list__page-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2px solid #E60E11;
}
.project-list__page-arrow::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid #E60E11;
  border-right: 2px solid #E60E11;
  transform: rotate(45deg);
  transform-origin: top right;
}
.project-list__page-arrow[disabled] {
  cursor: default;
}
.project-list__page-arrow[disabled]::before {
  border-color: #D4D4D6;
}
.project-list__page-arrow[disabled]::after {
  border-color: #D4D4D6;
}

.project-list__page-arrow--prev {
  transform: rotate(180deg);
}

.project-detail-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
  overflow: visible;
}

.project-detail-mv::before {
  background-color: #F5F5F5;
  top: -16.375rem;
  transform: none;
}
@media screen and (max-width: 767px) {
  .project-detail-mv::before {
    top: -25%;
  }
}

.project-detail-mv .sub-mv__deco--circle1,
.project-detail-mv .sub-mv__deco--circle2,
.project-detail-mv .sub-mv__deco--circle3 {
  display: none;
}

.project-detail-mv .sub-mv__deco--img {
  opacity: 0;
  right: -10.625rem;
  top: -10rem;
  transform: none;
  z-index: 0;
  width: 30rem;
}

.project-detail-mv.sub-mv.is-active .sub-mv__deco--img {
  opacity: 0.15;
}

.project-detail-mv .sub-mv__inner {
  padding-top: 7.5rem;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .project-detail-mv .sub-mv__inner {
    padding-top: 3.75rem;
    max-width: 37.5rem;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.project-detail-mv .sub-mv__title-en {
  font-size: 3rem;
  line-height: 1.2708333333;
}
@media screen and (max-width: 767px) {
  .project-detail-mv .sub-mv__title-en {
    font-size: 2.25rem;
  }
}

.sub-mv__industry {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .sub-mv__industry {
    font-size: 0.75rem;
  }
}

.project-detail__client {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .project-detail__client {
    margin-top: 0.3125rem;
    font-size: 1.375rem;
  }
}

.project-detail__lead {
  font-size: 1.5rem;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .project-detail__lead {
    font-size: 1.125rem;
  }
}

.project-detail__meta {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: #1A1A1A;
}

.project-detail__meta dt {
  font-weight: 500;
}

.project-detail__services {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .project-detail__services {
    margin-top: 1.5rem;
  }
}

.project-detail__services li {
  position: relative;
  padding-left: 2.125rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .project-detail__services li {
    font-size: 0.75rem;
  }
}

.project-detail__services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3125rem;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #BEBEBE;
  border-radius: 50%;
}

.project-detail__services li + li {
  margin-top: 1.0625rem;
}

.project-detail__preview {
  margin-top: 8rem;
  max-width: 100%;
  width: auto;
  max-height: 37.5rem;
  margin-bottom: 6.6rem;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .project-detail__preview {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 3.75rem;
  }
}
.project-detail__preview img {
  max-width: initial;
  aspect-ratio: auto;
  width: auto;
  max-height: 37.5rem;
  max-width: 100%;
}

/*
.project-detail__preview-pc {
  width: 100%;
  aspect-ratio: 897 / 499;
  border: rem(4) solid $black;
  border-radius: rem(20);
  overflow: hidden;
  background-color: $white;

}

.project-detail__preview-pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail__preview-sp {
  position: absolute;
  bottom: rem(-37);
  right: 0;
  width: rem(167);
  height: rem(297);
  border: rem(4) solid $black;
  border-radius: rem(20);
  overflow: hidden;
  background-color: $white;

  @include mq("md") {
    width: rem(63);
    height: rem(112);
    border-radius: rem(5);
    bottom: rem(-19);
    right: rem(-35);
  }
}

.project-detail__preview-sp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/
.project-detail-body {
  position: relative;
  z-index: 3;
  padding: 0rem 0 3.3125rem;
}

.project-detail-body__inner {
  max-width: 67.375rem;
}

.project-detail-body__content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  color: #000;
}
.project-detail-body__content h2 + h2 {
  margin-top: 3.375rem;
}
.project-detail-body__content p {
  margin-top: 1.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.875;
  color: #1A1A1A;
}
.project-detail-body__content p + h2 {
  margin-top: 3.375rem;
}
.project-detail-body__content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  color: #000;
}
.project-detail-body__content ul,
.project-detail-body__content ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}
.project-detail-body__content li {
  font-size: 1rem;
  line-height: 1.875;
  margin-top: 0.5rem;
}
.project-detail-body__content img {
  max-width: 100%;
  height: auto;
}
.project-detail-body__content a {
  color: #1571da;
  text-decoration: underline;
}
.project-detail-body__content strong {
  font-weight: 700;
}

.project-detail-body__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .project-detail-body__btn {
    margin-top: 3.3125rem;
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}

.project-related {
  background-color: #F5F5F5;
  padding: 4rem 0 5.25rem;
}

.project-related__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
}

.project-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .project-related__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
}

.project-related .project-card__body {
  height: auto;
}

.project-detail-mv .sub-mv__inner,
.project-detail-mv.sub-mv {
  min-height: initial !important;
}

.project-detail-mv .sub-mv__inner {
  padding-bottom: 6.25rem;
}

.sub-mv--branding .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--branding .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.wd-point.wd-point--branding {
  padding-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-point.wd-point--branding {
    padding-top: 4.5rem;
  }
}
.wd-point.wd-point--branding::before {
  top: 1.875rem;
}

.wd-flow.wd-flow--branding {
  padding-top: 9.6875rem;
}
.wd-flow.wd-flow--branding::before {
  top: 1.625rem;
}
.wd-flow.wd-flow--branding .wd-flow__deco {
  top: 16.875rem;
}
.wd-flow.wd-flow--branding .wd-flow__deco-gray {
  right: calc(50% - 50.625rem);
  bottom: 20.625rem;
}
@media screen and (max-width: 767px) {
  .wd-flow.wd-flow--branding .wd-flow__deco-gray {
    display: none;
  }
}

.wd-column.wd-column--branding {
  padding-bottom: 8.125rem;
}

.wd-column--branding .wd-column__deco-white {
  position: absolute;
  right: calc(50% - 48rem);
  top: 0rem;
  width: 29.375rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--branding .wd-column__deco-white {
    display: none;
  }
}

.graphicdesign-mv .sub-mv__content {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .graphicdesign-mv .sub-mv__content {
    margin-top: 2.75rem;
  }
}

@media (max-width: 375px) {
  .graphicdesign-mv .sub-mv__lead {
    font-size: 1.0625rem;
  }
}

@media (max-width: 375px) {
  .graphicdesign-mv .sub-mv__desc {
    font-size: 0.9375rem;
  }
}

.graphicdesign-mv ~ .service-category.service-category {
  margin-top: 3.75rem;
}
.graphicdesign-mv ~ .service-category.service-category.is-fixed {
  margin-top: 0;
}

.graphicdesign-mv ~ .wd-pain .wd-pain__solution {
  padding-left: 2.0625rem;
  justify-content: flex-start;
}

.graphicdesign-mv ~ .wd-price {
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .graphicdesign-mv ~ .wd-price {
    padding-bottom: 4.8125rem;
  }
}

.wd-point.wd-point--graphicdesign {
  padding-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-point.wd-point--graphicdesign {
    padding-top: 4.5rem;
  }
}
.wd-point.wd-point--graphicdesign::before {
  top: 1.875rem;
}

@media (max-width: 375px) {
  .wd-point--graphicdesign .wd-point__title {
    font-size: 1.5rem;
  }
}

.wd-column.wd-column--graphicdesign {
  background-color: #fff;
  overflow-x: clip;
  overflow-y: visible;
}
.wd-column.wd-column--graphicdesign::before {
  background-color: #F5F5F5;
}

.wd-column--graphicdesign .wd-column__deco-left {
  position: absolute;
  left: calc(50% - 50.625rem);
  top: -5.625rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--graphicdesign .wd-column__deco-left {
    display: none;
  }
}

.wd-column--graphicdesign .wd-column__deco-right {
  position: absolute;
  right: calc(50% - 45.625rem);
  bottom: -20rem;
  width: 23.4375rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--graphicdesign .wd-column__deco-right {
    display: none;
  }
}

.sub-mv--illustration .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--illustration .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.sub-mv--illustration .sub-mv__desc {
  max-width: 34.0625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--illustration .sub-mv__desc {
    max-width: 37.5rem;
  }
}

.sub-mv--illustration ~ .wd-price .wd-price__card-price {
  font-weight: 700;
}

.sub-mv--illustration ~ .wd-price {
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--illustration ~ .wd-price {
    padding-bottom: 4.8125rem;
  }
}

.wd-point.wd-point--illustration {
  padding-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-point.wd-point--illustration {
    padding-top: 4.5rem;
  }
}
.wd-point.wd-point--illustration::before {
  top: 1.875rem;
}

.wd-column.wd-column--illustration {
  background-color: #fff;
  overflow-x: clip;
  overflow-y: visible;
}
.wd-column.wd-column--illustration::before {
  background-color: #F5F5F5;
}

.wd-column--illustration .wd-column__deco-left {
  position: absolute;
  left: calc(50% - 50.625rem);
  top: -5.625rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--illustration .wd-column__deco-left {
    display: none;
  }
}

.wd-column--illustration .wd-column__deco-right {
  position: absolute;
  right: calc(50% - 45.625rem);
  bottom: -20rem;
  width: 23.4375rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--illustration .wd-column__deco-right {
    display: none;
  }
}

.sub-mv--movie .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--movie .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.sub-mv--movie ~ .wd-price {
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--movie ~ .wd-price {
    padding-bottom: 4.8125rem;
  }
}

.wd-point.wd-point--movie {
  padding-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-point.wd-point--movie {
    padding-top: 4.5rem;
  }
}
.wd-point.wd-point--movie::before {
  top: 1.875rem;
}

.wd-column.wd-column--movie {
  background-color: #fff;
  overflow: visible;
}
.wd-column.wd-column--movie::before {
  background-color: #F5F5F5;
}

.wd-column--movie .wd-column__deco-left {
  position: absolute;
  left: calc(50% - 50.625rem);
  top: -5.625rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--movie .wd-column__deco-left {
    display: none;
  }
}

.sub-mv--moviepackage .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--moviepackage .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.sub-mv--moviepackage .sub-mv__desc {
  max-width: 29.9375rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--moviepackage .sub-mv__desc {
    max-width: 37.5rem;
  }
}

.sub-mv--moviepackage ~ .wd-content {
  background-color: #fff;
}
.sub-mv--moviepackage ~ .wd-content::before {
  background-color: #F5F5F5;
}

.wd-column.wd-column--moviepackage {
  overflow: visible;
  padding-bottom: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-column.wd-column--moviepackage {
    padding-bottom: initial;
  }
}

.wd-column--moviepackage .wd-column__deco-left {
  display: none;
}

.sub-mv--photograph .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--photograph .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.sub-mv--photograph ~ .wd-price {
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--photograph ~ .wd-price {
    padding-bottom: 4.8125rem;
  }
}
.sub-mv--photograph ~ .wd-price .wd-price__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.375rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--photograph ~ .wd-price .wd-price__inner {
    display: block;
  }
}
.sub-mv--photograph ~ .wd-price .wd-price__head,
.sub-mv--photograph ~ .wd-price .wd-price__lead {
  width: 100%;
}
.sub-mv--photograph ~ .wd-price .wd-price__row {
  flex: 1;
  margin-top: 0;
}
.sub-mv--photograph ~ .wd-price .wd-price__row-category {
  order: unset;
}
@media screen and (max-width: 767px) {
  .sub-mv--photograph ~ .wd-price .wd-price__row + .wd-price__row {
    display: block;
    margin-top: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv--photograph ~ .wd-price .wd-price__row + .wd-price__row .wd-price__row-cards {
    display: grid;
  }
}
.sub-mv--photograph ~ .wd-price .wd-price__card:only-child {
  padding: 1.75rem 1.75rem 2.125rem;
}
.sub-mv--photograph ~ .wd-price .wd-price__card:only-child .wd-price__card-price {
  font-size: 1.3125rem;
  margin-top: 0;
}
.sub-mv--photograph ~ .wd-price .wd-price__card:only-child .wd-price__card-amount {
  font-size: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--photograph ~ .wd-price .wd-price__card:only-child .wd-price__card-amount {
    font-size: 2.625rem;
  }
}
.sub-mv--photograph ~ .wd-price .wd-price__card-details-small {
  font-size: 1.3125rem;
  font-weight: 400;
  margin-right: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--photograph ~ .wd-price .wd-price__card-details-small {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-right: 0;
  }
}

.wd-point.wd-point--photograph {
  padding-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-point.wd-point--photograph {
    padding-top: 4.5rem;
  }
}
.wd-point.wd-point--photograph::before {
  top: 1.875rem;
}

.wd-column.wd-column--photograph {
  background-color: #fff;
  overflow-x: clip;
  overflow-y: visible;
}
.wd-column.wd-column--photograph::before {
  background-color: #F5F5F5;
}

.wd-column--photograph .wd-column__deco-left {
  position: absolute;
  left: calc(50% - 50.625rem);
  top: -5.625rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--photograph .wd-column__deco-left {
    display: none;
  }
}

.wd-column--photograph .wd-column__deco-right {
  position: absolute;
  right: calc(50% - 45.625rem);
  bottom: -20rem;
  width: 23.4375rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--photograph .wd-column__deco-right {
    display: none;
  }
}

.sub-mv--spatialdesign .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--spatialdesign .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution {
  padding-left: 2.5rem;
  padding-right: 13.75rem;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution {
    padding-left: 1.6875rem;
    padding-right: 5.9375rem;
    justify-content: center;
  }
}

@media (max-width: 850px) {
  .sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution-text {
    font-size: 1.8125rem;
  }
}
@media (max-width: 767px) {
  .sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution-text {
    font-size: 1.125rem;
  }
}

.sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution-illust {
  right: 0.625rem;
}
@media (max-width: 850px) {
  .sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution-illust {
    width: 11.875rem;
    right: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution-illust {
    right: 0.25rem;
    width: 6.25rem;
  }
}
@media (max-width: 375px) {
  .sub-mv--spatialdesign ~ .wd-pain .wd-pain__solution-illust {
    width: 5.625rem;
  }
}

.sub-mv--spatialdesign ~ .wd-price {
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--spatialdesign ~ .wd-price {
    padding-bottom: 4.8125rem;
  }
}

.wd-point.wd-point--spatialdesign {
  padding-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-point.wd-point--spatialdesign {
    padding-top: 4.5rem;
  }
}
.wd-point.wd-point--spatialdesign::before {
  top: 1.875rem;
}

@media (max-width: 375px) {
  .wd-point--spatialdesign .wd-point__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 375px) {
  .wd-point--spatialdesign .wd-section-head__title {
    font-size: 1.5rem;
  }
}

.wd-column.wd-column--spatialdesign {
  background-color: #fff;
  overflow-x: clip;
  overflow-y: visible;
}
.wd-column.wd-column--spatialdesign::before {
  background-color: #F5F5F5;
}

.wd-column--spatialdesign .wd-column__deco-left {
  position: absolute;
  left: calc(50% - 50.625rem);
  top: -5.625rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--spatialdesign .wd-column__deco-left {
    display: none;
  }
}

.wd-column--spatialdesign .wd-column__deco-right {
  position: absolute;
  right: calc(50% - 45.625rem);
  bottom: -20rem;
  width: 23.4375rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--spatialdesign .wd-column__deco-right {
    display: none;
  }
}

.wd-price.wd-price--webadvertisement {
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .wd-price.wd-price--webadvertisement {
    padding-bottom: 4.8125rem;
  }
}

.wd-point.wd-point--webad {
  padding-top: 7.8125rem;
  padding-bottom: 11.4375rem;
}
.wd-point.wd-point--webad::before {
  top: 2.8125rem;
}

.wd-flow.wd-flow--webad {
  padding-top: 9.6875rem;
  padding-bottom: 8.125rem;
}
.wd-flow.wd-flow--webad::before {
  top: 1.625rem;
}
.wd-flow.wd-flow--webad .wd-flow__deco {
  top: 16.875rem;
}

.wd-section-head__label,
.wd-pain__label,
.wd-content__label,
.wd-point__label,
.wd-flow__label,
.wd-price__label,
.wd-column__label {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #DC010C;
}

.wd-section-head__label {
  display: flex;
  flex-wrap: wrap;
}

.wd-section-head__title .char {
  display: inline-block;
}

.wd-section-head--white .wd-section-head__label {
  color: #fff;
}

.webdesign-mv .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .webdesign-mv .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.wd-pain {
  position: relative;
  z-index: 3;
  margin-top: 4rem;
  padding: 0 0 7.75rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wd-pain {
    margin-top: 3.25rem;
    padding: 0 0 2.5rem;
  }
}

.wd-pain__inner {
  max-width: 67.5rem;
  margin: 0 auto;
}

.wd-pain__bubble {
  background-color: #f7f8f8;
  border: 1px solid #1A1A1A;
  border-radius: 3.75rem;
  padding: 3.5rem 5rem 5.375rem;
}
@media screen and (max-width: 767px) {
  .wd-pain__bubble {
    border-radius: 1.875rem;
    padding: 2.75rem 1.5rem 2.1875rem 1.5625rem;
  }
}

.wd-pain__label {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #DC010C;
  text-align: center;
}

.wd-pain__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .wd-pain__head {
    margin-top: 0.75rem;
  }
}

.wd-pain__head-illust {
  width: 4.75rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .wd-pain__head-illust {
    position: absolute;
    right: -1.75rem;
    bottom: -1.6875rem;
  }
}

.wd-pain__title {
  text-align: center;
}

.wd-pain__title-sub {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.55;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-pain__title-sub {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.8;
  }
}

.wd-pain__title-main {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-pain__title-main {
    font-size: 1.75rem;
    font-weight: 600;
  }
}

.wd-pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8125rem 2.5rem;
  max-width: 50rem;
  margin: 3.8125rem auto 0;
}
@media screen and (max-width: 767px) {
  .wd-pain__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.875rem;
    max-width: 21.875rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.wd-pain__item {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  background-color: transparent;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .wd-pain__item {
    gap: 0.8125rem;
  }
}

.wd-pain__item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4.5625rem;
  height: 4.5625rem;
  background-color: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .wd-pain__item-head {
    width: 3.375rem;
    height: 3.375rem;
  }
}

.wd-pain__item-tag {
  font-size: 0.625rem;
  font-weight: 500;
  color: #DC010C;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .wd-pain__item-tag {
    font-size: 0.5625rem;
  }
}

.wd-pain__item-number {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.8125rem;
  font-weight: 400;
  color: #DC010C;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wd-pain__item-number {
    font-size: 1.25rem;
  }
}

.wd-pain__item-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-pain__item-text {
    font-size: 1rem;
    line-height: 1.5625;
  }
}

.wd-pain__arrow {
  position: relative;
  display: flex;
  justify-content: center;
  height: 3.75rem;
}
.wd-pain__arrow::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 4.375rem;
  background-color: #1A1A1A;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.wd-pain__arrow::after {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.875rem;
  height: 4.3125rem;
  background-color: #f7f8f8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .wd-pain__arrow {
    height: 2.5rem;
  }
  .wd-pain__arrow::before {
    width: 3.125rem;
    height: 2.8125rem;
  }
  .wd-pain__arrow::after {
    width: 3rem;
    height: 2.75rem;
  }
}

.wd-pain__solution {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.875rem;
  min-height: 8.0625rem;
  background-color: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 4.875rem;
  padding: 1.875rem 10rem 1.875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .wd-pain__solution {
    border-radius: 2.5rem;
    padding: 1.5rem 5.9375rem 1.5rem 1.6875rem;
    margin-top: 1.25rem;
    justify-content: center;
    min-height: auto;
  }
}
@media (max-width: 425px) {
  .wd-pain__solution {
    justify-content: flex-start;
  }
}

.wd-pain__solution-text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.8;
  color: #e60e11;
}
@media screen and (max-width: 767px) {
  .wd-pain__solution-text {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5555555556;
  }
}

.wd-pain__solution-illust {
  position: absolute;
  right: 1.5625rem;
  bottom: 0;
  width: 13.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .wd-pain__solution-illust {
    right: 0.1875rem;
    bottom: 50%;
    transform: translateY(50%);
    width: 6rem;
  }
}

.wd-content {
  position: relative;
  overflow: hidden;
  padding: 7.3125rem 0 12.25rem;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .wd-content {
    padding: 3.75rem 0 3.125rem;
  }
}
.wd-content::before {
  content: "";
  position: absolute;
  width: 26.75rem;
  height: 26.75rem;
  border-radius: 50%;
  background-color: #fff;
  top: 3rem;
  left: calc(50% - 40rem - 8.625rem);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wd-content::before {
    width: 16.625rem;
    height: 16.625rem;
    top: 1.0625rem;
    left: -7.3125rem;
  }
}

.wd-content__inner {
  position: relative;
  z-index: 1;
  max-width: 67.4375rem;
  margin: 0 auto;
}

.wd-content__head {
  text-align: left;
}

.wd-content__title {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .wd-content__title {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.8846153846;
  }
}

.wd-content__lead {
  margin-top: 3rem;
  font-size: 0.875rem;
  line-height: 2;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-content__lead {
    margin-top: 1.25rem;
  }
}

.wd-content__list {
  margin-top: 5.625rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .wd-content__list {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.wd-content__item {
  display: flex;
  gap: 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wd-content__item {
    flex-direction: column;
  }
}

.wd-content__item-img {
  flex-shrink: 0;
  width: 24.375rem;
  height: 16.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wd-content__item-img {
    width: 100%;
    height: auto;
  }
}

.wd-content__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-content__item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 3.4375rem 2.125rem;
}
@media screen and (max-width: 767px) {
  .wd-content__item-body {
    padding: 1.3125rem 1.8125rem;
  }
}

.wd-content__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.7;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-content__item-title {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.wd-content__item-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #000;
}

.wd-point {
  position: relative;
  padding: 11.25rem 0 15.5625rem;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wd-point {
    padding: 4.5rem 0 8rem;
  }
}
.wd-point::before {
  content: "";
  position: absolute;
  width: 26.75rem;
  height: 26.75rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  top: 6.375rem;
  left: calc(50% - 40rem - 8.625rem);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wd-point::before {
    width: 16.625rem;
    height: 16.625rem;
    top: 1.25rem;
    left: -6.875rem;
  }
}

.wd-point__inner {
  position: relative;
  z-index: 1;
  max-width: 75.5rem;
  margin-right: auto;
  margin-left: auto;
}

.wd-point__head {
  text-align: left;
  margin-left: 4.25rem;
}
@media screen and (max-width: 767px) {
  .wd-point__head {
    margin-left: 0;
  }
}

.wd-point__title {
  margin-top: 0.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .wd-point__title {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.4;
  }
}

.wd-point__list {
  margin-top: 7.375rem;
  display: flex;
  flex-direction: column;
  gap: 13rem;
}
@media screen and (max-width: 767px) {
  .wd-point__list {
    margin-top: 3.4375rem;
    gap: 4.75rem;
  }
}

.wd-point__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 3.875rem;
}
.wd-point__item::before {
  content: "";
  position: absolute;
  width: 24.75rem;
  height: 24.75rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  z-index: -1;
}
.wd-point__item:nth-child(odd)::before {
  right: -10.625rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item:nth-child(odd)::before {
    width: 16.625rem;
    height: 16.625rem;
    right: -7.1875rem;
  }
}
.wd-point__item:nth-child(even)::before {
  left: -9.375rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item:nth-child(even)::before {
    width: 16.625rem;
    height: 16.625rem;
    left: -7.1875rem;
  }
}
.wd-point__item:nth-child(1)::before {
  top: 14.25rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item:nth-child(1)::before {
    top: 27.5rem;
  }
}
.wd-point__item:nth-child(2)::before {
  top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item:nth-child(2)::before {
    top: 16.25rem;
  }
}
.wd-point__item:nth-child(3)::before {
  top: 9.875rem;
  right: -3.4375rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item:nth-child(3)::before {
    top: 21.25rem;
  }
}
.wd-point__item:nth-child(3):last-child::before {
  display: none;
}
.wd-point__item:nth-child(4)::before {
  top: 4.375rem;
  left: -11.25rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item:nth-child(4)::before {
    top: 23.75rem;
  }
}
@media screen and (max-width: 767px) {
  .wd-point__item {
    flex-direction: column;
    gap: 2.25rem;
  }
}

.wd-point__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .wd-point__item--reverse {
    flex-direction: column;
  }
}

.wd-point__item-info {
  flex: 1;
  margin-left: 4.25rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item-info {
    margin-left: 0;
  }
}

.wd-point__item--reverse .wd-point__item-info {
  margin-left: 0;
}

.wd-point__deco {
  position: absolute;
  width: 23.4375rem;
  height: auto;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-point__deco {
    display: none;
  }
}

.wd-point__item:nth-child(1) .wd-point__deco {
  right: -8.9375rem;
  top: 10.625rem;
}
@media screen and (max-width: 767px) {
  .wd-point__item:nth-child(1) .wd-point__deco {
    display: block;
    right: -2.5rem;
    top: 26rem;
    width: 20rem;
  }
}

.wd-point__item:nth-child(2) .wd-point__deco {
  left: -13.9375rem;
  top: 8.125rem;
}

.wd-point__item:nth-child(4) .wd-point__deco {
  left: -5.1875rem;
  top: 4.6875rem;
}

.wd-point__item-tag {
  display: inline-flex;
  align-items: center;
  height: 2.3125rem;
  padding: 0 1rem;
  border: 1px solid #1A1A1A;
  border-radius: 1.1875rem;
  background-color: #fff;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wd-point__item-tag {
    height: 2.1875rem;
    font-size: 1.125rem;
    padding: 0 1rem;
  }
}

.wd-point__item-label {
  color: #DC010C;
}

.wd-point__item-service {
  color: #1A1A1A;
}

.wd-point__item-title {
  margin-top: 2rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-point__item-title {
    margin-top: 1.3125rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.wd-point__item-bullets {
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .wd-point__item-bullets {
    margin-top: 2rem;
  }
}

.wd-point__item-bullets li {
  position: relative;
  padding-left: 1.625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-point__item-bullets li {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.wd-point__item-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #DC010C;
}

.wd-point__item-img {
  flex-shrink: 0;
  width: 26.25rem;
  height: 17.8125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wd-point__item-img {
    width: 100%;
    height: auto;
  }
}

.wd-point__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-works {
  position: relative;
  background-color: #ef5757;
  overflow: hidden;
}
.wd-works::before {
  content: "";
  position: absolute;
  width: 26.75rem;
  height: 26.75rem;
  border-radius: 50%;
  background-color: #dd4747;
  top: 5.125rem;
  left: calc(50% - 40rem - 8.625rem);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wd-works::before {
    width: 16.625rem;
    height: 16.625rem;
    top: 0.0625rem;
    left: -7.125rem;
  }
}

.wd-works__deco {
  position: absolute;
  top: 1.3125rem;
  right: calc(50% - 37rem);
  width: 23.375rem;
  height: auto;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wd-works__deco {
    width: 12.5rem;
    top: 19.4375rem;
    right: -1.25rem;
  }
}

.wd-works__inner {
  position: relative;
  z-index: 2;
  max-width: 67.25rem;
  margin: 0 auto;
}

.wd-works__body {
  display: flex;
  align-items: flex-start;
  min-height: 37.125rem;
}
@media screen and (max-width: 767px) {
  .wd-works__body {
    flex-direction: column;
    min-height: auto;
    padding: 3.125rem 0 4.375rem;
  }
}

.wd-works__info {
  flex-shrink: 0;
  width: 32rem;
  padding-top: 10.3125rem;
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 767px) {
  .wd-works__info {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .wd-works__info .char-text {
    --x: 0;
  }
}

.wd-works__label {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

.wd-works__title {
  margin-top: 0.1875rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .wd-works__title {
    margin-top: 0.75rem;
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.8846153846;
  }
}

.wd-works__lead {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .wd-works__lead {
    margin-top: 1.375rem;
  }
}

.wd-works__btn {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .wd-works__btn {
    order: 1;
    margin-top: 2.8125rem;
    text-align: center;
    align-self: center;
  }
}

.wd-works__collage {
  position: relative;
  flex: 1;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage {
    flex: none;
    width: 100%;
    max-width: 21.875rem;
    min-height: 8.4375rem;
    margin-top: 1.8125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.wd-works__collage-item {
  position: absolute;
  filter: drop-shadow(0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.15));
}
.wd-works__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-works__collage-item--1 {
  width: 4.0625rem;
  height: 5.75rem;
  top: 12.4375rem;
  left: 0.125rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--1 {
    width: 2.6875rem;
    height: 3.8125rem;
    top: 0;
    left: 0.0625rem;
  }
}

.wd-works__collage-item--2 {
  width: 9.1875rem;
  height: 6.3125rem;
  top: 12.4375rem;
  left: 5.125rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--2 {
    width: 6.0625rem;
    height: 4.1875rem;
    top: 0;
    left: 3.375rem;
  }
}

.wd-works__collage-item--3 {
  width: 8.8125rem;
  height: 5.625rem;
  top: 12.4375rem;
  left: 15.125rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--3 {
    width: 5.8125rem;
    height: 3.6875rem;
    top: 0;
    left: 10rem;
  }
}

.wd-works__collage-item--4 {
  width: 8rem;
  height: 5.6875rem;
  top: 12.4375rem;
  left: 24.375rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--4 {
    width: 5.3125rem;
    height: 3.75rem;
    top: 0;
    left: 16.0625rem;
  }
}

.wd-works__collage-item--5 {
  width: 7.8125rem;
  height: 5.5rem;
  top: 19.125rem;
  left: 0.125rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--5 {
    width: 5.1875rem;
    height: 3.625rem;
    top: 4.6875rem;
    left: 0.0625rem;
  }
}

.wd-works__collage-item--6 {
  width: 8.8125rem;
  height: 5.5625rem;
  top: 19.125rem;
  left: 8.625rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--6 {
    width: 5.8125rem;
    height: 3.6875rem;
    top: 4.6875rem;
    left: 5.6875rem;
  }
}

.wd-works__collage-item--7 {
  width: 8.75rem;
  height: 5.5625rem;
  top: 19.125rem;
  left: 17.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--7 {
    width: 5.75rem;
    height: 3.6875rem;
    top: 4.6875rem;
    left: 11.8125rem;
  }
}

.wd-works__collage-item--8 {
  width: 4.8125rem;
  height: 5.5rem;
  top: 19.125rem;
  left: 27.5625rem;
}
@media screen and (max-width: 767px) {
  .wd-works__collage-item--8 {
    width: 3.1875rem;
    height: 3.625rem;
    top: 4.6875rem;
    left: 18.1875rem;
  }
}

.wd-flow {
  position: relative;
  overflow: hidden;
  padding: 14.3125rem 0 10.6875rem;
}
@media screen and (max-width: 767px) {
  .wd-flow {
    padding: 3.125rem 0 3.125rem;
  }
}

.wd-flow::before {
  content: "";
  position: absolute;
  width: 26.75rem;
  height: 26.75rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  left: calc(50% - 48.5rem);
  top: 6.25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wd-flow::before {
    width: 16.625rem;
    height: 16.625rem;
    left: -7.3125rem;
    top: 1rem;
  }
}

.wd-flow__deco {
  position: absolute;
  width: 23.4375rem;
  height: auto;
  left: calc(50% - 41.875rem);
  top: 21.875rem;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-flow__deco {
    top: 9.1875rem;
    left: -9.125rem;
    width: 16.875rem;
  }
}

.wd-flow__deco-gray {
  position: absolute;
  right: -11.875rem;
  bottom: 12.5rem;
  width: 35rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-flow__deco-gray {
    right: -6.25rem;
    bottom: 6.25rem;
    width: 18.75rem;
  }
}

.wd-flow__inner {
  position: relative;
  z-index: 1;
  max-width: 67.25rem;
  margin: 0 auto;
}

.wd-flow__head {
  text-align: left;
}

.wd-flow__title {
  margin-top: 0.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .wd-flow__title {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.8846153846;
  }
}

.wd-flow__steps {
  max-width: 56.0625rem;
  margin: 3.75rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .wd-flow__steps {
    max-width: none;
    margin-top: 3.125rem;
    gap: 1.25rem;
  }
}

.wd-flow__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 7.75rem;
  background-color: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 3.875rem;
  padding: 1.4375rem 3.1875rem 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .wd-flow__step {
    flex-direction: column;
    min-height: auto;
    border-radius: 1.875rem;
    padding: 1.75rem 1.8125rem;
    gap: 0.75rem;
  }
}

.wd-flow__step:last-child {
  border-color: #DC010C;
}

.wd-flow__step::before {
  content: "";
  position: absolute;
  left: 3.125rem;
  top: 1.9375rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #d6d8d8;
}
@media screen and (max-width: 767px) {
  .wd-flow__step::before {
    display: none;
  }
}

.wd-flow__step:last-child::before {
  background-color: #DC010C;
}

.wd-flow__step::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.71875rem solid transparent;
  border-right: 0.71875rem solid transparent;
  border-top: 1.25rem solid #1A1A1A;
}
@media screen and (max-width: 767px) {
  .wd-flow__step::after {
    border-left: 0.71875rem solid transparent;
    border-right: 0.71875rem solid transparent;
    border-top: 1.25rem solid #1A1A1A;
  }
}

.wd-flow__step:last-child::after {
  display: none;
}

.wd-flow__step-head {
  flex-shrink: 0;
  width: 16.0625rem;
}
@media screen and (max-width: 767px) {
  .wd-flow__step-head {
    width: 100%;
  }
}

.wd-flow__step-number {
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875;
  color: #DC010C;
}
@media screen and (max-width: 767px) {
  .wd-flow__step-number {
    font-size: 0.75rem;
    line-height: 1;
  }
}

.wd-flow__step-title {
  margin-top: 0.4375rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-flow__step-title {
    font-size: 1.125rem;
    line-height: 2.2222222222;
    margin-top: 0.1875rem;
  }
}

.wd-flow__step-text {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #1A1A1A;
}

.wd-flow__bottom {
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wd-flow__bottom {
    margin-top: 1.75rem;
  }
}

.wd-flow__bottom-text {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.9090909091;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-flow__bottom-text {
    font-size: 1rem;
    line-height: 1.9375;
  }
}

.wd-flow__bottom .btn-link {
  width: 22.6875rem;
  margin-top: 3.4375rem;
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  .wd-flow__bottom .btn-link {
    width: 100%;
    max-width: 22.6875rem;
    margin-top: 2.625rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
}

.wd-price {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 7.3125rem 0 14.75rem;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .wd-price {
    padding: 3.125rem 0 4.8125rem;
  }
}

.wd-price::before {
  content: "";
  position: absolute;
  width: 26.75rem;
  height: 26.75rem;
  border-radius: 50%;
  background-color: #fff;
  left: calc(50% - 48.5rem);
  top: 3.5rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wd-price::before {
    width: 16.625rem;
    height: 16.625rem;
    left: -7.3125rem;
    top: 0;
  }
}

.wd-price__deco {
  position: absolute;
  width: 27.5rem;
  height: auto;
  top: -6.25rem;
  right: calc(50% - 47.75rem);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-price__deco {
    display: none;
  }
}

.wd-price__deco-bottom {
  position: absolute;
  width: 34.375rem;
  height: auto;
  bottom: -1.25rem;
  left: calc(50% - 50.625rem);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-price__deco-bottom {
    display: none;
  }
}

.wd-price__inner {
  position: relative;
  z-index: 1;
  max-width: 67rem;
  margin: 0 auto;
}

.wd-price__head {
  text-align: left;
}

.wd-price__title {
  margin-top: 0.875rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .wd-price__title {
    margin-top: 0.75rem;
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.8846153846;
  }
}

.wd-price__lead {
  margin-top: 2.3125rem;
  font-size: 0.875rem;
  line-height: 2;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-price__lead {
    margin-top: 1.1875rem;
  }
}

.wd-price__row {
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-price__row {
    margin-top: 4.875rem;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.wd-price__row + .wd-price__row {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .wd-price__row + .wd-price__row {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 2.375rem;
  }
}

.wd-price__row-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .wd-price__row-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .wd-price__row + .wd-price__row .wd-price__row-header {
    display: contents;
  }
}

.wd-price__row-category {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.8125rem;
  background-color: #838383;
  border: 1px solid #1A1A1A;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.16);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .wd-price__row-category {
    font-size: 1.125rem;
    height: 2.625rem;
  }
}

.wd-price__row-category--2col {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .wd-price__row-category--2col {
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .wd-price__row-category:not(.wd-price__row-category--2col) {
    order: 4;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .wd-price__row + .wd-price__row .wd-price__card:nth-child(1),
  .wd-price__row + .wd-price__row .wd-price__card:nth-child(2) {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .wd-price__row + .wd-price__row .wd-price__card:nth-child(3) {
    order: 5;
  }
}

.wd-price__row-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .wd-price__row-cards {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-top: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .wd-price__row + .wd-price__row .wd-price__row-cards {
    display: contents;
  }
}

.wd-price__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid #1A1A1A;
  padding: 2.6875rem 1.75rem 2.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wd-price__card {
    padding: 1.3125rem 1.75rem 1.4375rem;
  }
}

.wd-price__card-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  height: 2.25rem;
  padding: 0 1rem;
  border: 1px solid #DC010C;
  border-radius: 1.125rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #DC010C;
}

.wd-price__card-price {
  margin-top: 1.0625rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .wd-price__card-price {
    margin-top: 0.875rem;
  }
}

.wd-price__card-amount {
  font-size: 1.8125rem;
  font-weight: 700;
  color: #000;
}

.wd-price__card-details {
  flex: 1;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wd-price__card-details {
    margin-top: 1.0625rem;
  }
}

.wd-price__card-details li {
  border-top: 0.125rem solid #e6e6e6;
  padding-top: 1.125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-price__card-details li {
    padding-top: 0.75rem;
  }
}

.wd-price__card-details li + li {
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .wd-price__card-details li + li {
    margin-top: 0.625rem;
  }
}

.wd-price__card-details-small {
  font-size: 0.8125rem;
}

.wd-price__card .btn-link {
  width: 15.3125rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .wd-price__card .btn-link {
    margin-top: 1.0625rem;
  }
}

.wd-column {
  position: relative;
  overflow: hidden;
  padding: 6.875rem 0 2.5rem;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .wd-column {
    padding: 3.125rem 0 2.5rem;
  }
}

.wd-column::before {
  content: "";
  position: absolute;
  width: 26.75rem;
  height: 26.75rem;
  border-radius: 50%;
  background-color: #fff;
  left: calc(50% - 48.5rem);
  top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-column::before {
    width: 16.625rem;
    height: 16.625rem;
    left: -7.3125rem;
    top: 0;
  }
}

.wd-price--webadvertisement {
  z-index: 1;
}

.wd-price--webadvertisement .wd-price__deco-bottom {
  bottom: -28.75rem;
  z-index: 2;
}

.wd-column--white {
  background-color: #fff;
}

.wd-column--white::before {
  background-color: #F5F5F5;
}

.wd-column__deco {
  position: absolute;
  width: 25rem;
  height: auto;
  right: calc(50% - 46.125rem);
  top: 0rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column__deco {
    display: none;
  }
}

.wd-column__inner {
  position: relative;
  z-index: 1;
}

.wd-column__head {
  max-width: 67rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .wd-column__head {
    padding: 0;
  }
}

.wd-column__title {
  margin-top: 0.75rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .wd-column__title {
    font-size: 1.625rem;
    line-height: 1.8846153846;
  }
}

.wd-column__lead {
  max-width: 67rem;
  margin: 2.3125rem auto 0;
  padding: 0 24px;
  font-size: 0.875rem;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wd-column__lead {
    margin-top: 1.8125rem;
    padding: 0;
  }
}

.wd-column .column__grid {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .wd-column .column__grid {
    margin-top: 3.1875rem;
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .wd-column .column__grid .column-card__body {
    display: block;
    padding: 1.0625rem 1.625rem 1.4375rem;
  }
}

.wd-column .column__grid .column-card__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .wd-column .column__grid .column-card__text {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6666666667;
  }
}

.wd-price__card:only-child {
  grid-column: 1/-1;
  padding: 2.5rem 1.75rem 3.125rem;
  box-shadow: 0 0.1875rem 1.25rem rgba(0, 0, 0, 0.16);
}
.wd-price__card:only-child .wd-price__card-price {
  margin-top: 0;
}
.wd-price__card:only-child .wd-price__card-amount {
  font-size: 2.625rem;
}
.wd-price__card:only-child .wd-price__card-price {
  font-size: 1.3125rem;
}
.wd-price__card:only-child .wd-price__card-details {
  margin-top: 1.125rem;
  text-align: center;
  font-size: 1rem;
}
.wd-price__card:only-child .wd-price__card-details li {
  border-top: none;
  padding-top: 0;
  font-weight: 400;
}
.wd-price__card:only-child .btn-link {
  margin-top: 1.25rem;
}

.wd-price__row-category:only-child {
  grid-column: 1/-1;
}

.wd-column--webdesign {
  background-color: #fff;
  overflow: visible;
}

.wd-column--webdesign::before {
  background-color: #F5F5F5;
}

.wd-column--webdesign .wd-column__deco-left {
  position: absolute;
  left: calc(50% - 50.625rem);
  top: -5.625rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--webdesign .wd-column__deco-left {
    display: none;
  }
}

.sub-mv--writing .sub-mv__inner {
  padding-top: 7.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--writing .sub-mv__inner {
    padding-top: 4.8125rem;
  }
}

.sub-mv--writing ~ .wd-price {
  padding-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .sub-mv--writing ~ .wd-price {
    padding-bottom: 4.8125rem;
  }
}

@media (max-width: 425px) {
  .sub-mv--writing ~ .wd-price .wd-price__card-unit {
    font-size: 1.0625rem;
  }
}

@media (max-width: 374px) {
  .sub-mv--writing ~ .wd-price .wd-price__card {
    padding-left: 1.375rem;
    padding-right: 1.375rem;
  }
}

.wd-point.wd-point--writing {
  padding-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .wd-point.wd-point--writing {
    padding-top: 4.5rem;
  }
}
.wd-point.wd-point--writing::before {
  top: 1.875rem;
}

.wd-column.wd-column--writing {
  background-color: #fff;
  overflow-x: clip;
  overflow-y: visible;
}
.wd-column.wd-column--writing::before {
  background-color: #F5F5F5;
}

.wd-column--writing .wd-column__deco-left {
  position: absolute;
  left: calc(50% - 50.625rem);
  top: -5.625rem;
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--writing .wd-column__deco-left {
    display: none;
  }
}

.wd-column--writing .wd-column__deco-right {
  position: absolute;
  right: calc(50% - 45.625rem);
  bottom: -20rem;
  width: 23.4375rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wd-column--writing .wd-column__deco-right {
    display: none;
  }
}

.solution-mv + .service {
  background-color: #fff;
  padding: 0;
  margin-top: -7.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .solution-mv + .service .service__grid {
    margin-top: 6.25rem;
  }
}

.about-solution {
  padding: 6.25rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .about-solution {
    padding: 3.125rem 0 3.75rem;
  }
}

.about-solution--gray {
  background-color: #F5F5F5;
}

.about-solution--wide-img .about-solution__inner {
  gap: 1.375rem;
}
.about-solution--wide-img .about-solution__img {
  width: 33.75rem;
}

.about-solution__inner {
  display: flex;
  align-items: center;
  gap: 8.0625rem;
  max-width: 67.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about-solution__inner {
    flex-direction: column;
    gap: 2.5rem;
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.about-solution__body {
  flex: 1;
  max-width: 28.125rem;
}

.about-solution__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .about-solution__title {
    font-size: 1.25rem;
    line-height: 1.65;
    color: #1A1A1A;
  }
}

.about-solution__divider {
  width: 28.125rem;
  height: 0.25rem;
  background-color: #DC010C;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .about-solution__divider {
    width: 100%;
    height: 0.25rem;
    margin-top: 1.0625rem;
  }
}

.about-solution__text {
  margin-top: 1.6875rem;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 400;
  color: #1A1A1A;
  max-width: 26.25rem;
}
@media screen and (max-width: 767px) {
  .about-solution__text {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #1A1A1A;
    max-width: none;
  }
}

.about-solution__img {
  flex-shrink: 0;
  width: 24.875rem;
}
@media screen and (max-width: 767px) {
  .about-solution__img {
    width: 100%;
    max-width: 17.4375rem;
    margin: 0 auto;
  }
}

.about-solution__img img {
  width: 100%;
  height: auto;
}

.features {
  position: relative;
  padding: 4.75rem 0 8.0625rem;
  background-color: #F5F5F5;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .features {
    padding: 4.75rem 0 3.5rem;
  }
}

.features__deco {
  position: absolute;
  top: 47%;
  left: calc(50% - 54.375rem);
  width: 27.5rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .features__deco {
    display: none;
  }
}

.features__inner {
  position: relative;
  z-index: 3;
  max-width: 67.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .features__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.features__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.35;
  color: #000;
  margin-bottom: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .features__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
    margin-bottom: 3.0625rem;
  }
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .features__list {
    gap: 1.25rem;
  }
}

.features-card {
  display: flex;
  align-items: center;
  gap: 6.1875rem;
  background-color: #fff;
  border-radius: 1.6875rem;
  padding: 4.1875rem 4.0625rem 3.625rem 3.5rem;
  border: 1px solid #1A1A1A;
}
@media screen and (max-width: 767px) {
  .features-card {
    flex-direction: column;
    gap: 1.625rem;
    padding: 1.75rem 1.875rem;
    border-radius: 1.0625rem;
  }
}

.features-card__body {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .features-card__body {
    width: 100%;
  }
}

.features-card__number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 3.4375rem;
  font-weight: 400;
  line-height: 1.0727272727;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .features-card__number {
    font-size: 2.5625rem;
    line-height: 1.0731707317;
  }
}

.features-card__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #DC010C;
}
@media screen and (max-width: 767px) {
  .features-card__dot {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.features-card__heading {
  margin-top: 1.0625rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
  color: #1A1A1A;
}
@media screen and (max-width: 767px) {
  .features-card__heading {
    font-size: 1.125rem;
    line-height: 1.6111111111;
    margin-top: 0.8125rem;
  }
}

.features-card__text {
  margin-top: 2.875rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0;
  color: #1A1A1A;
  max-width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .features-card__text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0;
    margin-bottom: 0;
    max-width: 100%;
  }
}

.features-card__img {
  flex-shrink: 0;
  width: 28.6875rem;
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .features-card__img {
    width: 100%;
    max-width: 17.75rem;
    margin: 0 auto;
    align-self: center;
  }
}

.features-card__img img {
  width: 100%;
  height: auto;
}

.flow {
  position: relative;
  z-index: 1;
  padding: 6.6875rem 0 7.875rem;
  background-color: #fff;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 3.75rem 0 2.5rem;
    overflow: hidden;
  }
}

.flow__deco {
  position: absolute;
  top: -11.25rem;
  right: calc(50% - 52.5rem);
  width: 30.25rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .flow__deco {
    display: none;
  }
}

.flow__deco-bottom {
  position: absolute;
  bottom: -22.5rem;
  right: calc(50% - 53.4375rem);
  width: 35.0625rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .flow__deco-bottom {
    display: none;
  }
}

.flow__diamond {
  position: absolute;
  top: 6.375rem;
  left: calc(50% - 41.875rem);
  width: 9.75rem;
  height: 9.75rem;
  border: 2px solid #F5F5F5;
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .flow__diamond {
    display: none;
  }
}

.flow__inner {
  position: relative;
  z-index: 3;
  max-width: 67rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.flow__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.35;
  color: #000;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
    margin-bottom: 2.4375rem;
  }
}

.flow__lead {
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0;
  color: #1A1A1A;
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .flow__lead {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    text-align: left;
    margin-bottom: 2rem;
  }
}

.flow__steps {
  max-width: 64rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow__steps {
    max-width: 21.4375rem;
  }
}

.flow__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flow__row {
    flex-direction: column;
    gap: 0;
  }
}

.flow-step {
  display: flex;
  align-items: center;
  width: 20.5625rem;
  height: 12rem;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  padding: 1.875rem 1.25rem 2.625rem 1.875rem;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .flow-step {
    width: 100%;
    height: 10.125rem;
    padding: 1.625rem 1.25rem 1.625rem 1.625rem;
    gap: 2.5rem;
    border-radius: 0.625rem;
  }
}

.flow-step__icon {
  flex-shrink: 0;
  width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .flow-step__icon {
    width: 6.25rem;
  }
}

.flow-step__icon img {
  width: 100%;
  height: auto;
}

.flow-step__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1A1A1A;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .flow-step__title {
    font-size: 1.125rem;
  }
}

.flow-step__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  color: #1A1A1A;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .flow-step__text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-top: 0.6875rem;
    letter-spacing: 0;
  }
}

.flow__arrow {
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 0.5625rem solid transparent;
  border-bottom: 0.5625rem solid transparent;
  border-left: 1rem solid #1A1A1A;
  margin: 0 0.1875rem;
}
@media screen and (max-width: 767px) {
  .flow__arrow {
    margin: 0;
    border-top: 1rem solid #1A1A1A;
    border-bottom: none;
    border-left: 0.5625rem solid transparent;
    border-right: 0.5625rem solid transparent;
  }
}

.flow__arrow--between {
  display: none;
}
@media screen and (max-width: 767px) {
  .flow__arrow--between {
    display: block;
    margin: 0 auto;
  }
}

.flow__connector {
  display: block;
  width: 43.9375rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow__connector {
    display: none;
  }
}

.flow-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow-cards {
    flex-direction: column;
  }
}

.flow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15.625rem;
  height: 21.1875rem;
  background-color: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 1.4375rem;
  padding: 1.875rem 1.25rem 2.5rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .flow-card {
    width: 100%;
    max-width: 18.75rem;
    height: auto;
    padding: 1.5rem 1.25rem 1.875rem;
  }
}

.flow-card__icon {
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow-card__icon {
    width: 6.25rem;
    height: 6.25rem;
    margin-bottom: 1rem;
  }
}

.flow-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3636363636;
  text-align: center;
  color: #1A1A1A;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .flow-card__title {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.flow-card__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  color: #1A1A1A;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .flow-card__text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-top: 0.75rem;
  }
}

.flow-cards__arrow {
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid transparent;
  border-left: 1.5rem solid #DC010C;
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .flow-cards__arrow {
    margin: 0.75rem auto;
    border-top: 1.5rem solid #DC010C;
    border-bottom: none;
    border-left: 0.9375rem solid transparent;
    border-right: 0.9375rem solid transparent;
  }
}

.faq--gray {
  background-color: #F5F5F5;
}
.faq--gray .faq-item {
  border-bottom-color: #fff;
}

.process {
  position: relative;
  z-index: 1;
  padding: 6.9375rem 0 9.625rem;
  background-color: #F5F5F5;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .process {
    padding: 3.75rem 0 3.75rem;
    overflow: hidden;
  }
}

.process__deco {
  position: absolute;
  bottom: -14.6875rem;
  left: calc(50% - 55.3125rem);
  width: 35.0625rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .process__deco {
    display: none;
  }
}

.process__inner {
  position: relative;
  z-index: 1;
  max-width: 67rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .process__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.process__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  color: #000;
  letter-spacing: 0;
  margin-bottom: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .process__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
    margin-bottom: 3.125rem;
  }
}

.process__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .process__list {
    gap: 2.25rem;
  }
}

.process-step {
  position: relative;
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .process-step {
    width: 100%;
    max-width: 21.25rem;
  }
}

.process-step__badge {
  position: absolute;
  top: -1.5625rem;
  left: -2.3125rem;
  width: 8.25rem;
  height: 3.375rem;
  background-color: #DC010C;
  border: 1px solid #1A1A1A;
  border-radius: 1.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Azo Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.7692307692;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .process-step__badge {
    width: 6.25rem;
    height: 2.625rem;
    font-size: 1.125rem;
    top: -1.25rem;
    left: -0.625rem;
    border-radius: 1.3125rem;
  }
}

.process-step__card {
  width: 100%;
  height: 4.875rem;
  background-color: #fff;
  border: 1px solid #1A1A1A;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .process-step__card {
    height: 4rem;
    border-radius: 1rem;
  }
}

.process-step__text {
  font-size: 1.4375rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.7826086957;
  color: #000;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .process-step__text {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.features__title--bar::before {
  content: "";
  display: block;
  width: 4.75rem;
  height: 0.375rem;
  background-color: #DC010C;
  margin: 0 auto 1.875rem;
}
@media screen and (max-width: 767px) {
  .features__title--bar::before {
    margin: 0 auto 0.875rem;
  }
}

.features--corporate .features-card__text {
  max-width: none;
}

.works--corporate {
  position: relative;
  z-index: 1;
  background-color: #F5F5F5;
  padding-bottom: 7.25rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .works--corporate {
    overflow: hidden;
  }
}

.works__deco--top-left {
  position: absolute;
  top: -6.25rem;
  left: calc(50% - 46.875rem);
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .works__deco--top-left {
    display: none;
  }
}

.worries {
  position: relative;
  z-index: 3;
  padding: 8.75rem 0 9.25rem;
  background-color: #fff;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .worries {
    padding: 3.75rem 0 3.75rem;
  }
}

.worries__deco {
  position: absolute;
  top: -3.75rem;
  left: calc(50% - 46.875rem);
  width: 27.5rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .worries__deco {
    display: none;
  }
}

.worries__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .worries__inner {
    align-items: flex-start;
  }
}

.worries__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.35;
  color: #000;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .worries__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
  }
}

.worries__divider {
  width: 28.125rem;
  height: 0.25rem;
  background-color: #DC010C;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .worries__divider {
    width: 100%;
    margin-top: 0.625rem;
  }
}

.worries__list {
  margin-top: 4.125rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .worries__list {
    margin-top: 2rem;
  }
}

.worries__item {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.5555555556;
  color: #1A1A1A;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .worries__item {
    font-size: 0.875rem;
    line-height: 2;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.worries__item::before {
  content: "";
  position: absolute;
  top: 0.875rem;
  left: 0;
  width: 1.1875rem;
  height: 1.1875rem;
  border: 1px solid #1A1A1A;
  border-radius: 0.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .worries__item::before {
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 0.1875rem;
  }
}
.worries__item::after {
  content: "";
  position: absolute;
  top: 0.9375rem;
  left: 0.25rem;
  width: 1rem;
  height: 0.6875rem;
  border-left: 4px solid #DC010C;
  border-bottom: 4px solid #DC010C;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .worries__item::after {
    top: 0.5625rem;
    left: 0.1875rem;
    width: 0.75rem;
    height: 0.5rem;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }
}

.features--crossmedia {
  background-color: #fff;
  overflow: visible;
}

.features__deco-bottom {
  position: absolute;
  bottom: -21.5rem;
  right: calc(50% - 50.625rem);
  width: 35.0625rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .features__deco-bottom {
    display: none;
  }
}

.works--crossmedia {
  padding-bottom: 7.375rem;
  overflow: visible;
}

.works__deco--top-right {
  position: absolute;
  top: -3.75rem;
  right: calc(50% - 53.75rem);
  width: 27.5rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .works__deco--top-right {
    display: none;
  }
}

.works__deco--bottom-left {
  position: absolute;
  bottom: -11.875rem;
  left: calc(50% - 49.6875rem);
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .works__deco--bottom-left {
    display: none;
  }
}

.flow--crossmedia {
  background-color: #F5F5F5;
}

.case-study {
  position: relative;
  padding: 8.375rem 0 6.5rem;
  background-color: #fff;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .case-study {
    padding: 3.75rem 0 3.75rem;
  }
}

.case-study__inner {
  position: relative;
  z-index: 1;
  max-width: 67.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .case-study__inner {
    max-width: 37.5rem;
    padding: 0 16px;
  }
}

.case-study__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.35;
  color: #000;
}
@media screen and (max-width: 767px) {
  .case-study__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
  }
}

.case-study__lead {
  margin-top: 3.4375rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  text-align: center;
  letter-spacing: 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  .case-study__lead {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    text-align: left;
  }
}

.case-study__chart {
  max-width: 49.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .case-study__chart {
    max-width: 100%;
  }
}

.case-study__chart img {
  width: 100%;
  height: auto;
}

.case-study__deco {
  position: absolute;
  top: 50%;
  right: calc(50% - 58.125rem);
  width: 30.25rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .case-study__deco {
    display: none;
  }
}

.works--ownedmedia {
  padding-bottom: 6.875rem;
}

.features--rebranding {
  padding: 6.9375rem 0 11.125rem;
}

.necessity {
  position: relative;
  z-index: 1;
  padding: 8.75rem 0 12.9375rem;
  background-color: #fff;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .necessity {
    padding: 3.75rem 0 3.75rem;
    overflow: hidden;
  }
}

.necessity__inner {
  position: relative;
  z-index: 1;
  max-width: 67.25rem;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .necessity__inner {
    padding: 0 16px;
  }
}

.necessity__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  .necessity__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
  }
}

.necessity__chart {
  position: relative;
  max-width: 55.3125rem;
  margin: 5.4375rem auto 0;
  height: 26.375rem;
}
@media screen and (max-width: 767px) {
  .necessity__chart {
    height: auto;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.necessity__curve {
  position: absolute;
  left: 12.75rem;
  top: 5.25rem;
  width: 32.5625rem;
  height: 11.3125rem;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .necessity__curve {
    display: none;
  }
}

.necessity__step {
  position: absolute;
  width: 15.8125rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .necessity__step {
    position: static;
    width: 100%;
    max-width: 18.75rem;
    margin: 0 auto;
    text-align: center;
  }
  .necessity__step:not(:last-child)::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 0.75rem solid transparent;
    border-right: 0.75rem solid transparent;
    border-top: 0.875rem solid #1A1A1A;
    margin: 1.25rem auto 0;
  }
}

.necessity__step--01 {
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.necessity__step--02 {
  left: 20.375rem;
  bottom: 5.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.necessity__step--03 {
  left: 39.5rem;
  bottom: 12.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.necessity__pill {
  width: 15.8125rem;
  height: 3.9375rem;
  border-radius: 2rem;
  border: 2px solid #1A1A1A;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2E4D9F;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .necessity__pill {
    width: 100%;
    max-width: 15.8125rem;
    margin: 0 auto;
  }
}

.necessity__pill--active {
  background-color: #DC010C;
  color: #fff;
}

.necessity__goal {
  font-family: "Azo Sans", sans-serif;
  font-size: 3.4375rem;
  font-weight: 400;
  color: #DC010C;
  text-align: center;
  line-height: 1.0727272727;
  margin-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .necessity__goal {
    font-size: 2.5rem;
  }
}

.necessity__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: #000;
  letter-spacing: 0;
  text-align: left;
  margin-top: 1.625rem;
  width: 12.5rem;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .necessity__desc {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    margin-top: 1rem;
    margin-left: 2.875rem;
    width: 100%;
    max-width: 13.75rem;
  }
}

.necessity__desc--narrow {
  width: 100%;
  width: 15rem;
  margin-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .necessity__desc--narrow {
    margin-left: 3.5rem;
    width: 100%;
    max-width: 15rem;
  }
}

.necessity__deco-left {
  position: absolute;
  top: -5rem;
  left: calc(50% - 53.125rem);
  width: 27.5rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .necessity__deco-left {
    display: none;
  }
}

.necessity__deco-right {
  position: absolute;
  bottom: -27.5rem;
  right: calc(50% - 62.25rem);
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .necessity__deco-right {
    display: none;
  }
}

.process--rebranding {
  background-color: #fff;
  padding: 6.875rem 0 8.5rem;
}
.process--rebranding .process__list {
  gap: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .process--rebranding .process__list {
    gap: 2.25rem;
  }
}

.process-step__card--tall {
  height: 8.75rem;
}
@media screen and (max-width: 767px) {
  .process-step__card--tall {
    height: auto;
    min-height: 6.25rem;
    padding: 1.25rem 1rem;
  }
}

.process-step__content {
  text-align: center;
}

.process-step__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .process-step__desc {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}

.works--rebranding {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .works--rebranding {
    overflow: hidden;
  }
}

.features--recruitingsite {
  padding: 11.625rem 0;
}

.faq--recruitingsite {
  padding-top: 10.9375rem;
}

.process--white {
  background-color: #fff;
}

.process__deco-right {
  position: absolute;
  top: -10.625rem;
  right: calc(50% - 50rem);
  width: 27.5rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .process__deco-right {
    display: none;
  }
}

.works--recruitingsite {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .works--recruitingsite {
    overflow: hidden;
  }
}

.works__deco--bottom-left {
  top: auto;
  bottom: -11.75rem;
  left: calc(50% - 49.625rem);
  width: 35.0625rem;
}
@media screen and (max-width: 767px) {
  .works__deco--bottom-left {
    display: none;
  }
}

.works__deco--top-right {
  top: 5.875rem;
  right: calc(50% - 51.625rem);
  bottom: auto;
  left: auto;
  width: 27.5rem;
}
@media screen and (max-width: 767px) {
  .works__deco--top-right {
    display: none;
  }
}

.role {
  position: relative;
  z-index: 1;
  padding: 8.75rem 0 12.9375rem;
  background-color: #fff;
  overflow: visible;
  clip-path: inset(0 -100vw -100vw -100vw);
}
@media screen and (max-width: 767px) {
  .role {
    padding: 3.75rem 0 3.75rem;
    overflow: hidden;
    clip-path: none;
  }
}

.role__inner {
  position: relative;
  z-index: 1;
  max-width: 67.25rem;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .role__inner {
    padding: 0 16px;
  }
}

.role__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  .role__title {
    font-size: 1.625rem;
    line-height: 1.3461538462;
  }
}

.role__bar {
  width: 30.125rem;
  height: 0.25rem;
  background-color: #DC010C;
  margin: 0.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .role__bar {
    width: 100%;
    max-width: 18.75rem;
    margin-top: 0.875rem;
  }
}

.role__list {
  display: flex;
  justify-content: space-between;
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .role__list {
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    margin-top: 6.875rem;
  }
}

.role__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15.375rem;
  height: 15.375rem;
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
  padding: 2.625rem 1.25rem 1rem;
  text-align: center;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 767px) {
  .role__item {
    width: 13.75rem;
    height: 13.75rem;
    padding: 2.375rem 1rem 0.75rem;
  }
}

.role__icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.role__icon img {
  height: auto;
  background-color: #fff;
  display: block;
}

.role__item:first-child .role__icon {
  top: -1.25rem;
}

.role__heading {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  color: #2E4D9F;
  text-align: center;
  letter-spacing: 0;
  margin-top: 0.375rem;
  min-height: 3.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .role__heading {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.25rem;
    min-height: 3rem;
  }
}

.role__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: #000;
  letter-spacing: 0;
  text-align: left;
  margin-top: 0.5rem;
  max-width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .role__text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    max-width: 9.5rem;
  }
}

.role__deco-left {
  position: absolute;
  top: -11.0625rem;
  left: calc(50% - 53.75rem);
  width: 27.5rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .role__deco-left {
    display: none;
  }
}

.role__diamond {
  position: absolute;
  bottom: -5rem;
  left: calc(50% - 41.875rem);
  width: 9.75rem;
  height: 9.75rem;
  border: 2px solid #F5F5F5;
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .role__diamond {
    display: none;
  }
}

.role__deco-right {
  position: absolute;
  bottom: -30.625rem;
  right: calc(50% - 62.5rem);
  width: 35.0625rem;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .role__deco-right {
    width: 18.75rem;
    bottom: -9.375rem;
    right: -7.5rem;
  }
}

.solution-mv {
  background-color: #fff;
  box-shadow: 624.9375rem 0 0 0 #fff, -624.9375rem 0 0 0 #fff;
}

.solution-mv::before {
  background-color: #F5F5F5;
  top: -30.625rem;
  transform: none;
}

.solution-mv .sub-mv__deco--circle1,
.solution-mv .sub-mv__deco--circle2,
.solution-mv .sub-mv__deco--circle3 {
  display: none;
}

.solution-mv .sub-mv__deco--img {
  right: -8.75rem;
  top: -1.25rem;
  transform: none;
}

.solution-list {
  background-color: #fff;
}

.solution-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.4375rem 2rem;
}
@media screen and (max-width: 767px) {
  .solution-list__grid {
    grid-template-columns: 1fr;
    gap: 1.125rem;
    justify-items: center;
  }
}

.thanks__deco {
  position: absolute;
  right: calc(50% - 49.375rem);
  top: -1.875rem;
  width: 27.5rem;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .thanks__deco {
    display: none;
  }
}

.thanks__title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.12;
  color: #1A1A1A;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__title {
    font-size: 1.5rem;
    line-height: 1.6666666667;
    text-align: left;
  }
}

.thanks {
  position: relative;
  padding: 0 0 2.5rem;
  margin-top: -3.75rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding: 3.125rem 0 0.625rem;
  }
}

.thanks__inner {
  position: relative;
  z-index: 5;
  max-width: 49.25rem;
  margin: 0 auto;
}

.thanks__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 0.875rem;
    line-height: 2;
    color: #1A1A1A;
    text-align: left;
  }
}

.thanks__btn-wrap {
  margin-top: 3.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__btn-wrap {
    margin-top: 3.125rem;
  }
}

.thanks--contact .thanks__btn-wrap {
  margin-top: 5.5625rem;
}

.thanks__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15.3125rem;
  height: 3.5rem;
  background-color: #fff;
  border: 2px solid #2E4D9F;
  border-radius: 2.0625rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .thanks__btn {
    height: 3.875rem;
  }
}

@media (any-hover: hover) {
  .thanks__btn:hover {
    background-color: #2E4D9F;
  }
  .thanks__btn:hover .thanks__btn-text {
    color: #fff;
  }
  .thanks__btn:hover .thanks__btn-arrow {
    background-color: #fff;
  }
  .thanks__btn:hover .thanks__btn-arrow::after {
    background-image: url("../img/common/arrow-blue.svg");
  }
}
.thanks__btn-text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.4;
  color: #2E4D9F;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.thanks__btn-arrow {
  position: absolute;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: #2E4D9F;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .thanks__btn-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.thanks--download .thanks__text {
  margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .thanks--download .thanks__text {
    margin-top: 0;
  }
}

.thanks--download .thanks__deco {
  top: -5rem;
}

.thanks--privacy .thanks__deco {
  top: -12.5rem;
  width: 33.75rem;
  right: calc(50% - 51.875rem);
}

.thanks--privacy .thanks__inner {
  max-width: 52.25rem;
}
@media screen and (max-width: 767px) {
  .thanks--privacy .thanks__inner {
    max-width: 37.5rem;
  }
}

.thanks--privacy .thanks__text {
  text-align: left;
  letter-spacing: 0;
}
.thanks--privacy .thanks__text p + p {
  margin-top: 1.875em;
}

.privacy__heading {
  font-weight: 600;
}

.thanks + .cta {
  position: relative;
  z-index: 4;
}

.thanks__btn-arrow::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.375rem;
  background: url("../img/common/arrow-white.svg") center/contain no-repeat;
}

.lp-thanks-breadcrumb__list {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.lp-thanks-breadcrumb__list li {
  position: relative;
}
.lp-thanks-breadcrumb__list li::after {
  content: ">";
  display: inline-block;
  margin: 0 0.625rem;
}
.lp-thanks-breadcrumb__list li:last-child::after {
  content: none;
}

.page-saiyo-lp .thanks--contact {
  padding-bottom: 12.5rem;
}/*# sourceMappingURL=style.css.map */