@charset "UTF-8";
/* --------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 ベトナムオフショア開発ページ用
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
-------------------------------------------------- */
@import "/assets/stylesheets/common.css";
:root {
  --color-s-black: #1c242c;
  --color-s-gray-dark: #5d6268;
  --color-s-gray-base: #bebebe;
  --color-s-gray-middle: #e2e2e2;
  --color-s-gray-light: #f5f5f5;
  --color-s-red: #e60012;
  --color-s-red-light: #e8dada;
  --color-s-red-pale: #fcf1f1;
  --color-s-transparent-w-90: rgb(255 255 255 / 0.9);
  --color-s-transparent-w-80: rgb(255 255 255 / 0.8);
  --color-s-transparent-w-70: rgb(255 255 255 / 0.7);
  --color-s-transparent-w-60: rgb(255 255 255 / 0.6);
  --color-s-transparent-w-50: rgb(255 255 255 / 0.5);
  --color-s-transparent-w-40: rgb(255 255 255 / 0.4);
  --color-s-transparent-w-30: rgb(255 255 255 / 0.3);
  --color-s-transparent-w-20: rgb(255 255 255 / 0.2);
  --color-s-transparent-w-10: rgb(255 255 255 / 0.1);
  --color-s-transparent-w-5: rgb(255 255 255 / 0.05);
}

:root {
  --color-s-black: #001226;
  --color-s-black-light: #808892;
  --color-s-main-base: #18a7a9;
  --color-s-main-highlight: #2cd8d8;
  --color-s-main-medium: #dee2e6;
  --color-s-main-light: #ebf8f7;
  --color-s-main-pale: #f7fafb;
  --color-s-sub-dark: #15283d;
  --color-s-sub-base: #0569ec;
  --color-s-sub-medium: #d9e3f1;
  --color-s-sub-light: #e9eef5;
  --color-s-sub-pale: #f2f5f8;
  --color-s-case-pale: #f8f2ee;
}

/* ------------------------------
  base
------------------------------ */
html {
  background-color: var(--color-white);
}
html.is-fixed {
  height: 100%;
  overflow-y: scroll;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--color-s-black);
  font-family: var(--font-family-all);
  font-size: var(--font-m);
  font-weight: var(--font-weight-normal);
  letter-spacing: 0.05em;
  line-height: var(--line-m);
  word-wrap: break-word;
  overflow-wrap: anywhere;
  image-rendering: auto;
}
.is-fixed body {
  position: fixed;
  width: 100%;
}

form {
  display: contents;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  image-rendering: auto;
}

a {
  transition: var(--trans-default);
}

input,
textarea,
select {
  font-family: var(--font-family-all);
}

button {
  transition: var(--trans-default);
  font-family: var(--font-family-all);
}
@media (any-hover: hover) {
  button:hover {
    cursor: pointer;
  }
}

.only-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  pointer-events: none;
}

@media screen and (max-width: 768.9px) {
  .is-onlyPC {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .is-onlySP {
    display: none !important;
  }
}

/* ------------------------------
  button-mixin
------------------------------ */
/* ------------------------------
  service-button-primary
------------------------------ */
.service-button-primary {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 10px 48px 10px 24px;
  border: 1px solid var(--color-s-main-base);
  border-radius: 800px;
  background-color: var(--color-s-main-base);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@media screen and (max-width: 768.9px) {
  .service-button-primary {
    width: fit-content;
    min-width: 330px;
  }
}
@media screen and (min-width: 769px) {
  .service-button-primary {
    max-width: 400px;
    padding: 16px 44px 16px 32px;
    font-size: var(--font-l);
  }
}
.service-button-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  transition: background-color var(--trans-default), border-color var(--trans-default);
  border: 1px solid var(--color-s-main-base);
  border-radius: 50%;
  background-color: var(--color-white);
}
.service-button-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: var(--color-s-main-base) var(--trans-default);
  background-color: var(--color-s-main-base);
  mask: url("/assets/images/service/icon/ico_arrow_right.svg") no-repeat center/contain;
}
@media (any-hover: hover) {
  .service-button-primary:hover {
    border-color: var(--color-s-main-dark);
    background-color: var(--color-s-main-dark);
  }
  .service-button-primary:hover::before {
    border-color: var(--color-white);
    background-color: var(--color-s-main-dark);
  }
  .service-button-primary:hover::after {
    background-color: var(--color-white);
  }
}

/* ------------------------------
  service-button-secondary
------------------------------ */
.service-button-secondary {
  line-height: var(--line-s);
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 10px 48px 10px 24px;
  border: 1px solid var(--color-s-main-base);
  border-radius: 800px;
  background-color: var(--color-white);
  color: var(--color-s-main-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@media screen and (max-width: 768.9px) {
  .service-button-secondary {
    width: fit-content;
    min-width: 330px;
  }
}
@media screen and (min-width: 769px) {
  .service-button-secondary {
    max-width: 400px;
    padding: 16px 44px 16px 32px;
    font-size: var(--font-l);
  }
}
.service-button-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  transition: background-color var(--trans-default), border-color var(--trans-default);
  border: 1px solid var(--color-s-main-base);
  border-radius: 50%;
  background-color: var(--color-white);
}
.service-button-secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: var(--color-white) var(--trans-default);
  background-color: var(--color-s-main-base);
  mask: url("/assets/images/service/icon/ico_arrow_right.svg") no-repeat center/contain;
}
@media screen and (max-width: 768.9px) {
  .service-button-secondary {
    min-width: auto;
  }
}
@media (any-hover: hover) {
  .service-button-secondary:hover {
    background-color: var(--color-s-main-light);
    color: var(--color-s-main-dark);
  }
  .service-button-secondary:hover::before {
    border-color: var(--color-s-main-base);
    background-color: var(--color-s-main-base);
  }
  .service-button-secondary:hover::after {
    background-color: var(--color-white);
  }
}

/* ------------------------------
  service-button-form
------------------------------ */
.service-button-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-s-black);
  border-radius: 50vh;
  background-color: var(--color-s-black);
  color: var(--color-white);
  font-size: var(--font-m);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .service-button-form {
    max-width: 300px;
    min-height: 60px;
    padding: 16px;
  }
}
@media (any-hover: hover) {
  .service-button-form:hover {
    border-color: var(--color-s-gray-dark);
    background-color: var(--color-s-gray-dark);
  }
}

/* ------------------------------
  service-button-function
------------------------------ */
.service-button-function {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  min-height: 38px;
  padding: 6px 10px 6px 24px;
  transition: background-color var(--trans-default);
  border: 1px solid var(--color-s-main-base);
  border-radius: 50vh;
  background-color: var(--color-white);
  color: var(--color-s-main-base);
  font-size: var(--font-m);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  gap: 10px;
}
@media (any-hover: hover) {
  .service-button-function:hover {
    border-color: var(--color-s-main-dark);
    background-color: var(--color-s-main-light);
    color: var(--color-s-main-dark);
  }
}
.service-button-function span {
  content: "";
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: background-color var(--trans-default), border-color var(--trans-default);
  border: 1px solid var(--color-s-main-base);
  border-radius: 50%;
}
.service-button-function span::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  transition: background-color var(--trans-default);
  background-color: var(--color-s-main-base);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.service-button-function__arrow::before {
  mask-image: url("/assets/images/service/icon/ico_arrow_right.svg");
}
.service-button-function__plus::before {
  mask-image: url("/assets/images/service/icon/ico_plus.svg");
}
@media (any-hover: hover) {
  .service-button-function:hover span {
    border-color: var(--color-s-main-dark);
    background-color: var(--color-s-main-dark);
  }
  .service-button-function:hover span::before {
    background-color: var(--color-white);
  }
}

