@charset "UTF-8";
/*-------------------------------------------------------------
base
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Base
--------------------------------------------------------------*/
/*-------------------------------------------------------------
Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
>>> @use
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Functions
--------------------------------------------------------------*/
/*
 * Convert letter-spacing
 *
 * eg. When tracking = 0.12 on Photoshop, write f-letter-spacing(0.12).
 * @param {number} $tracking - tracking (px)
 */
/*
 * Convert pixels to line-height
 * eg. When the font size is 18 px and the line feed is 28 px write f-line-height( 18, 28 )
 *
 * @param {number} $fontSize - font-size
 * @param {number} $lineFeed - line-feed
 */
/*
 * Convert pixels to rems
 * eg. for a relational value of 12px write f-rem(12)
 * Assumes $em-base is the font-size of 16px
 *
 * @param {number} $pxval - pixel value
 */
/*--------------------------------------------------------------
>>> Mixins
--------------------------------------------------------------*/
/**
 * ブレークポイントの mixin
 * レスポンシブデザイン用のメディアクエリを生成
 *
 * @param {String} $size - ブレークポイントサイズ (md, lg)
 * @param {String} $type - ブレークポイントタイプ (min, max)
 *
 * @example
 * .container {
 *   @include media-breakpoint('lg', 'max') {
 *     padding: 1rem;
 *   }
 * }
 *
 * @example
 * // タブレット以上
 * .header {
 *   @include media-breakpoint('md') {
 *     font-size: 1.2rem;
 *   }
 * }
 */
/**
 * line-clamp の mixin
 * テキストを指定行数で省略表示
 *
 * @param {number} $lines - 表示する行数（デフォルト: 2）
 *
 * @example
 * .title {
 *   @include line_clamp(3);
 * }
 */
/*--------------------------------------------------------------
>>> @use
--------------------------------------------------------------*/
/**
 * フォントサイズの Mixin - font-size, line-height, letter-spacing を一括設定
 *
 * @param {number} $size - フォントサイズ（px単位、単位なし）
 * @param {number} $line-height - 行間の高さ（px単位、省略可）
 * @param {number} $letter-spacing - 文字間隔（em単位、省略可）
 *
 * @example
 *   @include font-size(16);             // 基本使用
 *   @include font-size(24, 30);         // 行間指定
 *   @include font-size(24, null, 0.15); // 文字間隔指定
 *
 * @example サイズ一覧
 *   @include font-size(10);  // 10px, 16px, 0.10px (SP専用、例外)
 *   @include font-size(12);  // 12px, 18px, 0.12px
 *   @include font-size(14);  // 14px, 24px, 0.14px (例外)
 *   @include font-size(16);  // 16px, 26px, 0.16px (例外)
 *   @include font-size(18);  // 18px, 28px, 0.18px (例外)
 *   @include font-size(20);  // 20px, 30px, 0.20px
 *   @include font-size(24);  // 24px, 36px, 0.24px
 *   @include font-size(28);  // 28px, 42px, 0.28px
 *   @include font-size(32);  // 32px, 48px, 0.32px
 *   @include font-size(44);  // 44px, 66px, 0.44px (PC専用)
 *
 * @note 行間は基本1.5倍、例外: 10px→16px, 14px→24px, 16px→26px, 18px→28px
 */
/*--------------------------------------------------------------
>>> @use
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Variables
--------------------------------------------------------------*/
/*
 * 目次
 *
 * button arrow
 * button arrow white
 * button black
 * link area
 * block title 28px
 * block title 24px
 * block title 20px
 * label title 28px
 * label title 24px
 * border title 24px
 * block header
 * keywords
 * post-terms
 */