/* ------------------------------
  service-cta
------------------------------ */
.service-cta {
  padding: 40px 24px;
  background-color: var(--color-s-black);
}
@media screen and (min-width: 769px) {
  .service-cta {
    padding: 40px 56px;
  }
}
.service-cta__inner {
  max-width: 1100px;
  margin-inline: auto;
}
.service-cta__button-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

/* ------------------------------
  service-cta-menu
------------------------------ */
.service-cta-menu {
  display: grid;
  margin-block: 32px 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .service-cta-menu {
    grid-template-columns: repeat(2, minmax(0, 450px));
    justify-content: center;
    margin-top: 56px;
  }
}
.service-cta-menu__item {
  display: flex;
  flex: 1;
}
.service-cta-menu__link {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 16px 60px 16px 16px;
  border-radius: 8px;
  background-color: var(--color-white);
  color: var(--color-black);
  text-decoration: none;
  gap: 16px;
}
.service-cta-menu__link::before {
  content: "";
  position: absolute;
  right: 16px;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  transition: border-color var(--trans-default);
  border: 1px solid var(--color-s-black);
  border-radius: 50%;
}
.service-cta-menu__link::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 12px;
  height: 12px;
  transition: background-color var(--trans-default);
  background-color: var(--color-s-black);
  mask: url("/assets/images/service/icon/ico_arrow_right.svg") no-repeat center/contain;
}
@media (any-hover: hover) {
  .service-cta-menu__link:hover::before {
    border-color: var(--color-s-main-dark);
  }
  .service-cta-menu__link:hover::after {
    background-color: var(--color-s-main-dark);
  }
}
.service-cta-menu__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 8px;
}
.service-cta-menu__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-cta-menu__text {
  margin-block: 0;
  transition: color var(--trans-default);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
@media (any-hover: hover) {
  .service-cta-menu__link:hover .service-cta-menu__text {
    color: var(--color-s-main-dark);
  }
}
.service-cta-menu__sub {
  margin-block: 2px 0;
  color: var(--color-s-gray-dark);
  font-size: var(--font-xs);
}

/* ------------------------------
  service-faq
------------------------------ */
.service-faq {
  margin-block: 12px 0;
  border-bottom: 1px solid var(--color-s-main-medium);
}
@media screen and (min-width: 769px) {
  .service-faq {
    margin-top: 24px;
  }
}
.service-faq__item {
  padding: 20px 16px;
  border-top: 1px solid var(--color-s-main-medium);
}
.service-faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
.service-faq__question span {
  color: var(--color-s-main-base);
  font-size: var(--font-2xl);
}
.service-faq__answer {
  margin: 4px 0 0 32px;
}

/* ------------------------------
  service-form-contact
------------------------------ */
.service-form-contact {
  margin-top: 12px;
  padding: 24px;
  border-radius: 24px;
  background-color: var(--color-white);
}
@media screen and (min-width: 769px) {
  .service-form-contact {
    margin-top: 24px;
    padding: 80px;
  }
}
.service-form-contact__content {
  display: grid;
  gap: 40px;
  max-width: 768px;
  margin-inline: auto;
}
.service-form-contact__button-box {
  display: grid;
  margin-top: 24px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .service-form-contact__button-box {
    justify-content: center;
    justify-items: center;
    margin-top: 40px;
  }
}

/* ------------------------------
  service-form-item
------------------------------ */
.service-form-item {
  display: grid;
  gap: 16px;
}
.service-form-item fieldset {
  display: contents;
  margin: 0;
  padding: 0;
  border: 0;
}
@media screen and (min-width: 769px) {
  .service-form-item {
    grid-template-columns: 210px minmax(240px, 440px);
    align-items: center;
    gap: 40px;
    justify-content: space-between;
  }
  .service-form-item--flex-start {
    align-items: flex-start;
  }
}
.service-form-item__label {
  display: flex;
  align-items: center;
  padding-inline: 0;
  font-weight: var(--font-weight-bold);
  gap: 16px;
}

/* ------------------------------
  service-form-select-list
------------------------------ */
.service-form-select-list {
  display: grid;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}

/* ------------------------------
  service-form-note
------------------------------ */
.service-form-note {
  margin-block: 0;
  font-size: var(--font-s);
}

/* ------------------------------
  service-heading
------------------------------ */
.service-heading {
  margin-block: 0;
  font-size: var(--font-xl);
  font-weight: var(--font-weight-heavy);
}
@media screen and (min-width: 769px) {
  .service-heading {
    font-size: var(--font-3xl);
  }
}
.service-heading b {
  display: block;
  font-size: var(--font-4xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
}
@media screen and (min-width: 769px) {
  .service-heading b {
    font-size: var(--font-5xl);
  }
}

/* ------------------------------
  service-heading02
------------------------------ */
.service-heading02 {
  margin-block: 0;
  font-size: var(--font-3xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
  text-align: center;
}
.service-heading02--on-bg {
  color: var(--color-white);
}
@media screen and (min-width: 769px) {
  .service-heading02 {
    font-size: var(--font-4xl);
  }
}
.service-heading02__sub {
  display: inline-block;
  color: var(--color-s-main-base);
  font-size: var(--font-s);
}
@media screen and (min-width: 769px) {
  .service-heading02__sub {
    font-size: var(--font-m);
  }
}
.service-heading02__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: -4px 12px;
  gap: 8px;
}
.service-heading02__deco span {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--color-s-main-base);
}
.service-heading02__deco::before, .service-heading02__deco::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--color-s-main-base);
}
@media screen and (min-width: 769px) {
  .service-heading02__deco {
    margin-bottom: 16px;
  }
}

/* ------------------------------
  service-heading03
------------------------------ */
.service-heading03 {
  margin-block: 0;
  font-size: var(--font-2xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
}
.service-heading03--on-bg {
  color: var(--color-white);
}
.service-heading03 span {
  display: block;
  color: var(--color-s-main-base);
  font-size: var(--font-s);
}

/* ------------------------------
  service-heading04
------------------------------ */
.service-heading04 {
  margin-block: 0;
  font-size: var(--font-xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
}
.service-heading04 span {
  display: block;
  margin-bottom: 2px;
  color: var(--color-s-main-base);
  font-size: var(--font-s);
}
.service-heading04--on-bg {
  color: var(--color-white);
}

/* ------------------------------
  service-heading05
------------------------------ */
.service-heading05 {
  position: relative;
  width: fit-content;
  margin-block: 0;
  padding-inline: 10px;
  font-size: var(--font-s);
  font-weight: var(--font-weight-heavy);
}
.service-heading05::before, .service-heading05::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--color-s-black);
  rotate: 20deg;
}
.service-heading05::before {
  left: 0;
}
.service-heading05::after {
  right: 6px;
}
.service-heading05--on-bg {
  color: var(--color-white);
}
.service-heading05--on-bg::before, .service-heading05--on-bg::after {
  background-color: var(--color-white);
}

/* ------------------------------
  service-input-checkbox
------------------------------ */
.service-input-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}
.service-input-checkbox__input {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  transition: background-color var(--trans-default);
  border: 1px solid var(--color-s-black);
  border-radius: 4px;
  background-color: var(--color-white);
  cursor: pointer;
  appearance: none;
}
.service-input-checkbox__input::after {
  content: "";
  position: absolute;
  top: calc(50% - 9px);
  left: calc(50% - 9px);
  width: 0;
  height: 18px;
  transition: width var(--trans-default);
  background-color: var(--color-white);
  mask: url("/assets/images/service/icon/ico_check.svg") no-repeat 0 0/auto 100%;
}
.service-input-checkbox__input:checked {
  background-color: var(--color-s-black);
}
.service-input-checkbox__input:checked::after {
  width: 18px;
}
.service-input-checkbox__text {
  display: block;
  position: relative;
  transition: bold var(--trans-default);
  color: var(--color-s-black);
  font-size: var(--font-m);
  line-height: var(--line-m);
  cursor: pointer;
}
.service-input-checkbox__input:checked + .service-input-checkbox__text {
  font-weight: var(--font-weight-bold);
}
.service-input-checkbox__text a {
  color: var(--color-s-black);
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .service-input-checkbox__text a:hover {
    text-decoration: none;
  }
}

/* ------------------------------
  service-input-text
------------------------------ */
.service-input-text {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .service-input-text {
    max-width: 440px;
  }
}
.service-input-text__input {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 10px 16px;
  transition: border-color var(--trans-default);
  border: 1px solid var(--color-s-gray-middle);
  border-radius: 8px;
  background-color: var(--color-white);
  box-shadow: inset 0 4px 8px rgba(89, 110, 127, 0.07);
  color: var(--color-s-black);
  font-family: var(--font-family-all);
  font-size: var(--font-m);
  line-height: var(--line-m);
}
.service-input-text__input::placeholder {
  color: var(--color-s-gray-base);
}
.service-input-text__input.is-error {
  border-color: var(--color-s-red);
}
.service-input-text__input:disabled {
  background-color: var(--color-s-gray-light);
  color: var(--color-s-gray-middle);
}
.service-input-text__input:focus-visible {
  outline: 4px solid var(--color-s-black);
}

/* ------------------------------
  service-input-textarea
------------------------------ */
.service-input-textarea {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .service-input-textarea {
    max-width: 440px;
  }
}
.service-input-textarea__input {
  box-sizing: border-box;
  width: 100%;
  height: 240px;
  min-height: 48px;
  padding: 10px 16px;
  transition: border-color var(--trans-default);
  border: 1px solid var(--color-s-gray-middle);
  border-radius: 8px;
  background-color: var(--color-white);
  box-shadow: inset 0 4px 8px rgba(89, 110, 127, 0.07);
  color: var(--color-s-black);
  font-family: var(--font-family-all);
  font-size: var(--font-m);
  line-height: var(--line-m);
  resize: vertical;
}
.service-input-textarea__input::placeholder {
  color: var(--color-s-gray-base);
}
.service-input-textarea__input.is-error {
  border-color: var(--color-s-red);
}
.service-input-textarea__input:disabled {
  background-color: var(--color-s-gray-light);
  color: var(--color-s-gray-middle);
}
.service-input-textarea__input:focus-visible {
  outline: 4px solid var(--color-s-black);
}

/* ------------------------------
  service-tag-heading
------------------------------ */
.service-tag-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .service-tag-heading {
    justify-content: center;
  }
}

/* ------------------------------
  service-tag-primary
------------------------------ */
.service-tag-primary {
  display: inline-flex;
  box-sizing: border-box;
  flex-shrink: 0;
  align-items: center;
  min-height: 25px;
  padding: 5px 8px 3px;
  border-radius: 4px;
  background-color: var(--color-s-main-base);
  color: var(--color-white);
  font-size: var(--font-2xs);
  font-weight: var(--font-weight-bold);
  gap: 4px;
}
.service-tag-primary__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}
.service-tag-primary__icon img {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ------------------------------
  service-tag-secondary
------------------------------ */
.service-tag-secondary {
  display: inline-flex;
  box-sizing: border-box;
  flex-shrink: 0;
  align-items: center;
  min-height: 25px;
  padding: 4px 7px 2px;
  border: 1px solid var(--color-s-main-base);
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-s-main-base);
  font-size: var(--font-2xs);
  font-weight: var(--font-weight-bold);
}

/* ------------------------------
  service-tag-tertiary
------------------------------ */
.service-tag-tertiary {
  display: inline-flex;
  box-sizing: border-box;
  flex-shrink: 0;
  align-items: center;
  min-height: 25px;
  padding: 5px 8px 3px;
  border-radius: 4px;
  background-color: var(--color-s-black);
  color: var(--color-white);
  font-size: var(--font-2xs);
  font-weight: var(--font-weight-bold);
  gap: 4px;
}

/* ------------------------------
  service-tag-quaternary
------------------------------ */
.service-tag-quaternary {
  display: inline-flex;
  box-sizing: border-box;
  flex-shrink: 0;
  align-items: center;
  min-height: 25px;
  padding: 5px 8px 3px;
  border-radius: 4px;
  background-color: var(--color-s-gray-light);
  color: var(--color-s-black);
  font-size: var(--font-2xs);
  gap: 4px;
}

/* ------------------------------
  service-tag-required
------------------------------ */
.service-tag-required {
  display: inline-block;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 4px;
  background-color: var(--color-s-red);
  color: var(--color-white);
  font-size: var(--font-xs);
}

/* ------------------------------
  service-tag-optional
------------------------------ */
.service-tag-optional {
  display: inline-block;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 4px;
  background-color: var(--color-s-black);
  color: var(--color-white);
  font-size: var(--font-xs);
}

/* ------------------------------
  service-tag-medium
------------------------------ */
.service-tag-medium {
  font-size: var(--font-s);
}

/* ------------------------------
  service-text
------------------------------ */
.service-text {
  margin-block: 12px 0;
  line-height: var(--line-m);
}
.service-text--on-bg {
  color: var(--color-white);
}
@media screen and (min-width: 769px) {
  .service-text {
    margin-top: 16px;
    text-align: center;
  }
}

/* ------------------------------
  service-text02
------------------------------ */
.service-text02 {
  margin-block: 8px 0;
  font-size: var(--font-s);
}
.service-text02--on-bg {
  color: var(--color-white);
}

/* ------------------------------
  service-text-lead
------------------------------ */
.service-text-lead {
  margin-block: 16px 0;
  font-size: var(--font-xs);
}
@media screen and (min-width: 769px) {
  .service-text-lead {
    font-size: var(--font-m);
  }
}