/*--------------------------------------------------------------
>>> button arrow
--------------------------------------------------------------*/
@keyframes rotate-in {
  0% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
  }
  10% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 80%);
  }
  20% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 60% 100%);
  }
  30% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 20% 100%);
  }
  40% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 80%);
  }
  50% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  }
  60% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 20%);
  }
  70% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 40% 0%);
  }
  80% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 80% 0%);
  }
  90% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 20%);
  }
  100% {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 50%);
  }
}
/*--------------------------------------------------------------
>>> button arrow white
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> button black
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> link area
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block title 28px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block title 24px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block title 20px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> label title 28px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> label title 24px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> border title 24px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> border title 28px
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> block header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> keywords
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> post-terms
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: auto;
}

body {
  color: #353535;
  background-color: #ffffff;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

a {
  color: #2456a6;
  transition: all 0.3s ease;
}
a::before, a::after,
a > img {
  transition: all 0.3s ease;
}
a:hover, a:active {
  color: rgba(36, 86, 166, 0.7);
}
a:hover > img, a:active > img {
  opacity: 0.8;
}

button {
  color: #353535;
}
button > img {
  transition: all 0.3s ease;
}
button:hover > img, button:active > img {
  opacity: 0.8;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #353535;
  margin-block-end: 16px;
}

p {
  color: #353535;
  margin-block-end: 16px;
}

h1 {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
}
@media (min-width: 1025px) {
  h1 {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}

h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
}
@media (min-width: 1025px) {
  h2 {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
@media (min-width: 1025px) {
  h3 {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}

h4 {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
}
@media (min-width: 1025px) {
  h4 {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}

h5 {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
}
@media (min-width: 1025px) {
  h5 {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
  }
}

h6 {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
}
@media (min-width: 1025px) {
  h6 {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

p {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
}
@media (min-width: 1025px) {
  p {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.entry-content p.is-style-questioner,
.editor-styles-wrapper p.is-style-questioner {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
.entry-content p.is-style-questioner::before,
.editor-styles-wrapper p.is-style-questioner::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background: #353535;
  margin-inline-end: 0.6em;
  vertical-align: 0.4em;
}
@media (min-width: 1025px) {
  .entry-content p.is-style-questioner,
  .editor-styles-wrapper p.is-style-questioner {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.entry-content p.is-style-emphasis,
.editor-styles-wrapper p.is-style-emphasis {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .entry-content p.is-style-emphasis,
  .editor-styles-wrapper p.is-style-emphasis {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.entry-content .wp-block-table.is-style-event-overview,
.editor-styles-wrapper .wp-block-table.is-style-event-overview {
  overflow-x: auto;
}
.entry-content .wp-block-table.is-style-event-overview table,
.editor-styles-wrapper .wp-block-table.is-style-event-overview table {
  table-layout: fixed;
  width: 100%;
}
.entry-content .wp-block-table.is-style-event-overview tr td:nth-of-type(1),
.editor-styles-wrapper .wp-block-table.is-style-event-overview tr td:nth-of-type(1) {
  font-weight: 700;
}
.entry-content .wp-block-table.is-style-event-overview td + td,
.editor-styles-wrapper .wp-block-table.is-style-event-overview td + td {
  border-inline-start: none;
}
.entry-content .wp-block-table.is-style-event-overview th:nth-child(1),
.entry-content .wp-block-table.is-style-event-overview td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-event-overview th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-event-overview td:nth-child(1) {
  width: 200px;
}
.entry-content .wp-block-table.is-style-event-overview th:nth-child(2),
.entry-content .wp-block-table.is-style-event-overview td:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-event-overview th:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-event-overview td:nth-child(2) {
  width: 537px;
}
.entry-content .wp-block-table.is-style-timetable,
.editor-styles-wrapper .wp-block-table.is-style-timetable {
  overflow-x: auto;
}
.entry-content .wp-block-table.is-style-timetable table,
.editor-styles-wrapper .wp-block-table.is-style-timetable table {
  table-layout: fixed;
  width: 100%;
}
.entry-content .wp-block-table.is-style-timetable tr td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-timetable tr td:nth-child(1) {
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.entry-content .wp-block-table.is-style-timetable th,
.entry-content .wp-block-table.is-style-timetable td,
.editor-styles-wrapper .wp-block-table.is-style-timetable th,
.editor-styles-wrapper .wp-block-table.is-style-timetable td {
  width: 261px;
}
@media (min-width: 1025px) {
  .entry-content .wp-block-table.is-style-timetable th,
  .entry-content .wp-block-table.is-style-timetable td,
  .editor-styles-wrapper .wp-block-table.is-style-timetable th,
  .editor-styles-wrapper .wp-block-table.is-style-timetable td {
    width: 266px;
  }
}

.post-meta {
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.post-meta .post-terms {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.related-cards-swiper .related-card__content .related-card__meta .related-card__industry, .showcases-client-data .client-terms .showcases-industry, .top-main-visual-cases .featured-case__meta .featured-case__terms .showcases-industry, .post-meta .post-terms .showcases-industry {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
}
@media (min-width: 1025px) {
  .related-cards-swiper .related-card__content .related-card__meta .related-card__industry, .showcases-client-data .client-terms .showcases-industry, .top-main-visual-cases .featured-case__meta .featured-case__terms .showcases-industry, .post-meta .post-terms .showcases-industry {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.related-cards-swiper .related-card__content .related-card__meta .related-card__industry::before, .showcases-client-data .client-terms .showcases-industry::before, .top-main-visual-cases .featured-case__meta .featured-case__terms .showcases-industry::before, .post-meta .post-terms .showcases-industry::before {
  content: "";
  width: 11px;
  height: 13px;
  background-image: url("../images/showcases/icon-showcases-industry.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-1px);
}

.related-cards-swiper .related-card__content .related-card__meta .related-card__location, .showcases-client-data .client-terms .showcases-location, .top-main-visual-cases .featured-case__meta .featured-case__terms .showcases-location, .post-meta .post-terms .showcases-location {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
}
@media (min-width: 1025px) {
  .related-cards-swiper .related-card__content .related-card__meta .related-card__location, .showcases-client-data .client-terms .showcases-location, .top-main-visual-cases .featured-case__meta .featured-case__terms .showcases-location, .post-meta .post-terms .showcases-location {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.related-cards-swiper .related-card__content .related-card__meta .related-card__location::before, .showcases-client-data .client-terms .showcases-location::before, .top-main-visual-cases .featured-case__meta .featured-case__terms .showcases-location::before, .post-meta .post-terms .showcases-location::before {
  content: "";
  width: 10px;
  height: 13px;
  background-image: url("../images/showcases/icon-showcases-location.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-1px);
}

@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInSlow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-main-visual {
  padding-block: 40px;
  display: grid;
  row-gap: 24px;
  opacity: 0;
  animation: fadeInFromLeft 0.6s ease-out forwards;
}
@media (min-width: 768px) {
  .top-main-visual {
    grid-template-columns: 352px minmax(0, 665px);
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media (min-width: 1025px) {
  .top-main-visual {
    padding-block: 80px 62px;
    grid-template-columns: 517px minmax(0, 846px);
    align-items: start;
    max-width: 1440px;
    margin-inline: auto;
  }
}

.top-main-visual-header {
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .top-main-visual-header {
    padding-inline: 32px 0;
    z-index: 2;
  }
}
@media (min-width: 1025px) {
  .top-main-visual-header {
    padding-inline: 69px 0;
    margin-block-start: 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.top-main-visual-header .top-main-visual-title {
  margin-block-end: 0;
  display: grid;
  row-gap: 11.5px;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .top-main-visual-header .top-main-visual-title {
    white-space: nowrap;
    row-gap: 16px;
    font-size: 2.8125rem;
    line-height: 1.5;
    letter-spacing: 0.45px;
    line-height: 1;
    letter-spacing: 1px;
  }
}
@media (min-width: 1025px) {
  .top-main-visual-header .top-main-visual-title {
    row-gap: 24px;
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
    line-height: 1;
    letter-spacing: 1px;
  }
}
.top-main-visual-header .top-main-visual-title span {
  position: relative;
  padding: 9px 8px 8px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #353535;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media (min-width: 768px) {
  .top-main-visual-header .top-main-visual-title span {
    padding: 11px 11px 10px;
    background-size: 100% 4px;
  }
}
@media (min-width: 1025px) {
  .top-main-visual-header .top-main-visual-title span {
    padding: 17px 16px 15px;
    background-size: 100% 6px;
  }
}
.top-main-visual-header .top-main-visual-lead {
  margin-block: 24px 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .top-main-visual-header .top-main-visual-lead {
    margin-block: 40px 0;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}

.top-main-visual-cases {
  padding-inline: 24px;
  min-width: 0;
  opacity: 0;
  animation: fadeInSlow 2s ease-in 0.6s forwards;
}
@media (min-width: 768px) {
  .top-main-visual-cases {
    container-type: inline-size;
    padding-inline: 0;
  }
}
.top-main-visual-cases .swiper {
  margin-inline: -24px;
  padding: 0 24px 16px;
}
@media (min-width: 768px) {
  .top-main-visual-cases .swiper {
    margin-inline: 0;
    padding: 0 32px 80px 0;
  }
}
@media (min-width: 1025px) {
  .top-main-visual-cases .swiper {
    margin-inline: 0;
    padding: 0 76px 164px 0;
  }
}
@media (min-width: 1440px) {
  .top-main-visual-cases .swiper {
    margin-inline-end: -16px;
    padding: 0 92px 164px 0;
  }
}
.top-main-visual-cases .featured-case {
  width: 100%;
}
.top-main-visual-cases .featured-case .featured-case__image::after {
  background-color: #f5f5f5;
}
.top-main-visual-cases .featured-case:has(.term-fully-managed-service) .featured-case__image::after {
  background-color: #eaf0f9;
}
.top-main-visual-cases .featured-case:has(.term-development-service) .featured-case__image::after {
  background-color: #f2ebf3;
}
.top-main-visual-cases .featured-case:has(.term-insourcing-service) .featured-case__image::after {
  background-color: #f5f8ef;
}
.top-main-visual-cases .featured-case:has(.term-cloud-support) .featured-case__image::after {
  background-color: #eaf8f9;
}
.top-main-visual-cases .featured-case > a {
  display: block;
  text-decoration: none;
}
.top-main-visual-cases .featured-case > a:hover {
  opacity: 0.9;
}
.top-main-visual-cases .featured-case__image {
  width: calc(100% - 16px);
}
@media (min-width: 768px) {
  .top-main-visual-cases .featured-case__image {
    width: calc(100% - 32px);
  }
}
@media (min-width: 1025px) {
  .top-main-visual-cases .featured-case__image {
    width: calc(100% - 40px);
  }
}
.top-main-visual-cases .featured-case__image img {
  position: relative;
  width: 100%;
  aspect-ratio: 311/222;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 1025px) {
  .top-main-visual-cases .featured-case__image img {
    border-radius: 24px;
  }
}
.top-main-visual-cases .featured-case__image::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: calc(100% - 16px);
  aspect-ratio: 311/222;
  border-radius: 16px;
  z-index: -1;
}
@media (min-width: 768px) {
  .top-main-visual-cases .featured-case__image::after {
    top: 32px;
    left: 32px;
    width: calc(100% - 32px);
  }
}
@media (min-width: 1025px) {
  .top-main-visual-cases .featured-case__image::after {
    top: 40px;
    left: 40px;
    width: calc(100% - 40px);
    border-radius: 24px;
  }
}
.top-main-visual-cases .featured-case__content {
  margin-block-start: 32px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  background: linear-gradient(97deg, rgba(255, 255, 255, 0.8) 1.47%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .top-main-visual-cases .featured-case__content {
    margin-block-start: 0;
    padding: 24px;
    border-radius: 24px 0 0 24px;
    position: absolute;
    bottom: -62px;
    right: -32px;
    width: 80%;
    max-width: 400px;
  }
  @container (width <=490px) {
    .top-main-visual-cases .featured-case__content {
      padding: 16px;
      border-radius: 16px;
    }
  }
}
@media (min-width: 1025px) {
  .top-main-visual-cases .featured-case__content {
    padding: 40px;
    bottom: -132px;
    right: -76px;
    width: 80%;
    max-width: 560px;
  }
  @container (width <686px) {
    .top-main-visual-cases .featured-case__content {
      padding: 24px;
    }
  }
}
@media (min-width: 1440px) {
  .top-main-visual-cases .featured-case__content {
    border-radius: 24px;
  }
}
.top-main-visual-cases .featured-case__category {
  margin-block-end: 8px;
  padding: 4px 8px;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 700;
  border-radius: 4px;
}
@media (min-width: 1025px) {
  .top-main-visual-cases .featured-case__category {
    margin-block-end: 14px;
  }
}
.top-main-visual-cases .featured-case__title {
  margin-block-end: 0;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  color: #353535;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-main-visual-cases .featured-case__meta {
  margin-block-start: 8px;
}
@media (min-width: 1025px) {
  .top-main-visual-cases .featured-case__meta {
    margin-block-start: 14px;
  }
}
.top-main-visual-cases .featured-case__meta .featured-case__terms {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  justify-content: end;
}
.top-main-visual-cases .featured-cases-controls {
  position: relative;
  display: flex;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (min-width: 768px) {
  .top-main-visual-cases .featured-cases-controls {
    padding-inline-end: 32px;
    justify-content: end;
  }
}
@media (min-width: 1025px) {
  .top-main-visual-cases .featured-cases-controls {
    padding-inline-end: 40px;
  }
}
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-prev,
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-next,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle.active {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #353535;
  border: 2px solid #353535;
}
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-prev:hover,
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-next:hover,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle:hover,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle.active:hover {
  border-color: transparent;
  transition: border-color 0.3s ease;
}
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-prev:hover::before,
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-next:hover::before,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle:hover::before,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle.active:hover::before {
  opacity: 1;
  transform: scale(1);
}
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-prev::before,
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-next::before,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle::before,
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle.active::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-prev::after,
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-next::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #ffffff;
}
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-next::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right-bold.svg");
          mask-image: url("../images/common/arrow-chevron-right-bold.svg");
  transform: translateX(1px);
}
.top-main-visual-cases .featured-cases-controls .cases-swiper-button-prev::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right-bold.svg");
          mask-image: url("../images/common/arrow-chevron-right-bold.svg");
  transform: scaleX(-1) translateX(1px);
}
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  -webkit-mask-image: url("../images/common/toggle-play.svg");
          mask-image: url("../images/common/toggle-play.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #ffffff;
  transform: translateX(2px);
}
.top-main-visual-cases .featured-cases-controls .cases-autoplay-toggle.active::after {
  -webkit-mask-image: url("../images/common/toggle-pause.svg");
          mask-image: url("../images/common/toggle-pause.svg");
  -webkit-mask-size: 13px 17px;
          mask-size: 13px 17px;
  transform: translateX(0);
}

.top-latest-news {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8) 1.09%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
}

.top-latest-news-inner {
  padding: 80px 24px;
  display: grid;
}
@media (min-width: 768px) {
  .top-latest-news-inner {
    padding: 80px 32px;
  }
}
@media (min-width: 1025px) {
  .top-latest-news-inner {
    padding: 120px 32px;
    margin-inline: auto;
    max-width: 1264px;
    grid-template-columns: 3.31fr 7.86fr;
    align-items: flex-start;
  }
}

.top-latest-news-header {
  display: grid;
  row-gap: 8px;
}
.top-latest-news-header .top-latest-news-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .top-latest-news-header .top-latest-news-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .top-latest-news-header .top-latest-news-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.top-latest-news-header .top-latest-news-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .top-latest-news-header .top-latest-news-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .top-latest-news-header .top-latest-news-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}

.top-latest-news-items {
  margin-block-start: 24px;
}
@media (min-width: 768px) {
  .top-latest-news-items {
    margin-block-start: 40px;
  }
}
.top-latest-news-items .news-item {
  list-style: none;
}
.top-latest-news-items .news-item > a {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-decoration: none;
  position: relative;
  border-block-end: 1px solid #d7d7d7;
  color: #353535;
}
.top-latest-news-items .news-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  transition: width 0.4s;
}
.top-latest-news-items .news-item > a:hover::after {
  width: 100%;
}
@media (min-width: 768px) {
  .top-latest-news-items .news-item > a {
    padding: 24px;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
@media (min-width: 1025px) {
  .top-latest-news-items .news-item > a {
    padding: 32px 40px;
  }
}
.top-latest-news-items .news-item > a:hover {
  color: rgba(53, 53, 53, 0.8);
}
.top-latest-news-items .news-item > a:hover .news-item__category {
  background-color: rgba(53, 53, 53, 0.8);
}
.top-latest-news-items .news-item > a .news-item__date {
  width: 71px;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .top-latest-news-items .news-item > a .news-item__date {
    width: 79px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
    line-height: 1.55;
  }
}
.top-latest-news-items .news-item > a .news-item__category {
  padding: 4px 16px;
  width: 114px;
  flex-shrink: 0;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.1px;
  font-weight: 700;
  color: #ffffff;
  background-color: #353535;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .top-latest-news-items .news-item > a .news-item__category {
    width: 130px;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.12px;
  }
}
.top-latest-news-items .news-item > a .news-item__title {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .top-latest-news-items .news-item > a .news-item__title {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
@media (min-width: 1025px) {
  .top-latest-news-items .news-item > a .news-item__title {
    margin-inline-start: 8px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
  }
}

.top-latest-news-link {
  margin-block-start: 32px;
}
@media (min-width: 768px) {
  .top-latest-news-link {
    margin-block-start: 40px;
  }
}
@media (min-width: 1025px) {
  .top-latest-news-link {
    margin-block-start: 64px;
    grid-column: span 2;
  }
}
.top-latest-news-link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .top-latest-news-link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.top-latest-news-link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .top-latest-news-link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.top-latest-news-link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .top-latest-news-link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.top-latest-news-link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .top-latest-news-link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.top-latest-news-link > a:hover {
  color: #6e6e6e;
}
.top-latest-news-link > a:hover .arrow-icon {
  border: 1px solid white;
}
.top-latest-news-link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}

.top-services {
  margin-block-start: 64px;
}
.top-services .service-item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .top-services .service-item {
    display: grid;
    grid-template-columns: 420px 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1025px) {
  .top-services .service-item {
    grid-template-columns: 560px 1fr;
  }
}
.top-services .service-item + .service-item {
  margin-block-start: 64px;
}
@media (min-width: 1025px) {
  .top-services .service-item + .service-item {
    margin-block-start: 80px;
  }
}
.top-services .service-item .service-item__media {
  margin-block-end: 24px;
  order: -1;
}
@media (min-width: 768px) {
  .top-services .service-item .service-item__media {
    margin-block-end: 0;
    order: 0;
  }
}
.top-services .service-item .service-item__media .service-item__image {
  margin-inline: auto;
}
.top-services .service-item .service-item__media .service-item__image img {
  width: 100%;
}
.top-services .service-item .service-item__media .service-item__image--sp {
  display: block;
  max-width: 327px;
}
@media (min-width: 768px) {
  .top-services .service-item .service-item__media .service-item__image--sp {
    display: none;
  }
}
.top-services .service-item .service-item__media .service-item__image--pc {
  display: none;
}
@media (min-width: 768px) {
  .top-services .service-item .service-item__media .service-item__image--pc {
    display: block;
    max-width: 389px;
    margin-inline: auto 0;
  }
}
@media (min-width: 1025px) {
  .top-services .service-item .service-item__media .service-item__image--pc {
    max-width: 526px;
  }
}
@media (min-width: 768px) {
  .top-services .service-item .service-item__content {
    margin-inline-start: 44px;
  }
}
.top-services .service-item .service-item__content .service-item__label {
  padding: 4px 8px;
  margin-block-end: 16px;
  display: inline-block;
  width: 120px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 4px;
  text-align: center;
}
@media (min-width: 1025px) {
  .top-services .service-item .service-item__content .service-item__label {
    margin-block-end: 24px;
  }
}
.top-services .service-item .service-item__content .service-item__header {
  display: grid;
  row-gap: 8px;
}
.top-services .service-item .service-item__content .service-item__header .service-item__title {
  margin-block-end: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
.top-services .service-item .service-item__content .service-item__header .service-item__lead {
  margin-block-end: 0;
  order: -1;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .top-services .service-item .service-item__content .service-item__header .service-item__lead {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.top-services .service-item .service-item__content .service-item__description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .top-services .service-item .service-item__content .service-item__description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.top-services .service-item .service-item__button {
  margin-block-start: 26px;
}
@media (min-width: 768px) {
  .top-services .service-item .service-item__button {
    margin-block-start: 32px;
    grid-column: 1/-1;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .top-services .service-item .service-item__button {
    margin-block-start: 80px;
  }
}
.top-services .service-item .service-item__button > a {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 4px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .top-services .service-item .service-item__button > a {
    width: 327px;
    margin-inline: auto;
  }
}
@media (min-width: 1025px) {
  .top-services .service-item .service-item__button > a {
    width: 400px;
  }
}
.top-services .service-color-managed .service-item__button > a,
.top-services .service-color-development .service-item__button > a,
.top-services .service-color-insourcing .service-item__button > a,
.top-services .service-color-yorozu .service-item__button > a {
  position: relative;
  z-index: 0;
}
.top-services .service-color-managed .service-item__button > a::before,
.top-services .service-color-development .service-item__button > a::before,
.top-services .service-color-insourcing .service-item__button > a::before,
.top-services .service-color-yorozu .service-item__button > a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.top-services .service-color-managed .service-item__button > a::after,
.top-services .service-color-development .service-item__button > a::after,
.top-services .service-color-insourcing .service-item__button > a::after,
.top-services .service-color-yorozu .service-item__button > a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
}
.top-services .service-color-managed .service-item__button > a:hover,
.top-services .service-color-development .service-item__button > a:hover,
.top-services .service-color-insourcing .service-item__button > a:hover,
.top-services .service-color-yorozu .service-item__button > a:hover {
  color: #ffffff;
}
.top-services .service-color-managed .service-item__button > a:hover::before,
.top-services .service-color-development .service-item__button > a:hover::before,
.top-services .service-color-insourcing .service-item__button > a:hover::before,
.top-services .service-color-yorozu .service-item__button > a:hover::before {
  opacity: 0;
}
.top-services .service-color-managed .service-item__label {
  background-color: #2456a6;
}
.top-services .service-color-managed .service-item__button > a::before {
  background-image: linear-gradient(98deg, #2fbacc 5.94%, #2456a6 59.36%);
}
.top-services .service-color-managed .service-item__button > a::after {
  background-image: linear-gradient(98deg, rgba(47, 186, 204, 0.7) 5.94%, rgba(36, 86, 166, 0.7) 59.36%);
}
.top-services .service-color-development .service-item__label {
  background-color: #8d2489;
}
.top-services .service-color-development .service-item__button > a::before {
  background-image: linear-gradient(90deg, #c349be 20%, #8d2489 50%);
}
.top-services .service-color-development .service-item__button > a::after {
  background-image: linear-gradient(90deg, rgba(195, 73, 190, 0.7) 20%, rgba(141, 36, 137, 0.7) 50%);
}
.top-services .service-color-insourcing .service-item__label {
  background-color: #93c523;
}
.top-services .service-color-insourcing .service-item__button > a::before {
  background-image: linear-gradient(97deg, #c9ed77 7.79%, #93c523 42.37%);
}
.top-services .service-color-insourcing .service-item__button > a::after {
  background-image: linear-gradient(97deg, rgba(201, 237, 119, 0.7) 7.79%, rgba(147, 197, 35, 0.7) 42.37%);
}
.top-services .service-color-yorozu .service-item__label {
  background-color: #2fbacc;
}
.top-services .service-color-yorozu .service-item__button > a::before {
  background-image: linear-gradient(87deg, #72ebfb 10.79%, #43abf1 31.96%, #43abf1 53.12%);
}
.top-services .service-color-yorozu .service-item__button > a::after {
  background-image: linear-gradient(87deg, rgba(114, 235, 251, 0.7) 10.79%, rgba(67, 171, 241, 0.7) 31.96%, rgba(67, 171, 241, 0.7) 53.12%);
}
.top-services .related-cards-swiper {
  margin-block-start: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .top-services .related-cards-swiper {
    margin-inline-start: -44px;
    width: calc(100% + 44px);
  }
}
@media (min-width: 1025px) {
  .top-services .related-cards-swiper {
    margin-block-start: 34px;
  }
}

.archive-area {
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .archive-area {
    padding: 104px 32px;
  }
}
@media (min-width: 1025px) {
  .archive-area {
    padding: 120px 32px;
    max-width: 1264px;
    margin-inline: auto;
  }
}

.archive-items {
  display: grid;
  row-gap: 64px;
}
@media (min-width: 768px) {
  .archive-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1025px) {
  .archive-items {
    gap: 24px;
  }
}

#pagination {
  margin-block-start: 64px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 6px;
       column-gap: 6px;
  align-items: center;
  justify-content: center;
}
.pagination .pagination-numbers,
.pagination .nav-links {
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.pagination .pagination-number,
.pagination .page-numbers:not(.next):not(.prev) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #353535;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .pagination .pagination-number,
  .pagination .page-numbers:not(.next):not(.prev) {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.pagination .pagination-number.dots,
.pagination .page-numbers:not(.next):not(.prev).dots {
  font-family: serif;
  pointer-events: none;
}
.pagination .pagination-number.current,
.pagination .page-numbers:not(.next):not(.prev).current {
  color: white;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #4d4d4d;
  cursor: default;
  pointer-events: none;
}
.pagination .pagination-number:hover,
.pagination .page-numbers:not(.next):not(.prev):hover {
  background-image: url("../images/common/heptagon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pagination .prev.pagination-nav,
.pagination .next.pagination-nav,
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
  font-size: 0;
}
.pagination .prev.pagination-nav.disabled,
.pagination .next.pagination-nav.disabled,
.pagination .prev.page-numbers.disabled,
.pagination .next.page-numbers.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .prev.pagination-nav::before,
.pagination .next.pagination-nav::before,
.pagination .prev.page-numbers::before,
.pagination .next.page-numbers::before {
  display: inline-block;
  content: "";
  width: 32px;
  height: 32px;
  -webkit-mask-size: 13px 13px;
          mask-size: 13px 13px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #353535;
}
@media (min-width: 1025px) {
  .pagination .prev.pagination-nav::before,
  .pagination .next.pagination-nav::before,
  .pagination .prev.page-numbers::before,
  .pagination .next.page-numbers::before {
    width: 40px;
    height: 40px;
    -webkit-mask-size: 16px 16px;
            mask-size: 16px 16px;
  }
}
.pagination .prev.pagination-nav::before,
.pagination .prev.page-numbers::before {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: scaleX(-1);
}
.pagination .prev.pagination-nav:hover::before,
.pagination .prev.page-numbers:hover::before {
  background-color: #919191;
}
.pagination .next.pagination-nav::before,
.pagination .next.page-numbers::before {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
}
.pagination .next.pagination-nav:hover::before,
.pagination .next.page-numbers:hover::before {
  background-color: #919191;
}

.service-related-posts-block .related-posts-inner .related-item, .top-showcases .top-showcases-items .showcase-item, .archive-item {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
.service-related-posts-block .related-posts-inner .related-item::before, .top-showcases .top-showcases-items .showcase-item::before, .archive-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 19px;
  background-image: linear-gradient(90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d97 71%, #e71f19 86%, #f08619 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-related-posts-block .related-posts-inner .related-item:hover::before, .top-showcases .top-showcases-items .showcase-item:hover::before, .archive-item:hover::before {
  opacity: 1;
}
.service-related-posts-block .related-posts-inner .related-item > a, .top-showcases .top-showcases-items .showcase-item > a, .archive-item > a {
  display: block;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}
.service-related-posts-block .related-posts-inner .related-item .post-wrapper, .top-showcases .top-showcases-items .showcase-item .post-wrapper, .archive-item .post-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-related-posts-block .related-posts-inner .related-item .post-thumbnail-wrapper, .top-showcases .top-showcases-items .showcase-item .post-thumbnail-wrapper, .archive-item .post-thumbnail-wrapper {
  position: relative;
}
.service-related-posts-block .related-posts-inner .related-item .post-thumbnail-wrapper .post-thumbnail img, .top-showcases .top-showcases-items .showcase-item .post-thumbnail-wrapper .post-thumbnail img, .archive-item .post-thumbnail-wrapper .post-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-related-posts-block .related-posts-inner .related-item .post-thumbnail-wrapper .post-terms, .top-showcases .top-showcases-items .showcase-item .post-thumbnail-wrapper .post-terms, .archive-item .post-thumbnail-wrapper .post-terms {
  position: absolute;
  bottom: 0;
  left: 0;
}
.service-related-posts-block .related-posts-inner .related-item .post-thumbnail-wrapper .post-terms .post-term, .top-showcases .top-showcases-items .showcase-item .post-thumbnail-wrapper .post-terms .post-term, .archive-item .post-thumbnail-wrapper .post-terms .post-term {
  display: inline-block;
  padding: 8px 16px;
  border-start-end-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
.service-related-posts-block .related-posts-inner .related-item .post-content, .top-showcases .top-showcases-items .showcase-item .post-content, .archive-item .post-content {
  padding: 16px;
  display: flex;
  row-gap: 16px;
  flex-direction: column;
  flex: 1;
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-item .post-content, .top-showcases .top-showcases-items .showcase-item .post-content, .archive-item .post-content {
    padding: 24px;
  }
}
.service-related-posts-block .related-posts-inner .related-item .post-content .post-title, .top-showcases .top-showcases-items .showcase-item .post-content .post-title, .archive-item .post-content .post-title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-item .post-content .post-title, .top-showcases .top-showcases-items .showcase-item .post-content .post-title, .archive-item .post-content .post-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-related-posts-block .related-posts-inner .related-item .post-content .post-meta, .top-showcases .top-showcases-items .showcase-item .post-content .post-meta, .archive-item .post-content .post-meta {
  margin-block-start: auto;
  display: flex;
}
.service-related-posts-block .related-posts-inner .related-item .post-content .post-meta .post-date, .top-showcases .top-showcases-items .showcase-item .post-content .post-meta .post-date, .archive-item .post-content .post-meta .post-date {
  margin-inline-start: auto;
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #353535;
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-item .post-content .post-meta .post-date, .top-showcases .top-showcases-items .showcase-item .post-content .post-meta .post-date, .archive-item .post-content .post-meta .post-date {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.top-showcases {
  margin-block-start: 64px;
}
@media (min-width: 1025px) {
  .top-showcases {
    margin-block-start: 80px;
  }
}
.top-showcases .top-showcases-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
  align-items: baseline;
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.top-showcases .top-showcases-title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-title::before {
    transform: translateY(1px);
  }
}
.top-showcases .top-showcases-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.top-showcases .top-showcases-items {
  width: 100vw;
  margin-inline-start: -24px;
  padding: 24px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: 24px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.top-showcases .top-showcases-items::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .top-showcases .top-showcases-items {
    margin-inline-start: -32px;
    padding: 32px;
    scroll-padding-inline-start: 32px;
  }
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-items {
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-inline-start: calc(-50vw + 50%);
    padding-block: 40px;
    padding-inline: max(40px, (100vw - 1280px) / 2 + 40px);
    scroll-padding-inline-start: max(40px, (100vw - 1280px) / 2 + 40px);
  }
}
.top-showcases .top-showcases-items .showcase-item {
  flex-shrink: 0;
  width: 327px;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .top-showcases .top-showcases-items .showcase-item {
    width: 309px;
  }
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-items .showcase-item {
    width: 384px;
  }
}
.top-showcases .top-showcases-items .showcase-item .post-content .post-meta .post-date,
.top-showcases .top-showcases-items .showcase-item .showcases-industry,
.top-showcases .top-showcases-items .showcase-item .showcases-location {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
}
@media (min-width: 768px) {
  .top-showcases .top-showcases-items .showcase-item .post-content .post-meta .post-date,
  .top-showcases .top-showcases-items .showcase-item .showcases-industry,
  .top-showcases .top-showcases-items .showcase-item .showcases-location {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
}
.top-showcases .top-showcases-items .showcase-item:hover::before {
  z-index: 0;
}
.top-showcases .top-showcases-items .showcase-item > a {
  position: relative;
}
.top-showcases .top-showcases-scrollbar {
  height: 8px;
  background: #d7d7d7;
  width: calc(100% + 24px);
  position: relative;
}
@media (min-width: 768px) {
  .top-showcases .top-showcases-scrollbar {
    width: calc(100% + 32px);
    max-width: 1200px;
  }
}
.top-showcases .top-showcases-scrollbar .top-showcases-scrollbar-thumb {
  height: 100%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  width: 30%;
  position: absolute;
  left: 0;
}
.top-showcases .top-showcases-controls {
  margin-block-start: 24px;
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 768px) {
  .top-showcases .top-showcases-controls {
    margin-block-start: 32px;
  }
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-controls {
    margin-block-start: 40px;
  }
}
.top-showcases .top-showcases-controls .top-showcases-button-prev,
.top-showcases .top-showcases-controls .top-showcases-button-next {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 3px solid #f5f5f5;
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-controls .top-showcases-button-prev,
  .top-showcases .top-showcases-controls .top-showcases-button-next {
    width: 60px;
    height: 60px;
    border: 4.5px solid #f5f5f5;
  }
}
.top-showcases .top-showcases-controls .top-showcases-button-prev:hover,
.top-showcases .top-showcases-controls .top-showcases-button-next:hover {
  border-color: transparent;
  transition: border-color 0.3s ease;
}
.top-showcases .top-showcases-controls .top-showcases-button-prev:hover::before,
.top-showcases .top-showcases-controls .top-showcases-button-next:hover::before {
  opacity: 1;
  transform: scale(1);
}
.top-showcases .top-showcases-controls .top-showcases-button-prev::before,
.top-showcases .top-showcases-controls .top-showcases-button-next::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-controls .top-showcases-button-prev::before,
  .top-showcases .top-showcases-controls .top-showcases-button-next::before {
    inset: -4px;
    padding: 4px;
  }
}
.top-showcases .top-showcases-controls .top-showcases-button-prev::after,
.top-showcases .top-showcases-controls .top-showcases-button-next::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #353535;
}
@media (min-width: 1025px) {
  .top-showcases .top-showcases-controls .top-showcases-button-prev::after,
  .top-showcases .top-showcases-controls .top-showcases-button-next::after {
    width: 24px;
    height: 24px;
  }
}
.top-showcases .top-showcases-controls .top-showcases-button-next::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: translateX(1px);
}
.top-showcases .top-showcases-controls .top-showcases-button-prev::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: scaleX(-1) translateX(1px);
}

.top-inline-cta {
  position: relative;
  overflow: visible;
  background-color: #ffffff;
}
.top-inline-cta::before, .top-inline-cta::after {
  content: "";
  position: absolute;
  width: 142px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .top-inline-cta::before, .top-inline-cta::after {
    width: 282px;
  }
}
@media (min-width: 1025px) {
  .top-inline-cta::before, .top-inline-cta::after {
    width: 400px;
  }
}
.top-inline-cta::before {
  top: 0;
  right: -2px;
  background-image: url("../images/front-page/inline-cta-decoration-right.svg");
}
.top-inline-cta::after {
  bottom: 0;
  left: -2px;
  background-image: url("../images/front-page/inline-cta-decoration-left.svg");
}
.top-inline-cta .top-inline-cta-inner {
  padding: 64px 24px 386px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-inline-cta .top-inline-cta-inner {
    padding: 64px 56px;
  }
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-inner {
    padding: 80px 56px;
    max-width: 1312px;
    margin-inline: auto;
  }
}
.top-inline-cta .top-inline-cta-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.top-inline-cta .top-inline-cta-title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(1px);
}
.top-inline-cta .top-inline-cta-items {
  margin-block-start: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .top-inline-cta .top-inline-cta-items {
    margin-block-start: 32px;
    flex-direction: row;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-items {
    margin-block-start: 40px;
  }
}
.top-inline-cta .top-inline-cta-items .inline-cta-item {
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  background: linear-gradient(97deg, rgba(255, 255, 255, 0.8) 1.47%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
@media (min-width: 768px) {
  .top-inline-cta .top-inline-cta-items .inline-cta-item {
    width: 327px;
  }
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-items .inline-cta-item {
    width: 384px;
    padding: 40px;
  }
}
.top-inline-cta .top-inline-cta-items .inline-cta-item__title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-items .inline-cta-item__title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.top-inline-cta .top-inline-cta-items .inline-cta-item__description {
  margin-block: 16px 24px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-items .inline-cta-item__description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.top-inline-cta .top-inline-cta-items .inline-cta-item__link {
  margin-block-start: auto;
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-items .inline-cta-item__link > a {
    padding: 15px;
  }
}
.top-inline-cta .top-inline-cta-decoration {
  content: "";
  position: absolute;
  bottom: 0;
  right: 24px;
  width: 327px;
  aspect-ratio: 327/361;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  background-image: url("../images/front-page/inline-cta-people.svg");
  pointer-events: none;
}
@media (min-width: 768px) {
  .top-inline-cta .top-inline-cta-decoration {
    bottom: -280px;
    right: 32px;
    width: 48.8%;
    max-width: 500px;
  }
}
@media (min-width: 1025px) {
  .top-inline-cta .top-inline-cta-decoration {
    bottom: -425px;
    right: 56px;
    max-width: 700px;
  }
}

.top-work-certifications-block {
  margin-block-start: 40px;
}
@media (min-width: 768px) {
  .top-work-certifications-block {
    margin-block-start: 64px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(245, 245, 245, 0.5);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    box-shadow: 4px 4px 8px 0 rgba(77, 77, 77, 0.25);
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block {
    margin-block-start: 80px;
    padding: 80px;
  }
}
.top-work-certifications-block .top-badge {
  padding: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  border-radius: 8px;
  border: 3px solid #f5f5f5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-badge {
    padding: 0;
    flex-direction: row;
    -moz-column-gap: 80px;
         column-gap: 80px;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
  }
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-badge .top-badge-content {
    width: 442px;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-badge .top-badge-content {
    width: 532px;
  }
}
.top-work-certifications-block .top-badge .top-badge-content .top-badge-title {
  margin-block-end: 0;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-badge .top-badge-content .top-badge-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
    text-align: left;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-badge .top-badge-content .top-badge-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.top-work-certifications-block .top-badge .top-badge-content .top-badge-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-badge .top-badge-content .top-badge-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.top-work-certifications-block .top-badge .top-badge-image {
  order: -1;
  margin-inline: auto;
  width: 160px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-badge .top-badge-image {
    order: 0;
    margin-inline: 0;
    width: 200px;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-badge .top-badge-image {
    width: 293px;
  }
}
.top-work-certifications-block .top-badge .top-badge-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-work-certifications-block .top-certifications {
  margin-block-start: 64px;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications {
    margin-block-start: 42px;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications {
    margin-block-start: 80px;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 327/218;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications .top-certifications-image {
    aspect-ratio: 880/299;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications .top-certifications-image--sp {
    display: none;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-image--pc {
  display: none;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications .top-certifications-image--pc {
    display: block;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-content {
  margin-block-start: 64px;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications .top-certifications-content {
    margin-block-start: 48px;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications .top-certifications-content {
    margin-block-start: 80px;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-title::before {
    transform: translateY(1px);
  }
}
.top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-description {
    margin-block: 8px 0;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-description {
    margin-block: 8px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-list {
  margin-block-start: 32px;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-list {
    margin-block-start: 40px;
    gap: 24px;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-item {
  padding: 16px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  list-style: none;
  border-radius: 8px;
  border: 3px solid #f5f5f5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
}
@media (min-width: 768px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-item {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
    background: #ffffff;
  }
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-item {
    padding: 24px 16px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
    background: #ffffff;
  }
}
.top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-item::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("../images/blocks/top-work-certifications/icon-check-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(4px);
}
@media (min-width: 1025px) {
  .top-work-certifications-block .top-certifications .top-certifications-content .top-certifications-item::before {
    transform: translateY(3px);
  }
}

.top-work-achievements-block {
  margin-block-start: 64px;
}
@media (min-width: 768px) {
  .top-work-achievements-block {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    border: 1px solid rgba(245, 245, 245, 0.5);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    box-shadow: 4px 4px 8px 0 rgba(77, 77, 77, 0.25);
  }
}
@media (min-width: 1025px) {
  .top-work-achievements-block {
    padding: 80px;
    border-radius: 24px;
  }
}
.top-work-achievements-block .top-achievements-content {
  display: grid;
  row-gap: 32px;
}
@media (min-width: 1025px) {
  .top-work-achievements-block .top-achievements-content {
    row-gap: 40px;
  }
}
.top-work-achievements-block .top-achievements-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .top-work-achievements-block .top-achievements-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.top-work-achievements-block .top-achievements-title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .top-work-achievements-block .top-achievements-title::before {
    transform: translateY(1px);
  }
}
.top-work-achievements-block .top-achievements-list {
  display: grid;
  row-gap: 16px;
}
@media (min-width: 1025px) {
  .top-work-achievements-block .top-achievements-list {
    row-gap: 24px;
  }
}
.top-work-achievements-block .top-achievements-item {
  padding: 16px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  list-style: none;
  border-radius: 8px;
  border: 3px solid #f5f5f5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
}
@media (min-width: 768px) {
  .top-work-achievements-block .top-achievements-item {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
    background: #ffffff;
  }
}
@media (min-width: 1025px) {
  .top-work-achievements-block .top-achievements-item {
    padding: 24px 16px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
    background: #ffffff;
  }
}
.top-work-achievements-block .top-achievements-item::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("../images/blocks/top-work-achievements/icon-check-red.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(4px);
}
@media (min-width: 1025px) {
  .top-work-achievements-block .top-achievements-item::before {
    transform: translateY(3px);
  }
}
.top-work-achievements-block .top-achievements-card-wrapper {
  margin-block-start: 32px;
  margin-inline: auto;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 327px;
  aspect-ratio: 1/1;
  background-color: #2fbacc;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .top-work-achievements-block .top-achievements-card-wrapper {
    margin-block-start: 0;
    max-width: none;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 768px) {
  .top-work-achievements-block .top-achievements-card {
    margin-block-start: 0;
    margin-inline: 0;
  }
}
@media (min-width: 1025px) {
  .top-work-achievements-block .top-achievements-card {
    border-radius: 24px;
  }
}
@media (min-width: 768px) {
  .top-work-achievements-block .top-achievements-card {
    transform: scale(1);
  }
}
@media (min-width: 900px) {
  .top-work-achievements-block .top-achievements-card {
    transform: scale(1.15);
  }
}
@media (min-width: 1000px) {
  .top-work-achievements-block .top-achievements-card {
    transform: scale(1.3);
  }
}
@media (min-width: 1200px) {
  .top-work-achievements-block .top-achievements-card {
    transform: scale(1.5);
  }
}
.top-work-achievements-block .top-achievements-card .card-title {
  margin-block-end: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.top-work-achievements-block .top-achievements-card .card-stats {
  position: relative;
  margin: 54px auto 58px auto;
  display: flex;
  justify-content: center;
  -moz-column-gap: 42px;
       column-gap: 42px;
  width: 218px;
}
.top-work-achievements-block .top-achievements-card .card-stats::before, .top-work-achievements-block .top-achievements-card .card-stats::after {
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  background-image: url("../images/blocks/top-work-achievements/card-stats-cloud.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 1;
}
.top-work-achievements-block .top-achievements-card .card-stats::before {
  top: -45px;
  left: -32px;
  width: 58px;
}
.top-work-achievements-block .top-achievements-card .card-stats::after {
  top: 26px;
  right: -48px;
  width: 79px;
}
.top-work-achievements-block .top-achievements-card .card-stats .stat-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-work-achievements-block .top-achievements-card .card-stats .stat-number::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  aspect-ratio: 1/1;
  background-image: url("../images/blocks/top-work-achievements/card-stats-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
.top-work-achievements-block .top-achievements-card .card-stats .stat-number .stat-label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  line-height: 1;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #4d4d4d;
  text-shadow: 2px 2px 1px rgba(77, 77, 77, 0.3);
}
.top-work-achievements-block .top-achievements-card .card-stats .stat-number .stat-value {
  position: relative;
  z-index: 1;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #4d4d4d;
  text-shadow: 2px 2px 1px rgba(77, 77, 77, 0.3);
}
.top-work-achievements-block .top-achievements-card .card-summary {
  margin-block-end: 0;
  margin-inline: auto;
  padding: 3px 11px 4px;
  max-width: 274px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  background-color: #ffffff;
}
.top-work-achievements-block .top-achievements-card .card-summary span {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-family: "Oswald", sans-serif;
  transform: translateY(1px);
}

.top-work-supports-block {
  margin-block-start: 64px;
}
@media (min-width: 768px) {
  .top-work-supports-block {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(245, 245, 245, 0.5);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    box-shadow: 4px 4px 8px 0 rgba(77, 77, 77, 0.25);
  }
}
@media (min-width: 1025px) {
  .top-work-supports-block {
    margin-block-start: 80px;
    padding: 80px;
    border-radius: 24px;
  }
}
.top-work-supports-block .top-supports-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .top-work-supports-block .top-supports-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.top-work-supports-block .top-supports-title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .top-work-supports-block .top-supports-title::before {
    transform: translateY(1px);
  }
}
.top-work-supports-block .top-supports-list {
  margin-block-start: 32px;
  display: grid;
  row-gap: 16px;
  list-style: none;
}
@media (min-width: 768px) {
  .top-work-supports-block .top-supports-list {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .top-work-supports-block .top-supports-list {
    margin-block-start: 40px;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.top-work-supports-block .support-item {
  position: relative;
  padding: 32px 24px;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) -0.1%, rgba(255, 255, 255, 0.5) 99.9%);
}
@media (min-width: 768px) {
  .top-work-supports-block .support-item {
    background: #ffffff;
  }
}
.top-work-supports-block .support-item__number {
  position: absolute;
  top: 7px;
  left: 19px;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  line-height: 1.65;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #f5f5f5;
}
.top-work-supports-block .support-item__image {
  margin-block-end: 24px;
  margin-inline: auto;
  width: 160px;
  aspect-ratio: 1/1;
}
@media (min-width: 1025px) {
  .top-work-supports-block .support-item__image {
    margin-block-end: 32px;
    width: 170px;
  }
}
.top-work-supports-block .support-item__image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-work-supports-block .support-item__title {
  margin-block-end: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .top-work-supports-block .support-item__title {
    min-height: 3.1em;
  }
}
@media (min-width: 1025px) {
  .top-work-supports-block .support-item__title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.top-work-supports-block .support-item__description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .top-work-supports-block .support-item__description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.about-hero-section-block .hero-image-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .about-hero-section-block .hero-image-content {
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.about-hero-section-block .hero-image {
  width: 100%;
}
@media (min-width: 768px) {
  .about-hero-section-block .hero-image {
    max-width: 500px;
  }
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-image {
    max-width: 560px;
  }
}
.about-hero-section-block .hero-image img {
  width: 100%;
  max-width: 327px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .about-hero-section-block .hero-image img {
    width: 70%;
    max-width: 350px;
  }
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-image img {
    width: 71.4285714286%;
    max-width: 400px;
  }
}
.about-hero-section-block .hero-content {
  display: grid;
  row-gap: 32px;
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-content {
    row-gap: 40px;
  }
}
.about-hero-section-block .hero-content .hero-title {
  margin-block-end: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .about-hero-section-block .hero-content .hero-title {
    text-align: left;
  }
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-content .hero-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.about-hero-section-block .hero-content .hero-description {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-content .hero-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.about-hero-section-block .hero-content .hero-link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-content .hero-link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.about-hero-section-block .hero-content .hero-link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-content .hero-link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.about-hero-section-block .hero-content .hero-link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-content .hero-link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.about-hero-section-block .hero-content .hero-link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .about-hero-section-block .hero-content .hero-link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.about-hero-section-block .hero-content .hero-link > a:hover {
  color: #6e6e6e;
}
.about-hero-section-block .hero-content .hero-link > a:hover .arrow-icon {
  border: 1px solid white;
}
.about-hero-section-block .hero-content .hero-link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}

.entry-content:has(.about-hero-section-block) {
  position: relative;
}
.entry-content:has(.about-hero-section-block) .hero-background {
  margin-inline-start: calc(50% - 73vw);
  padding-block: 64px;
  position: sticky;
  top: 120px;
  width: 146vw;
  z-index: 5;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1025px) {
  .entry-content:has(.about-hero-section-block) .hero-background {
    padding-block: 120px 80px;
  }
}
.entry-content:has(.about-hero-section-block) .hero-background img {
  width: 100%;
}

.community-hero-section-block {
  margin-block-end: 64px;
}
@media (min-width: 768px) {
  .community-hero-section-block {
    width: 100vw;
    margin-inline: calc(50% - 50cqi);
    position: relative;
  }
}
@media (min-width: 1200px) {
  .community-hero-section-block {
    margin-block-end: 104px;
  }
}
@media (min-width: 1400px) {
  .community-hero-section-block {
    width: 1400px;
    margin-inline: -100px;
    margin-block-end: 160px;
  }
}

.community-hero-section-inner {
  display: grid;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .community-hero-section-inner {
    padding-inline: 32px;
  }
}
@media (min-width: 1025px) {
  .community-hero-section-inner {
    max-width: 1264px;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .community-hero-section-inner .hero-content {
    width: 43.75%;
  }
}
@media (min-width: 1025px) {
  .community-hero-section-inner .hero-content {
    width: 50%;
  }
}
.community-hero-section-inner .hero-header .hero-label {
  margin-block-end: 16px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
@media (min-width: 1025px) {
  .community-hero-section-inner .hero-header .hero-label {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.community-hero-section-inner .hero-header .hero-label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .community-hero-section-inner .hero-header .hero-label::before {
    transform: translateY(3px);
  }
}
.community-hero-section-inner .hero-header .hero-title {
  margin-block-end: 0;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .community-hero-section-inner .hero-header .hero-title {
    font-size: 2.75rem;
    line-height: 1.5;
    letter-spacing: 0.44px;
  }
}
.community-hero-section-inner .hero-lead {
  margin-block: 16px 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .community-hero-section-inner .hero-lead {
    margin-block: 24px 0;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.community-hero-section-inner .hero-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .community-hero-section-inner .hero-description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.community-hero-section-inner .hero-image {
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .community-hero-section-inner .hero-image {
    position: absolute;
    top: 0;
    right: -6%;
    width: 56.640625%;
  }
}
@media (min-width: 1025px) {
  .community-hero-section-inner .hero-image {
    right: -5.7%;
    width: 52.8571428571%;
  }
}
.community-hero-section-inner .hero-image img {
  width: 100%;
  max-width: 327px;
  margin-inline: auto;
  transform-origin: left top;
  transform: scale(1.04);
}
@media (min-width: 768px) {
  .community-hero-section-inner .hero-image img {
    max-width: none;
    transform: scale(1);
  }
}

.company-about-us-block {
  margin-block-end: 80px;
  display: grid;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .company-about-us-block {
    margin-block-end: 104px;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    align-items: start;
  }
}
@media (min-width: 1025px) {
  .company-about-us-block {
    margin-block-end: 120px;
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
.company-about-us-block .company-about-us-header {
  display: grid;
  row-gap: 8px;
}
.company-about-us-block .company-about-us-header .company-about-us-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .company-about-us-block .company-about-us-header .company-about-us-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .company-about-us-block .company-about-us-header .company-about-us-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.company-about-us-block .company-about-us-header .company-about-us-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .company-about-us-block .company-about-us-header .company-about-us-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .company-about-us-block .company-about-us-header .company-about-us-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
@media (min-width: 768px) {
  .company-about-us-block .company-about-us-list {
    display: grid;
    grid-template-columns: 2.6fr 3.6fr;
  }
}
.company-about-us-block .company-about-us-list dt {
  padding: 16px;
  position: relative;
  border-block-end: 4px solid #d7d7d7;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .company-about-us-block .company-about-us-list dt {
    padding: 24px 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.company-about-us-block .company-about-us-list dt::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 4px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
}
@media (min-width: 768px) {
  .company-about-us-block .company-about-us-list dt {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .company-about-us-block .company-about-us-list dt::after {
    width: 100%;
  }
}
.company-about-us-block .company-about-us-list dd {
  padding: 16px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .company-about-us-block .company-about-us-list dd {
    border-block-end: 4px solid #d7d7d7;
  }
}
@media (min-width: 1025px) {
  .company-about-us-block .company-about-us-list dd {
    padding: 24px 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.company-about-us-block .company-about-us-list dd > a {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  font-weight: 700;
  color: #353535;
  text-decoration: none;
}
.company-about-us-block .company-about-us-list dd > a::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #353535;
  transform: translateY(-1px);
}
.company-about-us-block .company-about-us-list dd > a:hover {
  color: #919191;
}

.company-access-block {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
  background: linear-gradient(120deg, #eaf8f9 0.15%, #aeeff4 100%);
}
.company-access-block .company-access-block-inner {
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .company-access-block .company-access-block-inner {
    padding: 104px 32px;
  }
}
@media (min-width: 1025px) {
  .company-access-block .company-access-block-inner {
    padding: 120px 32px;
    max-width: 1264px;
    margin-inline: auto;
  }
}
.company-access-block .company-access-map {
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .company-access-block .company-access-map {
    top: 104px;
    right: 8px;
    width: 62%;
  }
}
@media (min-width: 1025px) {
  .company-access-block .company-access-map {
    top: 120px;
    width: 67%;
  }
}
@media (min-width: 1400px) {
  .company-access-block .company-access-map {
    right: calc((100vw - 1264px) / 2 - 60px);
    max-width: 938px;
  }
}
.company-access-block .company-access-map img {
  width: 100%;
}
.company-access-block .company-access-header {
  display: grid;
  row-gap: 8px;
}
.company-access-block .company-access-header .company-access-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .company-access-block .company-access-header .company-access-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .company-access-block .company-access-header .company-access-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.company-access-block .company-access-header .company-access-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .company-access-block .company-access-header .company-access-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .company-access-block .company-access-header .company-access-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.company-access-block .company-access-offices {
  margin-block-start: 300px;
  display: grid;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .company-access-block .company-access-offices {
    margin-block-start: 32px;
    gap: 12px;
    grid-template-columns: 290px 290px;
  }
}
@media (min-width: 1025px) {
  .company-access-block .company-access-offices {
    margin-block-start: 40px;
    grid-template-columns: 362px 362px;
    gap: 20px;
  }
}
.company-access-block .company-access-offices .office {
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(97deg, rgba(255, 255, 255, 0.8) 1.47%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
@media (min-width: 768px) {
  .company-access-block .company-access-offices .office {
    padding: 20px;
  }
  .company-access-block .company-access-offices .office:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
  }
  .company-access-block .company-access-offices .office:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
  }
}
@media (min-width: 1025px) {
  .company-access-block .company-access-offices .office {
    padding: 40px;
    border-radius: 24px;
  }
}
.company-access-block .company-access-offices .office-label {
  margin-block-end: 4px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .company-access-block .company-access-offices .office-label {
    margin-block-end: 12px;
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.4px;
  }
}
.company-access-block .company-access-offices .office-label::before {
  content: "";
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(3px);
}
@media (min-width: 1025px) {
  .company-access-block .company-access-offices .office-label::before {
    width: 34px;
    height: 34px;
    transform: translateY(2px);
  }
}
.company-access-block .company-access-offices .office-name {
  margin-block-end: 0;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .company-access-block .company-access-offices .office-name {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.company-access-block .company-access-offices .office-address {
  margin-block: 4px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .company-access-block .company-access-offices .office-address {
    margin-block: 8px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.company-access-block .company-access-offices .office-google-map {
  margin-block-start: 4px;
}
@media (min-width: 1025px) {
  .company-access-block .company-access-offices .office-google-map {
    margin-block-start: 8px;
  }
}
.company-access-block .company-access-offices .office-google-map > a {
  display: flex;
  justify-content: center;
  padding: 10px;
  color: #ffffff;
  background-color: #353535;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: relative;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.company-access-block .company-access-offices .office-google-map > a:hover {
  background-color: rgba(53, 53, 53, 0.7);
}
.company-access-block .company-access-offices .office-google-map > a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon-location.svg");
          mask-image: url("../images/common/icon-location.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.company-history-block {
  margin-block-start: 80px;
}
@media (min-width: 768px) {
  .company-history-block {
    margin-block-start: 104px;
  }
}
@media (min-width: 1025px) {
  .company-history-block {
    margin-block-start: 120px;
  }
}
.company-history-block .company-history-header {
  display: grid;
  row-gap: 8px;
  justify-content: center;
  text-align: center;
}
.company-history-block .company-history-header .company-history-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .company-history-block .company-history-header .company-history-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .company-history-block .company-history-header .company-history-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.company-history-block .company-history-header .company-history-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .company-history-block .company-history-header .company-history-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .company-history-block .company-history-header .company-history-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.company-history-block .company-history {
  margin-block-start: 32px;
  display: grid;
  gap: 32px 8px;
  grid-template-columns: max-content 1fr;
}
@media (min-width: 768px) {
  .company-history-block .company-history {
    gap: 32px;
  }
}
@media (min-width: 1025px) {
  .company-history-block .company-history {
    margin-block-start: 40px;
    gap: 40px;
  }
}
.company-history-block .company-history dt {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  transform: translateY(-10px);
}
@media (min-width: 768px) {
  .company-history-block .company-history dt {
    font-size: 2.1875rem;
    line-height: 1.5;
    letter-spacing: 0.35px;
    transform: translateY(-15px);
  }
}
@media (min-width: 1025px) {
  .company-history-block .company-history dt {
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.4px;
    transform: translateY(-16px);
  }
}
.company-history-block .company-history dd:last-child ul li::before {
  height: calc(100% - 12px);
  background-image: radial-gradient(circle, #d7d7d7 2px, #ffffff 2px);
  background-size: 4px 8px;
  background-position: center;
  background-repeat: repeat-y;
}
@media (min-width: 768px) {
  .company-history-block .company-history dd:last-child ul li::before {
    min-height: 36px;
  }
}
@media (min-width: 1025px) {
  .company-history-block .company-history dd:last-child ul li::before {
    min-height: 48px;
  }
}
.company-history-block .company-history dd:nth-of-type(8n + 1) ul li::after {
  background-color: #f5e527;
}
.company-history-block .company-history dd:nth-of-type(8n + 2) ul li::after {
  background-color: #93c523;
}
.company-history-block .company-history dd:nth-of-type(8n + 3) ul li::after {
  background-color: #2fbacc;
}
.company-history-block .company-history dd:nth-of-type(8n + 4) ul li::after {
  background-color: #2456a6;
}
.company-history-block .company-history dd:nth-of-type(8n + 5) ul li::after {
  background-color: #8d2489;
}
.company-history-block .company-history dd:nth-of-type(8n + 6) ul li::after {
  background-color: #e71f19;
}
.company-history-block .company-history dd:nth-of-type(8n + 7) ul li::after {
  background-color: #f08619;
}
.company-history-block .company-history dd:nth-of-type(8n) ul li::after {
  background-color: #f5e527;
}
.company-history-block .company-history ul li {
  display: grid;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: 4px;
       column-gap: 4px;
  position: relative;
  list-style: none;
  padding-inline-start: 32px;
}
@media (min-width: 768px) {
  .company-history-block .company-history ul li {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding-inline-start: 40px;
  }
}
.company-history-block .company-history ul li + li {
  margin-block-start: 32px;
}
.company-history-block .company-history ul li::before {
  position: absolute;
  content: "";
  top: 12px;
  left: 11px;
  width: 2px;
  height: calc(100% + 64px);
  background-color: #d7d7d7;
}
@media (min-width: 1025px) {
  .company-history-block .company-history ul li::before {
    left: 14px;
    height: calc(100% + 80px);
  }
}
.company-history-block .company-history ul li::after {
  margin: 4px 4px 5px 4px;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 16px;
  aspect-ratio: 16/15;
  z-index: 2;
  clip-path: polygon(50% 0%, 90.21% 19.76%, 100% 64.12%, 72.24% 100%, 27.76% 100%, 0% 64.12%, 9.79% 19.76%);
  background-color: transparent;
}
@media (min-width: 1025px) {
  .company-history-block .company-history ul li::after {
    margin: 7px 7px 8px 7px;
  }
}
.company-history-block .company-history ul li span:nth-of-type(1) {
  display: flex;
  justify-content: center;
  width: 1.125rem;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .company-history-block .company-history ul li span:nth-of-type(1) {
    width: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.0833333333;
  }
}
.company-history-block .company-history ul li span:nth-of-type(2) {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  line-height: 1.7142857143;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .company-history-block .company-history ul li span:nth-of-type(2) {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
    line-height: 1.625;
  }
}

.culture-hero-section-block {
  display: grid;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .culture-hero-section-block {
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .culture-hero-section-block .hero-content {
    width: 420px;
  }
}
@media (min-width: 1025px) {
  .culture-hero-section-block .hero-content {
    width: 600px;
  }
}
.culture-hero-section-block .hero-title {
  margin-block-end: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .culture-hero-section-block .hero-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
@media (min-width: 1025px) {
  .culture-hero-section-block .hero-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.culture-hero-section-block .hero-description {
  margin-block: 40px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .culture-hero-section-block .hero-description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.culture-hero-section-block .hero-image {
  width: 100%;
  filter: drop-shadow(1.972px 1.972px 3.944px rgba(77, 77, 77, 0.25));
}
@media (min-width: 768px) {
  .culture-hero-section-block .hero-image {
    order: -1;
  }
}
.culture-hero-section-block .hero-image img {
  width: 100%;
  max-width: 375px;
  margin-inline: auto;
  aspect-ratio: 78/77;
  clip-path: polygon(50% 0%, 90.21% 19.76%, 100% 64.12%, 72.24% 100%, 27.76% 100%, 0% 64.12%, 9.79% 19.76%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .culture-hero-section-block .hero-image img {
    max-width: 500px;
  }
}
@media (min-width: 1025px) {
  .culture-hero-section-block .hero-image img {
    max-width: 540px;
  }
}

.culture-feature-cards-block {
  margin-block-start: 64px;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block {
    margin-block-start: 80px;
  }
}
.culture-feature-cards-block .cards-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .cards-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.culture-feature-cards-block .cards-title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .cards-title::before {
    transform: translateY(1px);
  }
}
.culture-feature-cards-block .cards-description {
  margin-block: 8px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .cards-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.culture-feature-cards-block .cards-anchor {
  margin-block-start: 40px;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .cards-anchor {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .cards-anchor {
    gap: 24px;
  }
}
.culture-feature-cards-block .card-anchor {
  padding: 16px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  box-shadow: 0 0 20px 0 rgba(77, 77, 77, 0.05);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  text-decoration: none;
}
.culture-feature-cards-block .card-anchor .card-anchor__icon {
  margin-inline: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 66px;
  aspect-ratio: 78/77;
  clip-path: polygon(50% 0%, 90.21% 19.76%, 100% 64.12%, 72.24% 100%, 27.76% 100%, 0% 64.12%, 9.79% 19.76%);
}
.culture-feature-cards-block .card-anchor .card-anchor__icon img {
  width: 50px;
}
.culture-feature-cards-block .card-anchor--yellow .card-anchor__icon {
  background: linear-gradient(53deg, #f4b121 40.22%, #f4d121 67.34%);
}
.culture-feature-cards-block .card-anchor--green .card-anchor__icon {
  background: linear-gradient(54deg, #93c523 40.27%, #b5e251 77.27%);
}
.culture-feature-cards-block .card-anchor--light-blue .card-anchor__icon {
  background: linear-gradient(135deg, #43abf1 0%, #43abf1 25.24%, #72ebfb 100%);
}
.culture-feature-cards-block .card-anchor--blue .card-anchor__icon {
  background: linear-gradient(56deg, #2456a6 40.01%, #3978be 73.21%);
}
.culture-feature-cards-block .card-anchor--purple .card-anchor__icon {
  background: linear-gradient(135deg, #8d2489 0%, #c349be 49.04%);
}
.culture-feature-cards-block .card-anchor--red .card-anchor__icon {
  background: linear-gradient(55deg, #e71f19 38.91%, #ff7964 94.86%);
}
.culture-feature-cards-block .card-anchor--orange .card-anchor__icon {
  background: linear-gradient(116deg, #e74919 18.25%, #f78c00 85.71%);
}
.culture-feature-cards-block .card-anchor .card-anchor__title {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 700;
  color: #353535;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-anchor .card-anchor__title {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
  }
}
.culture-feature-cards-block .card-items {
  margin-block-start: 80px;
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-items {
    margin-block-start: 128px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-items {
    margin-block-start: 160px;
  }
}
.culture-feature-cards-block .card-item {
  display: grid;
  grid-template-rows: auto 1fr;
  width: calc(100% - 8px);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 transparent;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item {
    width: calc(100% - 20px);
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 transparent;
  }
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-item {
    border-radius: 24px;
  }
}
.culture-feature-cards-block .card-item--yellow {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fffdf0;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item--yellow {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fffdf0;
  }
}
.culture-feature-cards-block .card-item--yellow .card-item__badge {
  background: linear-gradient(53deg, #f4b121 40.22%, #f4d121 67.34%);
}
.culture-feature-cards-block .card-item--green {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #f5f8ef;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item--green {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #f5f8ef;
  }
}
.culture-feature-cards-block .card-item--green .card-item__badge {
  background: linear-gradient(54deg, #93c523 40.27%, #b5e251 77.27%);
}
.culture-feature-cards-block .card-item--light-blue {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #eaf8f9;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item--light-blue {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #eaf8f9;
  }
}
.culture-feature-cards-block .card-item--light-blue .card-item__badge {
  background: linear-gradient(135deg, #43abf1 0%, #43abf1 25.24%, #72ebfb 100%);
}
.culture-feature-cards-block .card-item--blue {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #eaf0f9;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item--blue {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #eaf0f9;
  }
}
.culture-feature-cards-block .card-item--blue .card-item__badge {
  background: linear-gradient(56deg, #2456a6 40.01%, #3978be 73.21%);
}
.culture-feature-cards-block .card-item--purple {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #f2ebf3;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item--purple {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #f2ebf3;
  }
}
.culture-feature-cards-block .card-item--purple .card-item__badge {
  background: linear-gradient(135deg, #8d2489 0%, #c349be 49.04%);
}
.culture-feature-cards-block .card-item--red {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fdf2ee;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item--red {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fdf2ee;
  }
}
.culture-feature-cards-block .card-item--red .card-item__badge {
  background: linear-gradient(55deg, #e71f19 38.91%, #ff7964 94.86%);
}
.culture-feature-cards-block .card-item--orange {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fff6ec;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item--orange {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fff6ec;
  }
}
.culture-feature-cards-block .card-item--orange .card-item__badge {
  background: linear-gradient(116deg, #e74919 18.25%, #f78c00 85.71%);
}
.culture-feature-cards-block div:has(> .card-item__label) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .culture-feature-cards-block div:has(> .card-item__label) {
    grid-template-columns: auto 1fr;
  }
}
.culture-feature-cards-block div:has(> .card-item__label) .card-item__label {
  padding: 8px 16px;
  margin-inline-end: 16px;
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block div:has(> .card-item__label) .card-item__label {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.culture-feature-cards-block div:has(> .card-item__label) .card-item__label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .culture-feature-cards-block div:has(> .card-item__label) .card-item__label::before {
    transform: translateY(1px);
  }
}
.culture-feature-cards-block div:has(> .card-item__label) .card-item__label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
.culture-feature-cards-block div:has(> .card-item__label) span:nth-of-type(2) {
  position: relative;
  height: calc(100% + 4px);
  border: 4px solid #f5f5f5;
  border-block-end: none;
  border-radius: 16px 16px 0 0;
  background-color: #ffffff;
  margin-block-end: -4px;
  z-index: 1;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block div:has(> .card-item__label) span:nth-of-type(2) {
    border-radius: 24px 24px 0 0;
  }
}
.culture-feature-cards-block div:has(> .card-item__label) span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -16px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  z-index: 1;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block div:has(> .card-item__label) span:nth-of-type(2)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -24px;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    z-index: 1;
  }
}
.culture-feature-cards-block div:has(> .card-item__label) span:nth-of-type(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -16px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 0 0, transparent 12px, #f5f5f5 12px, #f5f5f5 16px, transparent 16px);
  z-index: 2;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block div:has(> .card-item__label) span:nth-of-type(2)::after {
    left: -24px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 0 0, transparent 20px, #f5f5f5 20px, #f5f5f5 24px, transparent 24px);
  }
}
.culture-feature-cards-block .card-item__wrapper {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  border: 4px solid #f5f5f5;
  border-radius: 16px 0 16px 16px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item__wrapper {
    padding: 60px 32px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-item__wrapper {
    padding: 64px 40px;
    border-radius: 24px 0 24px 24px;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.culture-feature-cards-block .card-item__image {
  position: relative;
  margin-block-start: 24px;
  margin-inline: auto;
  max-width: 272px;
  width: 100%;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item__image {
    margin-block-end: 0;
    max-width: none;
  }
}
.culture-feature-cards-block .card-item__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 272/189;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item__image img {
    aspect-ratio: 396/190;
    border-radius: 12px;
  }
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-item__image img {
    border-radius: 16px;
  }
}
.culture-feature-cards-block .card-item__image--top img {
  -o-object-position: top;
     object-position: top;
}
.culture-feature-cards-block .card-item__image--center img {
  -o-object-position: center;
     object-position: center;
}
.culture-feature-cards-block .card-item__image--bottom img {
  -o-object-position: bottom;
     object-position: bottom;
}
.culture-feature-cards-block .card-item__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -19px;
  right: -9px;
  width: 66px;
  aspect-ratio: 78/77;
  clip-path: polygon(50% 0%, 90.21% 19.76%, 100% 64.12%, 72.24% 100%, 27.76% 100%, 0% 64.12%, 9.79% 19.76%);
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item__badge {
    bottom: -43px;
    right: -8px;
    width: 25.4385964912%;
  }
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-item__badge {
    bottom: -43px;
    right: -9px;
    width: 20.7142857143%;
  }
}
.culture-feature-cards-block .card-item__badge img {
  width: 84.8484848485%;
  height: 84.8484848485%;
  -o-object-fit: contain;
     object-fit: contain;
}
.culture-feature-cards-block .card-item__content {
  margin-block-end: auto;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item__content {
    order: -1;
  }
}
.culture-feature-cards-block .card-item__title {
  margin-block-end: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .culture-feature-cards-block .card-item__title {
    justify-content: start;
    text-align: unset;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-item__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.culture-feature-cards-block .card-item__description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .culture-feature-cards-block .card-item__description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.recruit-message-block {
  position: relative;
  display: grid;
}
@media (min-width: 768px) {
  .recruit-message-block {
    grid-template-columns: 1.4fr 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.recruit-message-block::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -94px;
  height: 268px;
  aspect-ratio: 1437/336;
  background-image: url("../images/blocks/recruit-message/heptagon-logo-text.svg");
  background-size: 100% auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: unset;
  transform-origin: top left;
  transform: rotate(90deg) translateY(-100%);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 768px) {
  .recruit-message-block::before {
    top: unset;
    left: 50%;
    bottom: -72px;
    width: calc(100% + 64px);
    height: auto;
    transform: rotate(0) translateY(0) translateX(-50%);
  }
}
@media (min-width: 1025px) {
  .recruit-message-block::before {
    bottom: -90px;
    width: 100vw;
  }
}
.recruit-message-block .message-label {
  margin-block-end: 32px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .recruit-message-block .message-label {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.recruit-message-block .message-label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .recruit-message-block .message-label::before {
    transform: translateY(1px);
  }
}
.recruit-message-block .message-label {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 768px) {
  .recruit-message-block .message-label {
    order: 1;
  }
}
@media (min-width: 1025px) {
  .recruit-message-block .message-label {
    margin-block-end: 40px;
  }
}
@media (min-width: 768px) {
  .recruit-message-block .message-text {
    order: 3;
  }
}
.recruit-message-block .message-text .message-title {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit-message-block .message-text .message-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
@media (min-width: 1025px) {
  .recruit-message-block .message-text .message-title {
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.4px;
  }
}
.recruit-message-block .message-text .message-lead {
  margin-block: 24px 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .recruit-message-block .message-text .message-lead {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
@media (min-width: 1025px) {
  .recruit-message-block .message-text .message-lead {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.recruit-message-block .message-text .message-description {
  margin-block: 24px 0;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 500;
}
.recruit-message-block .message-images {
  margin-block-start: 24px;
  margin-inline: auto;
  width: 325px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) {
  .recruit-message-block .message-images {
    margin-block-start: 0;
    margin-inline: auto 0;
    order: 2;
    grid-row: span 2;
  }
}
@media (min-width: 900px) {
  .recruit-message-block .message-images {
    width: 492px;
  }
}
@media (min-width: 1260px) {
  .recruit-message-block .message-images {
    width: 630px;
  }
}
.recruit-message-block .message-images .message-image img {
  width: 100%;
  aspect-ratio: 78/77;
  clip-path: polygon(50% 0%, 90.21% 19.76%, 100% 64.12%, 72.24% 100%, 27.76% 100%, 0% 64.12%, 9.79% 19.76%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit-message-block .message-images .message-image-1 {
  margin-inline-start: auto;
  width: 275px;
  filter: drop-shadow(3.131px 3.131px 6.262px rgba(77, 77, 77, 0.25));
}
@media (min-width: 900px) {
  .recruit-message-block .message-images .message-image-1 {
    width: 420px;
  }
}
@media (min-width: 1260px) {
  .recruit-message-block .message-images .message-image-1 {
    width: 540px;
  }
}
.recruit-message-block .message-images .message-image-2 {
  margin-block-start: -132px;
  width: 204px;
  filter: drop-shadow(3.131px 3.131px 6.262px rgba(77, 77, 77, 0.25));
}
@media (min-width: 900px) {
  .recruit-message-block .message-images .message-image-2 {
    margin-block-start: -207px;
    width: 300px;
  }
}
@media (min-width: 1260px) {
  .recruit-message-block .message-images .message-image-2 {
    margin-block-start: -264px;
    width: 400px;
  }
}

.recruit-positions-block {
  position: relative;
  margin-block-start: 80px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background-color: #4d4d4d;
}
@media (min-width: 768px) {
  .recruit-positions-block {
    width: 100%;
    margin-inline: unset;
    border-radius: 16px;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .recruit-positions-block {
    border-radius: 24px;
  }
}
.recruit-positions-block::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  margin-inline: auto;
  background-image: url("../images/common/bg-heptagon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@media (min-width: 768px) {
  .recruit-positions-block::before {
    background-position: top center;
  }
}
.recruit-positions-block .positions-inner {
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .recruit-positions-block .positions-inner {
    padding: 80px 64px 80px 0;
    margin-inline-start: auto;
    width: 664px;
  }
}
@media (min-width: 1025px) {
  .recruit-positions-block .positions-inner {
    padding: 120px 64px 120px 0;
  }
}
.recruit-positions-block .positions-title {
  margin-block-end: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  filter: drop-shadow(3.131px 3.131px 6.262px rgba(77, 77, 77, 0.85));
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .recruit-positions-block .positions-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.recruit-positions-block .positions-links {
  margin-block-start: 23px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: linear-gradient(75deg, rgba(255, 255, 255, 0.8) 8.54%, rgba(255, 255, 255, 0.6) 87.13%);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .recruit-positions-block .positions-links {
    padding: 40px;
    border-radius: 24px;
    width: 600px;
  }
}
.recruit-positions-block .positions-link {
  list-style: none;
}
.recruit-positions-block .positions-link + .positions-link {
  margin-block-start: 24px;
}
@media (min-width: 1025px) {
  .recruit-positions-block .positions-link + .positions-link {
    margin-block-start: 32px;
  }
}
.recruit-positions-block .positions-link > a {
  display: flex;
  justify-content: center;
  padding: 10px;
  color: #ffffff;
  background-color: #353535;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.recruit-positions-block .positions-link > a:hover {
  background-color: rgba(53, 53, 53, 0.7);
}
.recruit-positions-block .positions-none-message {
  list-style: none;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1025px) {
  .recruit-positions-block .positions-none-message {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.recruit-positions-block .swiper {
  margin-block-start: 40px;
  overflow: visible;
  z-index: 0;
}
@media (min-width: 768px) {
  .recruit-positions-block .swiper {
    position: absolute;
    inset: 0;
    transform: rotate(-30deg) translateX(180px);
  }
}
.recruit-positions-block .swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.recruit-positions-block .swiper .positions-images {
  margin-block-start: 40px;
}
@media (min-width: 768px) {
  .recruit-positions-block .swiper .positions-images {
    margin-block-start: 0;
  }
}
.recruit-positions-block .swiper .positions-image {
  width: 96% !important;
  height: auto !important;
  list-style: none;
}
@media (min-width: 768px) {
  .recruit-positions-block .swiper .positions-image {
    width: 284px !important;
  }
}
.recruit-positions-block .swiper .positions-image img {
  width: 100%;
  aspect-ratio: 317/178;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .recruit-positions-block .swiper .positions-image img {
    aspect-ratio: 284/160;
  }
}

.recruit-about-block {
  margin-block-start: 80px;
}
@media (min-width: 768px) {
  .recruit-about-block {
    margin-block-start: 64px;
  }
}
@media (min-width: 1025px) {
  .recruit-about-block {
    margin-block-start: 80px;
  }
}
.recruit-about-block .about-label {
  margin-block-end: 32px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-label {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.recruit-about-block .about-label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .recruit-about-block .about-label::before {
    transform: translateY(1px);
  }
}
.recruit-about-block .about-label {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-label {
    margin-block-end: 40px;
  }
}
.recruit-about-block .about-content {
  display: grid;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .recruit-about-block .about-content {
    grid-template-columns: 4.2fr 5fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1025px) {
  .recruit-about-block .about-content {
    grid-template-columns: 6.4fr 5fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
.recruit-about-block .about-image {
  width: 100%;
}
.recruit-about-block .about-image img {
  width: 100%;
}
.recruit-about-block .about-text {
  order: 2;
}
.recruit-about-block .about-text .about-title-small {
  margin-block-end: 0;
  display: block;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-title-small {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.recruit-about-block .about-text .about-title {
  margin-block-end: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.recruit-about-block .about-text .about-description {
  margin-block: 24px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.recruit-about-block .about-text .about-links {
  margin-block-start: 40px;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-links {
    margin-block-start: 24px;
  }
}
.recruit-about-block .about-text .about-links > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-links > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.recruit-about-block .about-text .about-links > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-links > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.recruit-about-block .about-text .about-links > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-links > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.recruit-about-block .about-text .about-links > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-links > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.recruit-about-block .about-text .about-links > a:hover {
  color: #6e6e6e;
}
.recruit-about-block .about-text .about-links > a:hover .arrow-icon {
  border: 1px solid white;
}
.recruit-about-block .about-text .about-links > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}
.recruit-about-block .about-text .about-links > a + a {
  margin-block-start: 24px;
}
@media (min-width: 1025px) {
  .recruit-about-block .about-text .about-links > a + a {
    margin-block-start: 32px;
  }
}

.recruit-content-card-block {
  margin-block-start: 64px;
  display: grid;
}
.recruit-content-card-block .card-label {
  margin-block-end: 16px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-label {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.recruit-content-card-block .card-label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-label::before {
    transform: translateY(1px);
  }
}
.recruit-content-card-block .card-label {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-label {
    margin-block-end: 24px;
  }
}
.recruit-content-card-block .card-content {
  order: 2;
  margin-block-start: -40px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: linear-gradient(97deg, rgba(255, 255, 255, 0.8) 1.84%, rgba(255, 255, 255, 0.8) 97.2%);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  width: 100%;
}
@media (min-width: 768px) {
  .recruit-content-card-block .card-content {
    margin-block-start: -75px;
    padding: 40px;
    max-width: 700px;
    margin-inline: auto;
  }
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-content {
    margin-block-start: -80px;
    border-radius: 24px;
    max-width: 920px;
  }
}
.recruit-content-card-block .card-content .card-title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit-content-card-block .card-content .card-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-content .card-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.recruit-content-card-block .card-content .card-description {
  margin-block: 24px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit-content-card-block .card-content .card-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.recruit-content-card-block .card-content .card-link {
  margin-block-start: 24px;
}
.recruit-content-card-block .card-content .card-link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-content .card-link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.recruit-content-card-block .card-content .card-link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-content .card-link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.recruit-content-card-block .card-content .card-link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-content .card-link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.recruit-content-card-block .card-content .card-link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-content .card-link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.recruit-content-card-block .card-content .card-link > a:hover {
  color: #6e6e6e;
}
.recruit-content-card-block .card-content .card-link > a:hover .arrow-icon {
  border: 1px solid white;
}
.recruit-content-card-block .card-content .card-link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}
.recruit-content-card-block .card-images .card-image {
  border-radius: 16px;
  overflow: hidden;
}
.recruit-content-card-block .card-images .card-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-content-card-block .card-images .card-image--single img {
  aspect-ratio: 327/200;
}
@media (min-width: 768px) {
  .recruit-content-card-block .card-images .card-image--single img {
    aspect-ratio: 960/360;
    -o-object-position: 50% 30%;
       object-position: 50% 30%;
  }
}
@media (min-width: 1025px) {
  .recruit-content-card-block .card-images .card-image--single img {
    aspect-ratio: 1200/400;
  }
}
.recruit-content-card-block .card-images .card-image--double img {
  aspect-ratio: 327/200;
}
@media (min-width: 768px) {
  .recruit-content-card-block .card-images .card-image--double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-badge-cards-block .content-cards-header, .content-cards-block .content-cards-header {
  margin-block-end: 32px;
  display: grid;
  row-gap: 8px;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .content-cards-header, .content-cards-block .content-cards-header {
    margin-block-end: 40px;
  }
}
.content-badge-cards-block .content-cards-header .content-cards-header-title, .content-cards-block .content-cards-header .content-cards-header-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .content-badge-cards-block .content-cards-header .content-cards-header-title, .content-cards-block .content-cards-header .content-cards-header-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .content-cards-header .content-cards-header-title, .content-cards-block .content-cards-header .content-cards-header-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.content-badge-cards-block .content-cards-header .content-cards-header-title-en, .content-cards-block .content-cards-header .content-cards-header-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .content-badge-cards-block .content-cards-header .content-cards-header-title-en, .content-cards-block .content-cards-header .content-cards-header-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .content-cards-header .content-cards-header-title-en, .content-cards-block .content-cards-header .content-cards-header-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.content-badge-cards-block .card-item, .content-cards-block .card-item {
  display: grid;
  grid-template-rows: auto 1fr;
  width: calc(100% - 8px);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 transparent;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item, .content-cards-block .card-item {
    width: calc(100% - 20px);
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 transparent;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item, .content-cards-block .card-item {
    border-radius: 24px;
  }
}
.content-badge-cards-block .card-item--yellow, .content-cards-block .card-item--yellow {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fffdf0;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--yellow, .content-cards-block .card-item--yellow {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fffdf0;
  }
}
.content-badge-cards-block .card-item--green, .content-cards-block .card-item--green {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #f5f8ef;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--green, .content-cards-block .card-item--green {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #f5f8ef;
  }
}
.content-badge-cards-block .card-item--light-blue, .content-cards-block .card-item--light-blue {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #eaf8f9;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--light-blue, .content-cards-block .card-item--light-blue {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #eaf8f9;
  }
}
.content-badge-cards-block .card-item--blue, .content-cards-block .card-item--blue {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #eaf0f9;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--blue, .content-cards-block .card-item--blue {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #eaf0f9;
  }
}
.content-badge-cards-block .card-item--purple, .content-cards-block .card-item--purple {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #f2ebf3;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--purple, .content-cards-block .card-item--purple {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #f2ebf3;
  }
}
.content-badge-cards-block .card-item--red, .content-cards-block .card-item--red {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fdf2ee;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--red, .content-cards-block .card-item--red {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fdf2ee;
  }
}
.content-badge-cards-block .card-item--orange, .content-cards-block .card-item--orange {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fff6ec;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--orange, .content-cards-block .card-item--orange {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fff6ec;
  }
}
.content-badge-cards-block .card-item + .card-item, .content-cards-block .card-item + .card-item {
  margin-block-start: 32px;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item + .card-item, .content-cards-block .card-item + .card-item {
    margin-block-start: 64px;
  }
}
.content-badge-cards-block div:has(> .card-item__label), .content-cards-block div:has(> .card-item__label) {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .content-badge-cards-block div:has(> .card-item__label), .content-cards-block div:has(> .card-item__label) {
    grid-template-columns: 260px 1fr;
  }
}
.content-badge-cards-block div:has(> .card-item__label) .card-item__label, .content-cards-block div:has(> .card-item__label) .card-item__label {
  padding: 8px 16px;
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .content-badge-cards-block div:has(> .card-item__label) .card-item__label, .content-cards-block div:has(> .card-item__label) .card-item__label {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.content-badge-cards-block div:has(> .card-item__label) .card-item__label::before, .content-cards-block div:has(> .card-item__label) .card-item__label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .content-badge-cards-block div:has(> .card-item__label) .card-item__label::before, .content-cards-block div:has(> .card-item__label) .card-item__label::before {
    transform: translateY(1px);
  }
}
.content-badge-cards-block div:has(> .card-item__label) .card-item__label, .content-cards-block div:has(> .card-item__label) .card-item__label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
.content-badge-cards-block div:has(> .card-item__label) span:nth-of-type(2), .content-cards-block div:has(> .card-item__label) span:nth-of-type(2) {
  position: relative;
  height: calc(100% + 4px);
  border: 4px solid #f5f5f5;
  border-block-end: none;
  border-radius: 16px 16px 0 0;
  background-color: #ffffff;
  margin-block-end: -4px;
}
@media (min-width: 1025px) {
  .content-badge-cards-block div:has(> .card-item__label) span:nth-of-type(2), .content-cards-block div:has(> .card-item__label) span:nth-of-type(2) {
    border-radius: 24px 24px 0 0;
  }
}
.content-badge-cards-block div:has(> .card-item__label) span:nth-of-type(2)::before, .content-cards-block div:has(> .card-item__label) span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -16px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  z-index: 1;
}
@media (min-width: 1025px) {
  .content-badge-cards-block div:has(> .card-item__label) span:nth-of-type(2)::before, .content-cards-block div:has(> .card-item__label) span:nth-of-type(2)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -24px;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    z-index: 1;
  }
}
.content-badge-cards-block div:has(> .card-item__label) span:nth-of-type(2)::after, .content-cards-block div:has(> .card-item__label) span:nth-of-type(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -16px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 0 0, transparent 12px, #f5f5f5 12px, #f5f5f5 16px, transparent 16px);
  z-index: 2;
}
@media (min-width: 1025px) {
  .content-badge-cards-block div:has(> .card-item__label) span:nth-of-type(2)::after, .content-cards-block div:has(> .card-item__label) span:nth-of-type(2)::after {
    left: -24px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 0 0, transparent 20px, #f5f5f5 20px, #f5f5f5 24px, transparent 24px);
  }
}
.content-badge-cards-block .card-item__wrapper, .content-cards-block .card-item__wrapper {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  border: 4px solid #f5f5f5;
  border-radius: 16px 0 16px 16px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__wrapper, .content-cards-block .card-item__wrapper {
    padding: 64px 40px;
    display: grid;
    grid-template-columns: 408px 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__wrapper, .content-cards-block .card-item__wrapper {
    padding: 80px;
    grid-template-columns: 440px 1fr;
    border-radius: 24px 0 24px 24px;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.content-badge-cards-block .card-item__image, .content-cards-block .card-item__image {
  margin-block-end: 16px;
  aspect-ratio: 271/152;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__image, .content-cards-block .card-item__image {
    margin-block-end: 0;
    aspect-ratio: 428/258;
    border-radius: 12px;
    min-width: 0;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__image, .content-cards-block .card-item__image {
    border-radius: 16px;
  }
}
.content-badge-cards-block .card-item__image--img img, .content-cards-block .card-item__image--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-badge-cards-block .card-item__image--svg, .content-cards-block .card-item__image--svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-badge-cards-block .card-item__image--svg img, .content-cards-block .card-item__image--svg img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__content, .content-cards-block .card-item__content {
    order: -1;
  }
}
.content-badge-cards-block .card-item__title, .content-cards-block .card-item__title {
  margin-block-end: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__title, .content-cards-block .card-item__title {
    justify-content: start;
    text-align: unset;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__title, .content-cards-block .card-item__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.content-badge-cards-block .card-item__description, .content-cards-block .card-item__description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__description, .content-cards-block .card-item__description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.content-badge-cards-block .card-item__link, .content-cards-block .card-item__link {
  margin-block-start: auto;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__link, .content-cards-block .card-item__link {
    grid-column: 1/-1;
  }
}
.content-badge-cards-block .card-item__link > a, .content-cards-block .card-item__link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__link > a, .content-cards-block .card-item__link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.content-badge-cards-block .card-item__link > a .arrow-icon, .content-cards-block .card-item__link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__link > a .arrow-icon, .content-cards-block .card-item__link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.content-badge-cards-block .card-item__link > a .arrow-icon::after, .content-cards-block .card-item__link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__link > a .arrow-icon::after, .content-cards-block .card-item__link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.content-badge-cards-block .card-item__link > a .arrow-icon::before, .content-cards-block .card-item__link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__link > a .arrow-icon::before, .content-cards-block .card-item__link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.content-badge-cards-block .card-item__link > a:hover, .content-cards-block .card-item__link > a:hover {
  color: #6e6e6e;
}
.content-badge-cards-block .card-item__link > a:hover .arrow-icon, .content-cards-block .card-item__link > a:hover .arrow-icon {
  border: 1px solid white;
}
.content-badge-cards-block .card-item__link > a:hover .arrow-icon::before, .content-cards-block .card-item__link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}
.content-badge-cards-block .card-item__link > a, .content-cards-block .card-item__link > a {
  margin-block-start: 16px;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__link > a, .content-cards-block .card-item__link > a {
    margin-block-start: 24px;
  }
}
@media (min-width: 768px) {
  .content-cards--community.content-badge-cards-block .card-item__link, .content-cards--community.content-cards-block .card-item__link {
    grid-column: auto;
  }
}
.content-cards--ja.content-badge-cards-block div:has(> .card-item__label), .content-cards--ja.content-cards-block div:has(> .card-item__label) {
  grid-template-columns: auto 1fr;
}
@media (min-width: 768px) {
  .content-cards--ja.content-badge-cards-block div:has(> .card-item__label), .content-cards--ja.content-cards-block div:has(> .card-item__label) {
    grid-template-columns: 380px 1fr;
  }
}
.content-cards--ja.content-badge-cards-block div:has(> .card-item__label) .card-item__label, .content-cards--ja.content-cards-block div:has(> .card-item__label) .card-item__label {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .content-cards--ja.content-badge-cards-block div:has(> .card-item__label) .card-item__label, .content-cards--ja.content-cards-block div:has(> .card-item__label) .card-item__label {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.content-cards--ja.content-badge-cards-block div:has(> .card-item__label) .card-item__label::before, .content-cards--ja.content-cards-block div:has(> .card-item__label) .card-item__label::before {
  transform: translateY(4px);
}
@media (min-width: 1025px) {
  .content-cards--ja.content-badge-cards-block div:has(> .card-item__label) .card-item__label::before, .content-cards--ja.content-cards-block div:has(> .card-item__label) .card-item__label::before {
    transform: translateY(3px);
  }
}
.content-cards--ja.content-badge-cards-block .card-item__image, .content-cards--ja.content-cards-block .card-item__image {
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .content-cards--ja.content-badge-cards-block .card-item__image, .content-cards--ja.content-cards-block .card-item__image {
    aspect-ratio: 2/1;
  }
}
.content-badge-cards-block ol > li ul li::before, .content-cards-block ol > li ul li::before {
  background: #919191;
}
.content-badge-cards-block ol, .content-cards-block ol {
  margin-block-end: 32px;
  list-style: none;
  counter-reset: my-counter;
}
.content-badge-cards-block ol > li, .content-cards-block ol > li {
  padding: 0 0 4px 25px;
  counter-increment: my-counter;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .content-badge-cards-block ol > li, .content-cards-block ol > li {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.content-badge-cards-block ol > li:has(ul), .content-cards-block ol > li:has(ul), .content-badge-cards-block ol > li:has(ol), .content-cards-block ol > li:has(ol) {
  padding-block-end: 8px;
}
.content-badge-cards-block ol > li::before, .content-cards-block ol > li::before {
  content: counter(my-counter, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #919191;
  min-width: 16px;
}
.content-badge-cards-block ol > li + li, .content-cards-block ol > li + li {
  margin-block-start: 4px;
}
@media (min-width: 1025px) {
  .content-badge-cards-block ol > li + li, .content-cards-block ol > li + li {
    margin-block-start: 12px;
  }
}

.content-badge-cards-block .card-item--yellow {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fff6ec;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--yellow {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fff6ec;
  }
}
.content-badge-cards-block .card-item--orange {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1), 8px 8px 0 #fdf2ee;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item--orange {
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.1), 20px 20px 0 #fdf2ee;
  }
}

@media (min-width: 768px) {
  .content-badge-cards-block .card-item__wrapper {
    grid-template-columns: 4.08fr 4.2fr;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__wrapper {
    grid-template-columns: 5.3fr 4.2fr;
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__wrapper:has(.card-list) .card-item__badge {
    bottom: 0;
  }
}
.content-badge-cards-block .card-item__image {
  margin-inline: auto;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 270/152;
  position: relative;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__image {
    overflow: visible;
    display: flex;
    justify-content: end;
    align-items: end;
    max-width: none;
    aspect-ratio: auto;
  }
}
.content-badge-cards-block .card-item__image img {
  margin-inline-start: 30px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__image img {
    margin-inline-start: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    height: auto;
    width: 100%;
  }
}
.content-badge-cards-block .card-item__badge {
  position: absolute;
  bottom: 12px;
  right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 78/77;
  background: transparent;
  clip-path: polygon(50% 0%, 90.21% 19.76%, 100% 64.12%, 72.24% 100%, 27.76% 100%, 0% 64.12%, 9.79% 19.76%);
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__badge {
    bottom: -32px;
    right: -14px;
    width: 166px;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__badge {
    bottom: -45px;
    right: -54px;
    width: 215px;
  }
}
.content-badge-cards-block .card-item__badge > span {
  font-size: 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.1px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  transform: translateY(3px);
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__badge > span {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
    transform: translateY(6px);
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__badge > span {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
    transform: translateY(8px);
  }
}
.content-badge-cards-block .card-item__badge > span:has(> span) {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0px);
}
.content-badge-cards-block .card-item__badge > span:has(> span) > span:nth-of-type(1) {
  font-size: 2.3125rem;
  line-height: 1.5;
  letter-spacing: 0.37px;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__badge > span:has(> span) > span:nth-of-type(1) {
    font-size: 4.375rem;
    line-height: 1.5;
    letter-spacing: 0.7px;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__badge > span:has(> span) > span:nth-of-type(1) {
    margin-inline-end: 4px;
    font-size: 5.5rem;
    line-height: 1.5;
    letter-spacing: 0.88px;
  }
}
.content-badge-cards-block .card-item__badge > span:has(> span) > span:nth-of-type(2) {
  text-align: left;
  font-size: 0.4375rem;
  line-height: 1.5;
  letter-spacing: 0.07px;
  transform: translateY(6px);
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-item__badge > span:has(> span) > span:nth-of-type(2) {
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: 0.13px;
    transform: translateY(14px);
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-item__badge > span:has(> span) > span:nth-of-type(2) {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
    transform: translateY(14px);
  }
}
.content-badge-cards-block .card-item--yellow .card-item__badge {
  background: linear-gradient(53deg, #f4b121 40.22%, #f4d121 67.34%);
}
.content-badge-cards-block .card-item--green .card-item__badge {
  background: linear-gradient(54deg, #93c523 40.27%, #b5e251 77.27%);
}
.content-badge-cards-block .card-item--light-blue .card-item__badge {
  background: linear-gradient(135deg, #43abf1 0%, #43abf1 25.24%, #72ebfb 100%);
}
.content-badge-cards-block .card-item--blue .card-item__badge {
  background: linear-gradient(56deg, #2456a6 40.01%, #3978be 73.21%);
}
.content-badge-cards-block .card-item--purple .card-item__badge {
  background: linear-gradient(135deg, #8d2489 0%, #c349be 49.04%);
}
.content-badge-cards-block .card-item--red .card-item__badge {
  background: linear-gradient(55deg, #e71f19 38.91%, #ff7964 94.86%);
}
.content-badge-cards-block .card-item--orange .card-item__badge {
  background: linear-gradient(116deg, #e74919 18.25%, #f78c00 85.71%);
}
.content-badge-cards-block .card-list {
  margin-block-start: 56px;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-list {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
    grid-column: 1/-1;
  }
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-list {
    margin-block-start: 64px;
  }
}
.content-badge-cards-block .card-list .card-list__item {
  position: relative;
  padding: 32px 21px;
  list-style: none;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .content-badge-cards-block .card-list .card-list__item {
    padding: 32px 24px;
  }
}
.content-badge-cards-block .card-list .card-list__item-number {
  position: absolute;
  top: 7px;
  left: 19px;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  line-height: 1.65;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #f5f5f5;
}
.content-badge-cards-block .card-list .card-list__item-image {
  margin-block-end: 24px;
  margin-inline: auto;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1/1;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-list .card-list__item-image {
    margin-block-end: 32px;
    max-width: 170px;
  }
}
.content-badge-cards-block .card-list .card-list__item-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-badge-cards-block .card-list .card-list__item-title {
  margin-block-end: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-list .card-list__item-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.content-badge-cards-block .card-list .card-list__item-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .content-badge-cards-block .card-list .card-list__item-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.companydeck-block {
  margin-block-start: 80px;
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
  background-color: #eaf0f9;
}
@media (min-width: 768px) {
  .companydeck-block {
    margin-block-start: 64px;
    width: 100%;
    margin-inline: auto;
    background-color: transparent;
  }
}
@media (min-width: 1025px) {
  .companydeck-block {
    margin-block-start: 80px;
  }
}

.companydeck-inner {
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .companydeck-inner {
    padding: 0;
  }
}
.companydeck-inner .companydeck-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .companydeck-inner .companydeck-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.companydeck-inner .companydeck-title .label-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label-base.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .companydeck-inner .companydeck-title .label-icon {
    transform: translateY(1px);
  }
}
.companydeck-inner .companydeck-title .label-icon::after {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  background-color: #4d4d4d;
}
.companydeck-inner .companydeck-title {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.companydeck-inner .companydeck-title .label-icon::after {
  background-color: #eaf0f9;
}
@media (min-width: 768px) {
  .companydeck-inner .companydeck-title .label-icon::after {
    background-color: #ffffff;
  }
}
.companydeck-inner .companydeck-description {
  margin-block: 16px 28px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .companydeck-inner .companydeck-description {
    margin-block: 16px 32px;
  }
}
@media (min-width: 1025px) {
  .companydeck-inner .companydeck-description {
    margin-block: 24px 40px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
@media (min-width: 768px) {
  .companydeck-inner .companydeck-embed {
    padding: 80px 32px;
    display: flex;
    justify-content: center;
    border-radius: 16px;
    background-color: #eaf0f9;
  }
}
@media (min-width: 1025px) {
  .companydeck-inner .companydeck-embed {
    padding: 100px 40px;
  }
}
.companydeck-inner .companydeck-embed iframe {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .companydeck-inner .companydeck-embed iframe {
    max-width: 800px;
  }
}
@media (min-width: 1025px) {
  .companydeck-inner .companydeck-embed iframe {
    max-width: 1000px;
  }
}

.related-nav-block {
  margin-block-start: 64px;
}
@media (min-width: 1025px) {
  .related-nav-block {
    margin-block-start: 80px;
  }
}
.related-nav-block .related-nav-title {
  margin-block-end: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .related-nav-block .related-nav-title::before, .related-nav-block .related-nav-title::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #353535;
  }
}
@media (min-width: 1025px) {
  .related-nav-block .related-nav-title {
    margin-block-end: 40px;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.related-nav-block .related-nav-links {
  display: grid;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .related-nav-block .related-nav-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1025px) {
  .related-nav-block .related-nav-links {
    gap: 40px;
  }
}
.related-nav-block .related-nav-links .related-nav-link {
  list-style: none;
}
.related-nav-block .related-nav-links .related-nav-link > a {
  position: relative;
  display: grid;
  justify-content: center;
  text-align: center;
  row-gap: 4px;
  padding: 24px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  background-color: #4d4d4d;
}
@media (min-width: 768px) {
  .related-nav-block .related-nav-links .related-nav-link > a {
    padding: 40px;
  }
}
.related-nav-block .related-nav-links .related-nav-link > a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 322px;
  margin-inline: auto;
  background-image: url("../images/common/bg-heptagon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.related-nav-block .related-nav-links .related-nav-link > a:hover {
  opacity: 0.8;
}
.related-nav-block .related-nav-links .related-nav-link > a .related-nav-link-title-en {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
.related-nav-block .related-nav-links .related-nav-link > a .related-nav-link-title {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}

.faq-block {
  margin-block-start: 64px;
}
@media (min-width: 1025px) {
  .faq-block {
    margin-block-start: 80px;
  }
}
.faq-block .faq-label {
  margin-block-end: 32px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .faq-block .faq-label {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.faq-block .faq-label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .faq-block .faq-label::before {
    transform: translateY(1px);
  }
}
.faq-block .faq-label {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .faq-block .faq-label {
    margin-block-end: 40px;
  }
}
.faq-block .faq-title {
  margin-block-end: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .faq-block .faq-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.faq-block .faq-description {
  margin-block: 8px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .faq-block .faq-description {
    margin-block: 16px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.faq-block .faq-items {
  margin-block-start: 40px;
}

.wp-block-yoast-faq-block .schema-faq-section {
  border-block-start: 1px solid #ebf0f7;
  cursor: pointer;
}
.wp-block-yoast-faq-block .schema-faq-section:last-child {
  border-block-end: 1px solid #ebf0f7;
}
.wp-block-yoast-faq-block .schema-faq-section.is-open .schema-faq-question::after {
  -webkit-mask-image: url("../images/common/toggle-minus.svg");
          mask-image: url("../images/common/toggle-minus.svg");
}
.wp-block-yoast-faq-block .schema-faq-question {
  padding: 16px;
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  align-items: center;
}
@media (min-width: 1025px) {
  .wp-block-yoast-faq-block .schema-faq-question {
    padding: 24px 32px;
  }
}
.wp-block-yoast-faq-block .schema-faq-question.js-multi-line {
  align-items: start;
}
.wp-block-yoast-faq-block .schema-faq-question strong {
  display: contents;
}
.wp-block-yoast-faq-block .schema-faq-question::before {
  content: "Q";
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #4d4d4d;
}
.wp-block-yoast-faq-block .schema-faq-question::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../images/common/toggle-plus.svg");
          mask-image: url("../images/common/toggle-plus.svg");
  -webkit-mask-size: 14px 14px;
          mask-size: 14px 14px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #4d4d4d;
}
.wp-block-yoast-faq-block .schema-faq-answer {
  margin-block-end: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 8px 16px 16px 16px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .wp-block-yoast-faq-block .schema-faq-answer {
    padding: 0 32px 24px 32px;
  }
}
body:not(.wp-admin) .wp-block-yoast-faq-block .schema-faq-answer {
  display: none;
}
body:not(.wp-admin) .wp-block-yoast-faq-block .schema-faq-answer.is-active {
  display: grid;
}
.wp-block-yoast-faq-block .schema-faq-answer::before {
  content: "A";
  padding-inline-start: 8px;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
  color: #e71f19;
}

@media (min-width: 768px) {
  .service-anchor-menu-block .anchors-menu-inner {
    padding: 40px;
    border-radius: 24px;
    background-color: #ffffff;
    border: 3px solid #d7d7d7;
  }
}
@media (min-width: 1025px) {
  .service-anchor-menu-block .anchors-menu-inner {
    padding: 80px;
  }
}
.service-anchor-menu-block .anchors-menu-title {
  margin-block-end: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .service-anchor-menu-block .anchors-menu-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
@media (min-width: 1025px) {
  .service-anchor-menu-block .anchors-menu-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-anchor-menu-block .anchors-menu-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .service-anchor-menu-block .anchors-menu-description {
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .service-anchor-menu-block .anchors-menu-description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-anchor-menu-block .anchors-menu-links {
  margin-block-start: 24px;
}
@media (min-width: 768px) {
  .service-anchor-menu-block .anchors-menu-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1025px) {
  .service-anchor-menu-block .anchors-menu-links {
    margin-block-start: 32px;
  }
}
.service-anchor-menu-block .anchors-menu-link {
  list-style: none;
  border-block-end: 1px solid #d7d7d7;
}
@media (min-width: 768px) {
  .service-anchor-menu-block .anchors-menu-link {
    border-block-end: none;
  }
  .service-anchor-menu-block .anchors-menu-link + .anchors-menu-link {
    border-inline-start: 1px solid #d7d7d7;
  }
}
.service-anchor-menu-block .anchors-menu-link > a {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .service-anchor-menu-block .anchors-menu-link > a {
    height: 100%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 1025px) {
  .service-anchor-menu-block .anchors-menu-link > a {
    -moz-column-gap: 4px;
         column-gap: 4px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-anchor-menu-block .anchors-menu-link > a:hover {
  color: #919191;
}
.service-anchor-menu-block .anchors-menu-link > a::after {
  content: "";
  width: 40px;
  height: 40px;
  -webkit-mask-image: url("../images/common/arrow-chevron-down.svg");
          mask-image: url("../images/common/arrow-chevron-down.svg");
  -webkit-mask-size: 24px 24px;
          mask-size: 24px 24px;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mask-position: center;
  background-color: #353535;
}
.service-anchor-menu-block .anchors-menu-link > a:hover::after {
  background-color: #919191;
}

.service-issue-cards-block {
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
  position: relative;
  background-color: #d7d7d7;
}
.service-color-managed .service-issue-cards-block {
  background-color: #2456a6;
}
.service-color-development .service-issue-cards-block {
  background-color: #8d2489;
}
.service-color-insourcing .service-issue-cards-block {
  background-color: #93c523;
}
.service-color-yorozu .service-issue-cards-block {
  background-color: #2fbacc;
}
.service-issue-cards-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/common/bg-heptagon.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1440px auto;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.service-issue-cards-block .issue-cards-inner {
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .service-issue-cards-block .issue-cards-inner {
    padding: 64px 32px;
    max-width: 1024px;
  }
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards-inner {
    padding: 80px 32px;
    margin-inline: auto;
    max-width: 1264px;
  }
}
.service-issue-cards-block .issue-cards-title {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards-title {
    font-size: 2.75rem;
    line-height: 1.5;
    letter-spacing: 0.44px;
  }
}
.service-issue-cards-block .issue-cards {
  margin-block-start: 32px;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .service-issue-cards-block .issue-cards {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards {
    margin-block-start: 40px;
    gap: 24px;
  }
}
.service-issue-cards-block .issue-cards .issue-card {
  padding: 16px;
  border-radius: 16px;
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards .issue-card {
    padding: 24px;
    border-radius: 24px;
  }
}
.service-issue-cards-block .issue-cards .issue-card__title {
  margin-block-end: 0;
  display: flex;
  align-items: start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards .issue-card__title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
    transform: translateY(2px);
  }
}
.service-issue-cards-block .issue-cards .issue-card__icon {
  position: relative;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #d7d7d7;
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards .issue-card__icon {
    top: -2px;
    width: 30px;
    height: 30px;
  }
}
.service-color-managed .service-issue-cards-block .issue-cards .issue-card__icon {
  background-color: #2456a6;
}
.service-color-development .service-issue-cards-block .issue-cards .issue-card__icon {
  background-color: #8d2489;
}
.service-color-insourcing .service-issue-cards-block .issue-cards .issue-card__icon {
  background-color: #93c523;
}
.service-color-yorozu .service-issue-cards-block .issue-cards .issue-card__icon {
  background-color: #2fbacc;
}
.service-issue-cards-block .issue-cards .issue-card__icon::after {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4px;
  aspect-ratio: 4/13;
  background-image: url("../images/blocks/service-issue-cards/icon-warning-heptagon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards .issue-card__icon::after {
    top: 7px;
    aspect-ratio: 4/16;
  }
}
.service-issue-cards-block .issue-cards .issue-card__list {
  margin-block-start: 4px;
  list-style: none;
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards .issue-card__list {
    margin-block-start: 16px;
  }
}
.service-issue-cards-block .issue-cards .issue-card__item {
  padding-inline-start: 24px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-issue-cards-block .issue-cards .issue-card__item {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-issue-cards-block .issue-cards .issue-card__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 4px;
  height: 4px;
  background: #4d4d4d;
  border-radius: 50%;
}

.service-items-block {
  margin-block-start: 64px;
}
@media (min-width: 1025px) {
  .service-items-block {
    margin-block-start: 80px;
  }
}
.service-items-block .service-item {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .service-items-block .service-item {
    display: grid;
    -moz-column-gap: 32px;
         column-gap: 32px;
    grid-template-columns: 4.15fr 5.13fr;
  }
}
@media (min-width: 1025px) {
  .service-items-block .service-item {
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-template-columns: 5.6fr 6fr;
  }
}
.service-items-block .service-item + .service-item {
  margin-block-start: 64px;
}
@media (min-width: 1025px) {
  .service-items-block .service-item + .service-item {
    margin-block-start: 80px;
  }
}
.service-items-block .service-item__media {
  order: -1;
}
.service-items-block .service-item__media .service-item__image {
  margin-inline: auto;
}
.service-items-block .service-item__media .service-item__image img {
  width: 100%;
}
.service-items-block .service-item__media .service-item__image--sp {
  display: block;
  max-width: 327px;
}
@media (min-width: 768px) {
  .service-items-block .service-item__media .service-item__image--sp {
    display: none;
  }
}
.service-items-block .service-item__media .service-item__image--pc {
  display: none;
}
@media (min-width: 768px) {
  .service-items-block .service-item__media .service-item__image--pc {
    display: block;
    max-width: 334px;
  }
}
@media (min-width: 1025px) {
  .service-items-block .service-item__media .service-item__image--pc {
    max-width: 450px;
  }
}
.service-items-block .service-item__content .service-item__label {
  padding: 4px 8px;
  margin-block-end: 16px;
  display: inline-block;
  width: 120px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 4px;
  text-align: center;
}
@media (min-width: 1025px) {
  .service-items-block .service-item__content .service-item__label {
    margin-block-end: 24px;
  }
}
.service-items-block .service-item__content .service-item__title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-items-block .service-item__content .service-item__title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-items-block .service-item__content .service-item__lead {
  margin-block: 8px 0;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-items-block .service-item__content .service-item__lead {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-items-block .service-item__content .service-item__description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-items-block .service-item__content .service-item__description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-items-block .service-item__content .service-item__button {
  margin-block-start: 32px;
}
@media (min-width: 768px) {
  .service-items-block .service-item__content .service-item__button {
    max-width: 327px;
    margin-inline: auto;
  }
}
@media (min-width: 1025px) {
  .service-items-block .service-item__content .service-item__button {
    margin-block-start: 40px;
    max-width: 400px;
  }
}
.service-items-block .service-item__content .service-item__button > a {
  display: inline-block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 4px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
}
.service-items-block .service-color-managed .service-item__button > a,
.service-items-block .service-color-development .service-item__button > a,
.service-items-block .service-color-insourcing .service-item__button > a,
.service-items-block .service-color-yorozu .service-item__button > a {
  position: relative;
  z-index: 0;
}
.service-items-block .service-color-managed .service-item__button > a::before,
.service-items-block .service-color-development .service-item__button > a::before,
.service-items-block .service-color-insourcing .service-item__button > a::before,
.service-items-block .service-color-yorozu .service-item__button > a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.service-items-block .service-color-managed .service-item__button > a::after,
.service-items-block .service-color-development .service-item__button > a::after,
.service-items-block .service-color-insourcing .service-item__button > a::after,
.service-items-block .service-color-yorozu .service-item__button > a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
}
.service-items-block .service-color-managed .service-item__button > a:hover,
.service-items-block .service-color-development .service-item__button > a:hover,
.service-items-block .service-color-insourcing .service-item__button > a:hover,
.service-items-block .service-color-yorozu .service-item__button > a:hover {
  color: #ffffff;
}
.service-items-block .service-color-managed .service-item__button > a:hover::before,
.service-items-block .service-color-development .service-item__button > a:hover::before,
.service-items-block .service-color-insourcing .service-item__button > a:hover::before,
.service-items-block .service-color-yorozu .service-item__button > a:hover::before {
  opacity: 0;
}
.service-items-block .service-color-managed .service-item__label {
  background-color: #2456a6;
}
.service-items-block .service-color-managed .service-item__button > a::before {
  background-image: linear-gradient(98deg, #2fbacc 5.94%, #2456a6 59.36%);
}
.service-items-block .service-color-managed .service-item__button > a::after {
  background-image: linear-gradient(98deg, rgba(47, 186, 204, 0.7) 5.94%, rgba(36, 86, 166, 0.7) 59.36%);
}
.service-items-block .service-color-development .service-item__label {
  background-color: #8d2489;
}
.service-items-block .service-color-development .service-item__button > a::before {
  background-image: linear-gradient(90deg, #c349be 20%, #8d2489 50%);
}
.service-items-block .service-color-development .service-item__button > a::after {
  background-image: linear-gradient(90deg, rgba(195, 73, 190, 0.7) 20%, rgba(141, 36, 137, 0.7) 50%);
}
.service-items-block .service-color-insourcing .service-item__label {
  background-color: #93c523;
}
.service-items-block .service-color-insourcing .service-item__button > a::before {
  background-image: linear-gradient(97deg, #c9ed77 7.79%, #93c523 42.37%);
}
.service-items-block .service-color-insourcing .service-item__button > a::after {
  background-image: linear-gradient(97deg, rgba(201, 237, 119, 0.7) 7.79%, rgba(147, 197, 35, 0.7) 42.37%);
}
.service-items-block .service-color-yorozu .service-item__label {
  background-color: #2fbacc;
}
.service-items-block .service-color-yorozu .service-item__button > a::before {
  background-image: linear-gradient(87deg, #72ebfb 10.79%, #43abf1 31.96%, #43abf1 53.12%);
}
.service-items-block .service-color-yorozu .service-item__button > a::after {
  background-image: linear-gradient(87deg, rgba(114, 235, 251, 0.7) 10.79%, rgba(67, 171, 241, 0.7) 31.96%, rgba(67, 171, 241, 0.7) 53.12%);
}
.service-items-block .related-cards-swiper {
  margin-block-start: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .service-items-block .related-cards-swiper {
    margin-block-start: 30px;
  }
}
@media (min-width: 1025px) {
  .service-items-block .related-cards-swiper {
    margin-block-start: 34px;
  }
}

.service-overview-block {
  margin-block-end: 80px;
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .service-overview-block {
    margin-block-end: 104px;
    grid-template-columns: 5fr 4.6fr;
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .service-overview-block {
    margin-block-end: 120px;
    grid-template-columns: 7fr 5fr;
  }
}
.service-overview-block .service-header {
  display: grid;
  row-gap: 8px;
}
@media (min-width: 1025px) {
  .service-overview-block .service-header {
    row-gap: 0;
  }
}
.service-overview-block .service-header .service-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service-overview-block .service-header .service-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .service-overview-block .service-header .service-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-overview-block .service-header .service-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .service-overview-block .service-header .service-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .service-overview-block .service-header .service-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.service-overview-block .service-overview {
  margin-block-start: 32px;
  padding: 32px;
  display: grid;
  row-gap: 16px;
  border-radius: 16px;
  background-color: #f5f5f5;
}
.service-color-managed .service-overview-block .service-overview {
  background-color: #eaf0f9;
}
.service-color-development .service-overview-block .service-overview {
  background-color: #f2ebf3;
}
.service-color-insourcing .service-overview-block .service-overview {
  background-color: #f5f8ef;
}
.service-color-yorozu .service-overview-block .service-overview {
  background-color: #eaf8f9;
}
@media (min-width: 1025px) {
  .service-overview-block .service-overview {
    margin-block-start: 40px;
    padding: 48px;
    border-radius: 24px;
  }
}
.service-overview-block .service-overview .service-lead {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-overview-block .service-overview .service-lead {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-overview-block .service-overview .service-description {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-overview-block .service-overview .service-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
@media (min-width: 768px) {
  .service-overview-block .service-image {
    margin-inline-start: -20px;
  }
}
@media (min-width: 1025px) {
  .service-overview-block .service-image {
    margin-inline-start: -44px;
  }
}
.service-overview-block .service-image img {
  width: 100%;
}

.service-menu-cards-block {
  margin-block: 80px;
}
@media (min-width: 768px) {
  .service-menu-cards-block {
    margin-block: 104px 0;
  }
}
@media (min-width: 1025px) {
  .service-menu-cards-block {
    margin-block: 120px 0;
  }
}
.service-menu-cards-block .menu-cards-header {
  display: grid;
  row-gap: 8px;
}
.service-menu-cards-block .menu-cards-header .menu-cards-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service-menu-cards-block .menu-cards-header .menu-cards-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-cards-header .menu-cards-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-menu-cards-block .menu-cards-header .menu-cards-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .service-menu-cards-block .menu-cards-header .menu-cards-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-cards-header .menu-cards-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.service-menu-cards-block .menu-cards {
  margin-block-start: 32px;
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .service-menu-cards-block .menu-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-cards {
    gap: 24px;
  }
}
.service-menu-cards-block .menu-card {
  position: relative;
  padding: 48px 24px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
  overflow: hidden;
}
@media (min-width: 768px) {
  .service-menu-cards-block .menu-card {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card {
    padding: 64px 40px 40px;
    border-radius: 24px;
  }
}
.service-menu-cards-block .menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background-color: #d7d7d7;
}
.service-color-managed .service-menu-cards-block .menu-card::before {
  background-image: linear-gradient(98deg, #2fbacc 5.94%, #2456a6 59.36%);
}
.service-color-development .service-menu-cards-block .menu-card::before {
  background-image: linear-gradient(90deg, #c349be 20%, #8d2489 50%);
}
.service-color-insourcing .service-menu-cards-block .menu-card::before {
  background-image: linear-gradient(97deg, #c9ed77 7.79%, #93c523 42.37%);
}
.service-color-yorozu .service-menu-cards-block .menu-card::before {
  background-image: linear-gradient(87deg, #72ebfb 10.79%, #43abf1 31.96%, #43abf1 53.12%);
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card::before {
    height: 24px;
  }
}
.service-menu-cards-block .menu-card .menu-card__image {
  margin-inline: auto;
  margin-block-end: 16px;
  max-width: 279px;
}
@media (min-width: 768px) {
  .service-menu-cards-block .menu-card .menu-card__image {
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__image {
    margin-block-end: 24px;
  }
}
.service-menu-cards-block .menu-card .menu-card__image img {
  width: 100%;
  aspect-ratio: 254/143;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-menu-cards-block .menu-card .menu-card__title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-menu-cards-block .menu-card .menu-card__description {
  margin-block: 8px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__description {
    margin-block: 16px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-menu-cards-block .menu-card .menu-card__link {
  margin-block-start: auto;
}
.service-menu-cards-block .menu-card .menu-card__link > a {
  margin-block-start: 16px;
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.service-menu-cards-block .menu-card .menu-card__link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.service-menu-cards-block .menu-card .menu-card__link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.service-menu-cards-block .menu-card .menu-card__link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.service-menu-cards-block .menu-card .menu-card__link > a:hover {
  color: #6e6e6e;
}
.service-menu-cards-block .menu-card .menu-card__link > a:hover .arrow-icon {
  border: 1px solid white;
}
.service-menu-cards-block .menu-card .menu-card__link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}
@media (min-width: 1025px) {
  .service-menu-cards-block .menu-card .menu-card__link > a {
    margin-block-start: 24px;
  }
}

.service-merit-block {
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
  padding: 80px 24px;
}
.service-color-managed .service-merit-block {
  background-color: #eaf0f9;
}
.service-color-development .service-merit-block {
  background-color: #f2ebf3;
}
.service-color-insourcing .service-merit-block {
  background-color: #f5f8ef;
}
.service-color-yorozu .service-merit-block {
  background-color: #eaf8f9;
}
@media (min-width: 768px) {
  .service-merit-block {
    width: 100%;
    margin-inline: auto;
    padding: 0;
    margin-block: 64px 104px;
  }
  .service-color-managed .service-merit-block, .service-color-development .service-merit-block, .service-color-insourcing .service-merit-block, .service-color-yorozu .service-merit-block {
    background-color: transparent;
  }
}
@media (min-width: 1025px) {
  .service-merit-block {
    margin-block: 80px 120px;
  }
}
.service-merit-block .merit-header {
  display: grid;
  row-gap: 8px;
}
.service-merit-block .merit-header .merit-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service-merit-block .merit-header .merit-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .service-merit-block .merit-header .merit-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-merit-block .merit-header .merit-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .service-merit-block .merit-header .merit-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .service-merit-block .merit-header .merit-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.service-merit-block .merit-content {
  margin-block-start: 32px;
}
@media (min-width: 768px) {
  .service-merit-block .merit-content {
    padding: 32px 32px 48px;
    border-radius: 16px;
    background-color: #f5f5f5;
  }
  .service-color-managed .service-merit-block .merit-content {
    background-color: #eaf0f9;
  }
  .service-color-development .service-merit-block .merit-content {
    background-color: #f2ebf3;
  }
  .service-color-insourcing .service-merit-block .merit-content {
    background-color: #f5f8ef;
  }
  .service-color-yorozu .service-merit-block .merit-content {
    background-color: #eaf8f9;
  }
}
@media (min-width: 1025px) {
  .service-merit-block .merit-content {
    margin-block-start: 40px;
    padding: 48px 40px 64px;
    border-radius: 24px;
  }
}
.service-merit-block .merit-content-title {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-merit-block .merit-content-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-merit-block .merit-content-title .label-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label-base.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .service-merit-block .merit-content-title .label-icon {
    transform: translateY(1px);
  }
}
.service-merit-block .merit-content-title .label-icon::after {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  background-color: #4d4d4d;
}
.service-color-managed .service-merit-block .merit-content-title .label-icon::after {
  background-color: #eaf0f9;
}
.service-color-development .service-merit-block .merit-content-title .label-icon::after {
  background-color: #f2ebf3;
}
.service-color-insourcing .service-merit-block .merit-content-title .label-icon::after {
  background-color: #f5f8ef;
}
.service-color-yorozu .service-merit-block .merit-content-title .label-icon::after {
  background-color: #eaf8f9;
}
.service-merit-block .merit-cards {
  margin-block-start: 16px;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .service-merit-block .merit-cards {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .service-merit-block .merit-cards {
    gap: 24px;
  }
}
.service-merit-block .merit-card {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
@media (min-width: 1025px) {
  .service-merit-block .merit-card {
    padding: 40px;
    border-radius: 16px;
  }
}
.service-merit-block .merit-card .merit-card__title {
  margin-block-end: 0;
  padding-block-end: 4px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  position: relative;
  border-block-end: 4px solid #d7d7d7;
}
@media (min-width: 1025px) {
  .service-merit-block .merit-card .merit-card__title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.service-merit-block .merit-card .merit-card__title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 76px;
  height: 4px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
}
.service-merit-block .merit-card .merit-card__list {
  margin-block-start: 16px;
  list-style: none;
}
@media (min-width: 1025px) {
  .service-merit-block .merit-card .merit-card__list {
    margin-block-start: 24px;
  }
}
.service-merit-block .merit-card .merit-card__item {
  padding-inline-start: 24px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-merit-block .merit-card .merit-card__item {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-merit-block .merit-card .merit-card__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 4px;
  height: 4px;
  background: #4d4d4d;
  border-radius: 50%;
}
.service-merit-block .merit-card .merit-card__item + .merit-card__item {
  margin-block-start: 8px;
}
@media (min-width: 1025px) {
  .service-merit-block .merit-card .merit-card__item + .merit-card__item {
    margin-block-start: 16px;
  }
}

@media (min-width: 768px) {
  .single-services .service-merit-block {
    margin-block: 0;
    padding: 104px 32px 0;
  }
}
@media (min-width: 1025px) {
  .single-services .service-merit-block {
    margin-block: 0;
    padding: 120px 32px 0;
    margin-inline: auto;
    max-width: 1264px;
  }
}

.service-related-posts-block {
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
}

.service-related-posts-block {
  position: relative;
  overflow: hidden;
}
.service-related-posts-block::before, .service-related-posts-block::after {
  content: "";
  position: absolute;
  width: 160px;
  aspect-ratio: 1/1;
  background-image: url("../images/common/related-decoration.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (min-width: 768px) {
  .service-related-posts-block::before, .service-related-posts-block::after {
    width: 256px;
  }
}
@media (min-width: 1025px) {
  .service-related-posts-block::before, .service-related-posts-block::after {
    width: 360px;
  }
}
.service-related-posts-block::before {
  top: -2px;
  right: -2px;
}
.service-related-posts-block::after {
  bottom: -2px;
  left: -2px;
  transform: rotate(180deg);
}
.service-related-posts-block .related-posts-inner {
  padding: 135px 24px;
}
@media (min-width: 768px) {
  .service-related-posts-block .related-posts-inner {
    padding: 64px 32px;
  }
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner {
    padding: 80px 32px;
    max-width: 1264px;
    margin-inline: auto;
  }
}
.service-related-posts-block .related-posts-inner .related-posts-title {
  margin-block-end: 24px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-posts-title {
    margin-block-end: 40px;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.service-related-posts-block .related-posts-inner .related-posts-title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(3px);
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-posts-title::before {
    transform: translateY(2px);
  }
}
.service-related-posts-block .related-posts-inner .related-posts-items {
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .service-related-posts-block .related-posts-inner .related-posts-items {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-posts-items {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.service-related-posts-block .related-posts-inner .related-posts-link {
  margin-block-start: 24px;
}
.service-related-posts-block .related-posts-inner .related-posts-link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-posts-link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.service-related-posts-block .related-posts-inner .related-posts-link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-posts-link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.service-related-posts-block .related-posts-inner .related-posts-link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-posts-link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.service-related-posts-block .related-posts-inner .related-posts-link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .service-related-posts-block .related-posts-inner .related-posts-link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.service-related-posts-block .related-posts-inner .related-posts-link > a:hover {
  color: #6e6e6e;
}
.service-related-posts-block .related-posts-inner .related-posts-link > a:hover .arrow-icon {
  border: 1px solid white;
}
.service-related-posts-block .related-posts-inner .related-posts-link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}

.service-issue-block {
  padding: 64px 24px;
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .service-issue-block {
    padding: 104px 32px;
    grid-template-columns: 500px 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (min-width: 1025px) {
  .service-issue-block {
    padding: 120px 32px;
    grid-template-columns: 600px 1fr;
    margin-inline: auto;
    max-width: 1264px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.service-issue-block .issue-text .issue-title {
  margin-block-end: 0;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .service-issue-block .issue-text .issue-title {
    text-align: left;
  }
}
@media (min-width: 1025px) {
  .service-issue-block .issue-text .issue-title {
    font-size: 2.75rem;
    line-height: 1.5;
    letter-spacing: 0.44px;
  }
}
.service-issue-block .issue-text .issue-lead {
  margin-block: 8px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .service-issue-block .issue-text .issue-lead {
    text-align: left;
  }
}
@media (min-width: 1025px) {
  .service-issue-block .issue-text .issue-lead {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-issue-block .issue-text .issue-list {
  margin-block-start: 32px;
  list-style: none;
}
@media (min-width: 1025px) {
  .service-issue-block .issue-text .issue-list {
    margin-block-start: 40px;
  }
}
.service-issue-block .issue-text .issue-item {
  padding: 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  background-color: #f5f5f5;
}
@media (min-width: 1025px) {
  .service-issue-block .issue-text .issue-item {
    padding: 24px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-issue-block .issue-text .issue-item + .issue-item {
  margin-block-start: 16px;
}
@media (min-width: 1025px) {
  .service-issue-block .issue-text .issue-item + .issue-item {
    margin-block-start: 24px;
  }
}
.service-issue-block .issue-image {
  width: 100%;
  max-width: 327px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service-issue-block .issue-image {
    max-width: none;
  }
}
.service-issue-block .issue-image img {
  width: 100%;
  transform-origin: left top;
  transform: scale(1.2);
}
@media (min-width: 768px) {
  .service-issue-block .issue-image img {
    transform-origin: left center;
    transform: scale(1.24);
  }
}
@media (min-width: 1025px) {
  .service-issue-block .issue-image img {
    transform: scale(1.2);
  }
}

.service-details-block {
  padding: 80px 24px;
  display: grid;
  row-gap: 48px;
}
@media (min-width: 768px) {
  .service-details-block {
    padding: 64px 32px 104px;
    row-gap: 64px;
  }
}
@media (min-width: 1025px) {
  .service-details-block {
    padding: 80px 32px 120px;
    row-gap: 80px;
    margin-inline: auto;
    max-width: 1264px;
  }
}
.service-details-block .details-main {
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .service-details-block .details-main {
    grid-template-columns: 5fr 4.6fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (min-width: 1025px) {
  .service-details-block .details-main {
    grid-template-columns: 1.1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.service-details-block .details-header {
  display: grid;
  row-gap: 8px;
}
.service-details-block .details-header .details-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service-details-block .details-header .details-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .service-details-block .details-header .details-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-details-block .details-header .details-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .service-details-block .details-header .details-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .service-details-block .details-header .details-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.service-details-block .details-lead {
  margin-block: 32px 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-block .details-lead {
    margin-block: 40px 0;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-details-block .details-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-details-block .details-description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
@media (min-width: 768px) {
  .service-details-block .details-image {
    height: 400px;
  }
}
@media (min-width: 1025px) {
  .service-details-block .details-image {
    height: 500px;
  }
}
.service-details-block .details-image img {
  width: 100%;
  margin-inline: auto;
  max-width: 327px;
}
@media (min-width: 768px) {
  .service-details-block .details-image img {
    max-width: none;
    transform-origin: left center;
    transform: scale(1.1);
  }
}
@media (min-width: 1025px) {
  .service-details-block .details-image img {
    transform: scale(1.16) translateY(-28px);
  }
}
.service-details-block .details-lists {
  display: grid;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .service-details-block .details-lists {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (min-width: 1025px) {
  .service-details-block .details-lists {
    gap: 40px 24px;
  }
}
.service-details-block .details-list .details-list__title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-block .details-list .details-list__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-details-block .details-list .details-list__title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .service-details-block .details-list .details-list__title::before {
    transform: translateY(1px);
  }
}
.service-details-block .details-list .details-list__items {
  margin-block-start: 24px;
  list-style: none;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 1025px) {
  .service-details-block .details-list .details-list__items {
    margin-block-start: 32px;
  }
}
.service-details-block .details-list .details-list__item {
  padding: 16px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-radius: 8px;
  border: 3px solid #b4b4b4;
}
@media (min-width: 768px) {
  .service-details-block .details-list .details-list__item {
    padding: 28px 16px;
  }
}
@media (min-width: 1025px) {
  .service-details-block .details-list .details-list__item {
    padding: 24px;
    border-radius: 16px;
    align-items: center;
  }
}
.service-details-block .details-list .details-list__item .details-list__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(2.133px 2.133px 4.267px rgba(77, 77, 77, 0.25));
}
@media (min-width: 1025px) {
  .service-details-block .details-list .details-list__item .details-list__icon {
    width: 60px;
    height: 60px;
  }
}
.service-details-block .details-list .details-list__item .details-list__detail {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-block .details-list .details-list__item .details-list__detail {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-details-block .details-list.details-list--check .details-list__item .details-list__icon {
  position: relative;
  border-radius: 50%;
  background-color: #d7d7d7;
}
.service-color-managed .service-details-block .details-list.details-list--check .details-list__item .details-list__icon {
  background-image: linear-gradient(98deg, #2fbacc 5.94%, #2456a6 59.36%);
}
.service-color-development .service-details-block .details-list.details-list--check .details-list__item .details-list__icon {
  background-image: linear-gradient(90deg, #c349be 20%, #8d2489 50%);
}
.service-color-insourcing .service-details-block .details-list.details-list--check .details-list__item .details-list__icon {
  background-image: linear-gradient(97deg, #c9ed77 7.79%, #93c523 42.37%);
}
.service-color-yorozu .service-details-block .details-list.details-list--check .details-list__item .details-list__icon {
  background-image: #eaf8f9;
}
.service-details-block .details-list.details-list--check .details-list__item .details-list__icon::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("../images/common/icon-check.svg");
  background-size: 12.8px 12.8px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .service-details-block .details-list.details-list--check .details-list__item .details-list__icon::after {
    width: 60px;
    height: 60px;
    background-size: 24px 24px;
  }
}
.service-details-block .details-list.details-list--person .details-list__item .details-list__icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.service-details-block .details-list.details-list--person .details-list__item:nth-child(4n+1) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-01.svg");
}
.service-details-block .details-list.details-list--person .details-list__item:nth-child(4n+2) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-02.svg");
}
.service-details-block .details-list.details-list--person .details-list__item:nth-child(4n+3) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-03.svg");
}
.service-details-block .details-list.details-list--person .details-list__item:nth-child(4n+4) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-04.svg");
}

.service-details-insourcing-block {
  padding: 80px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 48px;
}
@media (min-width: 768px) {
  .service-details-insourcing-block {
    padding: 64px 32px 104px;
    row-gap: 64px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block {
    padding: 80px 32px 120px;
    row-gap: 80px;
    margin-inline: auto;
    max-width: 1264px;
  }
}
.service-details-insourcing-block .details-main {
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-main {
    grid-template-columns: 5fr 4.6fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-main {
    grid-template-columns: 1.1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.service-details-insourcing-block .details-main .details-header {
  display: grid;
  row-gap: 8px;
}
.service-details-insourcing-block .details-main .details-header .details-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-main .details-header .details-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-main .details-header .details-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-details-insourcing-block .details-main .details-header .details-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-main .details-header .details-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-main .details-header .details-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.service-details-insourcing-block .details-main .details-lead {
  margin-block: 32px 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-main .details-lead {
    margin-block: 40px 0;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-details-insourcing-block .details-main .details-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-main .details-description {
    margin-block: 24px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-main .details-image {
    height: 400px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-main .details-image {
    height: 500px;
  }
}
.service-details-insourcing-block .details-main .details-image img {
  width: 100%;
  margin-inline: auto;
  max-width: 327px;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-main .details-image img {
    max-width: none;
    transform-origin: left center;
    transform: scale(1.1);
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-main .details-image img {
    transform: scale(1.16) translateY(-28px);
  }
}
.service-details-insourcing-block .details-features .details-features__title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-features .details-features__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-details-insourcing-block .details-features .details-features__title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-features .details-features__title::before {
    transform: translateY(1px);
  }
}
.service-details-insourcing-block .details-features .details-features__diagram {
  margin-block-start: 40px;
}
.service-details-insourcing-block .details-features .details-features__diagram img {
  width: 100%;
}
.service-details-insourcing-block .details-more-features .details-more-features-main {
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-more-features .details-more-features-main {
    align-items: center;
    grid-template-columns: 4.6fr 5fr;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-main {
    grid-template-columns: 1fr 1fr;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-main .details-more-features-main__image {
  width: 100%;
}
.service-details-insourcing-block .details-more-features .details-more-features-main .details-more-features-main__image img {
  width: 100%;
  max-width: 327px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-more-features .details-more-features-main .details-more-features-main__image img {
    max-width: none;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-main .details-more-features-main__text .details-more-features-main__title {
  margin-block-end: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
.service-details-insourcing-block .details-more-features .details-more-features-main .details-more-features-main__text .details-more-features-main__lead {
  margin-block: 24px 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
.service-details-insourcing-block .details-more-features .details-more-features-main .details-more-features-main__text .details-more-features-main__description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
.service-details-insourcing-block .details-more-features .details-more-features-diagram {
  margin-block-start: 40px;
}
.service-details-insourcing-block .details-more-features .details-more-features-diagram img {
  width: 100%;
}
.service-details-insourcing-block .details-more-features .details-more-features-content {
  margin-block-start: 80px;
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
  padding: 80px 24px;
  background-color: #f5f8ef;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content {
    width: 100%;
    margin-inline: auto;
    padding: 0;
    margin-block-start: 64px;
    background-color: transparent;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content {
    margin-block-start: 80px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__intro {
  margin-block-end: 64px;
  padding: 16px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  background-color: #353535;
  position: relative;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__intro {
    margin-block-end: 72px;
    border-radius: 16px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__intro::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 16px 0 16px;
  border-color: #353535 transparent transparent transparent;
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition {
  margin-block-start: 32px;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition {
    padding: 32px 32px 48px;
    border-radius: 16px;
    background-color: #f5f8ef;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition {
    margin-block-start: 40px;
    padding: 48px 40px 64px;
    border-radius: 24px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-title,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-title {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-title,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-title .label-icon,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-title .label-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label-base.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-title .label-icon,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-title .label-icon {
    transform: translateY(1px);
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-title .label-icon::after,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-title .label-icon::after {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  background-color: #4d4d4d;
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-title .label-icon::after,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-title .label-icon::after {
  background-color: #f5f8ef;
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-cards,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-cards {
  margin-block-start: 16px;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-cards,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-cards {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-cards,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-cards {
    gap: 24px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card {
    padding: 40px;
    border-radius: 16px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-title,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-title,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-title,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-title {
  margin-block-end: 0;
  padding-block-end: 4px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  position: relative;
  border-block-end: 4px solid #d7d7d7;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-title,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-title,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-title,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-title::after,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-title::after,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-title::after,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 76px;
  height: 4px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-list,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-list,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-list,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-list {
  margin-block-start: 16px;
  list-style: none;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-list,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-list,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-list,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-list {
    margin-block-start: 24px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-item,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-item {
  padding-inline-start: 24px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-item,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-item {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-item::before,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 4px;
  height: 4px;
  background: #4d4d4d;
  border-radius: 50%;
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-item + .details-more-features-content__mission-card-item,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-item + .details-more-features-content__mission-card-item {
  margin-block-start: 8px;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__mission-card-item + .details-more-features-content__mission-card-item,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__mission-card-item + .details-more-features-content__mission-card-item {
    margin-block-start: 16px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-item,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-item {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-item,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-item {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-item + .details-more-features-content__proposition-card-item,
.service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-item + .details-more-features-content__proposition-card-item {
  margin-block-start: 8px;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__mission-card .details-more-features-content__proposition-card-item + .details-more-features-content__proposition-card-item,
  .service-details-insourcing-block .details-more-features .details-more-features-content .details-more-features-content__proposition-card .details-more-features-content__proposition-card-item + .details-more-features-content__proposition-card-item {
    margin-block-start: 16px;
  }
}
.service-details-insourcing-block .details-customers .details-customers__title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-customers .details-customers__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.service-details-insourcing-block .details-customers .details-customers__title::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-customers .details-customers__title::before {
    transform: translateY(1px);
  }
}
.service-details-insourcing-block .details-list {
  margin-block-start: 24px;
  display: grid;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-list {
    margin-block-start: 32px;
    gap: 24px;
  }
}
.service-details-insourcing-block .details-list .details-list__item {
  padding: 16px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-radius: 8px;
  border: 3px solid #b4b4b4;
}
@media (min-width: 768px) {
  .service-details-insourcing-block .details-list .details-list__item {
    padding: 28px 16px;
  }
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-list .details-list__item {
    padding: 24px;
    border-radius: 16px;
    align-items: center;
  }
}
.service-details-insourcing-block .details-list .details-list__item .details-list__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(2.133px 2.133px 4.267px rgba(77, 77, 77, 0.25));
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-list .details-list__item .details-list__icon {
    width: 60px;
    height: 60px;
  }
}
.service-details-insourcing-block .details-list .details-list__item .details-list__detail {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-list .details-list__item .details-list__detail {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-details-insourcing-block .details-list.details-list--check .details-list__item .details-list__icon {
  position: relative;
  border-radius: 50%;
  background-image: linear-gradient(97deg, #c9ed77 7.79%, #93c523 42.37%);
}
.service-details-insourcing-block .details-list.details-list--check .details-list__item .details-list__icon::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("../images/common/icon-check.svg");
  background-size: 12.8px 12.8px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .service-details-insourcing-block .details-list.details-list--check .details-list__item .details-list__icon::after {
    width: 60px;
    height: 60px;
    background-size: 24px 24px;
  }
}
.service-details-insourcing-block .details-list.details-list--person .details-list__item .details-list__icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.service-details-insourcing-block .details-list.details-list--person .details-list__item:nth-child(4n+1) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-01.svg");
}
.service-details-insourcing-block .details-list.details-list--person .details-list__item:nth-child(4n+2) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-02.svg");
}
.service-details-insourcing-block .details-list.details-list--person .details-list__item:nth-child(4n+3) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-03.svg");
}
.service-details-insourcing-block .details-list.details-list--person .details-list__item:nth-child(4n+4) .details-list__icon {
  background-image: url("../images/blocks/service-details/details-list-04.svg");
}

.service-step-block {
  width: 100vw;
  margin-inline: calc(50% - 50cqi);
  position: relative;
}
.service-step-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 375/176;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: -1;
}
.service-color-managed .service-step-block::after {
  background-color: #2456a6;
}
.service-color-development .service-step-block::after {
  background-color: #8d2489;
}
.service-color-insourcing .service-step-block::after {
  background-color: #93c523;
}
.service-color-yorozu .service-step-block::after {
  background-color: #2fbacc;
}
.service-step-block .service-step-inner {
  padding: 80px 24px;
  display: grid;
  row-gap: 32px;
}
@media (min-width: 768px) {
  .service-step-block .service-step-inner {
    padding: 104px 32px;
    grid-template-columns: 3fr 6.2fr;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (min-width: 1025px) {
  .service-step-block .service-step-inner {
    padding: 120px 32px;
    grid-template-columns: 3.4fr 8fr;
    margin-inline: auto;
    max-width: 1264px;
  }
}
.service-step-block .step-header {
  display: grid;
  row-gap: 8px;
}
@media (min-width: 768px) {
  .service-step-block .step-header {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.service-step-block .step-header .step-title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .service-step-block .step-header .step-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .service-step-block .step-header .step-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.service-step-block .step-header .step-title-en {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.4px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  order: -1;
}
@media (min-width: 768px) {
  .service-step-block .step-header .step-title-en {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
@media (min-width: 1025px) {
  .service-step-block .step-header .step-title-en {
    font-size: 5rem;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
.service-step-block .steps {
  list-style: none;
  display: grid;
  row-gap: 46px;
}
.service-step-block .step-item {
  padding: 24px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  background: linear-gradient(97deg, rgba(255, 255, 255, 0.8) 1.47%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: grid;
  gap: 8px 4px;
  grid-template-columns: 40px 1fr;
}
@media (min-width: 1025px) {
  .service-step-block .step-item {
    padding: 32px;
    border-radius: 24px;
    grid-template-columns: 80px 1fr;
    gap: 8px 24px;
  }
}
@media (min-width: 1025px) {
  .service-step-block .step-item {
    grid-template-columns: 85px 1fr;
  }
}
.service-step-block .step-item .step-item__icon {
  width: 100%;
  grid-row: 1/span 2;
}
.service-step-block .step-item .step-item__title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.service-step-block .step-item .step-item__title .step-item__number {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 600;
  color: #4d4d4d;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 1025px) {
  .service-step-block .step-item .step-item__title .step-item__number {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.service-step-block .step-item .step-item__title .step-item__title-text {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  transform: translateY(6px);
}
@media (min-width: 1025px) {
  .service-step-block .step-item .step-item__title .step-item__title-text {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
    transform: translateY(8px);
  }
}
.service-step-block .step-item .step-item__description {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .service-step-block .step-item .step-item__description {
    grid-column: 2/-1;
  }
}
@media (min-width: 1025px) {
  .service-step-block .step-item .step-item__description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.service-step-block .step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14.14px solid transparent;
  border-right: 14.14px solid transparent;
  border-top: 14.14px solid #919191;
}

.showcases-process-list-block {
  margin-block-end: 32px;
}
.showcases-process-list-block .process-item {
  padding: 24px;
  border: 3px solid #d7d7d7;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
@media (min-width: 1025px) {
  .showcases-process-list-block .process-item {
    padding: 40px;
  }
}
.showcases-process-list-block .process-item + .process-item {
  margin-block-start: 24px;
}
@media (min-width: 1025px) {
  .showcases-process-list-block .process-item + .process-item {
    margin-block-start: 32px;
  }
}
.showcases-process-list-block .process-item .process-item__title {
  margin-block-end: 12px;
  position: relative;
  padding-block-end: 4px;
  border-block-end: 4px solid #d7d7d7;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
.showcases-process-list-block .process-item .process-item__title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 88px;
  height: 4px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
}
@media (min-width: 768px) {
  .showcases-process-list-block .process-item .process-item__title::after {
    width: 124px;
  }
}
@media (min-width: 1025px) {
  .showcases-process-list-block .process-item .process-item__title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
  .showcases-process-list-block .process-item .process-item__title::after {
    width: 150px;
  }
}
.showcases-process-list-block .process-item .process-item__title {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.showcases-process-list-block .process-item .process-item__title::after {
  width: 76px;
}
@media (min-width: 768px) {
  .showcases-process-list-block .process-item .process-item__title::after {
    width: 198px;
  }
}
@media (min-width: 1025px) {
  .showcases-process-list-block .process-item .process-item__title {
    margin-block-end: 24px;
  }
  .showcases-process-list-block .process-item .process-item__title::after {
    width: 193px;
  }
}
.showcases-process-list-block .process-item .process-item__title .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.showcases-process-list-block .process-item .process-item__title .icon.icon-solution {
  background-image: url("../images/blocks/showcases-process-list/icon-solution.svg");
}
.showcases-process-list-block .process-item .process-item__title .icon.icon-result {
  background-image: url("../images/blocks/showcases-process-list/icon-result.svg");
}
.showcases-process-list-block .process-item .process-item__title .icon.icon-challenge {
  background-image: url("../images/blocks/showcases-process-list/icon-challenge.svg");
}
.showcases-process-list-block .process-item__item {
  list-style: none;
  position: relative;
  padding-inline-start: 20px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .showcases-process-list-block .process-item__item {
    padding-inline-start: 24px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.showcases-process-list-block .process-item__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 8px;
  width: 4px;
  height: 4px;
  background: #353535;
  border-radius: 50%;
}
@media (min-width: 1025px) {
  .showcases-process-list-block .process-item__item::before {
    top: 10px;
    left: 10px;
  }
}
.showcases-process-list-block .process-item__item + .process-item__item {
  margin-block-start: 4px;
}

.seminar-lecturers-block {
  display: grid;
  row-gap: 32px;
}
@media (min-width: 1025px) {
  .seminar-lecturers-block {
    row-gap: 40px;
  }
}
.seminar-lecturers-block .seminar-lecturer {
  padding: 24px;
  display: grid;
  row-gap: 24px;
  border: 3px solid #d7d7d7;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
@media (min-width: 768px) {
  .seminar-lecturers-block .seminar-lecturer {
    padding: 32px;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (min-width: 1025px) {
  .seminar-lecturers-block .seminar-lecturer {
    padding: 40px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    border-radius: 24px;
  }
}
.seminar-lecturers-block .seminar-lecturer-image {
  width: 100%;
}
.seminar-lecturers-block .seminar-lecturer-image img {
  width: 180px;
  aspect-ratio: 1/1;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}
.seminar-lecturers-block .seminar-lecturer-content .lecturer-name {
  margin-block-end: 0px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .seminar-lecturers-block .seminar-lecturer-content .lecturer-name {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.seminar-lecturers-block .seminar-lecturer-content .lecturer-profile {
  margin-block: 4px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .seminar-lecturers-block .seminar-lecturer-content .lecturer-profile {
    margin-block: 8px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.showcases-client-data {
  padding: 24px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0.32%, rgba(255, 255, 255, 0.6) 99.61%);
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
@media (min-width: 768px) {
  .showcases-client-data {
    padding: 40px;
  }
}
.showcases-client-data .client-logo img {
  margin-inline: auto;
  width: auto;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .showcases-client-data .client-logo {
    margin-block-end: 16px;
  }
}
.showcases-client-data .client-title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .showcases-client-data .client-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.showcases-client-data .client-label {
  margin-block-end: 8px;
  display: block;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 768px) {
  .showcases-client-data .client-label {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.showcases-client-data .client-terms {
  margin-block-start: 8px;
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.showcases-client-data .client-terms .showcases-industry {
  text-decoration: none;
}
.showcases-client-data .client-terms .showcases-location {
  text-decoration: none;
}
.showcases-client-data .client-description {
  margin-block: 16px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
}
.showcases-client-data .client-link {
  margin-block-start: 16px;
}
.showcases-client-data .client-link a {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
}

/*--------------------------------------------------------------
>>> Components
--------------------------------------------------------------*/
.about-sponsor {
  position: relative;
  padding: 48px;
  background-color: #93c523;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 768px) {
  .about-sponsor {
    padding: 64px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor {
    padding: 117px 120px 118px;
  }
}
.about-sponsor::before, .about-sponsor::after {
  content: "";
  position: absolute;
  width: 213px;
  aspect-ratio: 216/214;
  background-image: url("../images/page/about-sponsor-decoration.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .about-sponsor::before, .about-sponsor::after {
    width: 178px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor::before, .about-sponsor::after {
    width: 353px;
  }
}
.about-sponsor::before {
  top: -38px;
  left: -81px;
}
@media (min-width: 768px) {
  .about-sponsor::before {
    top: calc(50% - 8px);
    left: -51px;
    transform: translateY(-50%);
  }
}
@media (min-width: 1025px) {
  .about-sponsor::before {
    left: -110px;
  }
}
.about-sponsor::after {
  bottom: -14px;
  right: -60px;
}
@media (min-width: 768px) {
  .about-sponsor::after {
    bottom: calc(50% - 8px);
    right: -57px;
    transform: translateY(50%);
  }
}
@media (min-width: 1025px) {
  .about-sponsor::after {
    right: -144px;
  }
}
.about-sponsor .about-sponsor-background-text {
  position: absolute;
  font-size: 9.75rem;
  line-height: 1.5;
  letter-spacing: 1.56px;
  line-height: 1;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-background-text {
    font-size: 8.5625rem;
    line-height: 1.5;
    letter-spacing: 1.37px;
    line-height: 1;
    writing-mode: horizontal-tb;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .about-sponsor-background-text {
    font-size: 12rem;
    line-height: 1.5;
    letter-spacing: 1.92px;
    line-height: 1;
  }
}
.about-sponsor .about-sponsor-background-text:nth-of-type(1) {
  top: 0;
  right: -18px;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-background-text:nth-of-type(1) {
    top: -20px;
    right: auto;
    left: 0;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .about-sponsor-background-text:nth-of-type(1) {
    top: -25px;
  }
}
.about-sponsor .about-sponsor-background-text:nth-of-type(2) {
  bottom: 0;
  left: -6px;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-background-text:nth-of-type(2) {
    bottom: -6px;
    left: auto;
    right: -6px;
  }
}
.about-sponsor .about-sponsor-background-text:nth-of-type(3) {
  display: none;
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-background-text:nth-of-type(3) {
    display: block;
    bottom: -6px;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  }
}
.about-sponsor .about-sponsor-background-text:nth-of-type(4) {
  display: none;
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-background-text:nth-of-type(4) {
    display: block;
    top: -20px;
    right: -6px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 1025px) {
  .about-sponsor .about-sponsor-background-text:nth-of-type(4) {
    top: -25px;
  }
}
.about-sponsor .about-sponsor-inner {
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  box-shadow: 0 4px 24px 48px rgba(77, 77, 77, 0.05);
  -webkit-backdrop-filter: blur(18.0650005341px);
          backdrop-filter: blur(18.0650005341px);
  position: relative;
  z-index: 1;
}
@media (min-width: 1025px) {
  .about-sponsor .about-sponsor-inner {
    padding: 40px;
    border-radius: 24px;
    max-width: 1200px;
    margin-inline: auto;
  }
}
.about-sponsor .about-sponsor-title {
  margin-block-end: 0;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .about-sponsor-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.about-sponsor .about-sponsor-description {
  margin-block: 12px 0;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-description {
    margin-block: 8px 0;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .about-sponsor-description {
    margin-block: 12px 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.about-sponsor .about-sponsor-support-teams {
  margin-block-start: 12px;
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .about-sponsor .about-sponsor-support-teams {
    margin-block-start: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .about-sponsor-support-teams {
    margin-block-start: 32px;
  }
}
@media (min-width: 768px) {
  .about-sponsor .suppot-team {
    max-width: 185px;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .suppot-team {
    max-width: 100%;
  }
}
.about-sponsor .suppot-team__logo {
  margin-inline: auto;
  max-width: 190px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .about-sponsor .suppot-team__logo {
    max-width: 113px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .suppot-team__logo {
    max-width: 177px;
  }
}
.about-sponsor .suppot-team__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-sponsor .suppot-team__info {
  margin-block-start: 9px;
  position: relative;
  padding: 9px 25px;
  text-align: center;
  background: #b4b4b4;
  clip-path: polygon(0 50%, 25px 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 25px 100%);
}
@media (min-width: 768px) {
  .about-sponsor .suppot-team__info {
    margin-block-start: 8px;
    padding: 7px 17px 6px;
    clip-path: polygon(0 50%, 17px 0, calc(100% - 17px) 0, 100% 50%, calc(100% - 17px) 100%, 17px 100%);
  }
}
@media (min-width: 1025px) {
  .about-sponsor .suppot-team__info {
    margin-block-start: 16px;
    padding: 12px 36px 12px;
    clip-path: polygon(0 50%, 36px 0, calc(100% - 36px) 0, 100% 50%, calc(100% - 36px) 100%, 36px 100%);
  }
}
.about-sponsor .suppot-team__info::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  right: 4px;
  bottom: 3px;
  background: #ffffff;
  clip-path: polygon(0 50%, 23px 0, calc(100% - 23px) 0, 100% 50%, calc(100% - 23px) 100%, 23px 100%);
  z-index: -1;
}
@media (min-width: 768px) {
  .about-sponsor .suppot-team__info::before {
    clip-path: polygon(0 50%, 14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%);
  }
}
@media (min-width: 1025px) {
  .about-sponsor .suppot-team__info::before {
    top: 4px;
    left: 5px;
    right: 5px;
    bottom: 4px;
    clip-path: polygon(0 50%, 32px 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 32px 100%);
  }
}
.about-sponsor .suppot-team__info .suppot-team__name {
  margin-block-end: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about-sponsor .suppot-team__info .suppot-team__name {
    font-size: 0.625rem;
    line-height: 1.6;
    letter-spacing: 0.1px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .suppot-team__info .suppot-team__name {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
  }
}
.about-sponsor .suppot-team__info .suppot-team__sponsor {
  margin-block-end: 0;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about-sponsor .suppot-team__info .suppot-team__sponsor {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.12px;
  }
}
@media (min-width: 1025px) {
  .about-sponsor .suppot-team__info .suppot-team__sponsor {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}

.archive-filter {
  margin-block-end: 40px;
}
@media (min-width: 768px) {
  .archive-filter {
    margin-block-end: 64px;
  }
}
@media (min-width: 1025px) {
  .archive-filter {
    margin-block-end: 80px;
  }
}

.archive-filter-inner {
  padding: 24px;
  border-radius: 8px;
  background-color: #f5f5f5;
}
.archive-filter-inner .filter-header {
  padding-block: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .archive-filter-inner .filter-header {
    padding-block: 5px;
  }
}
.archive-filter-inner .filter-header .filter-title {
  margin-block-end: 0;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .archive-filter-inner .filter-header .filter-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.archive-filter-inner .filter-header .filter-title .label-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label-base.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(1px);
}
.archive-filter-inner .filter-header .filter-title .label-icon::after {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 8px;
  height: 8px;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  background-color: #f5f5f5;
}
.archive-filter-inner .filter-header .filter-toggle {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .archive-filter-inner .filter-header .filter-toggle {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.archive-filter-inner .filter-header .filter-toggle::after {
  content: "";
  width: 14px;
  height: 14px;
  -webkit-mask-image: url("../images/common/toggle-plus.svg");
          mask-image: url("../images/common/toggle-plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transform: translateY(-1px);
  background-color: #353535;
}
.archive-filter-inner .filter-header .filter-toggle[aria-expanded=true]::after {
  -webkit-mask-image: url("../images/common/toggle-minus.svg");
          mask-image: url("../images/common/toggle-minus.svg");
}
.archive-filter-inner .filter-form {
  margin-block-start: 24px;
}
@media (min-width: 768px) {
  .archive-filter-inner .filter-form {
    margin-block-start: 16px;
  }
}
@media (min-width: 768px) {
  .archive-filter-inner .filter-form .filter-group {
    display: grid;
    grid-template-columns: 100px 1fr;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.archive-filter-inner .filter-form .filter-group .filter-group__title {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .archive-filter-inner .filter-form .filter-group .filter-group__title {
    margin-block-end: 0;
    margin-block-start: 4px;
  }
}
@media (min-width: 1025px) {
  .archive-filter-inner .filter-form .filter-group .filter-group__title {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
    margin-block-start: 8px;
  }
}
.archive-filter-inner .filter-form .filter-group .filter-group__nav,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons {
  margin-block-start: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px) {
  .archive-filter-inner .filter-form .filter-group .filter-group__nav,
  .archive-filter-inner .filter-form .filter-group .filter-group__buttons {
    margin-block-start: 0;
  }
}
.archive-filter-inner .filter-form .filter-group .filter-group__nav .nav-link,
.archive-filter-inner .filter-form .filter-group .filter-group__nav .filter-button,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons .nav-link,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons .filter-button {
  padding: 4px 16px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
  background-color: white;
  border-radius: 4px;
}
@media (min-width: 1025px) {
  .archive-filter-inner .filter-form .filter-group .filter-group__nav .nav-link,
  .archive-filter-inner .filter-form .filter-group .filter-group__nav .filter-button,
  .archive-filter-inner .filter-form .filter-group .filter-group__buttons .nav-link,
  .archive-filter-inner .filter-form .filter-group .filter-group__buttons .filter-button {
    padding: 8px 16px;
  }
}
.archive-filter-inner .filter-form .filter-group .filter-group__nav .nav-link.active, .archive-filter-inner .filter-form .filter-group .filter-group__nav .nav-link:hover,
.archive-filter-inner .filter-form .filter-group .filter-group__nav .filter-button.active,
.archive-filter-inner .filter-form .filter-group .filter-group__nav .filter-button:hover,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons .nav-link.active,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons .nav-link:hover,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons .filter-button.active,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons .filter-button:hover {
  color: white;
  background-color: #4d4d4d;
}
.archive-filter-inner .filter-form .filter-group .filter-group__nav .nav-link,
.archive-filter-inner .filter-form .filter-group .filter-group__buttons .nav-link {
  text-decoration: none;
}
.archive-filter-inner .filter-form .filter-accordion .filter-group {
  margin-block-start: 24px;
}
@media (min-width: 768px) {
  .archive-filter-inner .filter-form .filter-accordion .filter-group {
    margin-block-start: 16px;
  }
}
.archive-filter-inner .filter-form .filter-accordion.is-hidden {
  height: 0;
  overflow: hidden;
}

.footer-cta {
  background-color: #2fbacc;
}

.footer-cta-inner {
  padding: 64px 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-cta-inner {
    padding: 64px 80px;
  }
}
@media (min-width: 1025px) {
  .footer-cta-inner {
    padding: 80px;
    margin-inline: auto;
    max-width: 1030px;
  }
}

.footer-cta-title {
  margin-block-end: 30px;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer-cta-title {
    margin-block-end: 0;
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.4px;
  }
}
@media (min-width: 1025px) {
  .footer-cta-title {
    font-size: 3.125rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
  }
}

.footer-cta-items {
  display: grid;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .footer-cta-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-cta-item {
  position: relative;
  padding-block: 48px 32px;
  border-radius: 16px;
  background-color: #ffffff;
  list-style: none;
  text-align: center;
}
.footer-cta-item:has(.button-contact) {
  margin-block-start: 74px;
}
.footer-cta-item:has(.button-download) {
  margin-block-start: 79px;
}
@media (min-width: 768px) {
  .footer-cta-item {
    padding-block: 86px 24px;
  }
  .footer-cta-item:has(.button-contact) {
    margin-block-start: 80px;
    border-radius: 16px 0 0 16px;
  }
  .footer-cta-item:has(.button-download) {
    margin-block-start: 80px;
    border-radius: 0 16px 16px 0;
  }
}

.footer-cta-item__image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.footer-cta-item:has(.button-contact) .footer-cta-item__image {
  top: -74px;
  width: 80px;
  height: 101px;
}
.footer-cta-item:has(.button-download) .footer-cta-item__image {
  top: -79px;
  width: 155px;
  height: 106px;
}
.footer-cta-item__image img {
  width: 100%;
}
@media (min-width: 768px) {
  .footer-cta-item:has(.button-contact) .footer-cta-item__image {
    top: -50px;
  }
  .footer-cta-item:has(.button-download) .footer-cta-item__image {
    top: -50px;
  }
}
@media (min-width: 1025px) {
  .footer-cta-item:has(.button-contact) .footer-cta-item__image {
    width: 100px;
    height: 123px;
  }
  .footer-cta-item:has(.button-download) .footer-cta-item__image {
    width: 175px;
    height: 120px;
  }
}

.footer-cta-item__content {
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .footer-cta-item__content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .footer-cta-item:nth-child(2n-1) .footer-cta-item__content {
    padding-inline: 24px 16px;
    border-inline-end: 1px solid #b4b4b4;
  }
  .footer-cta-item:nth-child(2n) .footer-cta-item__content {
    padding-inline: 16px 24px;
  }
}

.footer-cta-item__title {
  margin-block-end: 8px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .footer-cta-item__title {
    margin-block-end: 16px;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}

.footer-cta-item__description {
  margin-block-end: 24px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 500;
  text-align: left;
}
@media (min-width: 1025px) {
  .footer-cta-item__description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.footer-cta-item__link {
  margin-block-start: auto;
}

.pickup {
  margin-block-end: 64px;
}

.pickup-inner .pickup-title {
  margin-block-end: 0;
  position: relative;
  padding-block-end: 4px;
  border-block-end: 4px solid #d7d7d7;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
}
.pickup-inner .pickup-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 88px;
  height: 4px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
}
@media (min-width: 768px) {
  .pickup-inner .pickup-title::after {
    width: 258px;
  }
}
@media (min-width: 1025px) {
  .pickup-inner .pickup-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
  .pickup-inner .pickup-title::after {
    width: 324px;
  }
}
.pickup-inner .pickup-title {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  padding-block-end: 8px;
}
.pickup-inner .pickup-content {
  position: relative;
  width: calc(100% + 48px);
  margin-inline-start: -24px;
}
@media (min-width: 768px) {
  .pickup-inner .pickup-content {
    width: 100%;
    margin-inline-start: 0;
  }
}
.pickup-inner .pickup-items {
  padding-block: 32px;
}
@media (min-width: 768px) {
  .pickup-inner .pickup-items {
    padding-block: 48px 32px;
  }
}
@media (min-width: 1025px) {
  .pickup-inner .pickup-items {
    padding-block: 80px 40px;
  }
}
.pickup-inner .pickup-item {
  position: relative;
  border-radius: 24px 24px 16px 16px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
.pickup-inner .pickup-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 27px 27px 19px 19px;
  background-image: linear-gradient(90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d97 71%, #e71f19 86%, #f08619 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pickup-inner .pickup-item:hover::before {
  opacity: 1;
}
.pickup-inner .pickup-item > a {
  display: block;
  height: 100%;
  border-radius: 24px 24px 16px 16px;
  overflow: hidden;
  text-decoration: none;
}
.pickup-inner .pickup-item .pickup-item__thumbnail {
  position: relative;
}
.pickup-inner .pickup-item .pickup-item__image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup-inner .pickup-item .pickup-item__category {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 16px;
  border-start-end-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .pickup-inner .pickup-item .pickup-item__category {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
}
.pickup-inner .pickup-item .pickup-item__content {
  padding: 16px;
  height: calc(5.625rem + 32px);
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .pickup-inner .pickup-item .pickup-item__content {
    padding: 24px;
    height: calc(6.75rem + 48px);
  }
}
.pickup-inner .pickup-item .pickup-item__title {
  margin-block-end: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .pickup-inner .pickup-item .pickup-item__title {
    font-size: 1.5rem;
  }
}
.pickup-inner .swiper {
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .pickup-inner .swiper {
    padding-inline: 8px;
    margin-inline: 40px;
  }
}
@media (min-width: 1025px) {
  .pickup-inner .swiper {
    padding-inline: 16px;
    margin-inline: 60px;
  }
}
.pickup-inner .swiper-button-next,
.pickup-inner .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 4.5px solid #f5f5f5;
}
.pickup-inner .swiper-button-next:hover,
.pickup-inner .swiper-button-prev:hover {
  border-color: transparent;
  transition: border-color 0.3s ease;
}
.pickup-inner .swiper-button-next:hover::before,
.pickup-inner .swiper-button-prev:hover::before {
  opacity: 1;
  transform: scale(1);
}
.pickup-inner .swiper-button-next::before,
.pickup-inner .swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (min-width: 1025px) {
  .pickup-inner .swiper-button-next,
  .pickup-inner .swiper-button-prev {
    width: 60px;
    height: 60px;
  }
}
.pickup-inner .swiper-button-next::after,
.pickup-inner .swiper-button-prev::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #353535;
}
@media (min-width: 1025px) {
  .pickup-inner .swiper-button-next::after,
  .pickup-inner .swiper-button-prev::after {
    width: 24px;
    height: 24px;
  }
}
.pickup-inner .swiper-button-next {
  right: 4px;
}
@media (min-width: 768px) {
  .pickup-inner .swiper-button-next {
    right: 0;
  }
}
.pickup-inner .swiper-button-next::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: translateX(1px);
}
.pickup-inner .swiper-button-prev {
  left: 4px;
}
@media (min-width: 768px) {
  .pickup-inner .swiper-button-prev {
    left: 0;
  }
}
.pickup-inner .swiper-button-prev::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: scaleX(-1) translateX(1px);
}
.pickup-inner .pickup-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.pickup-inner .pickup-controls .swiper-pagination {
  position: static;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: auto;
}
.pickup-inner .pickup-controls .swiper-pagination-bullet {
  margin: 0 !important;
  width: 16px;
  height: 16px;
  background-color: #f5f5f5;
  opacity: 1;
}
.pickup-inner .pickup-controls .swiper-pagination-bullet-active {
  background-color: #4d4d4d;
}
.pickup-inner .pickup-controls .pickup-autoplay-toggle {
  display: block;
  width: 40px;
  height: 40px;
  -webkit-mask-image: url("../images/common/toggle-play.svg");
          mask-image: url("../images/common/toggle-play.svg");
  -webkit-mask-size: 14px 16px;
          mask-size: 14px 16px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: calc(50% + 1px) calc(50% - 1px);
          mask-position: calc(50% + 1px) calc(50% - 1px);
  background-color: #4d4d4d;
}
.pickup-inner .pickup-controls .pickup-autoplay-toggle.active {
  -webkit-mask-image: url("../images/common/toggle-pause.svg");
          mask-image: url("../images/common/toggle-pause.svg");
  -webkit-mask-size: 13px 17px;
          mask-size: 13px 17px;
  -webkit-mask-position: center;
          mask-position: center;
}

.heptagon-info {
  margin-block-start: 32px;
  padding: 32px 40px;
  border: 3px solid #d7d7d7;
  border-radius: 24px;
  box-shadow: 0 4px 4px 0 rgba(77, 77, 77, 0.25);
}
@media (min-width: 1025px) {
  .heptagon-info {
    margin-block-start: 40px;
    padding: 40px;
  }
}
.heptagon-info .heptagon-info__title-en {
  margin-block-end: 16px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .heptagon-info .heptagon-info__title-en {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.heptagon-info .heptagon-info__title-en::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(3px);
}
@media (min-width: 1025px) {
  .heptagon-info .heptagon-info__title-en::before {
    transform: translateY(2px);
  }
}
.heptagon-info .heptagon-info__title-en {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
@media (min-width: 1025px) {
  .heptagon-info .heptagon-info__title-en {
    margin-block-end: 24px;
  }
}
.heptagon-info .heptagon-info__title {
  margin-block-end: 0;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .heptagon-info .heptagon-info__title {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
  }
}
.heptagon-info .heptagon-info__description {
  margin-block-start: 8px;
}
.heptagon-info .heptagon-info__data,
.heptagon-info .heptagon-info__overview,
.heptagon-info .heptagon-info__certification,
.heptagon-info .heptagon-info__url {
  margin-block-start: 24px;
}
@media (min-width: 1025px) {
  .heptagon-info .heptagon-info__data,
  .heptagon-info .heptagon-info__overview,
  .heptagon-info .heptagon-info__certification,
  .heptagon-info .heptagon-info__url {
    margin-block-start: 32px;
  }
}
.heptagon-info .heptagon-info__description,
.heptagon-info .heptagon-info__data,
.heptagon-info .heptagon-info__overview,
.heptagon-info .heptagon-info__certification,
.heptagon-info .heptagon-info__url {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
}
@media (min-width: 1025px) {
  .heptagon-info .heptagon-info__description,
  .heptagon-info .heptagon-info__data,
  .heptagon-info .heptagon-info__overview,
  .heptagon-info .heptagon-info__certification,
  .heptagon-info .heptagon-info__url {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.heptagon-info .heptagon-info__description > span,
.heptagon-info .heptagon-info__data > span,
.heptagon-info .heptagon-info__overview > span,
.heptagon-info .heptagon-info__certification > span,
.heptagon-info .heptagon-info__url > span {
  margin-block-end: 8px;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .heptagon-info .heptagon-info__description > span,
  .heptagon-info .heptagon-info__data > span,
  .heptagon-info .heptagon-info__overview > span,
  .heptagon-info .heptagon-info__certification > span,
  .heptagon-info .heptagon-info__url > span {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
  }
}

.recruitment {
  background-color: #4d4d4d;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%), linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  background-size: 100% 8px, 100% 8px;
  background-repeat: no-repeat, no-repeat;
  background-position: left top, left bottom;
}

.recruitment-inner {
  padding: 72px 24px;
  display: grid;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .recruitment-inner {
    padding: 72px 32px;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    container-type: inline-size;
  }
}
@media (min-width: 1025px) {
  .recruitment-inner {
    padding: 88px 32px;
    margin-inline: auto;
    max-width: 1264px;
  }
}
.recruitment-inner .recruitment-cards-wrapper {
  position: relative;
  margin-inline: auto;
  max-width: 377px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) {
  .recruitment-inner .recruitment-cards-wrapper {
    max-width: none;
  }
}
.recruitment-inner .recruitment-cards-wrapper::before {
  position: absolute;
  content: "";
  bottom: -24px;
  left: -8px;
  width: 120px;
  aspect-ratio: 1/1;
  background-image: url("../images/common/heptagon-logo-only.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11;
  pointer-events: none;
}
@media (min-width: 768px) {
  .recruitment-inner .recruitment-cards-wrapper::before {
    bottom: -34px;
    left: -2px;
  }
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-cards-wrapper::before {
    width: 215px;
    bottom: -40px;
    left: -80px;
  }
}
.recruitment-inner .recruitment-content {
  width: 100%;
}
@media (min-width: 768px) {
  .recruitment-inner .recruitment-content {
    max-width: 480px;
    margin-inline-start: auto;
  }
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-content {
    max-width: 600px;
  }
}
.recruitment-inner .recruitment-catch {
  font-size: 3.125rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
}
@media (min-width: 768px) {
  .recruitment-inner .recruitment-catch {
    font-size: 3.75rem;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }
}
.recruitment-inner .recruitment-label {
  margin-block: 24px 40px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-label {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.recruitment-inner .recruitment-label .label-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label-base.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-label .label-icon {
    transform: translateY(1px);
  }
}
.recruitment-inner .recruitment-label .label-icon::after {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  background-color: #4d4d4d;
}
.recruitment-inner .recruitment-label {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
}
.recruitment-inner .recruitment-title {
  margin-block-end: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .recruitment-inner .recruitment-title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}
.recruitment-inner .recruitment-description {
  margin-block: 40px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .recruitment-inner .recruitment-description {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.recruitment-inner .recruitment-link {
  margin-block-start: 40px;
}
.recruitment-inner .recruitment-link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.recruitment-inner .recruitment-link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.recruitment-inner .recruitment-link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.recruitment-inner .recruitment-link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.recruitment-inner .recruitment-link > a:hover {
  color: #6e6e6e;
}
.recruitment-inner .recruitment-link > a:hover .arrow-icon {
  border: 1px solid white;
}
.recruitment-inner .recruitment-link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}
.recruitment-inner .recruitment-link > a {
  color: #ffffff;
}
.recruitment-inner .recruitment-link > a .arrow-icon {
  background: #ffffff;
}
.recruitment-inner .recruitment-link > a .arrow-icon::after {
  background-color: #ffffff;
  background-image: url("../images/common/arrow-right-black-sp.svg");
}
@media (min-width: 1025px) {
  .recruitment-inner .recruitment-link > a .arrow-icon::after {
    background-image: url("../images/common/arrow-right-black.svg");
  }
}
.recruitment-inner .recruitment-link > a:hover {
  color: #ffffff;
}
.recruitment-inner .recruitment-link > a:hover .arrow-icon {
  border: 1px solid #353535;
}

.recruitment .swiper {
  min-width: 0;
  position: relative;
  padding-block-start: 50px !important;
  padding-inline-end: 40px !important;
}
@media (min-width: 768px) {
  .recruitment .swiper {
    width: 402px;
  }
  @container (max-width: 830px) {
    .recruitment .swiper {
      width: 270px;
    }
  }
}
@media (min-width: 1025px) {
  .recruitment .swiper {
    width: 454px;
  }
}
.recruitment .swiper .swiper-wrapper {
  width: 100%;
  aspect-ratio: 284/383;
}
.recruitment .swiper .swiper-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  transform: translate(40px, -50px) !important;
  opacity: 0;
  pointer-events: none;
}
.recruitment .swiper .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) !important;
  z-index: 10 !important;
}
.recruitment .swiper .swiper-slide-active .recruitment-card__image img {
  width: calc(100% - 10px);
  aspect-ratio: 284/393;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 8px 0 rgba(77, 77, 77, 0.25);
}
.recruitment .swiper .swiper-slide-next {
  opacity: 1;
  pointer-events: none;
  z-index: 9 !important;
}
.recruitment .swiper .recruitment-card__image img {
  width: 100%;
  aspect-ratio: 284/383;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}

.related-cards-swiper--pc {
  display: none;
}
@media (min-width: 768px) {
  .related-cards-swiper--pc {
    display: block;
  }
}

.related-cards-swiper--sp {
  display: block;
}
@media (min-width: 768px) {
  .related-cards-swiper--sp {
    display: none;
  }
}

.related-cards-swiper {
  position: relative;
  padding: 0 0 16px;
}
@media (min-width: 768px) {
  .related-cards-swiper {
    padding: 0 44px 16px;
    max-width: 415px;
  }
}
@media (min-width: 1025px) {
  .related-cards-swiper {
    padding: 0 44px 26px;
    max-width: 560px;
  }
}
@media (min-width: 768px) {
  .related-cards-swiper .related-card {
    container-type: inline-size;
  }
}
.related-cards-swiper .related-card > a {
  padding: 16px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  text-decoration: none;
}
.related-cards-swiper .related-card > a:hover {
  filter: brightness(0.95);
}
@media (min-width: 768px) {
  @container (max-width: 305px) {
    .related-cards-swiper .related-card > a {
      flex-direction: column;
      row-gap: 16px;
    }
  }
}
@media (min-width: 1025px) {
  .related-cards-swiper .related-card > a {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.service-color-managed .related-cards-swiper .related-card > a {
  background-color: #eaf0f9;
}
.service-color-development .related-cards-swiper .related-card > a {
  background-color: #f2ebf3;
}
.service-color-insourcing .related-cards-swiper .related-card > a {
  background-color: #f5f8ef;
}
.service-color-yorozu .related-cards-swiper .related-card > a {
  background-color: #eaf8f9;
}
.related-cards-swiper .related-card__image {
  width: 80px;
}
@media (min-width: 1025px) {
  .related-cards-swiper .related-card__image {
    width: 161px;
  }
  @container (max-width: 406px) {
    .related-cards-swiper .related-card__image {
      width: 80px;
    }
  }
}
.related-cards-swiper .related-card__image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ffffff;
}
.related-cards-swiper .related-card__content {
  flex: 1;
}
.related-cards-swiper .related-card__content .related-card__term {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
  font-weight: 700;
  color: #ffffff;
}
.service-color-managed .related-cards-swiper .related-card__content .related-card__term {
  background-color: #2456a6;
}
.service-color-development .related-cards-swiper .related-card__content .related-card__term {
  background-color: #8d2489;
}
.service-color-insourcing .related-cards-swiper .related-card__content .related-card__term {
  background-color: #93c523;
}
.service-color-yorozu .related-cards-swiper .related-card__content .related-card__term {
  background-color: #2fbacc;
}
.related-cards-swiper .related-card__content .related-card__title {
  margin-block: 8px 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .related-cards-swiper .related-card__content .related-card__title {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.related-cards-swiper .related-card__content .related-card__meta {
  margin-block-start: 4px;
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  justify-content: end;
}
@media (min-width: 768px) {
  @container (max-width: 305px) {
    .related-cards-swiper .related-card__content .related-card__meta {
      justify-content: start;
    }
  }
}
.related-cards-swiper .related-card__content .related-card__meta .related-card__industry {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
}
@media (min-width: 1025px) {
  .related-cards-swiper .related-card__content .related-card__meta .related-card__industry {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
}
.related-cards-swiper .related-card__content .related-card__meta .related-card__location {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
}
@media (min-width: 1025px) {
  .related-cards-swiper .related-card__content .related-card__meta .related-card__location {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
}
.related-cards-swiper .swiper-button-next,
.related-cards-swiper .swiper-button-prev {
  position: absolute;
  top: calc(50% - 6px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 3px solid #f5f5f5;
}
.related-cards-swiper .swiper-button-next::before,
.related-cards-swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.related-cards-swiper .swiper-button-next:hover,
.related-cards-swiper .swiper-button-prev:hover {
  border-color: transparent;
}
.related-cards-swiper .swiper-button-next:hover::before,
.related-cards-swiper .swiper-button-prev:hover::before {
  opacity: 1;
  transform: scale(1);
}
.related-cards-swiper .swiper-button-next::after,
.related-cards-swiper .swiper-button-prev::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #353535;
}
@media (min-width: 768px) {
  .related-cards-swiper .swiper-button-next,
  .related-cards-swiper .swiper-button-prev {
    top: calc(50% - 14px);
  }
}
.related-cards-swiper .swiper-button-next {
  right: -20px;
}
@media (min-width: 768px) {
  .related-cards-swiper .swiper-button-next {
    right: 0;
  }
}
.related-cards-swiper .swiper-button-next::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: translateX(1px);
}
.related-cards-swiper .swiper-button-prev {
  left: -20px;
}
@media (min-width: 768px) {
  .related-cards-swiper .swiper-button-prev {
    left: 0;
  }
}
.related-cards-swiper .swiper-button-prev::after {
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  transform: scaleX(-1) translateX(1px);
}
.related-cards-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.related-cards-swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 0;
}
.related-cards-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 8px;
  height: 8px;
  background-color: #f5f5f5;
  opacity: 1;
}
@media (min-width: 1025px) {
  .related-cards-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.service-color-managed .related-cards-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2456a6;
}
.service-color-development .related-cards-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8d2489;
}
.service-color-insourcing .related-cards-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #93c523;
}
.service-color-yorozu .related-cards-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2fbacc;
}

.related-nav-service {
  background-color: #4d4d4d;
}
.related-nav-service .related-nav-service-inner {
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .related-nav-service .related-nav-service-inner {
    padding: 64px 32px;
  }
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-service-inner {
    padding: 80px 32px;
    margin-inline: auto;
    max-width: 1264px;
  }
}
.related-nav-service .related-nav-title {
  margin-block-end: 40px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.24px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-title {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.28px;
  }
}
.related-nav-service .related-nav-title .label-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../images/common/header-label-base.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translateY(2px);
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-title .label-icon {
    transform: translateY(1px);
  }
}
.related-nav-service .related-nav-title .label-icon::after {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/common/heptagon.svg");
          mask-image: url("../images/common/heptagon.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  background-color: #4d4d4d;
}
.related-nav-service .related-nav-title {
  color: #ffffff;
}
.related-nav-service .related-nav-items {
  display: grid;
  row-gap: 16px;
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-items {
    row-gap: 24px;
  }
}
.related-nav-service .related-nav-items > .menu-item {
  list-style: none;
  padding: 24px;
  display: grid;
  row-gap: 24px;
  background-color: #ffffff;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .related-nav-service .related-nav-items > .menu-item {
    padding: 40px 24px;
    -moz-column-gap: 24px;
         column-gap: 24px;
    align-items: start;
    justify-content: start;
    grid-template-columns: 2.64fr 6fr;
  }
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-items > .menu-item {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.related-nav-service .related-nav-items > .menu-item > a {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  font-weight: 700;
  color: #353535;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-items > .menu-item > a {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
}
.related-nav-service .related-nav-items > .menu-item > a:hover {
  color: #919191;
}
.related-nav-service .related-nav-items > .menu-item > .sub-menu {
  display: grid;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .related-nav-service .related-nav-items > .menu-item > .sub-menu {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item {
  list-style: none;
  padding: 20px 8px;
  position: relative;
  border-block-end: 1px solid #d7d7d7;
}
.related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  transition: width 0.4s;
}
.related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item:hover::after {
  width: 100%;
}
@media (min-width: 768px) {
  .related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item {
    padding: 8px;
  }
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item {
    padding: 16px 8px;
  }
}
.related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item > a {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item > a {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.related-nav-service .related-nav-items > .menu-item > .sub-menu > .menu-item > a::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: #353535;
  border-radius: 50%;
  background-image: url("../images/common/arrow-right.svg");
  background-size: 6.4px auto;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-1px);
}
.related-nav-service .related-nav-link {
  margin-block-start: 40px;
}
.related-nav-service .related-nav-link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.related-nav-service .related-nav-link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.related-nav-service .related-nav-link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.related-nav-service .related-nav-link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.related-nav-service .related-nav-link > a:hover {
  color: #6e6e6e;
}
.related-nav-service .related-nav-link > a:hover .arrow-icon {
  border: 1px solid white;
}
.related-nav-service .related-nav-link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}
.related-nav-service .related-nav-link > a {
  color: #ffffff;
}
.related-nav-service .related-nav-link > a .arrow-icon {
  background: #ffffff;
}
.related-nav-service .related-nav-link > a .arrow-icon::after {
  background-color: #ffffff;
  background-image: url("../images/common/arrow-right-black-sp.svg");
}
@media (min-width: 1025px) {
  .related-nav-service .related-nav-link > a .arrow-icon::after {
    background-image: url("../images/common/arrow-right-black.svg");
  }
}
.related-nav-service .related-nav-link > a:hover {
  color: #ffffff;
}
.related-nav-service .related-nav-link > a:hover .arrow-icon {
  border: 1px solid #353535;
}

.site-footer {
  background-color: #4d4d4d;
}
.site-footer .menu-item {
  list-style: none;
}
.site-footer .menu-item > a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
}
.site-footer .menu-item > a:hover {
  color: #919191;
}

.site-footer-breadcrumbs {
  border-block-end: 1px solid #6e6e6e;
}

.site-footer-breadcrumbs-inner {
  padding: 16px 24px;
}
@media (min-width: 1025px) {
  .site-footer-breadcrumbs-inner {
    padding: 16px 80px;
  }
}
@media (min-width: 1320px) {
  .site-footer-breadcrumbs-inner {
    padding: 24px 80px;
    margin-inline: auto;
    max-width: 1440px;
  }
}
.site-footer-breadcrumbs-inner span,
.site-footer-breadcrumbs-inner span a {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
}
.site-footer-breadcrumbs-inner span {
  display: inline-block;
}
.site-footer-breadcrumbs-inner span span + span {
  position: relative;
  margin-inline-start: 4px;
  padding-inline-start: 20px;
}
.site-footer-breadcrumbs-inner span span + span:before {
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #919191;
}
.site-footer-breadcrumbs-inner span a {
  display: block;
  text-decoration: none;
}
.site-footer-breadcrumbs-inner span a:hover {
  color: #919191;
}

.site-footer-content {
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (min-width: 1025px) {
  .site-footer-content {
    padding: 80px;
    margin-inline: auto;
    max-width: 1440px;
    row-gap: 64px;
  }
}
.site-footer-content .footer-nav .footer-nav-items {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (min-width: 1025px) {
  .site-footer-content .footer-nav .footer-nav-items {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 30px;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .site-footer-content .footer-nav .footer-nav-items > .menu-item:nth-child(1) {
    max-width: 1160px;
    width: 100%;
  }
  .site-footer-content .footer-nav .footer-nav-items > .menu-item:nth-child(2), .site-footer-content .footer-nav .footer-nav-items > .menu-item:nth-child(3) {
    width: 260px;
  }
}
.site-footer-content .footer-nav .menu-item .menu-item-header {
  display: flex;
  align-items: center;
  border-block-end: 1px solid #919191;
}
.site-footer-content .footer-nav .menu-item .menu-item-header > span {
  padding-block: 0 8px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  flex: 1;
}
.site-footer-content .footer-nav .menu-item .menu-item-header > a {
  padding-block: 0 8px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  text-decoration: none;
  flex: 1;
}
.site-footer-content .footer-nav .menu-item .menu-item-header > a:hover {
  color: #919191;
}
.site-footer-content .footer-nav .menu-item .menu-item-header .accordion-toggle {
  padding: 8px 0 16px 24px;
}
@media (min-width: 1025px) {
  .site-footer-content .footer-nav .menu-item .menu-item-header .accordion-toggle {
    display: none;
  }
}
.site-footer-content .footer-nav .menu-item .menu-item-header .accordion-toggle::before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  -webkit-mask-image: url("../images/common/toggle-plus.svg");
          mask-image: url("../images/common/toggle-plus.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #ffffff;
}
.site-footer-content .footer-nav .menu-item .sub-menu {
  display: none;
  margin-block-start: 16px;
}
@media (min-width: 1025px) {
  .site-footer-content .footer-nav .menu-item .sub-menu {
    display: block;
  }
}
.site-footer-content .footer-nav .menu-item .sub-menu .menu-item + .menu-item {
  margin-block-start: 12px;
}
@media (min-width: 1320px) {
  .site-footer-content .footer-nav .menu-item .sub-menu .menu-item + .menu-item {
    margin-block-start: 8px;
  }
}
.site-footer-content .footer-nav .menu-item .sub-menu .menu-item > a {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
}
@media (min-width: 1025px) {
  .site-footer-content .footer-nav .menu-item .sub-menu .menu-item > a {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.12px;
  }
}
@media (min-width: 1320px) {
  .site-footer-content .footer-nav .menu-item .sub-menu .menu-item > a {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.site-footer-content .footer-nav .menu-item .sub-menu:has(.sub-menu--secondary) > .menu-item + .menu-item {
  margin-block-start: 24px;
}
.site-footer-content .footer-nav .menu-item .sub-menu:has(.sub-menu--secondary) > .menu-item > a {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
}
@media (min-width: 1025px) {
  .site-footer-content .footer-nav .menu-item .sub-menu:has(.sub-menu--secondary) > .menu-item > a {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
}
@media (min-width: 1320px) {
  .site-footer-content .footer-nav .menu-item .sub-menu:has(.sub-menu--secondary) > .menu-item > a {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
    margin-inline-end: -0.4px;
  }
}
@media (min-width: 1025px) {
  .site-footer-content .footer-nav .menu-item .sub-menu:has(.sub-menu--secondary) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .site-footer-content .footer-nav .menu-item .sub-menu:has(.sub-menu--secondary) > .menu-item + .menu-item {
    margin-block-start: 0;
  }
}
.site-footer-content .footer-nav .menu-item.is-accordion-open .menu-item-header .accordion-toggle::before {
  -webkit-mask-image: url("../images/common/toggle-minus.svg");
          mask-image: url("../images/common/toggle-minus.svg");
}
.site-footer-content .footer-nav .menu-item.is-accordion-open .sub-menu {
  display: block;
}
.site-footer-content .footer-company {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (min-width: 1025px) {
  .site-footer-content .footer-company {
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .site-footer-content .footer-company {
    -moz-column-gap: 90px;
         column-gap: 90px;
  }
}
.site-footer-content .footer-company-identity {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 1025px) {
  .site-footer-content .footer-company-identity {
    row-gap: 40px;
  }
}
.site-footer-content .footer-company-identity .company-logo {
  max-width: 240px;
}
@media (min-width: 1320px) {
  .site-footer-content .footer-company-identity .company-logo {
    min-width: 300px;
  }
}
.site-footer-content .footer-company-identity .company-logo img {
  width: 100%;
}
.site-footer-content .footer-company-identity .social-links {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: center;
}
.site-footer-content .footer-company-identity .social-links span {
  padding-inline-end: 24px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  border-right: 1px solid #ffffff;
}
@media (min-width: 1320px) {
  .site-footer-content .footer-company-identity .social-links span {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.24px;
  }
}
.site-footer-content .footer-company-identity .social-links .footer-nav-social .footer-nav-social-items {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.site-footer-content .footer-company-identity .social-links .footer-nav-social .footer-nav-social-items .menu-item {
  width: 32px;
}
.site-footer-content .footer-company-identity .social-links .footer-nav-social .footer-nav-social-items .menu-item img {
  width: 100%;
}
.site-footer-content .footer-company-badges {
  display: grid;
  row-gap: 24px;
}
@media (min-width: 1200px) {
  .site-footer-content .footer-company-badges {
    grid-auto-flow: column;
    align-items: center;
    -moz-column-gap: 63px;
         column-gap: 63px;
  }
}
.site-footer-content .footer-company-badges .menu-item:first-child {
  padding-block-end: 24px;
  border-block-end: 1px solid #919191;
}
@media (min-width: 1200px) {
  .site-footer-content .footer-company-badges .menu-item:first-child {
    padding-block-end: 0;
    padding-inline-end: 63px;
    border-block-end: none;
    border-inline-end: 1px solid #919191;
  }
}
.site-footer-content .footer-company-badges .menu-item .menu-item__image {
  width: 116px;
}
.site-footer-content .footer-company-badges .menu-item .menu-item__image img {
  width: 100%;
}
.site-footer-content .footer-company-badges .menu-item .menu-item__title {
  margin-block-end: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 1320px) {
  .site-footer-content .footer-company-badges .menu-item .menu-item__title {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}
.site-footer-content .footer-company-badges .menu-item .menu-item__description {
  font-size: 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.1px;
  font-weight: 700;
  color: #ffffff;
  margin-block-start: 8px;
  margin-block-end: 0;
}
@media (min-width: 1320px) {
  .site-footer-content .footer-company-badges .menu-item .menu-item__description {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.12px;
  }
}
.site-footer-content .footer-company-badges .menu-item.footer-company-badge--aws {
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 16px;
       column-gap: 16px;
  justify-content: space-between;
  max-width: 404px;
}
.site-footer-content .footer-company-badges .menu-item.footer-company-badge--aws .menu-item__image {
  width: 72px;
}
.site-footer-content .footer-company-badges .menu-item.footer-company-badge--aws .menu-item__title {
  order: -1;
}
.site-footer-content .footer-company-badges .menu-item.footer-company-badge--aws .menu-item__description {
  grid-column: 1/span 2;
  margin-block-start: 16px;
}
@media (min-width: 1320px) {
  .site-footer-content .footer-company-badges .menu-item.footer-company-badge--aws .menu-item__description {
    margin-block-start: 22px;
  }
}

.site-footer-meta {
  background-color: #353535;
}

.site-footer-meta-inner {
  padding: 24px;
}
@media (min-width: 1025px) {
  .site-footer-meta-inner {
    padding: 24px 80px;
    margin-inline: auto;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer-meta-inner .footer-nav-legal {
  margin-block-end: 16px;
}
@media (min-width: 1025px) {
  .site-footer-meta-inner .footer-nav-legal {
    margin-block-end: 0;
  }
}
.site-footer-meta-inner .footer-nav-legal .footer-nav-legal-items {
  display: flex;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.site-footer-meta-inner .footer-nav-legal .menu-item > a {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.12px;
}
@media (min-width: 1320px) {
  .site-footer-meta-inner .footer-nav-legal .menu-item > a {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
}
.site-footer-meta-inner .footer-copyright {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 1320px) {
  .site-footer-meta-inner .footer-copyright {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
}

.site {
  display: flex;
  flex-direction: column;
  margin-block-start: calc(1.625rem + 16px + 48px);
}
@media (max-width: 1319px) {
  .site {
    margin-block-start: 108px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  width: 100vw;
  transition: transform 0.3s ease;
  z-index: 50;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  z-index: 10;
}
@media (max-width: 1319px) {
  .site-header::before {
    z-index: 25;
  }
}
.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header-inner {
  margin-inline: auto;
  padding: 24px;
  max-width: 1392px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  z-index: 30;
}
.site-logo a {
  display: flex;
  align-items: center;
  width: 180px;
  height: auto;
}
.site-logo img {
  width: 100%;
}

.sp-nav-toggle {
  display: none;
}

.site-header-nav {
  padding-inline: 24px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.site-header-nav.is-active .header-nav-layer {
  opacity: 1;
  visibility: visible;
  z-index: 11;
}
.site-header-nav.is-no-children .header-nav-layer,
.site-header-nav.is-no-children .header-nav-extend-wrapper {
  display: none;
}

.header-nav-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh + 100px);
  background-color: #4d4d4d;
  background-color: rgba(77, 77, 77, 0.25);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.header-nav-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.header-nav-items#menu-header-main {
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.header-nav-items#menu-header-actions {
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.header-nav-item,
.header-nav-item-header {
  display: flex;
  justify-content: center;
  list-style: none;
}
.header-nav-item > a,
.header-nav-item-header > a {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 8px;
  text-decoration: none;
}
#menu-header-main .header-nav-item > a,
#menu-header-main .header-nav-item-header > a {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  line-height: 1.625;
  font-weight: 700;
  color: #353535;
}
#menu-header-main .header-nav-item > a:hover,
#menu-header-main .header-nav-item-header > a:hover {
  color: #919191;
}
.header-nav-item.is-active::after,
.header-nav-item-header.is-active::after {
  opacity: 1;
  visibility: visible;
}
.header-nav-item.is-active .header-nav-extend-wrapper,
.header-nav-item-header.is-active .header-nav-extend-wrapper {
  opacity: 1;
  visibility: visible;
}
.header-nav-item.is-active .header-nav-extend-wrapper.screen-reader-text,
.header-nav-item-header.is-active .header-nav-extend-wrapper.screen-reader-text {
  clip: auto !important;
  clip-path: none !important;
}

.header-nav-item--accordion,
.header-nav-item--search {
  position: relative;
}
.header-nav-item--accordion::after,
.header-nav-item--search::after {
  content: "";
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
}

.header-nav-item--accordion .header-nav-item-header > a {
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.header-nav-item--accordion .header-nav-item-header > a::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../images/common/arrow-chevron-down.svg");
          mask-image: url("../images/common/arrow-chevron-down.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #353535;
}
.header-nav-item--accordion .header-nav-item-header > a:hover::after {
  background-color: #919191;
}

.header-nav-item--search > a {
  width: 24px;
  height: calc(1.625rem + 16px);
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
}
.header-nav-item--search > a::before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../images/common/icon-search.svg");
          mask-image: url("../images/common/icon-search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #353535;
}
.header-nav-item--search > a:hover::before {
  background-color: #919191;
}
.header-nav-item--search::after {
  top: calc(100% + 14px + 16px);
}

.header-nav-extend-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100vw - 24px);
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 13;
}
.header-nav-item--company .header-nav-extend-wrapper {
  left: max(50%, 300px);
  transform: translateX(-50%);
}
.header-nav-item--service .header-nav-extend-wrapper {
  left: max(50%, 200px);
  transform: translateX(-50%);
}
.header-nav-item--search .header-nav-extend-wrapper {
  left: auto;
  right: -24px;
  transform: translateX(0);
}

.header-nav-extend {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-inline: auto;
  padding: 40px;
  margin-block-start: 24px;
  width: auto;
  max-height: calc(99vh - 140px);
  background-color: #ffffff;
  border-radius: 16px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}
.header-nav-extend::-webkit-scrollbar {
  width: 16px;
}
.header-nav-extend::-webkit-scrollbar-thumb {
  border-radius: 16px;
  border: 4px solid transparent;
  background: #d7d7d7;
  background-clip: content-box;
}
.header-nav-extend::-webkit-scrollbar-track {
  margin-block: 2px;
  border-radius: 16px;
}
.header-nav-extend:has(.header-nav-extend-link) {
  row-gap: 40px;
}
.header-nav-extend:has(.header-nav-extend-link) .header-nav-extend-header {
  grid-row: 1/span 2;
}
.header-nav-item--company .header-nav-extend {
  width: 1013px;
}
.header-nav-item--service .header-nav-extend {
  width: 954px;
}
.header-nav-item--search .header-nav-extend {
  width: 858px;
  margin-block-start: 40px;
  grid-template-columns: auto 1fr;
}

.header-nav-extend-header {
  padding-inline-end: 40px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.28px;
  font-weight: 700;
  background-image: linear-gradient(in oklab to top, #f08619 0%, #e71f19 22%, #593d98 30%, #2456a6 40%, #2fbacc 54%, #93c523 76%, #f5e527 88%);
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-position: right top;
}

.header-nav-sub-menu .menu-item {
  list-style: none;
}
.header-nav-sub-menu .menu-item > a {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  align-items: center;
  justify-content: left;
  padding-block: 0;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  color: #353535;
  text-decoration: none;
}
.header-nav-sub-menu .menu-item > a::before {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
          mask-image: url("../images/common/arrow-chevron-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #353535;
}
.header-nav-sub-menu .menu-item > a:hover {
  color: #919191;
}
.header-nav-sub-menu .menu-item > a:hover::before {
  background-color: #919191;
}
.header-nav-sub-menu .menu-item--thumbnail > a {
  flex-wrap: wrap;
  row-gap: 8px;
  max-width: 250px;
}
.header-nav-sub-menu .menu-item--thumbnail > a img {
  order: -1;
  width: 100%;
  border-radius: 8px;
}

.header-nav-extend-link > a {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .header-nav-extend-link > a {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.header-nav-extend-link > a .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .header-nav-extend-link > a .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.header-nav-extend-link > a .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .header-nav-extend-link > a .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.header-nav-extend-link > a .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .header-nav-extend-link > a .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.header-nav-extend-link > a:hover {
  color: #6e6e6e;
}
.header-nav-extend-link > a:hover .arrow-icon {
  border: 1px solid white;
}
.header-nav-extend-link > a:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}

.header-nav-sub-menu--company {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.header-nav-sub-menu--company .menu-item-group .menu-item + .menu-item {
  margin-block-start: 12px;
}

.header-nav-sub-menu--service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.header-nav-sub-menu--service .menu-item-group {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
}
.header-nav-sub-menu--service .menu-item-group > a {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18px;
  margin-inline-end: -2px;
}
.header-nav-sub-menu--service .menu-item-group > a img {
  width: 30px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-nav-sub-menu--service .menu-item-group > a::before {
  content: none;
}
.header-nav-sub-menu--service .menu-item:not(.menu-item-group) {
  margin-block-start: 16px;
}
.header-nav-sub-menu--service .menu-item:not(.menu-item-group) + .menu-item {
  margin-block-start: 8px;
}

.header-nav-extend-search-form {
  position: relative;
  display: flex;
  background-color: #ffffff;
  border: 1px solid #919191;
  border-radius: 8px;
}
.header-nav-extend-search-form::before {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../images/common/icon-search.svg");
          mask-image: url("../images/common/icon-search.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #d7d7d7;
  pointer-events: none;
}
.header-nav-extend-search-form input {
  flex: 1 1 auto;
  padding-block: 16px;
  padding-inline: 56px 24px;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.16px;
  font-weight: 500;
  color: #353535;
}
.header-nav-extend-search-form input::-moz-placeholder {
  font-weight: 700;
  color: #d7d7d7;
}
.header-nav-extend-search-form input::placeholder {
  font-weight: 700;
  color: #d7d7d7;
}

.header-nav-extend-search-tags {
  margin-block-start: 24px;
}
.header-nav-extend-search-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.header-nav-extend-search-tags ul li {
  list-style: none;
}
.header-nav-extend-search-tags ul li a {
  display: block;
  padding: 4px 8px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  color: #353535;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}
.header-nav-extend-search-tags ul li a:hover {
  background-color: #f5f5f5;
}

@media (max-width: 1319px) {
  .sp-nav-toggle {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    z-index: 30;
    background: none;
    border: none;
    cursor: pointer;
  }
  .sp-nav-toggle::before {
    display: block;
    content: "";
    width: 60px;
    height: 60px;
    background-image: url("../images/common/sp-nav-toggle-open.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s ease;
  }
  .sp-nav-toggle.is-active::before {
    background-image: url("../images/common/sp-nav-toggle-close.svg");
  }
  .site-header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-block: 124px 24px;
    row-gap: 32px;
    background-color: #ffffff;
    z-index: 20;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    overflow-y: auto;
  }
  .site-header-nav .header-nav-layer {
    display: none;
  }
  .site-header-nav.is-sp-nav-open {
    transform: translateY(0);
  }
  .header-nav-items {
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 32px;
  }
  .header-nav-items#menu-header-main {
    row-gap: 32px;
  }
  .header-nav-items#menu-header-actions {
    row-gap: 52px;
    -moz-column-gap: 19px;
         column-gap: 19px;
  }
  .header-nav-items#menu-header-actions .header-nav-item--search {
    order: -1;
  }
  .header-nav-item,
  .header-nav-item-header {
    display: block;
    width: 100%;
  }
  #menu-header-main .header-nav-item > a,
  #menu-header-main .header-nav-item-header > a {
    padding-block: 0 8px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.18px;
    border-block-end: 1px solid #b4b4b4;
    justify-content: space-between;
  }
  #menu-header-main .header-nav-item > a:hover,
  #menu-header-main .header-nav-item-header > a:hover {
    color: #353535;
  }
  #menu-header-actions .header-nav-item > a,
  #menu-header-actions .header-nav-item-header > a {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
  .header-nav-item:has(a.button-contact), .header-nav-item:has(a.button-download),
  .header-nav-item-header:has(a.button-contact),
  .header-nav-item-header:has(a.button-download) {
    max-width: 200px;
    width: calc(50% - 9.5px);
  }
  .header-nav-item:has(a.button-contact) > a, .header-nav-item:has(a.button-download) > a,
  .header-nav-item-header:has(a.button-contact) > a,
  .header-nav-item-header:has(a.button-download) > a {
    min-width: auto;
  }
  .header-nav-item.is-accordion-open .header-nav-extend-wrapper,
  .header-nav-item-header.is-accordion-open .header-nav-extend-wrapper {
    display: block;
  }
  .header-nav-item-header {
    padding-block: 0 8px;
    border-block-end: 1px solid #b4b4b4;
  }
  #menu-header-main .header-nav-item-header > a {
    padding-block: 0;
    border-block-end: none;
  }
  .header-nav-item--accordion::after,
  .header-nav-item--search::after {
    content: none;
  }
  .header-nav-item--accordion .header-nav-item-header {
    display: flex;
    align-items: center;
  }
  .header-nav-item--accordion .header-nav-item-header > a {
    flex: 1;
  }
  .header-nav-item--accordion .header-nav-item-header > a::after {
    content: none;
  }
  .header-nav-item--accordion .accordion-toggle {
    margin: 7px 0 7px 14px;
    content: "";
    width: 14px;
    height: 14px;
    -webkit-mask-image: url("../images/common/toggle-plus.svg");
            mask-image: url("../images/common/toggle-plus.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #b4b4b4;
    transition: all 0.2s ease;
  }
  .header-nav-item--accordion.is-accordion-open .accordion-toggle {
    -webkit-mask-image: url("../images/common/toggle-minus.svg");
            mask-image: url("../images/common/toggle-minus.svg");
  }
  .header-nav-item--search {
    width: 100%;
  }
  .header-nav-item--search > a {
    display: none;
  }
  .header-nav-extend-wrapper {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
  }
  .header-nav-item--company .header-nav-extend-wrapper, .header-nav-item--service .header-nav-extend-wrapper, .header-nav-item--search .header-nav-extend-wrapper {
    transform: none;
  }
  .header-nav-item--search .header-nav-extend-wrapper {
    display: block;
  }
  .header-nav-extend {
    display: block;
    border-radius: 0;
    padding: 0;
  }
  .header-nav-item--company .header-nav-extend {
    width: 100%;
  }
  .header-nav-item--service .header-nav-extend {
    width: 100%;
  }
  .header-nav-item--search .header-nav-extend {
    width: 100%;
    margin-block-start: 0;
  }
  .header-nav-extend-header {
    display: none;
    background: none;
  }
  .header-nav-extend-header::after {
    content: none;
  }
  .header-nav-item--search .header-nav-extend-header {
    display: block;
    padding-inline-end: 0;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.16px;
  }
  .header-nav-sub-menu .menu-item {
    list-style: none;
  }
  .header-nav-sub-menu .menu-item > a {
    display: flex;
    -moz-column-gap: 4px;
         column-gap: 4px;
    align-items: center;
    justify-content: left;
    padding-block: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.12px;
    font-weight: 700;
    color: #353535;
    text-decoration: none;
  }
  .header-nav-sub-menu .menu-item > a::before {
    content: "";
    width: 16px;
    height: 16px;
    -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
            mask-image: url("../images/common/arrow-chevron-right.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #353535;
  }
  .header-nav-sub-menu .menu-item > a:hover {
    color: #919191;
  }
  .header-nav-sub-menu .menu-item > a:hover::before {
    background-color: #919191;
  }
  .header-nav-sub-menu .menu-item--thumbnail > a {
    flex-wrap: nowrap;
    row-gap: 0;
    max-width: none;
  }
  .header-nav-sub-menu .menu-item--thumbnail > a img {
    display: none;
  }
  .header-nav-extend-link {
    text-align: start;
    margin-block-start: 20px;
  }
  .header-nav-extend-link > a {
    padding-inline-end: 0;
    margin-inline-start: 0;
    display: flex;
    -moz-column-gap: 4px;
         column-gap: 4px;
    align-items: center;
    justify-content: left;
    padding-block: 0;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
    font-weight: 700;
    color: #353535;
    text-decoration: none;
  }
  .header-nav-extend-link > a::before {
    position: static;
    background-image: initial;
    background-size: initial;
    background-repeat: initial;
    background-position: initial;
    border-radius: 0;
    transform: none;
    content: "";
    width: 16px;
    height: 16px;
    -webkit-mask-image: url("../images/common/arrow-chevron-right.svg");
            mask-image: url("../images/common/arrow-chevron-right.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #353535;
  }
  .header-nav-extend-link > a::after {
    content: none;
  }
  .header-nav-extend-link > a:hover {
    color: #919191;
  }
  .header-nav-extend-link > a:hover::before {
    background-color: #919191;
  }
  .header-nav-extend-link .icon {
    display: none;
  }
  .header-nav-sub-menu--company {
    flex-flow: column;
    row-gap: 8px;
  }
  .header-nav-sub-menu--company .menu-item-group .menu-item + .menu-item {
    margin-block-start: 8px;
  }
  .header-nav-sub-menu--service:has(.menu-item-group) {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .header-nav-sub-menu--service:has(.menu-item-group) .menu-item-group {
    padding: 0;
    border-radius: 0;
    border: none;
  }
  .header-nav-sub-menu--service:has(.menu-item-group) .menu-item-group > a {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 0.14px;
  }
  .header-nav-sub-menu--service:has(.menu-item-group) .menu-item-group > a img {
    display: none;
  }
  .header-nav-sub-menu--service:has(.menu-item-group) .menu-item-group > a::before {
    content: none;
  }
  .header-nav-sub-menu--service:has(.menu-item-group) .menu-item:not(.menu-item-group) {
    margin-block-start: 12px;
  }
  .header-nav-sub-menu--service:has(.menu-item-group) .menu-item:not(.menu-item-group) + .menu-item {
    margin-block-start: 8px;
  }
  .header-nav-extend-search {
    margin-block-start: 12px;
  }
  .header-nav-extend-search-tags {
    margin-block-start: 16px;
  }
  .header-nav-extend-search-tags ul li a {
    padding: 4px;
  }
}
/*--------------------------------------------------------------
>>> Utilities
--------------------------------------------------------------*/
.button-arrow {
  padding-block: 4px;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #353535;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .button-arrow {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.button-arrow .arrow-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #353535;
}
@media (min-width: 1025px) {
  .button-arrow .arrow-icon {
    width: 40px;
    height: 40px;
  }
}
.button-arrow .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #353535;
  background-image: url("../images/common/arrow-right-sp.svg");
  background-size: 10.2px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1025px) {
  .button-arrow .arrow-icon::after {
    width: 34px;
    height: 34px;
    background-image: url("../images/common/arrow-right.svg");
    background-size: 12.8px auto;
  }
}
.button-arrow .arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  opacity: 0;
  clip-path: polygon(50% 50%, 100% 50%, 100% 50%);
}
@media (min-width: 1025px) {
  .button-arrow .arrow-icon::before {
    width: 40px;
    height: 40px;
  }
}
.button-arrow:hover {
  color: #6e6e6e;
}
.button-arrow:hover .arrow-icon {
  border: 1px solid white;
}
.button-arrow:hover .arrow-icon::before {
  opacity: 1;
  animation: rotate-in 0.3s ease-out forwards;
}

.button-black {
  display: flex;
  justify-content: center;
  padding: 10px;
  color: #ffffff;
  background-color: #353535;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(in oklch 90deg, #f5e527 14%, #93c523 29%, #2fbacc 43%, #2456a6 57%, #593d98 71%, #e71f19 86%, #f08619 100%);
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.button-black:hover {
  background-color: rgba(53, 53, 53, 0.7);
}

.button-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  padding: 8px;
  min-width: 180px;
  width: 100%;
  height: auto;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 0;
}
@media (min-width: 1025px) {
  .button-contact {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.button-contact .button-icon {
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon-contact.svg");
          mask-image: url("../images/common/icon-contact.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  flex-shrink: 0;
  z-index: 0;
}
.button-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(98deg, #2fbacc 5.94%, #2456a6 59.36%);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.button-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(98deg, rgba(47, 186, 204, 0.7) 5.94%, rgba(36, 86, 166, 0.7) 59.36%);
  border-radius: inherit;
  z-index: -1;
}
.button-contact:hover {
  color: #ffffff;
}
.button-contact:hover::before {
  opacity: 0;
}

.button-download {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  padding: 8px;
  min-width: 180px;
  width: 100%;
  height: auto;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.14px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 0;
}
@media (min-width: 1025px) {
  .button-download {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.14px;
  }
}
.button-download .button-icon {
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon-download.svg");
          mask-image: url("../images/common/icon-download.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  flex-shrink: 0;
  z-index: 0;
}
.button-download::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(98deg, #f08619 5.94%, #e71f19 54.57%);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.button-download::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(98deg, rgba(240, 134, 25, 0.7) 5.94%, rgba(231, 31, 25, 0.7) 54.57%);
  border-radius: inherit;
  z-index: -1;
}
.button-download:hover {
  color: #ffffff;
}
.button-download:hover::before {
  opacity: 0;
}

@media (max-width: 767.98px) {
  .sp-none {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .tablet-none {
    display: none;
  }
}

@media (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

.post-term,
.pickup-item__category,
.featured-case__category {
  color: #ffffff;
  background-color: #4d4d4d;
}

.term-fully-managed-service {
  background-color: #2456a6;
}

.term-development-service {
  background-color: #8d2489;
}

.term-insourcing-service {
  background-color: #93c523;
}

.term-cloud-support {
  background-color: #2fbacc;
}