/* --------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 ベトナムオフショア開発 まとめ用
 ※※※※※※※※※※※※※※※※※※※※※※※※
-------------------------------------------------- */
/* ------------------------------
  offshore-button-primary
------------------------------ */
.offshore-button-primary {
  border: none;
  background-color: var(--color-s-black);
  color: var(--color-white);
}
.offshore-button-primary::before {
  border-color: transparent;
}
.offshore-button-primary::after {
  background-color: var(--color-s-black);
}
@media (any-hover: hover) {
  .offshore-button-primary:hover {
    border-color: var(--color-s-black);
    background-color: var(--color-s-main-highlight);
    color: var(--color-s-black);
  }
  .offshore-button-primary:hover::before {
    border-color: var(--color-s-black);
    background-color: var(--color-white);
  }
  .offshore-button-primary:hover::after {
    background-color: var(--color-s-black);
  }
}

/* ------------------------------
  offshore-button-secondary
------------------------------ */
.offshore-button-secondary {
  transition: background-color var(--trans-default), border-color var(--trans-default), color var(--trans-default);
  border: 2px solid transparent;
  background-color: var(--color-s-main-highlight);
  color: var(--color-s-black);
}
.offshore-button-secondary::before {
  transition: background-color var(--trans-default), border-color var(--trans-default);
  border-color: var(--color-s-black);
  background-color: var(--color-white);
}
.offshore-button-secondary::after {
  transition: background-color var(--trans-default);
  background-color: var(--color-s-black);
}
@media (any-hover: hover) {
  .offshore-button-secondary:hover {
    border-color: var(--color-s-main-highlight);
    background-color: var(--color-s-black);
    color: var(--color-white);
  }
  .offshore-button-secondary:hover::before {
    border-color: var(--color-s-main-highlight);
    background-color: var(--color-s-main-highlight);
  }
  .offshore-button-secondary:hover::after {
    background-color: var(--color-s-black);
  }
}

/* ------------------------------
  offshore-cta
------------------------------ */
.offshore-cta {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 24px 40px;
  border-radius: 24px;
  background-color: var(--color-s-black);
}
@media screen and (min-width: 769px) {
  .offshore-cta {
    padding: 24px 40px 40px;
  }
}
.offshore-cta__list {
  display: flex;
  flex-direction: column;
  margin: 32px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-cta__list {
    flex-direction: row;
  }
}
.offshore-cta__item {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--color-s-black-light);
  border-radius: 16px;
  background-color: var(--color-s-sub-dark);
}
@media screen and (min-width: 769px) {
  .offshore-cta__item {
    width: calc((100% - 32px) / 3);
  }
}
.offshore-cta__label {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  width: fit-content;
  margin-block: 0;
  padding-inline: 12px;
  color: var(--color-s-main-highlight);
  font-size: var(--font-m);
  font-weight: var(--font-weight-heavy);
}
.offshore-cta__label::before, .offshore-cta__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%) rotate(20deg);
  background-color: var(--color-s-main-highlight);
}
.offshore-cta__label::before {
  left: 0;
}
.offshore-cta__label::after {
  right: 0;
}
.offshore-cta__title {
  margin-block: 8px 0;
  color: var(--color-white);
  font-size: var(--font-m);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
}
@media screen and (min-width: 769px) {
  .offshore-cta__title {
    font-size: var(--font-l);
  }
}
.offshore-cta__text {
  margin-block: 4px 0;
  color: var(--color-white);
  font-size: var(--font-s);
  line-height: var(--line-m);
}
@media screen and (min-width: 769px) {
  .offshore-cta__text {
    font-size: var(--font-m);
  }
}

/* ------------------------------
  offshore-table-partner
------------------------------ */
.offshore-table-partner {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-s-sub-medium);
  border-radius: 16px;
}
.offshore-table-partner__heading {
  padding: 12px 16px;
  background-color: var(--color-s-sub-pale);
}
.offshore-table-partner__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
}
.offshore-table-partner__title {
  box-sizing: border-box;
  padding: 12px 16px;
  color: var(--color-s-black);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-bold);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
tr:not(:first-child) .offshore-table-partner__title {
  border-top: 1px solid var(--color-s-main-medium);
}
.offshore-table-partner__data {
  box-sizing: border-box;
  padding: 12px 16px;
  color: var(--color-s-black);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-m);
  text-align: left;
}
tr:not(:first-child) .offshore-table-partner__data {
  border-top: 1px solid var(--color-s-main-medium);
}

/* ------------------------------
  offshore-table-price
------------------------------ */
.offshore-table-price {
  width: 100%;
  overflow: hidden;
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 16px;
  /* ----------------------------------
   * 行（tr）に対するスタイリング
   * ---------------------------------- */
}
.offshore-table-price__head {
  padding: 12px 16px;
  background-color: var(--color-s-main-medium);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
  text-align: center;
  white-space: nowrap;
}
.offshore-table-price__head--highlight {
  background-color: var(--color-s-black);
  color: var(--color-white);
}
.offshore-table-price__head:first-child {
  text-align: left;
}
.offshore-table-price tbody tr {
  /* デフォルト（奇数行）の背景色 */
  background-color: var(--color-white);
  /* 1. 偶数行の背景色 */
}
.offshore-table-price tbody tr:nth-child(even) {
  background-color: var(--color-s-main-pale);
}
.offshore-table-price__title {
  padding: 12px 16px;
  border-top: 1px solid var(--color-s-main-medium);
  /* 背景色は親の tr から継承（親の色をそのまま表示） */
  background-color: inherit;
  color: var(--color-s-black);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
  text-align: left;
  white-space: nowrap;
}
.offshore-table-price__data {
  padding: 12px 16px;
  border-top: 1px solid var(--color-s-main-medium);
  background-color: inherit;
  color: var(--color-s-black);
  font-size: var(--font-s);
  text-align: center;
  white-space: nowrap;
}
.offshore-table-price__data--highlight {
  background-color: color-mix(in srgb, var(--color-s-main-light) 30%, transparent);
  font-weight: var(--font-weight-bold);
}
.offshore-table-price__data--highlight span {
  font-size: var(--font-l);
}
tr:nth-child(even) .offshore-table-price__data--highlight {
  background-color: var(--color-s-main-light);
}

/* ------------------------------
  offshore-tag-primary
------------------------------ */
.offshore-tag-primary {
  background: var(--color-s-main-base);
}
.offshore-tag-primary--partner {
  background: var(--color-s-sub-base);
}

/* ------------------------------
  offshore-tag-tertiary
------------------------------ */
.offshore-tag-tertiary {
  background: var(--color-s-main-medium);
  color: var(--color-s-black);
}

/* ------------------------------
  offshore-tag-quaternary
------------------------------ */
.offshore-tag-quaternary {
  background: var(--color-s-main-medium);
}

/* ------------------------------
  offshore-top-case
------------------------------ */
.offshore-top-case {
  position: relative;
  margin-top: 32px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background-color: var(--color-s-main-pale);
}
@media screen and (min-width: 769px) {
  .offshore-top-case {
    margin-top: 56px;
    padding: 32px;
  }
}
.offshore-top-case::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20px;
  opacity: 0.2;
  background-image: url("/assets/images/service/vietnam-offshore/bg_case.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(8px);
}
.offshore-top-case__row {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case__row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
  }
}
.offshore-top-case__content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .offshore-top-case__content {
    flex: 1 1 350px;
  }
}
.offshore-top-case__badge {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: var(--color-s-black);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}
.offshore-top-case__heading {
  margin-block: 0;
  color: var(--color-s-black);
  font-size: var(--font-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
@media screen and (min-width: 769px) {
  .offshore-top-case__heading {
    font-size: var(--font-2xl);
  }
}
.offshore-top-case__text {
  margin-block: 12px 0;
  color: var(--color-s-gray-dark);
  line-height: var(--line-m);
}
.offshore-top-case__step {
  box-sizing: border-box;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 8px;
  background-color: var(--color-white);
}
.offshore-top-case__step-label {
  margin-inline: auto;
  color: var(--color-s-black);
  text-align: center;
}
.offshore-top-case__step-list {
  display: flex;
  position: relative;
  flex-direction: row;
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}
.offshore-top-case__step-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 28px;
  right: 16.6666666667%;
  left: 16.6666666667%;
  height: 1px;
  background-color: var(--color-s-black);
}
.offshore-top-case__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.offshore-top-case__step-number {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-s-black);
  color: var(--color-white);
  font-size: var(--font-2xs);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-none);
}
.offshore-top-case__step-number b {
  margin-top: 4px;
  font-size: var(--font-m);
}
.offshore-top-case__step-text {
  margin-block: 8px 0;
  color: var(--color-s-black);
  font-size: var(--font-xs);
  line-height: var(--line-s);
}
.offshore-top-case__image {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .offshore-top-case__image {
    flex: 1 1 350px;
  }
}
.offshore-top-case__image img {
  display: block;
  width: 100%;
  height: auto;
}
.offshore-top-case__point-list {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case__point-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.offshore-top-case__point-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 8px;
  background-color: var(--color-white);
  color: var(--color-s-black);
  font-size: var(--font-s);
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case__point-item {
    justify-content: center;
  }
}
.offshore-top-case__point-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.offshore-top-case__point-icon-mark {
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-s-black);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.offshore-top-case__point-icon-mark--cart {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_cart.svg");
}
.offshore-top-case__point-icon-mark--sparkle {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_sparkle.svg");
}
.offshore-top-case__point-icon-mark--smartphone {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_box.svg");
}

/* ------------------------------
  offshore-top-case-detail
------------------------------ */
.offshore-top-case-detail {
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail {
    margin-top: 32px;
  }
}
.offshore-top-case-detail__label {
  margin-block: 32px 0;
  color: var(--color-s-black);
  font-size: var(--font-m);
  font-weight: var(--font-weight-bold);
}
.offshore-top-case-detail__label:first-child {
  margin-top: 0;
}
.offshore-top-case-detail__row {
  display: flex;
  flex-direction: column;
  margin: 8px 0 32px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__row {
    flex-direction: column;
  }
  @container (min-width: 800px) {
    .offshore-top-case-detail__row {
      flex-direction: row;
    }
  }
}
.offshore-top-case-detail__box {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 16px;
  background-color: var(--color-s-main-pale);
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__box {
    flex: 1;
    width: auto;
  }
}
.offshore-top-case-detail__box--requirement {
  background-color: var(--color-s-main-light);
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__box--requirement {
    flex: none;
    width: 100%;
  }
  @container (min-width: 800px) {
    .offshore-top-case-detail__box--requirement {
      width: fit-content;
    }
  }
}
.offshore-top-case-detail__box-title {
  margin-block: 0;
  color: var(--color-s-black);
  font-size: var(--font-l);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
.offshore-top-case-detail__box-text {
  margin-block: 12px 0;
  font-size: var(--font-s);
  line-height: var(--line-m);
}
.offshore-top-case-detail__box-text + .offshore-top-case-detail__box-text {
  margin-top: 12px;
}
.offshore-top-case-detail__requirement-list {
  display: flex;
  flex-direction: column;
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 8px;
}
.offshore-top-case-detail__requirement-item {
  display: flex;
  align-items: center;
  color: var(--color-s-black);
  font-size: var(--font-s);
  gap: 8px;
}
.offshore-top-case-detail__requirement-item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--color-s-main-base);
  mask: url("/assets/images/service/icon/ico_check.svg") no-repeat center/contain;
}
.offshore-top-case-detail__overview {
  display: grid;
  grid-template-columns: 1fr;
  margin: 8px 0 32px;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__overview {
    grid-template-columns: repeat(2, 1fr);
  }
  @container (min-width: 800px) {
    .offshore-top-case-detail__overview {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
.offshore-top-case-detail__overview-item {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 12px;
  gap: 12px;
}
.offshore-top-case-detail__overview-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 8px;
  background-color: var(--color-s-main-light);
}
.offshore-top-case-detail__overview-icon-mark {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-s-main-base);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.offshore-top-case-detail__overview-icon-mark--group {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_group.svg");
}
.offshore-top-case-detail__overview-icon-mark--schedule {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_schedule.svg");
}
.offshore-top-case-detail__overview-icon-mark--code {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_code.svg");
}
.offshore-top-case-detail__overview-icon-mark--device {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_device.svg");
}
.offshore-top-case-detail__overview-label {
  margin-block: 0;
  color: var(--color-s-gray-dark);
  font-size: var(--font-xs);
}
.offshore-top-case-detail__overview-data {
  margin-block: 0;
  color: var(--color-s-black);
  font-weight: var(--font-weight-bold);
}
.offshore-top-case-detail__table-wrap {
  display: flex;
  flex-direction: column;
  margin: 8px 0 32px;
  gap: 16px;
  container-type: inline-size;
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__table-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.offshore-top-case-detail__table-box {
  width: 100%;
  overflow-x: auto;
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__table-box {
    flex: 1 1 520px;
    width: auto;
  }
}
.offshore-top-case-detail__summary {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__summary {
    flex-direction: column;
    flex-shrink: 0;
    flex-wrap: nowrap;
    width: 220px;
  }
  @container (max-width: 755px) {
    .offshore-top-case-detail__summary {
      flex-direction: row;
      flex-wrap: wrap;
      width: 100%;
    }
  }
}
.offshore-top-case-detail__summary-item {
  display: flex;
  box-sizing: border-box;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  background-color: var(--color-s-black);
  color: var(--color-white);
}
.offshore-top-case-detail__summary-item--highlight {
  background-color: var(--color-s-main-highlight);
  color: var(--color-s-black);
}
.offshore-top-case-detail__summary-label {
  margin: 0;
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
}
.offshore-top-case-detail__summary-data {
  margin: 4px 0 0;
  font-size: var(--font-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-none);
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__summary-data {
    font-size: var(--font-4xl);
  }
}
.offshore-top-case-detail__summary-data span {
  margin-left: 2px;
  font-size: var(--font-s);
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__summary-data span {
    font-size: var(--font-xl);
  }
}
.offshore-top-case-detail__note {
  width: 100%;
  margin-block: 0;
  font-size: var(--font-s);
  text-align: right;
}
.offshore-top-case-detail__point-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-case-detail__point-list {
    grid-template-columns: repeat(2, 1fr);
  }
  @container (min-width: 800px) {
    .offshore-top-case-detail__point-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
.offshore-top-case-detail__point-item {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 12px;
  background-color: var(--color-white);
  color: var(--color-s-black);
  font-size: var(--font-m);
  line-height: var(--line-m);
  gap: 16px;
}
.offshore-top-case-detail__point-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--color-s-main-light);
  color: var(--color-s-black);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
}

/* ------------------------------
  offshore-top-culture
------------------------------ */
.offshore-top-culture {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  margin-bottom: 56px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 769px) {
  .offshore-top-culture {
    flex-direction: column;
  }
  @container (min-width: 800px) {
    .offshore-top-culture {
      flex-direction: row;
    }
  }
}
.offshore-top-culture__image {
  position: relative;
  width: 100%;
  height: 220px;
}
@media screen and (min-width: 769px) {
  .offshore-top-culture__image {
    height: auto;
  }
  @container (min-width: 800px) {
    .offshore-top-culture__image {
      width: 50%;
    }
  }
}
.offshore-top-culture__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offshore-top-culture__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  margin: 0;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(0, 18, 38, 0.6);
  color: var(--color-white);
  font-size: var(--font-2xs);
  font-weight: var(--font-weight-bold);
}
.offshore-top-culture__content {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  gap: 32px;
  background-color: var(--color-s-black);
}
@media screen and (min-width: 769px) {
  .offshore-top-culture__content {
    padding: 48px 40px;
  }
  @container (min-width: 800px) {
    .offshore-top-culture__content {
      width: 60%;
    }
  }
}
.offshore-top-culture__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.offshore-top-culture__body {
  min-width: 0;
}
.offshore-top-culture__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-s-sub-dark);
}
.offshore-top-culture__icon img {
  width: 24px;
  height: 24px;
}
.offshore-top-culture__title {
  margin-block: 0;
  color: var(--color-white);
  font-size: var(--font-l);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
.offshore-top-culture__text {
  margin-block: 8px 0;
  color: var(--color-white);
  font-size: var(--font-s);
  line-height: var(--line-m);
}

/* ------------------------------
  offshore-top-feature-section
------------------------------ */
.offshore-top-feature-section {
  position: relative;
}
.offshore-top-feature-section__arrow {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  justify-content: center;
}
.offshore-top-feature-section__arrow img {
  width: 40px;
  height: 40px;
}

/* ------------------------------
  offshore-top-feature
------------------------------ */
.offshore-top-feature {
  display: flex;
  flex-direction: column;
  margin: 24px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-feature {
    flex-direction: row;
    margin-top: 56px;
    gap: 16px;
  }
}
.offshore-top-feature__item {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background-color: var(--color-white);
  box-shadow: 4px 4px 16px rgba(0, 18, 38, 0.2);
}
@media screen and (min-width: 769px) {
  .offshore-top-feature__item {
    width: calc((100% - 32px) / 3);
  }
}
.offshore-top-feature__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.offshore-top-feature__head-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offshore-top-feature__label {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  width: fit-content;
  margin-block: 0;
  padding-inline: 12px;
  color: var(--color-s-main-base);
  font-size: var(--font-xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
}
@media screen and (min-width: 769px) {
  .offshore-top-feature__label {
    font-size: var(--font-2xl);
  }
}
.offshore-top-feature__label::before, .offshore-top-feature__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 20px;
  transform: translateY(-50%) rotate(20deg);
  background-color: var(--color-s-main-base);
}
.offshore-top-feature__label::before {
  left: 0;
}
.offshore-top-feature__label::after {
  right: 0;
}
.offshore-top-feature__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: var(--color-s-black);
}
@media screen and (min-width: 769px) {
  .offshore-top-feature__icon {
    width: 56px;
    height: 56px;
  }
}
.offshore-top-feature__icon img {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 769px) {
  .offshore-top-feature__icon img {
    width: 32px;
    height: 32px;
  }
}
.offshore-top-feature__title {
  margin-block: 0;
  color: var(--color-s-black);
  font-size: var(--font-xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
}
@media screen and (min-width: 769px) {
  .offshore-top-feature__title {
    font-size: var(--font-2xl);
  }
}
.offshore-top-feature__text {
  flex: 1;
  margin-block: 8px 0;
  font-size: var(--font-m);
  line-height: var(--line-m);
}
.offshore-top-feature__note {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 12px;
  background-color: var(--color-s-main-pale);
}
.offshore-top-feature__note-label {
  margin-block: 0;
  color: var(--color-s-gray-dark);
  font-size: var(--font-xs);
}
.offshore-top-feature__note-data {
  margin-block: 2px 0;
  color: var(--color-s-black);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}

/* ------------------------------
  offshore-top-hero
------------------------------ */
.offshore-top-hero {
  background-color: var(--color-s-main-pale);
}
.offshore-top-hero__container {
  position: relative;
  padding: 40px 24px calc(clamp(0px, 66.67%, 100px) + 24.78%);
  overflow: hidden;
  background-image: url("/assets/images/service/vietnam-offshore/bg_hero_map_sp.png");
  background-repeat: no-repeat;
  background-position: right 0 bottom -16px;
  background-size: 100% auto;
}
@media screen and (min-width: 769px) {
  .offshore-top-hero__container {
    max-width: 1200px;
    margin-inline: auto;
    padding: 72px 56px 64px;
    background-image: url("/assets/images/service/vietnam-offshore/bg_hero_map_pc.png");
    background-position: right -20px center;
    background-size: min(100%, 1600px) auto;
  }
}
.offshore-top-hero__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .offshore-top-hero__inner {
    max-width: 670px;
  }
}
.offshore-top-hero__heading {
  color: var(--color-s-main-base);
}
.offshore-top-hero__heading b {
  color: var(--color-s-black);
}

/* ------------------------------
  offshore-top-hero-evidence
------------------------------ */
.offshore-top-hero-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}
.offshore-top-hero-evidence__item {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 12px 24px;
  border: 1px solid var(--color-s-main-base);
  border-radius: 16px;
  background-color: var(--color-white);
}
.offshore-top-hero-evidence__label {
  margin-block: 0;
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.offshore-top-hero-evidence__data {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--color-s-main-base);
  font-size: var(--font-m);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.offshore-top-hero-evidence__data b {
  padding: 0 4px;
  font-size: var(--font-2xl);
  font-weight: var(--font-weight-heavy);
}

/* ------------------------------
  offshore-top-issue
------------------------------ */
.offshore-top-issue {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background-color: var(--color-s-black);
}
@media screen and (min-width: 769px) {
  .offshore-top-issue {
    padding: 56px;
  }
}
.offshore-top-issue__heading {
  max-width: 1100px;
  margin-block: 0;
  margin-inline: auto;
  color: var(--color-white);
  font-size: var(--font-2xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .offshore-top-issue__heading {
    font-size: var(--font-3xl);
  }
}
.offshore-top-issue__text {
  max-width: 1100px;
  margin-block: 12px 0;
  margin-inline: auto;
  color: var(--color-white);
  font-size: var(--font-s);
  line-height: var(--line-m);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .offshore-top-issue__text {
    font-size: var(--font-m);
  }
}
.offshore-top-issue__list {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 56px auto 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-issue__list {
    flex-direction: row;
  }
}
.offshore-top-issue__item {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background-color: var(--color-white);
}
@media screen and (min-width: 769px) {
  .offshore-top-issue__item {
    width: calc((100% - 32px) / 3);
  }
}
.offshore-top-issue__label {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  width: fit-content;
  margin-block: 0;
  padding-inline: 12px;
  color: var(--color-s-main-base);
  font-size: var(--font-s);
  font-weight: var(--font-weight-heavy);
}
.offshore-top-issue__label::before, .offshore-top-issue__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%) rotate(20deg);
  background-color: var(--color-s-main-base);
}
.offshore-top-issue__label::before {
  left: 0;
}
.offshore-top-issue__label::after {
  right: 0;
}
.offshore-top-issue__title {
  margin-block: 4px 0;
  color: var(--color-s-black);
  font-size: var(--font-xl);
  font-weight: var(--font-weight-heavy);
  line-height: var(--line-s);
}
.offshore-top-issue__body {
  margin-block: 12px 0;
  color: var(--color-s-black);
  font-size: var(--font-m);
  line-height: var(--line-m);
}

/* ------------------------------
  offshore-top-management
------------------------------ */
.offshore-top-management {
  display: grid;
  grid-template-columns: 1fr;
  margin: 24px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-management {
    grid-template-columns: repeat(2, 1fr);
  }
  @container (min-width: 800px) {
    .offshore-top-management {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
.offshore-top-management__item {
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 16px;
  background-color: var(--color-white);
}
.offshore-top-management__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offshore-top-management__number {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-color: var(--color-s-black);
  color: var(--color-white);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
}
.offshore-top-management__title {
  margin-block: 0;
  color: var(--color-s-black);
  font-size: var(--font-m);
  font-weight: var(--font-weight-bold);
}
.offshore-top-management__list {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
  gap: 8px;
}
.offshore-top-management__list-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 4px;
  background-color: var(--color-s-main-light);
  color: var(--color-s-black);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
  gap: 8px;
}
.offshore-top-management__list-item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-color: var(--color-s-main-base);
  mask: url("/assets/images/service/icon/ico_check.svg") no-repeat center/contain;
}

/* ------------------------------
  offshore-top-partner
------------------------------ */
.offshore-top-partner {
  position: relative;
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background-color: var(--color-white);
  box-shadow: 4px 4px 16px rgba(0, 18, 38, 0.2);
}
@media screen and (min-width: 769px) {
  .offshore-top-partner {
    margin-top: 56px;
    padding: 40px;
  }
}
.offshore-top-partner__flag {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  margin: 0;
  padding: 8px 16px;
  border-radius: 0 24px 0 16px;
  background-color: var(--color-s-black);
  color: var(--color-white);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__flag {
    padding: 12px 24px;
  }
}
.offshore-top-partner__flag img {
  width: 34px;
  height: auto;
  border-radius: 2px;
}
.offshore-top-partner__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__head {
    flex-direction: row;
    margin-top: 0;
  }
}
.offshore-top-partner__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--color-s-sub-light);
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__logo {
    width: 64px;
    height: 64px;
  }
}
.offshore-top-partner__logo img {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__logo img {
    width: 32px;
    height: 32px;
  }
}
.offshore-top-partner__heading span {
  color: var(--color-s-sub-base);
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__heading {
    font-size: var(--font-3xl);
  }
}
.offshore-top-partner__text {
  margin-block: 12px 0;
  color: var(--color-s-gray-dark);
  font-size: var(--font-s);
  line-height: var(--line-m);
}
.offshore-top-partner__row {
  display: flex;
  flex-direction: column;
  margin: 32px 0;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__row {
    flex-direction: column;
    align-items: stretch;
  }
  @container (min-width: 800px) {
    .offshore-top-partner__row {
      flex-direction: row;
    }
  }
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__row .offshore-table-partner {
    flex: 4;
  }
}
.offshore-top-partner__profile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__profile {
    flex: 6;
    flex-direction: row;
  }
}
.offshore-top-partner__photo {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__photo {
    flex: 0 0 44%;
  }
}
.offshore-top-partner__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offshore-top-partner__profile-content {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  background-color: var(--color-s-sub-light);
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__profile-content {
    flex: 1;
  }
}
.offshore-top-partner__profile-role {
  margin-block: 0;
  font-size: var(--font-xs);
  font-weight: var(--font-weight-bold);
}
.offshore-top-partner__profile-name {
  margin-block: 0;
  font-size: var(--font-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
.offshore-top-partner__profile-name-en {
  margin-block: 0;
  font-size: var(--font-s);
}
.offshore-top-partner__profile-text {
  margin-block: 12px 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-s-black);
  color: var(--color-s-black);
  font-size: var(--font-s);
  line-height: var(--line-m);
}
.offshore-top-partner__synergy-label {
  margin-block: 24px 0;
  color: var(--color-s-black);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
}
.offshore-top-partner__synergy-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 8px 0 32px;
  padding-left: 0;
  list-style: none;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__synergy-list {
    grid-template-columns: repeat(2, 1fr);
  }
  @container (min-width: 800px) {
    .offshore-top-partner__synergy-list {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
.offshore-top-partner__synergy-list:last-child {
  margin: 8px 0 0;
}
.offshore-top-partner__synergy-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--color-s-sub-medium);
  border-radius: 4px;
  background-color: var(--color-s-sub-pale);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
  gap: 8px;
}
.offshore-top-partner__synergy-item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--color-s-sub-base);
  mask: url("/assets/images/service/icon/ico_check.svg") no-repeat center/contain;
}
.offshore-top-partner__cert-label {
  margin-block: 24px 0;
  color: var(--color-s-black);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
}
.offshore-top-partner__cert-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__cert-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offshore-top-partner__cert-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid var(--color-s-sub-base);
  border-radius: 8px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__cert-item {
    padding: 16px 24px;
  }
}
.offshore-top-partner__cert-icon {
  flex-shrink: 0;
}
.offshore-top-partner__cert-icon img {
  width: 56px;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__cert-icon img {
    width: 68px;
    height: auto;
  }
}
.offshore-top-partner__cert-title {
  margin: 0;
  color: var(--color-s-black);
  font-size: var(--font-m);
  font-weight: var(--font-weight-bold);
}
@media screen and (min-width: 769px) {
  .offshore-top-partner__cert-title {
    font-size: var(--font-l);
  }
}
.offshore-top-partner__cert-text {
  margin: 0;
  font-size: var(--font-s);
}

/* ------------------------------
  offshore-top-price
------------------------------ */
.offshore-top-price {
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--color-white);
  box-shadow: 4px 4px 16px rgba(0, 18, 38, 0.2);
}
@media screen and (min-width: 769px) {
  .offshore-top-price {
    margin-top: 40px;
    padding: 40px;
  }
}
.offshore-top-price__table-box {
  overflow-x: auto;
}
.offshore-top-price__note {
  display: flex;
  margin-block: 12px 0;
  font-size: var(--font-s);
  line-height: var(--line-m);
  gap: 4px;
}
.offshore-top-price__note::before {
  content: "※";
  flex-shrink: 0;
}
.offshore-top-price__note span {
  flex: 1;
  min-width: 0;
}
.offshore-top-price__button-box {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .offshore-top-price__button-box {
    margin-top: 32px;
  }
}

/* ------------------------------
  offshore-top-role
------------------------------ */
.offshore-top-role {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .offshore-top-role {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    max-width: 1100px;
    margin-top: 56px;
    margin-inline: auto;
  }
}
.offshore-top-role__box {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 32px;
  border: 2px solid var(--color-s-main-medium);
  border-radius: 16px;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .offshore-top-role__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
  }
}
.offshore-top-role__box--main {
  border-color: var(--color-s-main-base);
  background-color: var(--color-s-main-light);
}
.offshore-top-role__box--sub {
  border-color: var(--color-s-sub-base);
  background-color: var(--color-s-sub-medium);
}
.offshore-top-role__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 18, 38, 0.1);
}
.offshore-top-role__icon img {
  width: 24px;
  height: 24px;
}
.offshore-top-role__title {
  margin-block: 12px 0;
  font-size: var(--font-l);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
@media screen and (min-width: 769px) {
  .offshore-top-role__title {
    font-size: var(--font-xl);
  }
}
.offshore-top-role__title-label {
  display: block;
  color: var(--color-s-main-base);
  font-size: var(--font-s);
}
.offshore-top-role__title-label--sub {
  color: var(--color-s-sub-base);
}
.offshore-top-role__text {
  margin-block: 12px 0;
  color: var(--color-s-gray-dark);
  font-size: var(--font-s);
  line-height: var(--line-m);
}
.offshore-top-role__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  gap: 6px;
}
.offshore-top-role__connector {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 64px;
}
@media screen and (min-width: 769px) {
  .offshore-top-role__connector {
    flex: 1;
    flex-direction: column;
    align-self: stretch;
    height: auto;
    gap: 8px;
  }
}
.offshore-top-role__connector-label {
  position: relative;
  z-index: 1;
  margin-block: 0;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: var(--color-s-main-pale);
  color: var(--color-s-main-base);
  font-size: var(--font-m);
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}
.offshore-top-role__connector-label--sub {
  background-color: var(--color-s-main-pale);
  color: var(--color-s-sub-base);
}
.offshore-top-role__connector-line {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  border-left: 2px dotted var(--color-s-main-base);
}
@media screen and (min-width: 769px) {
  .offshore-top-role__connector-line {
    position: static;
    width: 100%;
    height: 0;
    transform: none;
    border-top: 2px dotted var(--color-s-main-base);
    border-left: none;
  }
}
.offshore-top-role__connector-line--sub {
  border-color: var(--color-s-sub-base);
}

/* ------------------------------
  offshore-top-section
------------------------------ */
.offshore-top-section {
  padding: 56px 24px;
}
@media screen and (min-width: 769px) {
  .offshore-top-section {
    padding: 100px 56px;
  }
}
.offshore-top-section--full {
  padding: 24px;
}
@media screen and (min-width: 769px) {
  .offshore-top-section--full {
    padding: 40px;
  }
}
.offshore-top-section--bg02 {
  background-color: var(--color-s-main-pale);
}
.offshore-top-section__inner {
  container-type: inline-size;
}
@media screen and (min-width: 769px) {
  .offshore-top-section__inner {
    max-width: 1100px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) {
  .offshore-top-section__inner--full {
    max-width: 100%;
  }
}
.offshore-top-section__button-box {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.offshore-top-section__subheading {
  margin-top: 56px;
}

/* ------------------------------
  offshore-top-security
------------------------------ */
.offshore-top-security {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-security {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin-top: 40px;
    gap: 24px;
  }
  @container (min-width: 800px) {
    .offshore-top-security {
      flex-direction: row;
    }
  }
}
.offshore-top-security__badge {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background-color: var(--color-s-sub-base);
}
@media screen and (min-width: 769px) {
  @container (min-width: 800px) {
    .offshore-top-security__badge {
      flex: 3;
      width: auto;
    }
  }
}
.offshore-top-security__badge-label {
  position: relative;
  width: fit-content;
  margin-block: 0 16px;
  padding-inline: 12px;
  color: var(--color-white);
  font-size: var(--font-s);
  font-weight: var(--font-weight-bold);
}
.offshore-top-security__badge-label::before, .offshore-top-security__badge-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%) rotate(20deg);
  background-color: var(--color-white);
}
.offshore-top-security__badge-label::before {
  left: 0;
}
.offshore-top-security__badge-label::after {
  right: 0;
}
.offshore-top-security__badge-list {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  @container (min-width: 800px) {
    .offshore-top-security__badge-list {
      flex-direction: column;
    }
  }
}
.offshore-top-security__badge-item {
  display: flex;
  box-sizing: border-box;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-radius: 16px;
  background-color: var(--color-white);
  text-align: center;
}
.offshore-top-security__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-s-sub-base);
  border-radius: 16px;
  background-color: var(--color-s-sub-pale);
}
.offshore-top-security__badge-icon img {
  width: 32px;
  height: 32px;
}
.offshore-top-security__badge-title {
  margin-block: 12px 0;
  color: var(--color-s-black);
  font-size: var(--font-l);
  font-weight: var(--font-weight-bold);
}
.offshore-top-security__badge-text {
  margin-block: 2px 0;
  font-size: var(--font-xs);
}
.offshore-top-security__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding-left: 0;
  list-style: none;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  @container (min-width: 800px) {
    .offshore-top-security__list {
      flex: 7;
    }
  }
}
.offshore-top-security__item {
  display: flex;
  box-sizing: border-box;
  align-items: flex-start;
  padding: 16px 24px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 16px;
  background-color: var(--color-s-main-pale);
  gap: 16px;
}
.offshore-top-security__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-s-main-base);
  border-radius: 12px;
  background-color: var(--color-white);
}
.offshore-top-security__icon img {
  width: 24px;
  height: 24px;
}
.offshore-top-security__content {
  flex: 1;
}
.offshore-top-security__title {
  margin-block: 0;
  color: var(--color-s-black);
  font-size: var(--font-l);
  font-weight: var(--font-weight-bold);
}
.offshore-top-security__text-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
  gap: 6px;
}
.offshore-top-security__text-item {
  display: flex;
  align-items: flex-start;
  color: var(--color-s-black);
  font-size: var(--font-s);
  line-height: var(--line-m);
  gap: 10px;
}
.offshore-top-security__text-item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background-color: var(--color-s-black);
}

/* ------------------------------
  offshore-top-service
------------------------------ */
.offshore-top-service {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .offshore-top-service {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }
  @container (min-width: 800px) {
    .offshore-top-service {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
.offshore-top-service__item {
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 16px;
  background-color: var(--color-white);
}
.offshore-top-service__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.offshore-top-service__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-s-main-medium);
  border-radius: 12px;
  background-color: var(--color-s-main-light);
}
.offshore-top-service__icon-mark {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-s-main-base);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.offshore-top-service__icon-mark--cart {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_cart.svg");
}
.offshore-top-service__icon-mark--code {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_code.svg");
}
.offshore-top-service__icon-mark--smartphone {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_smartphone.svg");
}
.offshore-top-service__icon-mark--ruler-pen {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_ruler_pen.svg");
}
.offshore-top-service__icon-mark--cloud {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_cloud.svg");
}
.offshore-top-service__icon-mark--document-check {
  mask-image: url("/assets/images/service/vietnam-offshore/ico_document_check.svg");
}
.offshore-top-service__title {
  margin-block: 0;
  color: var(--color-s-black);
  font-size: var(--font-l);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-s);
}
@media screen and (min-width: 769px) {
  .offshore-top-service__title {
    font-size: var(--font-xl);
  }
}
.offshore-top-service__text {
  margin-block: 12px 0;
  line-height: var(--line-m);
}
