/*
Theme Name: DBJ Theme
Description: A custom WordPress theme.
Author: Your Name
Version: 1.0
*/

:root {
  --blue-primary: #13417c;
  --blue-secondary: #4bacc6;
  --text-3: #333333;
  --orange: #e46c0a;
  --purple: #8064a2;
  --gray-f7: #7f7f7f;
  --gray-64: #646464;
  --gray-e: #eee;
  --green: #9bbb59;
  --border: #bcc4d0;
  --placeholder: #757575;

  --tablet: 1024px;
  --mobile: 768px;

  --white-shadow: rgba(255, 255, 255, 60%);
}

.viga-regular {
  font-family: "Viga", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}
body,
body .body-content {
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  line-height: 1.9;
}
a {
  text-decoration: none;
  color: black;
}
table,
td,
th {
  background: white;
  border-collapse: collapse;
}
p {
  line-height: 1.9;
}
.container {
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
}

/* utils start */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-1 {
  flex: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-between {
  justify-content: space-between;
}

.text-sm {
  font-size: 0.875rem;
}
.text-md {
  font-size: 1rem;
}
.text-18 {
  font-size: 1.125rem;
}
.text-20 {
  font-size: 1.25rem;
}
.text-24 {
  font-size: 1.5rem;
}
.text-26 {
  font-size: 1.5rem;
}
.text-32 {
  font-size: 2rem;
}
.text-56 {
  font-size: 3.5rem;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: bold;
}
.font-normal {
  font-weight: normal;
}
.font-semibold {
  font-weight: 600;
}
@media only screen and (max-width: 1144px) {
  .text-sm {
    font-size: 1.1666666666667rem;
  }
  .text-md {
    font-size: 1.3333333333333rem;
  }
  .text-18 {
    font-size: 1.5rem;
  }
  .text-20 {
    font-size: 1.6666666666667rem;
  }
  .text-24 {
    font-size: 2rem;
  }
  .text-26 {
    font-size: 2rem;
  }
  .text-32 {
    font-size: 2.6666666666667rem;
  }
  .text-56 {
    font-size: 4.6666666666667rem;
  }
}

.text-3 {
  color: #333;
}
.text-white {
  color: white;
}
.text-blue {
  color: var(--blue-primary);
}
.text-black {
  color: black;
}
.text-center {
  text-align: center;
}
.rounded-full {
  border-radius: 50%;
}
.w-full {
  width: 100%;
}
.bg-primary {
  background-color: var(--blue-primary);
}
/* utils start */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.6; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
@media only screen and (max-width: 1144px) {
  html {
    font-size: 75%;
  }
}
/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}
input,
textarea {
  border-radius: 0;
  border-width: 0;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* spacing start*/
.m-0 {
  margin: 0;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 4px;
}
.mt-2 {
  margin-top: 8px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-5 {
  margin-top: 20px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-7 {
  margin-top: 28px;
}
.mt-8 {
  margin-top: 32px;
}
.mt-9 {
  margin-top: 36px;
}
.mt-10 {
  margin-top: 40px;
}
.mt-11 {
  margin-top: 44px;
}
.mt-12 {
  margin-top: 48px;
}
.mt-13 {
  margin-top: 52px;
}
.mt-14 {
  margin-top: 56px;
}
.mt-15 {
  margin-top: 60px;
}
.mt-16 {
  margin-top: 64px;
}
.mt-17 {
  margin-top: 68px;
}
.mt-18 {
  margin-top: 72px;
}
.mt-19 {
  margin-top: 76px;
}
.mt-20 {
  margin-top: 80px;
}
.mb-1 {
  margin-bottom: 4px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-3 {
  margin-bottom: 12px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-5 {
  margin-bottom: 20px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-7 {
  margin-bottom: 28px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mb-9 {
  margin-bottom: 36px;
}
.mb-10 {
  margin-bottom: 40px;
}
.mb-11 {
  margin-bottom: 44px;
}
.mb-12 {
  margin-bottom: 48px;
}
.mb-13 {
  margin-bottom: 52px;
}
.mb-14 {
  margin-bottom: 56px;
}
.mb-15 {
  margin-bottom: 60px;
}
.mb-16 {
  margin-bottom: 64px;
}
.mb-17 {
  margin-bottom: 68px;
}
.mb-18 {
  margin-bottom: 72px;
}
.mb-19 {
  margin-bottom: 76px;
}
.mb-20 {
  margin-bottom: 80px;
}
.ml-1 {
  margin-left: 4px;
}
.ml-2 {
  margin-left: 8px;
}
.ml-3 {
  margin-left: 12px;
}
.ml-4 {
  margin-left: 16px;
}
.ml-5 {
  margin-left: 20px;
}
.ml-6 {
  margin-left: 24px;
}
.ml-7 {
  margin-left: 28px;
}
.ml-8 {
  margin-left: 32px;
}
.ml-9 {
  margin-left: 36px;
}
.ml-10 {
  margin-left: 40px;
}
.ml-11 {
  margin-left: 44px;
}
.ml-12 {
  margin-left: 48px;
}
.ml-13 {
  margin-left: 52px;
}
.ml-14 {
  margin-left: 56px;
}
.ml-15 {
  margin-left: 60px;
}
.ml-16 {
  margin-left: 64px;
}
.ml-17 {
  margin-left: 68px;
}
.ml-18 {
  margin-left: 72px;
}
.ml-19 {
  margin-left: 76px;
}
.ml-20 {
  margin-left: 80px;
}
.mr-1 {
  margin-right: 4px;
}
.mr-2 {
  margin-right: 8px;
}
.mr-3 {
  margin-right: 12px;
}
.mr-4 {
  margin-right: 16px;
}
.mr-5 {
  margin-right: 20px;
}
.mr-6 {
  margin-right: 24px;
}
.mr-7 {
  margin-right: 28px;
}
.mr-8 {
  margin-right: 32px;
}
.mr-9 {
  margin-right: 36px;
}
.mr-10 {
  margin-right: 40px;
}
.mr-11 {
  margin-right: 44px;
}
.mr-12 {
  margin-right: 48px;
}
.mr-13 {
  margin-right: 52px;
}
.mr-14 {
  margin-right: 56px;
}
.mr-15 {
  margin-right: 60px;
}
.mr-16 {
  margin-right: 64px;
}
.mr-17 {
  margin-right: 68px;
}
.mr-18 {
  margin-right: 72px;
}
.mr-19 {
  margin-right: 76px;
}
.mr-20 {
  margin-right: 80px;
}
.p-0 {
  padding: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
/* spacing end*/

/* common */
input::placeholder {
  color: var(--placeholder);
}
input[type="checkbox"] {
  position: relative;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
  position: absolute;
  top: calc(50% + 1px);
  left: calc(50% + 1px);
  transform: translate(-50%, -50%);
}
input[type="checkbox"]::before {
  width: 68%;
  height: 68%;
  content: "";
  z-index: 2;
}
input[type="checkbox"]::after {
  width: calc(100%);
  height: calc(100%);
  content: "";
  z-index: 1;
  background-color: white;
  border: 2px solid #c1c1c1;
  border-radius: 3px;
}
input[type="checkbox"]:checked::before {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fcheckbox_icon.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

input[type="radio"] {
  position: relative;
}
input[type="radio"]::before,
input[type="radio"]::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type="radio"]::before {
  width: 58%;
  height: 58%;
  content: "";
  z-index: 2;
  border-radius: 50%;
}
input[type="radio"]::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  content: "";
  z-index: 1;
  background-color: white;
  border: 2px solid #c1c1c1;
  border-radius: 50%;
}
input[type="radio"]:checked::before {
  background-color: var(--blue-primary);
}
.list-auto {
  list-style: auto;
  padding-left: 18px;
}
ol.list-auto > li {
  margin-bottom: 10px;
}
.list-auto.none {
  list-style: none;
}
.list-auto.disc {
  list-style: disc;
}
.list-auto.square {
  list-style: square;
}
.list-auto.pl-35px {
  padding-left: 35px;
}
.list-auto.border {
  padding: 30px 60px;
  border: 1px solid currentColor;
}
/* bread-crumb */
.bread-crumb {
  font-size: 1rem;
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 8px;
  padding: 0;
  margin: 16px 0 80px;
}
.bread-crumb a,
.bread-crumb-arrow {
  color: var(--gray-64);
}
.bread-crumb .active {
  color: var(--blue-primary);
  font-weight: bold;
}
.bread-crumb .active h1 {
  font-size: 1rem;
  margin: 0;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .bread-crumb {
    font-size: 1.3333333333333rem;
  }
  .bread-crumb .active h1 {
    font-size: 1.1666666666667rem;
  }
}

/* input-radio */
.input-radio-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input-radio-container > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.input-radio-container:has(input[name=news_tag_id]:focus-visible),
.input-radio-container:has(input[name=theme_id]:focus-visible),
.input-radio-container:has(input[name=trend_id]:focus-visible) {
  outline: auto;
}
.input-radio-container > .checkmark {
  height: 28px;
  width: 28px;
  background-color: white;
  border: 2px solid #d1d1d1;
  border-radius: 50%;
  margin-right: 16px;
  position: relative;
  flex-shrink: 0;
}
.input-radio-container > .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.input-radio-container input:checked ~ .checkmark:after,
.input-radio-container.checked .checkmark:after {
  display: block;
}
.input-radio-container > .checkmark:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: #13417c;
}
.input-radio-container .description {
  flex: 1;
  margin: 20px 0 0;
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-3);
  display: block;
  line-height: 1.9;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .input-radio-container,
  .input-radio-container .description {
    font-size: 1.3333333333333rem;
  }
}

/* pagination */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 180px;
}
.pagination-container .page-numbers {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue-primary);
  padding: 8px;
  margin: 0 12px;
}
.pagination-container .page-numbers.current {
  color: var(--text-3);
  cursor: default;
}
.pagination-container .page-numbers.next,
.pagination-container .page-numbers.prev {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 40px;
  font-weight: 500;
  color: white;
  background: var(--blue-primary)
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png") no-repeat center;
  background-size: 9px;
  transform: rotate(-90deg);
}
.pagination-container .page-numbers.next {
  margin: 0 0 0 40px;
}
.pagination-container .page-numbers.prev {
  margin: 0 40px 0 0;
  scale: -1 1;
}
.pagination-container .page-numbers.prev.disabled,
.pagination-container .page-numbers.next.disabled {
  cursor: default;
  background-color: #c1c1c1;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .pagination-container .page-numbers {
    font-size: 1.3333333333333rem;
  }
  /* font-size 24 - 1.5rem */
  .pagination-container .page-numbers.next,
  .pagination-container .page-numbers.prev {
    font-size: 2rem;
  }
}

/* layout main content */
.main-container {
  padding: 0 56px;
  max-width: 1520px;
  margin: 0 auto;
}
.normal-content * {
  color: var(--text-3);
}
.main-title {
  margin: 64px 0 0;
  font-size: 2.125rem;
  line-height: 2;
  font-weight: 500;
  color: var(--text-3);
  padding-left: 32px;
  border-left: 8px solid var(--blue-primary);
  margin-bottom: 54px;
}
.main-desc {
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .main-desc {
    font-size: 1.3333333333333rem;
  }
  /* font-size 34 - 2.125rem */
  .main-title {
    font-size: 2.8333333333333rem;
  }
}
/* main form */
.main-form-box {
  margin-top: 80px;
  background-color: var(--gray-e);
  border-top-right-radius: 60px;
}
.main-form-box .main-form-title {
  background-color: white;
  border-bottom-right-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  clip-path: inset(0px -12px -12px 0px);
  min-width: 300px;
  width: max-content;
  /* height: 60px; */
  padding: 0 34px;
  display: flex;
  align-items: center;
}
.main-form-box .main-form-title h3 {
  font-size: 1.375rem;
  line-height: 36px;
  font-weight: 500;
  color: var(--text-3);

  margin: 0;
  padding-left: 24px;
  margin: 7px 0 17px;
  border-left: 8px solid var(--gray-64);
}
.main-form-box .form-content {
  padding: 50px 32px;
}
.main-form-box .search-row .input-search-wrapper {
  flex: 1;
  height: 100%;
  border: 1px solid var(--gray-64);
  display: flex;
  align-items: center;
  background-color: white;
}
.main-form-box .search-row .input-search-wrapper .icon-search {
  margin: 0 20px;
}
.main-form-box .search-row .input-search-wrapper > input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 0;
  font-size: 1.125rem;
  color: var(--text-3);
  margin-right: 2px;
  width: 100%;
}
.main-form-box .search-row .input-search-wrapper .btn-close {
  color: var(--gray-64);
  font-size: 1.25rem;
  margin: 0 10px;
  cursor: pointer;
  display: none;
}
.main-form-box .search-row .btn-search {
  font-size: 1.125rem;
  padding: 16px;
  font-weight: normal;
  border: unset;
  display: none;
  border: 1px solid black;
}
@media only screen and (max-width: 1144px) {
  /* font-size 18 - 1.125rem */
  .main-form-box .search-row .input-search-wrapper > input,
  .main-form-box .search-row .btn-search {
    font-size: 1.5rem;
  }
  /* font-size 20 - 1.25rem */
  .main-form-box .search-row .input-search-wrapper .btn-close {
    font-size: 1.6666666666667rem;
  }
  /* font-size 22 - 1.375rem */
  .main-form-box .main-form-title h3 {
    font-size: 1.8333333333333rem;
  }
}
/* input search row */
.main-form-box .search-row {
  margin-top: 44px;
}
.main-form-box .search-row label {
  font-size: 1.25rem;
  font-weight: 500;
  padding-right: 28px;
  flex-shrink: 0;
  margin: auto;
}
.main-form-box .search-row > input {
  flex: 1;
}
/* main-form-row-title */
.main-form-box .form-content .row-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 40px 0 28px;
  flex-shrink: 0;
}

/* main-form-checkbox */
.main-form-box .checkbox-row .checkbox-row__content {
  grid-gap: 24px;
  flex-wrap: wrap;
}
.main-form-box .form-checkbox {
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.main-form-box .form-checkbox .checkbox-title {
  margin: 0;
  padding: 28px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: var(--blue-primary);
  border-radius: 4px 4px 0 0;
}
.main-form-box .form-checkbox .check-all-label {
  font-weight: normal;
  padding: 6px 24px;
  border-radius: 4px;
  background-color: white;
  color: var(--text-3);
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
}
.main-form-box .form-checkbox .check-all-label:has(input:focus-visible) {
  outline: auto;
}
/*.main-form-box .form-checkbox input.check-all {
  display: none;
}*/
.main-form-box .form-checkbox .checkbox-body {
  flex: 1;
  padding: 28px;
  border: 1px solid var(--blue-primary);
  background-color: white;
}
.form-checkbox .checkbox-item {
  display: flex;
  align-items: center;
}
.form-checkbox .checkbox-item:not(:first-child) {
  margin-top: 16px;
}
.form-checkbox .checkbox-item > input {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}
.form-checkbox .checkbox-item > label {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-3);
  cursor: pointer;
}

/* main form select */
.main-form-box select {
  flex-shrink: 0;
  width: max-content;
  height: 52px;
  padding: 0 32px;
  color: var(--text-3);
  border: 1px solid var(--gray-64);
}
.main-form-box .select-custom:has(select:focus-visible) {
  outline: auto;
}
.main-form-box select.year-query {
  width: 270px;
}
/* sub elements */
.sub-title {
  padding: 8px 20px;
  border-left: 6px solid var(--gray-64);
  font-size: 1.25rem;
}
/* button form */
.form-button {
  width: 270px;
  height: 68px;
  border: unset;
  cursor: pointer;
}
/* .form-button:hover {
  opacity: 0.8;
} */
.form-button.outline {
  background: white;
  border: 1px solid currentColor;
  color: var(--text-3);
  letter-spacing: 2px;
  font-weight: 700;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .main-form-box .form-checkbox .checkbox-title,
  .form-checkbox .checkbox-item > label {
    font-size: 1.3333333333333rem;
  }
  /* font-size 20 - 1.25rem */
  .main-form-box .search-row label,
  .main-form-box .form-content .row-title,
  .sub-title {
    font-size: 1.6666666666667rem;
  }
}

/* button */
@media screen and (min-width: 769px) {
  .icon-circle-arrow::after,
  .btn-circle-arrow::after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .icon-circle-arrow::after,
  .btn-circle-arrow::after {
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }
}
.circle-box-28 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.circle-box-40 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.25rem;
  text-decoration: none;
  text-wrap: nowrap;
  cursor: pointer;
  transition: 0.5s;
  background: var(--blue-primary);
  color: white;
  gap: 20px;
}
.btn-simple {
  transition: 0.5s;
}
.btn:hover,
.btn-simple:hover {
  opacity: 0.45;
}
.icon-circle-arrow::after,
.btn-circle-arrow::after {
  content: "";
  background: white url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_blue.png") no-repeat
    center;
  transform: rotate(-90deg);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 5px;
  transition: 0.5s;
  /* background: white;
  color: var(--blue-primary); */
  background-size: 9px;
}
.btn-circle-arrow.vertical::after,
.icon-circle-arrow.vertical::after {
  transform: rotate(0);
}
.btn.btn-white {
  background: white;
  color: var(--text-3);
}
.btn-white:hover,
.btn-white.btn-circle-arrow::after {
  opacity: 1 !important;
  background: var(--blue-primary);
  color: white;
}
.btn-white:hover.btn-circle-arrow::after {
  background: white;
  color: var(--blue-primary);
}
.btn.btn-black {
  background: var(--text-3);
  color: white;
}
.btn.btn-black::after {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_right_black.png");
  transform: rotate(0);
  background-size: 50%;
}
.btn-outline {
  background-color: white;
  border: 1px solid currentColor;
  color: var(--text-3);
}
.btn-outline.btn-circle-arrow::after {
  /* color: white;
  background: var(--text-3); */
  background: var(--text-3) url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png")
    no-repeat center;
  background-size: 9px;
}
.btn-outline.btn-primary {
  color: var(--blue-primary);
  background-color: white;
  border: 1px solid currentColor;
}
.btn-outline.btn-primary.btn-circle-arrow::after {
  color: white;
  background: var(--blue-primary);
}
.btn-expand,
.btn-collapse {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--gray-64);
  cursor: pointer;
  display: none;
}
.icon-search,
.icon-external-link {
  display: inline-block;
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Fsearch-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.icon-external-link {
  background-image: none;
  mask-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fexternal.svg");
  background-color: white;
}
.icon-search {
  mask-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fsearch.svg");
  background: var(--placeholder);
}
.icon-hammer {
  display: flex;
  margin-right: 5px;
}
.icon-hammer::before,
.icon-hammer::after {
  display: block;
  content: "";
  margin: auto;
}
.icon-hammer::after {
  border-radius: 50%;
  background: black;
  width: 10px;
  height: 10px;
}
.icon-hammer::before {
  border-bottom: 1px solid black;
  width: 30px;
  height: 0;
}
.btn-jump-group {
  display: flex;
  grid-gap: 32px;
  margin-top: 64px;
}
.btn-jump,
.btn-jump::after {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.btn-jump {
  border-bottom: 1px solid var(--gray-64);
  color: var(--text-3);
  height: 90px;
  flex: 1;
}
.btn-jump h3 {
  margin: auto;
  font-size: 1.25rem;
  font-weight: bold;
}
.btn-jump::after {
  content: "";
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png");
  background-color: var(--blue-primary);
  background-position: center;
  background-repeat: no-repeat;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  background-size: 9px;
}
.btn-jump:hover {
  background: var(--blue-primary);
  color: white;
}
.btn-jump:hover::after {
  background-color: white;
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_blue.png");
  background-size: 9px;
}
/* select custom */
.select-custom {
  position: relative;
  width: max-content;
}
.select-custom .select-title {
  min-width: 200px;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 28px 0 32px;
  border: 1px solid var(--gray-64);
  background-color: white;
  cursor: pointer;
}
.select-custom .select-title__content {
  font-size: 1rem;
  font-weight: normal;
  color: var(--placeholder);
  flex: 1;
}
.select-custom .select-title__content.selected {
  color: var(--text-3);
}
.select-custom .select-title__icon {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--placeholder);
  flex-shrink: 0;
  transform: rotate(90deg);
  transition-duration: 0.35s;
}
.select-custom.open .select-title__icon {
  transform: rotate(-90deg);
  color: var(--text-3);
}
.select-custom .select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 15px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
  overflow-y: auto;
  max-height: 380px;
  display: none;
}
.select-custom.open .select-dropdown {
  display: block;
}
.select-custom .dropdown-item {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-3);
  padding: 18px 20px;
  cursor: pointer;
  border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
}
.select-custom .dropdown-item.selected {
  background-color: #f1f1f1;
}
.select-custom .dropdown-item:hover {
  background-color: #f1f1f1;
  border-top-color: #c1c1c1;
  border-bottom-color: #c1c1c1;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .select-custom .select-title__content,
  .select-custom .dropdown-item {
    font-size: 1.3333333333333rem;
  }
  /* font-size 20 - 1.25rem */
  .btn,
  .btn-jump h3,
  .select-custom .select-title__icon {
    font-size: 1.6666666666667rem;
  }
  /* font-size 30 - 1.875rem */
  .btn-expand,
  .btn-collapse {
    font-size: 2.5rem;
  }
}

/* link pdf */
.link-pdf::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 24px;
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Ficon_pdf.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 16px;
}

/* modal preview image */
/* Modal container */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal content */
.modal-content {
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  width: calc(100% - 32px);
  padding: 80px 16px 16px;
  background-color: white;
}

/* The Close Button */
.modal-btn-close {
  color: white;
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  background: #ccc;
  border-radius: 50%;
  padding: 5px;
}
@media only screen and (max-width: 1144px) {
  /* font-size 18 - 1.125rem */
  .modal-btn-close {
    font-size: 1.5rem;
  }
}

.modal-btn-close:hover,
.modal-btn-close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* header start */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 999;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
.header-group {
  min-height: 96px;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-group {
  display: flex;
  grid-gap: 0 32px;
  align-items: center;
  font-size: 1rem;
  margin: 0;
}
.dbj-logo-text {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  padding: 10px 20px;
  width: 320px;
  border: 1px solid #cbcbcb;
  box-shadow: 1px 1px 2px #0000003d;
  color: var(--text-3);
  font-size: 0.875rem;
}
.logo-group img {
  max-height: 60px;
  width: 100%;
}
.dbj-logo-text img {
  height: 60px;
}
.nav-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 40px;
  z-index: 999;
}

.nav-search {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.nav-search a {
  display: inline-block;
  padding: 0 32px;
  color: var(--blue-primary);
  font-size: 1rem;
  line-height: 24px;
}
.nav-search a:not(:first-child) {
  border-left: 1px solid var(--blue-primary);
}
.nav-search a .external-icon {
  margin-left: 8px;
}
.nav-search .input-search {
  display: flex;
  align-items: center;
  height: 36px;
  width: 248px;
  border: 2px solid var(--border);
  border-radius: 4px;
}
.nav-search .input-search input {
  height: 100%;
  padding: 0 16px;
  min-width: 0;
  flex: 1;
  border: none;
  outline: none;
  color: var(--text-3);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
}
.nav-search .input-search .search-icon {
  margin-right: 10px;
  flex-shrink: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border: none;
  background: url("/assets?p=%2F.%2Fassets%2Fimages%2Fsearch-icon.png") no-repeat center;
  background-size: contain;
}

.nav-group ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}
.nav-group li:not(:first-child) {
  margin-left: 12px;
}
.nav-group li a {
  display: inline-block;
  font-size: 1.125rem;
  line-height: 24px;
  font-weight: bold;
  color: var(--blue-primary);
  padding: 4px 0 4px 24px;
  flex: 1;
}
.nav-group li {
  position: relative;
  display: flex;
}
.nav-group li ul.sub-menu {
  display: block;
  max-height: 0;
  /* opacity: 0; */
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--blue-primary);
  color: white;
  /* transition: all 0.6s 0s; */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.nav-group li:hover > ul.sub-menu {
  max-height: 1000px;
  visibility: visible;
  /* opacity: 1; */
  z-index: 1;
}
.nav-group ul.sub-menu > li:not(:first-child) {
  margin-left: 0;
}
.nav-group ul.sub-menu > li > a {
  color: white;
  font-size: 1rem;
  padding: 0 40px 0 16px;
  min-width: 190px;
  font-weight: normal;
  text-wrap: wrap;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-group ul.sub-menu > li > a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png") no-repeat center;
  transform: translateY(-50%) rotate(-90deg);
  position: absolute;
  right: 20px;
  top: 50%;
  background-size: 9px;
}
.nav-group ul.sub-menu > li:hover {
  background-color: #5a7aa4;
}
/* level > 2 */
.nav-group ul.sub-menu > li > ul {
  top: 0;
  /* left: unset; */
  left: 100%;
  width: max-content;
  background-color: white;
}
.nav-group ul.sub-menu > li > ul > li:hover {
  background-color: var(--blue-primary);
}
.nav-group ul.sub-menu > li > ul > li > a {
  color: var(--blue-primary);
}
.nav-group ul.sub-menu > li > ul > li > a::before {
  content: "";
  margin-right: 0;
  background-image: url("/assets?p=%2Fdata%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTYgMTYiPiA8ZGVmcz4gPHN0eWxlPiAuY2xzLTEgeyBmaWxsOiAjMTM0MTdjOyBmb250LWZhbWlseToiTm90byBTYW5zIEpQIiwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBpc29sYXRpb246IGlzb2xhdGU7IH0gPC9zdHlsZT4gPC9kZWZzPiA8dGV4dCBjbGFzcz0iY2xzLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEgMTQuNSkiPjx0c3BhbiB4PSIwIiB5PSIwIj4tPC90c3Bhbj48L3RleHQ%2BPC9zdmc%2B");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: .8em;
  height: 1em;
}
.nav-group ul.sub-menu > li > ul > li > a::after {
  content: none;
}
.nav-group ul.sub-menu > li > ul > li:hover > a {
  color: white;
}
.nav-group ul.sub-menu > li > ul > li:hover > a::before {
  background-image: url("/assets?p=%2Fdata%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTYgMTYiPiA8ZGVmcz4gPHN0eWxlPiAuY2xzLTEgeyBmaWxsOiB3aGl0ZTsgZm9udC1mYW1pbHk6Ik5vdG8gU2FucyBKUCIsIHNhbnMtc2VyaWY7IGZvbnQtc2l6ZTogMTZweDsgaXNvbGF0aW9uOiBpc29sYXRlOyB9IDwvc3R5bGU%2BIDwvZGVmcz4gPHRleHQgY2xhc3M9ImNscy0xIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxIDE0LjUpIj48dHNwYW4geD0iMCIgeT0iMCI%2BLTwvdHNwYW4%2BPC90ZXh0Pjwvc3ZnPg%3D%3D");
}

/* header resposive */
.mobile-menu-title,
.search-menu {
  cursor: pointer;
}
.mobile-menu-title {
  line-height: 1;
  font-size: 1.25rem;
  grid-gap: 16px 0;
}
.mobile-menu-title > .line {
  height: 1px;
  background-color: var(--blue-primary);
  border-bottom: 1px solid var(--blue-primary);
}
.nav-group-mobile,
.nav-mobile,
.mobile-search {
  display: none;
}

@media only screen and (max-width: 1144px) {
  /* font-size 14 - 0.875rem */
  .dbj-logo-text,
  .nav-search .input-search input {
    font-size: 1.1666666666667rem;
  }
  /* font-size 16 - 1rem */
  .logo-group,
  .nav-search a,
  .nav-group ul.sub-menu > li > a {
    font-size: 1.3333333333333rem;
  }
  /* font-size 18 - 1.125rem */
  .nav-group li a {
    font-size: 1.5rem;
  }
  /* font-size 20 - 1.25rem */
  .mobile-menu-title {
    font-size: 1.6666666666667rem;
  }
}
@media screen and (max-width: 1440px) {
  .nav-search {
    flex-wrap: wrap;
    justify-content: end;
    grid-gap: 12px 0;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  .logo-group {
    grid-gap: 0 28px;
  }
  .dbj-logo-text {
    width: unset;
    padding: 20px 20px;
  }
  .dbj-logo-text img {
    width: 30% !important;
    height: auto;
  }
  .nav-group {
    display: none;
  }
  .nav-group-mobile {
    display: flex;
  }
  .search-menu {
    display: flex;
  }
  .nav-group ul {
    flex-direction: column;
  }
  .nav-group li a {
    color: white;
  }
  .overlay {
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
  }
  .nav-mobile,
  .mobile-search {
    display: none;
    position: absolute;
    z-index: 999;
    top: 120px;
    left: 0;
    right: 0;
    background-color: var(--blue-primary);
    padding: 34px 64px;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
  }
  header.open-menu .nav-mobile {
    display: block;
  }
  header.open-search-dropdown .mobile-search {
    display: flex;
  }
  .nav-mobile > ul {
    flex: 1;
    overflow-y: auto;
  }
  /* width */
  .nav-mobile::-webkit-scrollbar {
    width: 4px;
  }

  /* Track */
  .nav-mobile::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Handle */
  .nav-mobile::-webkit-scrollbar-thumb {
    background: #888;
  }

  /* Handle on hover */
  .nav-mobile::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .nav-mobile ul {
    margin: 0;
  }
  .nav-mobile ul > li > a {
    font-size: 2.6666666666667rem;
    font-weight: 500;
    color: white;
    line-height: 2;
    padding: 26px 0;
  }
  .nav-mobile ul.menu > li.open {
    border-bottom: unset;
  }
  .nav-mobile ul.sub-menu {
    display: none;
  }
  .nav-mobile li {
    position: relative;
  }
  .nav-mobile li.menu-item-has-children {
    border-top: 1px solid #bcc4d0;
    border-bottom: 1px solid #bcc4d0;
  }
  .nav-mobile li.menu-item-has-children:first-child {
    border-top: unset;
    border-bottom: unset;
  }
  .nav-mobile li.menu-item-has-children:last-child {
    border-bottom: unset;
  }
  .nav-mobile li.menu-item-has-children > ul {
    border-top: 1px solid #bcc4d0;
  }
  .nav-mobile ul.menu > li > ul.sub-menu {
    padding: 0 30px;
    background-color: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .nav-mobile li a {
    display: inline-flex;
  }
  .nav-mobile .menu-icon {
    position: absolute;
    top: 30px;
    right: 16px;
    font-size: 4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    color: white;
  }
  .nav-mobile ul.sub-menu .menu-icon {
    color: var(--blue-primary);
    top: 20px;
  }
  .nav-mobile .menu-icon {
    display: none;
  }
  .nav-mobile li.menu-item-has-children > .menu-icon.plus {
    display: block;
  }
  .nav-mobile li.menu-item-has-children.open > .menu-icon.minus {
    display: block;
  }
  .nav-mobile li.menu-item-has-children.open > .menu-icon.plus {
    display: none;
  }
  .nav-mobile ul.sub-menu a {
    color: var(--blue-primary);
    font-size: 2.3333333333333rem;
  }
  .nav-mobile ul.sub-menu li a {
    padding: 12px 0;
  }
  .nav-mobile ul.sub-menu li:not(.menu-item-has-children) a {
    padding-left: 20px !important;
    font-weight: normal;
  }
  .nav-mobile ul.sub-menu li:not(.menu-item-has-children) a::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    transform: translateY(-50%);
    background: #7184a5;
  }
  .nav-mobile ul.menu > li > ul.sub-menu > li > a {
    padding: 18px 8px;
  }
  .nav-mobile ul.sub-menu > li.menu-item-has-children > a::before {
    content: "";
    display: block;
    position: relative;
    /*
    top: 100px;
    */
    left: 0;
    right: 0;
    border-bottom: 1px solid #bcc4d0;
  }
  .nav-mobile ul.sub-menu > li > ul {
    padding: 12px 24px;
  }

  .nav-mobile-bottom a {
    font-size: 2.3333333333333rem;
    flex: 1;
    text-align: center;
    border-left: 1px solid white;
  }
  .nav-mobile-bottom a:last-child {
    border-right: 1px solid white;
  }
  .nav-mobile-bottom a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-left: 16px;
  }
  .nav-mobile-en .nav-mobile-bottom a {
    border: 1px solid;
    line-height: 50px;
  }
  .mobile-search .input-search {
    flex: 1;
    height: 90px;
    border: 1px solid #bcc4d0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: white;
  }
  .mobile-search .search-icon {
    width: 36px;
    height: 36px;
    margin-left: 20px;
    margin-right: 12px;
    cursor: pointer;
  }
  .mobile-search .btn-close {
    font-size: 2.6666666666667rem;
    color: #8795a9;
    margin-right: 20px;
    margin-left: 12px;
    cursor: pointer;
  }
  .mobile-search .input-search > input {
    flex: 1;
    border: none;
    outline: none;
    color: var(--blue-primary);
    font-size: 2.3333333333333rem;
    line-height: 2;
    width: 100%;
  }
  .mobile-search .input-search > input::placeholder {
    color: var(--placeholder);
  }
  .mobile-search input[type="submit"] {
    border: unset;
    background-color: #bcc4d0;
    cursor: pointer;
    padding: 0 30px;
    border-radius: 0 4px 4px 0;
    font-size: 2.3333333333333rem;
    font-weight: 500;
    color: var(--blue-primary);
    text-align: center;
    text-wrap: nowrap;
  }
}

@media screen and (max-width: 700px) {
  .container.header-group {
    min-height: 36px;
    padding: 0 20px 0 10px;
  }
  .logo-group {
    grid-gap: 0 13px;
    max-width: 65%;
  }
  .logo-group a:last-child img {
    margin-top: 2px;
  }
  .mobile-menu {
    margin-left: 20px;
  }
  .search-menu-icon,
  .mobile-menu-title {
    width: 36px;
    font-size: 1rem;
  }
  .mobile-menu-title {
    grid-gap: 8px 0;
  }
  .nav-mobile,
  .mobile-search {
    top: 62px;
    max-height: calc(100vh - 162px);
    padding: 32px 16px;
  }
  .nav-mobile ul.menu > li > ul.sub-menu {
    padding: 0 16px;
  }
  .nav-mobile ul.sub-menu > li > ul {
    padding: 12px 16px;
  }
  .nav-mobile ul > li > a {
    font-size: 2rem;
  }
  .nav-mobile ul.sub-menu a {
    font-size: 1.5rem;
  }
  .mobile-search input[type="submit"] {
    padding: 10px;
    font-size: 1.5rem;
  }
  .mobile-search .input-search {
    height: 52px;
  }
  .mobile-search .input-search > input {
    font-size: 1.3333333333333rem;
  }
  .mobile-search .search-icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
    margin-right: 8px;
  }
  .mobile-search .btn-close {
    font-size: 2rem;
    margin-right: 16px;
  }
  .mobile-search-icon,
  .mobile-menu-title {
    width: 32px;
    font-size: 1rem;
  }
  .nav-mobile .menu-icon,
  .nav-mobile ul.sub-menu .menu-icon {
    top: 20px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
  }
}
@media screen and (max-width: 425px) {
  .header-group .logo-group img[alt="jeri_logo_en"] {
    width: 175px;
    height: auto;
  }
  .mobile-search-icon,
  .mobile-menu-title {
    width: 32px;
    font-size: 0.83333333333333rem;
  }
  .nav-mobile ul > li > a {
    font-size: 1.6666666666667rem;
    padding: 12px 0;
  }
  .nav-mobile ul.sub-menu a {
    font-size: 1.3333333333333rem;
  }
  .nav-mobile ul.sub-menu li a {
    padding: 8px 0;
  }
  .nav-mobile-bottom a {
    font-size: 1.5rem;
  }
  .nav-mobile-bottom a img {
    width: 18px;
    height: 18px;
    margin-left: 12px;
  }
}

/* header end */

/* footer start */
.footer-group {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.footer-group .address {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.footer-group .address p {
  margin: 5px;
  font-size: 1rem;
  line-height: 24px;
  font-weight: normal;
  color: var(--text-3);
}
.footer-group .address .phone_number {
  font-weight: 500;
  font-size: 1.125rem;
}
.footer-group .logo-group img {
  height: 50px;
}
.copyright {
  background: var(--blue-primary);
  color: white;
  text-align: center;
  height: 80px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.grecaptcha-badge {
  visibility: hidden;
}
.page-id-234 .grecaptcha-badge {
  visibility: visible;
}
.keyword-focus {
  background: #8edaff;
}
@media only screen and (max-width: 1144px) {
  /* font-size 14 - 0.875rem */
  .copyright {
    font-size: 1.1666666666667rem;
  }
  /* font-size 16 - 1rem */
  .footer-group .address p {
    font-size: 1.3333333333333rem;
  }
  /* font-size 18 - 1.125rem */
  .footer-group .address .phone_number {
    font-size: 1.5rem;
  }
}
/* footer end */

/* footer navigation */
.footer-nav {
  padding: 64px 56px 26px;
  background-color: #eee;
  margin-top: 132px;
}
.footer-nav #menu-jeri-footer-en.menu > li {
  width: unset !important;
  margin-right: 9%;
}
.footer-nav .menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.footer-nav .menu .external-link-icon a::after {
  content: "";
  mask-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fexternal.svg");
  width: 15px;
  height: 15px;
  background: var(--text-3);
  margin: 5px 0 0 6px;
  cursor: pointer;
}
.footer-nav .menu > li {
  width: 25%;
  margin-bottom: 40px;
}
.footer-nav .menu > li:nth-child(n + 3) {
  margin-bottom: 20px;
}
.footer-nav .menu > li:nth-child(2) {
  width: 75%;
}
.footer-nav .menu > li:nth-child(2) > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.footer-nav .menu > li:nth-child(2) > ul > li:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
.footer-nav .menu > li:nth-child(2) > ul > li:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.footer-nav .menu > li:nth-child(2) > ul > li:nth-child(3) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}
.footer-nav .menu > li:nth-child(2) > ul > li:nth-child(4) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;
}
.footer-nav .menu > li > div > a,
.footer-nav .menu > li > a {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: var(--text-3);
  font-weight: bold;
}
.footer-nav .menu > li > a::before {
  content: "";
  border-left: 6px solid var(--gray-64);
  height: 22px;
  margin-right: 12px;
}
.footer-nav .menu > li.has-children > div {
  margin-bottom: 16px;
}
.footer-nav .menu li.has-children > div > a {
  margin-bottom: 0;
}
.footer-nav .menu > li > ul a {
  display: inline-block;
  font-size: 1rem;
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--text-3);
  font-weight: normal;
}
.footer-nav .menu > li:nth-child(2) > ul > li > div > a {
  font-weight: bold;
}
.footer-nav .menu > li:nth-child(2) > ul > li {
  flex: 1;
}
.footer-nav .menu-icon {
  display: none;
}
.footer-nav .sub-menu .sub-menu {
  padding: 0 12px;
}
.footer-nav .sub-menu .menu-item-has-children > a {
  font-weight: bold;
  /* padding: 15px 0; */
}
.footer-nav .menu-item-has-children {
  position: relative;
}
.footer-nav .menu-item-has-children .btn-collapse {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  line-height: 24px;
}
.footer-nav .sub-menu li:not(.menu-item-has-children) > a::before {
  content: "";
  padding-right: 4px;
  background-image: url("/assets?p=%2Fdata%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgOCAxNiI%2BIDxkZWZzPiA8c3R5bGU%2BIC5zdDAsIC5zdDEgeyBpc29sYXRpb246IGlzb2xhdGU7IH0gLnN0MSB7IGZpbGw6ICMzMzM7IGZvbnQtZmFtaWx5OiBOb3RvU2Fucy1SZWd1bGFyLCAnTm90byBTYW5zJzsgZm9udC1zaXplOiAxNnB4OyB9IDwvc3R5bGU%2BIDwvZGVmcz4gPGcgY2xhc3M9InN0MCI%2BIDx0ZXh0IGNsYXNzPSJzdDEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMTQpIj48dHNwYW4geD0iLTIiIHk9IjAiPi08L3RzcGFuPjwvdGV4dD4gPC9nPjwvc3ZnPg%3D%3D");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  display: inline-block;
  width: .35em;
  height: 1em;
  vertical-align: middle;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .footer-nav .menu > li > ul a {
    font-size: 1.3333333333333rem;
  }
  /* font-size 18 - 1.125rem */
  .footer-nav .menu > li > div > a,
  .footer-nav .menu > li > a {
    font-size: 1.5rem;
  }
  /* font-size 24 - 1.5rem */
  .footer-nav .menu-item-has-children .btn-collapse {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1150px) {
  .footer-group {
    height: auto;
    flex-wrap: wrap;
    padding-bottom: 15px;
  }
  .footer-group .dbj-logo-text {
    width: 100%;
  }
  .footer-group .address {
    padding-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav {
    padding: 60px 0 8px;
  }
  .footer-nav .menu {
    flex-direction: column;
    padding: 0 32px;
  }
  .footer-nav .sub-menu {
    display: none;
  }
  .footer-nav .menu > li {
    width: 100% !important;
  }
  .footer-nav .menu > li:first-child > .sub-menu {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer-nav .menu > li > ul.sub-menu {
    padding: 0 20px;
  }
  .footer-nav
    li.menu-item-has-children
    > ul.sub-menu
    > li.menu-item-has-children {
    padding: 12px 0;
    border-bottom: 1px solid #c1c1c1;
  }
  .footer-nav .menu > li > ul.sub-menu > li > a {
    padding-left: 16px;
  }
  .footer-nav .menu > li > ul.sub-menu > li > .btn-collapse {
    top: 32px;
    transform: translateY(-50%);
  }
  .footer-nav .menu > li > ul.sub-menu > li > .sub-menu {
    border-top: 1px solid #c1c1c1;
    margin-top: 12px;
    padding-top: 12px;
  }
  .footer-nav .sub-menu li:not(.menu-item-has-children) > a {
    padding-left: 10px;
  }
  .footer-nav .sub-menu li:not(.menu-item-has-children) > a::before {
    content: "";
    display: inline-block;
    color: black;
    padding-right: 0;
    background-image: url("/assets?p=%2Fdata%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTYgMTYiPiA8ZGVmcz4gPHN0eWxlPiAuY2xzLTEgeyBmaWxsOiAjMDAwOyBmb250LWZhbWlseToiTm90byBTYW5zIEpQIiwgc2Fucy1zZXJpZjsgZm9udC1zaXplOiAxNnB4OyBpc29sYXRpb246IGlzb2xhdGU7IH0gPC9zdHlsZT4gPC9kZWZzPiA8dGV4dCBjbGFzcz0iY2xzLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEgMTQuNSkiPjx0c3BhbiB4PSIwIiB5PSIwIj4tPC90c3Bhbj48L3RleHQ%2BPC9zdmc%2B");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    width: .8em;
    height: 1em;
    vertical-align: middle;
  }
  .footer-nav .menu li > a,
  .footer-nav .menu li > div > a {
    margin-bottom: 0 !important;
    width: max-content;
  }
  .footer-nav .menu > li {
    margin-bottom: 52px !important;
    width: 100% !important;
  }
  .footer-nav .sub-menu li > a {
    padding: 8px 0;
  }
  .footer-nav .menu > li.has-children > div {
    margin-bottom: 0;
  }
  .footer-nav .menu > li:nth-child(2) > ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-nav .menu > li:nth-child(2) > ul > li {
    grid-column-start: unset !important;
    grid-column-end: unset !important;
    grid-row-start: unset !important;
    grid-row-end: unset !important;
  }
  .footer-nav .btn-collapse {
    display: inline-block;
  }
  .footer-nav .menu > li > .sub-menu {
    padding: 0 30px;
    background-color: white;
  }
  .footer-nav .menu > li > .sub-menu {
    margin-top: 32px;
  }
  .footer-nav .sub-menu > li.has-children {
    border-bottom: 1px solid #c1c1c1;
  }
  .footer-nav .sub-menu li.has-children > .sub-menu {
    border-top: 1px solid #c1c1c1;
    padding: 12px;
  }
  .sub-menu li.has-children > div {
    padding: 15px 0;
  }
  .footer-nav .menu > li:nth-child(2) > ul {
    display: none;
  }
  .footer-group {
    flex-direction: column;
    align-items: flex-start;
    margin: 60px 16px;
    height: max-content;
  }
  .footer-group .logo-group img {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav {
    margin-top: 100px;
  }
  .footer-nav .menu {
    padding: 0;
  }
  .footer-group {
    margin: 25px 0;
  }
}

/* footer navigation */

/* homepage start */
/* Banner */
.home-banner-area {
  z-index: 1;
  margin-bottom: -32px;
}
.home-banner {
  background: url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Ftop_banner.jpg") center no-repeat;
  width: 100%;
  height: 782px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-banner h2 {
  font-size: 3.75rem;
  line-height: 100px;
  font-weight: bold;
  color: var(--blue-primary);
  margin: 0;
}
.home-banner h2 .text-bg {
  background-color: var(--blue-primary);
  color: white;
  padding: 0 10px;
  margin: 0 5px;
}
.home-banner .banner-description {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue-primary);
  text-shadow: -2px -2px 1px var(--white-shadow),
    -2px 2px 1px var(--white-shadow), 2px 2px 1px var(--white-shadow),
    2px -2px 1px var(--white-shadow), 0px -2px 1px var(--white-shadow),
    -2px 0px 1px var(--white-shadow), 2px 0px 1px var(--white-shadow),
    0px 2px 1px var(--white-shadow);
  margin: 0;
  padding-top: 50px;
}

/* About Us */
.home-aboutUs {
  height: 1380px;
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Ftop_about_us.jpeg");
  background-color: #000;
  box-shadow: inset 0 0 0 2000px rgba(19, 65, 124, 0.5);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: white;
}
.home-aboutUs h2 {
  padding-top: 150px;
  font-size: 3.5rem;
  margin: 0;
}
.home-aboutUs .aboutUs-description {
  padding-top: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}
.home-aboutUs .aboutUs-image-wrapper {
  padding: 80px 54px;
  grid-gap: 60px;
}
.home-aboutUs .aboutUs-image {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Fabout_us_logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 510px;
  max-width: 510px;
  flex: 1;
}
.home-aboutUs .aboutUs-image-decscription {
  flex: 1;
  font-size: 1rem;
  text-align: justify;
}
.home-aboutUs .aboutUs-buttons {
  grid-gap: 0 40px;
}
.home-aboutUs .aboutUs-buttons .btn-wrapper {
  flex: 1;
  background-color: var(--blue-primary);
  height: 120px;
  padding: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 15px #000000c7;
}
.home-aboutUs .aboutUs-buttons .btn-wrapper:hover {
  background-color: #5a7aa4;
}
.home-aboutUs .aboutUs-buttons a {
  font-size: 1.25rem;
  line-height: 32px;
  color: white;
  border: 1px solid white;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.home-aboutUs .aboutUs-buttons a {
  font-size: 1.25rem;
  line-height: 32px;
  color: white;
  border: 1px solid white;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.home-aboutUs .aboutUs-buttons a span {
  margin-left: 10px;
}
.home-aboutUs .aboutUs-buttons a::after {
  width: 25px;
  height: 25px;
  margin-right: 50px;
}
.home-aboutUs .aboutUs-buttons-icon {
  width: 40px;
  font-size: 1rem;
  line-height: 40px;
  font-weight: bold;
  border-radius: 50%;
  background-color: white;
  color: var(--blue-primary);
  margin-right: 48px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .home-aboutUs .aboutUs-image-decscription,
  .home-aboutUs .aboutUs-buttons-icon {
    font-size: 1.3333333333333rem;
  }
  /* font-size 20 - 1.25rem */
  .home-banner .banner-description,
  .home-aboutUs .aboutUs-buttons a {
    font-size: 1.6666666666667rem;
  }
  /* font-size 24 - 1.5rem */
  .home-aboutUs .aboutUs-description {
    font-size: 2rem;
  }
  /* font-size 56 - 3.5rem */
  .home-aboutUs h2 {
    font-size: 4.6666666666667rem;
  }
  /* font-size 60 - 3.75rem */
  .home-banner h2 {
    font-size: 5rem;
  }
}

/* Home News */
.home-news {
  padding: 80px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-top: -100px;
  background: white;
  position: relative;
  z-index: 3;
}
.home-news > h2 {
  margin: 0;
  font-size: 3.5rem;
  line-height: 1.6;
  font-weight: normal;
  text-align: center;
  position: relative;
  font-family: "Viga";
  color: var(--text-3);
}
.home-news > h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 100px;
  height: 2px;
  background-color: #dadada;
}
.home-news > .news-list {
  margin: 50px 0;
}
.home-news .news-item {
  padding: 10px 0;
  border-bottom: unset;
}
.home-news .news-item > .new-link > strong {
  width: max-content;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #999;
  text-decoration-thickness: 2px;
}
.btn-readMore {
  margin: 0 auto;
  width: 220px;
  height: 60px;
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
}
.ml-14px {
  margin-left: 14px;
}
@media only screen and (max-width: 1144px) {
  /* font-size 20 - 1.25rem */
  .btn-readMore {
    font-size: 1.6666666666667rem;
  }
  /* font-size 56 - 3.5rem */
  .home-news > h2 {
    font-size: 4.6666666666667rem;
  }
}

/* Home Section */
.home-container {
  max-width: 1520px;
  padding: 0 96px;
}
.homeSection-icon {
  position: absolute;
  width: 380px;
  height: 344px;
  border: 1px solid #cacaca;
  border-radius: 50%;
  top: -176px;
  left: 50%;
  transform: translateX(-50%);
}
.homeSection-icon::before {
  position: absolute;
  content: "";
  display: block;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #cacaca;
}
.homeSection-icon::after {
  position: absolute;
  content: "";
  display: block;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 44px;
  background: #cacaca;
}

/* Home services */
.homeService {
  background-color: var(--gray-e);
  margin-top: -100px;
  padding-top: 222px;
  padding-bottom: 160px;
  z-index: 2;
  position: relative;
  color: var(--text-3);
}
.homeService h3 {
  margin-top: 35px;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
  text-align: center;
}
.homeService p {
  margin: 24px auto 0;
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  width: 80%;
  border-left: 2px solid #c1c1c1;
  border-right: 2px solid #c1c1c1;
}
.homeService-list {
  margin-top: 86px;
  gap: 52px;
  align-items: stretch;
  padding: 0 40px;
}
.homeService-img {
  aspect-ratio: 400 / 272;
  width: 100%;
  min-width: 400px;
}
.homeService-item {
  border-radius: 4px;
  overflow: hidden;
  background-color: white;
}
.homeService-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeService-item__content {
  padding: 32px 25px;
}
.homeService-title {
  font-size: 1.125rem;
  line-height: 30px;
  font-weight: 500;
  padding-left: 16px;
  border-left: 7px solid var(--gray-64);
  margin: 0;
}
.homeService-item__list {
  margin: 24px 0 0 10px;
}
.homeService-item__list_custom {
  display: flex;
  flex-wrap: wrap;
}
.homeService-item__list_custom li {
  min-width: 50%;
}

.homeService-item__list li {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 6px;
}
.homeService-item__list li span {
  color: #c1c1c1;
}
.homeService-link {
  text-decoration: underline;
  text-underline-offset: 8px;
  display: inline-block;
  margin-left: 8px;
  color: var(--text-3);
}
.en-page-container .homeService-link {
  text-decoration: unset;
}
.homeService-buttonWrapper {
  margin-top: 66px;
  grid-gap: 64px;
}
.homeService-btn {
  width: 340px;
  height: 80px;
  background-color: black;
}
.homeService .homeService-btns .homeService-btn {
  width: 382px;
}

.home-sectionTitle {
  font-size: 3.5rem;
  line-height: 2;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .homeService p,
  .homeService-item__list li {
    font-size: 1.3333333333333rem;
  }
  /* font-size 18 - 1.125rem */
  .homeService-title {
    font-size: 1.5rem;
  }
  /* font-size 24 - 1.5rem */
  .homeService h3 {
    font-size: 2rem;
  }
  /* font-size 56 - 3.5rem */
  .home-sectionTitle {
    font-size: 4.6666666666667rem;
  }
}

/* homeReport */
.homeReport {
  position: relative;
  z-index: 1;
  padding: 120px 0 145px;
}
.homeReport .homeSection-icon {
  top: -278px;
}
.homeReport-desc {
  margin: 35px auto 0;
  font-size: 1.5rem;
  font-weight: bold;
  width: 80%;
  color: var(--text-3);
  border-left: 3px solid var(--border);
  border-right: 3px solid var(--border);
  text-align: center;
}
.homeNewReport {
  margin-top: 50px;
  padding: 60px 0 72px 120px;
  background-color: #eeeeee;
  position: relative;
  border-bottom-left-radius: 60px;
}
.homeNewReport::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #eee;
  border-bottom-left-radius: 60px;
}
.homeNewReport h3 {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  color: var(--text-3);
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0;
  height: 337px;
  width: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-right-radius: 10px;
  box-shadow: 10px 0 16px -10px rgba(0, 0, 0, 0.15);
}
.homeNewReport h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 8px;
  background-color: var(--gray-64);
}
.homeNewReport .report-list {
  grid-gap: 42px 48px;
  margin: 0;
}
.homeNewReport ul.report-list li {
  background-color: white;
  border-color: transparent;
  border-radius: 4px;
}
.homeNewReport .btn-readMore {
  margin-top: 44px;
  margin-right: 0;
}

.home-news .btn-readMore {
  width: 258px;
}
.home-news .btn-readMore::after {
  width: 20px;
  height: 20px;
}

.homeNewReport a.btn-readMore {
  width: 260px;
  max-width: 100%;
}

/* home-career section */
.homeCareer {
  position: relative;
}
.homeCareer .homeCareer-banner {
  width: 80%;
  height: 430px;
  background: linear-gradient(to right, transparent 70%, white),
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Fhome_career.jpg") no-repeat center;
  background-size: cover;
  background-position-y: 80%;
}
.homeCareer .homeCareer-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 204px;
  color: white;
  background-color: var(--blue-primary);
  transition-duration: 0.35s;
  box-shadow: 0px 9px 18px 0px #0a0a0a8a;
}
.homeCareer .homeCareer-link:hover {
  background-color: #5a7aa4;
}
.homeCareer .homeCareer-link .border-white {
  margin: 9px 0 9px 9px;
  border-width: 1px 0 1px 1px;
  border-color: white;
  border-style: solid;
  padding-left: 80px;
  flex: 1;
}
.homeCareer-link h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: bold;
  grid-gap: 16px;
}
.homeCareer-link p {
  margin: 0;
  grid-gap: 16px;
  margin: 24px 0 0;
}

/* home section information */
.homeInformation-box {
  margin-top: 132px;
  padding: 64px 72px;
  border-top-right-radius: 60px;
  background-color: #e9eff7;
  position: relative;
}
.homeInformation-box .viga-regular {
  position: absolute;
  font-size: 6.375rem;
  color: #f4f7fb;
  top: -6px;
  left: 34px;
  line-height: 1;
  z-index: 0;
}
.homeInformation-box h3 {
  color: var(--text-3);
  padding-left: 30px;
  border-left: 8px solid #888;
  line-height: 38px;
  position: relative;
  z-index: 1;
}
.homeInformation-box ul {
  margin: 38px 0 0;
  padding: 20px 50px 40px 50px;
  background: white;
  border-radius: 5px;
}
.homeInformation-box li {
  min-height: 80px;
  border-bottom: 1px solid #c1c1c1;
}
.homeInformation-box li .circle {
  display: inline-block;
  margin: 0 20px 0 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #888888;
}
.homeInformation-box li a:hover {
  color: #cacaca;
}
@media only screen and (max-width: 1144px) {
  /* font-size 24 - 1.5rem */
  .homeReport-desc {
    font-size: 2rem;
  }
  /* font-size 28 - 1.75rem */
  .homeCareer-link h3 {
    font-size: 2.3333333333333rem;
  }
  /* font-size 102 - 6.375rem */
  .homeInformation-box .viga-regular {
    font-size: 8.5rem;
  }
}
/* homepage end */

/* archive-report start */
@media screen and (min-width: 769px) {
  .top-banner-content {
    height: 75%;
  }
}
@media screen and (max-width: 768px) {
  .top-banner {
    position: relative;
  }
  .top-banner-content {
    height: 100%;
  }
}
.top-banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgb(0 126 255 / 35%);

  height: 388px;
  margin-right: 40px;
  border-bottom-right-radius: 40px;
}
.top-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white !important;
}
.content-en .top-banner-content {
  height: 100%;
}
.top-banner-content > * {
  margin: 0 0 0 42px;
}
.top-banner-content h3 {
  font-size: 1.5rem;
  line-height: 60px;
  width: max-content;
  border-bottom: 2px solid white;
  padding-right: 50px;
  font-family: "Viga", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}
.top-banner-content h1,
.top-banner-content h2 {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: bold;
  margin-top: 32px;
}
.top-banner-content h1 span,
.top-banner-content h2 span {
  font-size: 3rem;
}
.content-en .top-banner-content h1,
.content-en .top-banner-content h2 {
  margin-top: 0;
}
.top-banner.report-banner {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Freport%2Freport-banner.jpeg");
}
.report-form-freeword .btn-search {
  display: block !important;
  width: 230px;
  margin-left: 20px;
}
.report-form-freeword .search-row {
  margin-top: 0 !important;
  align-items: stretch;
}
.report-form-freeword .input-search-wrapper,
.report-form-freeword .btn-search {
  height: auto;
}
.archive-report-form .input-search-form {
  padding: 34px;
  height: 68px;
  display: flex;
  align-items: stretch;
}
.archive-report-form .btn-search {
  width: 270px;
}

ul.report-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 42px 58px;
}
ul.report-list li {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
ul.report-list li .theme-tag {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 40%;
  height: 32px;
  line-height: 32px;

  font-size: 0.875rem;
  line-height: 32px;
  padding: 0 8px;

  text-align: center;
  color: white;
  background-color: #77933c;
}
ul.report-list li .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid #c1c1c1;
}
ul.report-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 0.5s;
}
ul.report-list li:hover img {
  transform: scale(1);
}
ul.report-list li .content {
  padding: 29px;
}
ul.report-list li .content .date {
  font-size: 0.875rem;
  font-weight: 500;
  color: #646464;
  margin-bottom: 16px;
}
ul.report-list li .content strong {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 500;
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 6px;

  display: inline;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-underline-offset: 8px;
}
ul.report-list li .content p {
  margin: 0;
  padding-top: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-3);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
ul.report-list li .trend-tag {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 36px;
  text-align: center;
  color: var(--blue-primary);
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 12px;
  min-width: 168px;
  width: max-content;
}
ul.report-list .link-pdf::after {
  transform: translateY(3px);
  width: 15px;
  height: 18px;
  margin-left: 0;
}
.archive-report-form .form-tags h3 {
  font-size: 1.25rem;
  line-height: 32px;
  color: var(--text-3);
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.archive-report-form .form-tags .tags-title-icon {
  width: 40px;
  height: 1px;
  background-color: var(--text-3);
  position: relative;
  display: inline-block;
  margin-right: 16px;
}
.archive-report-form .form-tags .tags-title-icon::before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-3);
}
.archive-report-form .form-checkbox-group {
  display: flex;
  align-items: stretch;
  grid-gap: 26px;
  margin: 0 26px;
  flex-wrap: wrap;
}
.archive-report-form .form-checkbox-group > label,
.archive-report-form .form-checkbox-group > .theme_tag {
  /* border: 1px solid var(--gray-64); */
  border-radius: 9px;
  padding: 12px 40px 12px 20px;
  color: var(--blue-primary);
  background: white;
  position: relative;
}
.archive-report-form .form-checkbox-group > label::after,
.archive-report-form .form-checkbox-group > .theme_tag::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--gray-64);
  border-radius: 9px;
}
.archive-report-form .form-checkbox-group .content-wrapper {
  align-self: flex-start;
}
.archive-report-form .form-checkbox-group > label.checked::after,
.archive-report-form .form-checkbox-group > .theme_tag.checked::after {
  border: 3px solid var(--blue-primary);
}
.archive-report-form .form-checkbox-group > label.checked,
.archive-report-form .form-checkbox-group > .theme_tag.checked {
  border-color: transparent;
}
.archive-report-form .form-checkbox-group > label.theme_tag,
.archive-report-form .form-checkbox-group > .theme_tag.theme_tag {
  padding: 24px;
}
.archive-report-form .form-theme-container > label,
.archive-report-form .form-theme-container > .theme_tag {
  flex: 1;
}
.archive-report-form .form-theme-container > label .content,
.archive-report-form .form-theme-container > .theme_tag .content  {
  flex: 1;
  text-align: center;
  width: 100%;
  display: block;
  line-height: 38px;
  color: white;
}
.archive-report-form .form-trend {
  margin-top: 40px;
}
.archive-report-form .button-group {
  display: flex;
  justify-content: center;
  gap: 52px;
  padding: 64px 0 0;
  flex-wrap: wrap;
}
.archive-report-form .button-group input[type="submit"] {
  border-width: 0;
}
.archive-report-form .button-group .report-form-button {
  width: 382px;
  height: 68px;
  font-weight: bold;
}
.archive-report-form .button-group .report-form-button.btn-outline {
  letter-spacing: 2px;
}
.archive-report-form .input-radio-container > .checkmark {
  background-color: #f8f8f8;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 1144px) {
  /* font-size 14 - 0.875rem */
  ul.report-list li .theme-tag,
  ul.report-list li .content .date,
  ul.report-list li .content p,
  ul.report-list li .trend-tag {
    font-size: 1.1666666666667rem;
  }
  /* font-size 16 - 1rem */
  ul.report-list li .content strong {
    font-size: 1.3333333333333rem;
  }
  /* font-size 20 - 1.25rem */
  .archive-report-form .form-tags h3 {
    font-size: 1.6666666666667rem;
  }
  /* font-size 24 - 1.5rem */
  .top-banner-content h3 {
    font-size: 2rem;
  }
  /* font-size 48 - 3rem */
  .top-banner-content h1 span,
  .top-banner-content h2 span {
    font-size: 4rem;
  }
  /* font-size 56 - 3.5rem */
  .top-banner-content h1,
  .top-banner-content h2 {
    font-size: 4.6666666666667rem;
  }
}

/* archive-report end */

/* archive news start */
.top-banner {
  background-image: var(
    --banner-url,
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Fnews-banner.jpeg")
  );
  background-color: #000;
}
.top-banner.news-banner,
.top-banner.contact-banner {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Fnews-banner.jpeg");
}
.news-form-title.main-form-title h3 {
  border-left: unset;
  width: 100%;
  padding-left: 0;
  text-align: center;
}
.news-form .input-radio-container > .content {
  font-size: 1rem;
  color: white;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  height: 38px;
}
.news-form .tag-form-group {
  flex-wrap: wrap;
  gap: 20px;
}

.news-form button.form-button {
  margin-top: 54px;
  width: 360px;
}
.news-item {
  display: flex;
  row-gap: 20px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--gray-f7);
  font-size: 1rem;
  line-height: 2;
}
.news-item .news-date {
  color: var(--gray-64);
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 60px;
}
.news-item .news-tag {
  margin-left: 20px;
  display: inline-block;
  width: 100px;
  text-align: center;
  color: white;
  min-width: 120px;
}
.news-item > .new-link {
  text-decoration-color: var(--gray-64);
}
.news-item > .new-link[href]:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
}
.link-hover:hover {
  opacity: 0.6;
}
.news-item > .new-link > strong {
  font-weight: normal;
  color: var(--text-3);
  width: 100%;
  display: block;
}
.news-item .link-pdf::after {
  transform: translateY(5px);
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .news-form .input-radio-container > .content,
  .news-item {
    font-size: 1.3333333333333rem;
  }
}

/* archive new end */

/* archive results start */
@media screen and (min-width: 769px) {
  .results-list table td {
    padding: 5px 24px;
  }
}
@media screen and (max-width: 768px) {
  .results-list table th {
    white-space: nowrap;
    padding: 0 5px;
  }
  .results-list table td {
    padding: 5px;
  }
}
.result-banner {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Fresult_banner.jpeg");
  background-position: center;
}
.archive-result .main-form-title h3 {
  border-left: unset;
  text-align: center;
  width: 100%;
  padding: 0;
}
.archive-result input[type="checkbox"]::after {
  background-color: #f8f8f8;
}
.archive-result .select-custom {
  width: 100%;
}
.archive-result .main-form-box .search-row {
  align-items: stretch;
}
.archive-result .main-form-box .input-search-wrapper,
.archive-result .main-form-box .btn-search {
  height: auto;
}
.results-select-group {
  flex-wrap: wrap;
  gap: 80px;
}
.results-form .button-group {
  margin-top: 50px;
  grid-gap: 78px;
}
.result-form-button {
  width: 380px;
  height: 68px;
}
.results-list {
  margin-bottom: 80px;
}
.results-list table {
  width: 100%;
}
.results-list table,
th,
td {
  border: 1px solid #c1c1c1;
  border-collapse: collapse;
}
.results-list table th {
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue-primary);
  background-color: #f1f7ff;
  height: 66px;
  text-align: center;
  text-wrap: nowrap;
}
.results-list table td:nth-child(3) {
  width: 60%;
}
.results-list table td > * {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-3);
  line-height: 1.9;
  min-height: 75px;
}
.results-list .link-pdf::after {
  transform: translateY(5px);
}
.results-list .btn-readMore {
  width: 280px;
  font-size: 1rem;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .results-list table th,
  .results-list table td > *,
  .results-list .btn-readMore  {
    font-size: 1.3333333333333rem;
  }
}
/* archive results end */

/* service start */
@media screen and (min-width: 769px) {
  .related-info .btn-readMore {
    width: 360px;
  }
  .related-info h3.title {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 768px) {
  .related-info .btn-readMore {
    position: relative;
    height: 65px !important;
    font-weight: normal;
    width: 70%;
    padding-right: 40px;
  }
  .related-info .btn-readMore::after {
    position: absolute;
    right: 40px;
  }
  .related-info h3.title {
    margin-bottom: 55px;
  }
  .single-service h3.sub-title.mb-14 {
    margin-bottom: 28px;
  }
  .single-service .wp-block-columns {
    gap: 0 !important;
  }
  .single-service .wp-block-columns .wp-block-column:nth-child(1) ul {
    padding-bottom: 0 !important;
  }
  .single-service .wp-block-columns .wp-block-column:nth-child(2) ul {
    padding-top: 0 !important;
  }
}
.service-page .service-top .btn {
  justify-content: space-between;
  height: 90px;
  padding: 0;
  flex: 1;
  border-bottom: 1px solid var(--gray-64);
}
.service-page .service-top .btn h3 {
  margin: auto;
}
.service-page .service-top .btn-circle-arrow::after {
  width: 26px;
  height: 26px;
  margin-right: 28px;
}
.service-page .btn.btn-primary:hover {
  opacity: 0.35;
}
.service-banner {
  background-image: var(
    --banner-url,
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Fservice_banner.jpeg")
  );
  background-position: center;
}
.service-top {
  grid-gap: 32px;
  margin-top: 64px;
}
.service-top__item {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex: 1;
  border-bottom: 1px solid var(--gray-64);
  height: 90px;
  transition-duration: 0.35s;
}
.service-box {
  padding: 40px 34px;
  border-top-right-radius: 60px;
  background-color: #f2f8ff;
  color: var(--text-3);
}
.service-box:not(:first-child) {
  margin-top: 48px;
}
.service-box-title {
  font-size: 1.625rem;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--text-3);
  margin: 0 0 40px 0;
  color: var(--text-3);
}
.service-box-desc {
  font-size: 1rem;
  margin-bottom: 24px;
}
.service-box .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
  margin: 0;
}
.service-list .service-item {
  display: flex;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 1px 3px 4px 0px rgba(0, 0, 0, 0.2);
  border-left: 8px solid var(--blue-primary);
  overflow: hidden;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  font-size: 1rem;
  font-weight: normal;
  text-wrap: wrap;
  min-height: 70px;
}
.service-list .service-item::after {
  content: "";
  background: var(--blue-primary)
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png") no-repeat center;
  transform: rotate(-90deg);
  flex-shrink: 0;
  background-size: 7px;
}
.service-list .service-item:hover::after {
  background: white url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_blue.png") no-repeat
    center;
  background-size: 7px;
  translate: -15px;
}
.service-item > p {
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  padding: 10px 28px 28px;
}
.service-block__wrapper {
  margin-top: 120px;
}
.service-block {
  margin-top: 50px;
  grid-gap: 100px;
}
.service-block .block-image {
  aspect-ratio: 538 / 332;
  width: 42%;
  min-width: 300px;
  flex-shrink: 0;
}
.service-block .block-image img {
  width: 100%;
  height: 100%;
}
.service-block .block-content h3 {
  font-size: 1.375rem;
  font-weight: 500;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-64);
  color: var(--text-3);
  margin: 0;
}
.service-block .block-content p {
  font-size: 1rem;
  font-weight: 400;
  margin: 44px 0 0;
  color: var(--text-3);
}
.service-block .block-content .btn {
  font-size: 1.125rem;
  font-weight: 500;
  width: 380px;
  height: 70px;
  margin-top: 54px;
  grid-gap: 0 36px;
}
.service-block .block-content .btn span {
  margin-left: 23px;
}
.service-block .block-content .btn::after {
  content: "";
  background: white url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_blue.png") no-repeat
    center;
  transform: rotate(-90deg);
  background-size: 7px;
}
.related-info {
  background: var(--gray-e);
  padding-top: 15px !important;
  padding-bottom: 40px !important;
  margin-top: 100px;
}
.related-info h3.title {
  border-bottom: 2px solid;
  padding-bottom: 10px;
  font-size: 1.5625rem;
  color: var(--text-3);
}
.related-info .results-list table {
  margin-bottom: 30px;
}
.related-info .btn-readMore {
  height: 85px;
  font-size: 1.25rem;
  margin-bottom: 55px;
}
.related-info .btn-readMore::after {
  background-size: 40%;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .service-box-desc,
  .service-list .service-item,
  .service-item > p,
  .service-block .block-content p {
    font-size: 1.3333333333333rem;
  }
  /* font-size 18 - 1.125rem */
  .service-block .block-content .btn {
    font-size: 1.5rem;
  }
  /* font-size 20 - 1.25rem */
  .related-info .btn-readMore {
    font-size: 1.6666666666667rem;
  }
  /* font-size 22 - 1.375rem */
  .service-block .block-content h3 {
    font-size: 1.8333333333333rem;
  }
  /* font-size 25 - 1.5625rem */
  .related-info h3.title {
    font-size: 2.0833333333333rem;
  }
  /* font-size 26 - 1.625rem */
  .service-box-title {
    font-size: 2.1666666666667rem;
  }
}
@media screen and (max-width: 992px) {
  .homeService .homeService-btns .homeService-btn {
    width: 100%;
    height: 65px;
  }
  .service-box .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-block {
    flex-direction: column;
    grid-gap: 40px;
    padding: 0 20px;
  }
  .service-block .block-image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service-block__wrapper {
    margin-top: 70px;
  }
  .service-page.main-container .main-title {
    font-size: 2.3333333333333rem;
  }
  .service-box {
    padding: 32px 20px;
  }
  .service-box .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 12px;
  }
  .service-list .service-item {
    padding: 0 10px;
    gap: 16px;
  }
  .service-block .block-content .btn {
    width: 90%;
    margin-top: 20px;
  }
  .service-page .btn-jump-group {
    grid-gap: 0;
  }
  .homeService .homeService-btns .homeService-btn {
    justify-content: flex-start;
    grid-gap: 0;
  }
  .homeService .homeService-btns .homeService-btn > span {
    text-align: center;
    flex: 1;
  }
  .homeService .homeService-btns .homeService-btn::after {
    flex-shrink: 0;
    margin-right: 10%;
  }
  .service-box-title,
  .service-block .block-content h3 {
    padding-bottom: 16px;
  }
}
/* service end */

/* form wpcf7 start */
a.external-link {
  text-decoration: underline;
  display: inline-block;
  text-underline-offset: 5px;
  display: inline-flex;
  align-items: center;
}
a.external-link::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fexternal_link.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 8px;
}
.contact-form .form-description {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: normal;
  display: flex;
  align-items: center;
  margin-top: 70px;
  padding-left: 34px;
}
.contact-form .post-code-btn {
  height: 60px;
  width: 200px;
  margin-left: 56px;
  letter-spacing: unset;
  background-color: black;
  color: white;
  transition-duration: 0.3s;
}
.contact-form .post-code-btn:hover {
  opacity: 0.6;
}
.contact-form .text-spacing {
  letter-spacing: 4px;
}
.wpcf7 .mark-require {
  color: #EB0000;
  margin: 0 12px;
  position: relative;
  font-weight: bold;
}
.wpcf7 .mark-require.dir_right,
.wpcf7 .mark-require[dir="right"] {
  margin-left: 0;
}
.wpcf7 {
  max-width: 1408px;
  width: 100%;
  margin: 0 auto;
}
.wpcf7 table {
  width: 100%;
}
.wpcf7 table th td {
  border: none;
}
.wpcf7 p {
  margin: 0;
  word-break: break-all;
  line-height: 30px;
}
.wpcf7 .row {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.wpcf7 .row-inline {
  display: inline-flex;
  align-items: center;
  grid-gap: 8px;
}
.wpcf7 .form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 34px;
  border-bottom: 1px solid #c1c1c1;
  grid-gap: 8px;
}
.wpcf7 .form-row td {
  border: none;
}
.wpcf7 .form-row.items-start {
  align-items: flex-start;
}
.wpcf7 .form-row > td:first-child {
  width: 280px;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue-primary);
}
.form-row > td:nth-child(2) label {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-3);
  padding: 8px 0;
  display: inline-flex;
}
.wpcf7 .wpcf7-list-item-label {
  font-weight: normal;
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .form-row > td:nth-child(2) .content-row {
  margin-top: 32px;
}
.wpcf7 .form-row br {
  display: none;
}
.wpcf7 .form-row .form-line {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--blue-primary);
  margin: 0 26px;
}
.wpcf7-form-control-wrap {
  flex: 1;
  display: flex;
  /* min-height: 60px; */
  flex-direction: column;
  grid-gap: 8px;
}
.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wpcf7 input {
  flex: 1;
  border: 1px solid var(--gray-64);
  padding: 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: normal;
  color: var(--text-3);
  min-height: 60px;
}
.wpcf7 input[type="text"]::placeholder {
  color: var(--placeholder);
}
.wpcf7-list-item > label {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.wpcf7-list-item > label input {
  flex: unset;
  width: 24px;
  min-height: 24px;
  height: 24px;
  flex-shrink: 0;
}
.wpcf7 textarea {
  padding: 12px;
  border: 1px solid var(--gray-64);
}
.wpcf7 .button-group p {
  text-align: center;
  margin-top: 80px;
}
input.wpcf7-submit,
input.wpcf7-previous {
  width: 320px;
  height: 68px;
  font-size: 1.25rem;
  cursor: pointer;
  font-weight: bold;
}
input.wpcf7-submit {
  background-color: var(--blue-primary);
  color: white;
}
input.wpcf7-previous {
  background: transparent;
  color: var(--blue-primary);
  border: 1px solid currentColor;
  margin-right: 50px;
}
.wpcf7-radio .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.375rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wpcf7-radio .wpcf7-list-item input,
.wpcf7-acceptance .wpcf7-list-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-acceptance .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  top: 8;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #ccc;
}
.wpcf7-acceptance .wpcf7-list-item-label:before {
  border-radius: 0;
}
.wpcf7-radio .wpcf7-list-item-label:after,
.wpcf7-acceptance .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: none;
}
.wpcf7-radio .wpcf7-list-item input:checked ~ .wpcf7-list-item-label:after,
.wpcf7-acceptance
  .wpcf7-list-item
  input:checked
  ~ .wpcf7-list-item-label:after {
  display: block;
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label:after,
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label:after {
  top: 12px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-primary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label:after {
  background: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fcheckbox_icon.png") center no-repeat;
  background-size: contain;
}
.wpcf7-not-valid-tip {
  color: #dc3232 !important;
}
@media only screen and (max-width: 1144px) {
  /* font-size 14 - 0.875rem */
  .contact-form .form-description {
    font-size: 1.1666666666667rem;
  }
  /* font-size 16 - 1rem */
  .wpcf7 .form-row > td:first-child,
  .form-row > td:nth-child(2) label,
  .wpcf7 input {
    font-size: 1.3333333333333rem;
  }
  /* font-size 20 - 1.25rem */
  input.wpcf7-submit,
  input.wpcf7-previous {
    font-size: 1.6666666666667rem;
  }
  /* font-size 22 - 1.375rem */
  .wpcf7-radio .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    font-size: 1.8333333333333rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-form .form-description {
    padding-left: 0;
  }
  .wpcf7 .form-row {
    padding: 32px 0;
    max-width: calc(100vw - 40px);
    flex-direction: column;
    align-items: flex-start;
  }
  .wpcf7 .row-inline {
    max-width: calc(100vw - 40px);
    flex-wrap: wrap;
  }
  .wpcf7 .form-row td {
    width: 100%;
  }
  .wpcf7 input {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form .post-code-btn {
    margin: 12px auto 0;
  }
  input.wpcf7-previous,
  input.wpcf7-submit {
    margin: 0;
    margin-bottom: 20px;
  }
  input.wpcf7-submit {
    width: 320px;
    padding-left: 2em;
  }
}
/* form wpcf7 end */

/* Mission page */

/* .mission-content */
@media only screen and (max-width: 1440px) {
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .misson-container #canvas {
    display: none;
  }
  .mission-line-img::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #13417c;
    border-radius: 50%;
    display: inline-block;
  }
  .misson-container .mission-content-box {
    padding-left: 0;
  }
  .mission-content-box .mission-line-first,
  .mission-content-box .mission-line-second {
    margin: 20px 0;
  }
  .mission-content-box .mission-line-third,
  .mission-content-box .mission-line-e-img,
  .mission-dot {
    display: none;
  }
  .misson-container .mission-content {
    padding-right: 0;
  }
  .mission-six .mission-content {
    text-wrap: wrap !important;
  }
  .mission-line-img {
    display: flex;
    align-items: center;
  }
}
.misson-container {
  padding-top: 50px;
  display: flex;
  position: relative;
}
.misson-container #canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.mission-img-box {
  padding: 18px 25px;
}
.mission-content-box {
  padding-left: 60px;
  width: 100%;
}
.mission-title {
  font-size: 1.375rem;
  color: #13417c;
  font-weight: bold;
  line-height: 1.9;
}
.mission-content {
  font-size: 1rem;
  line-height: 1.9;
  color: #333333;
}
.mission-line-img {
  height: 1px;
  width: 100%;
  background: #13417c;
}
.mission-line-first {
  margin: 20px 0 10px -190px;
  align-items: center;
}
.mission-line-second {
  margin: 20px 0 15px -180px;
  align-items: center;
}
.mission-line-third {
  align-items: center;
  margin-left: -114px;
  width: 65px;
}
.mission-line-third .mission-dot {
  width: 14px;
}
.mission-line-five {
  align-items: center;
  margin-top: -1px;
}
.mission-line-e-img {
  margin-left: -50px;
  margin-top: -199px;
}
.mission-dot {
  width: 12px;
  height: 12px;
  background: #13417c;
  border-radius: 50%;
}
/* End mission page */

/* Start About Outline page */
.aboutOutline .main-title {
  margin-top: 120px;
}
.aboutOutline-table {
  margin-top: 64px;
}
.aboutOutline-table figure {
  margin: 0;
}
.aboutOutline-table table {
  width: 100%;
}
.aboutOutline-table table tr {
  border: 1px solid #c1c1c1;
}
.aboutOutline-table table td {
  border: unset;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-3);
  text-align: left;
  padding: 26px 12px 26px 68px;
  font-weight: normal;
}
.aboutOutline-table td > div.flex {
  grid-gap: 32px;
}
.aboutOutline-table th {
  border: unset;
  background-color: #eee;
  height: 64px;
  width: 262px;
  padding: 12px 12px 12px 38px;
  text-align: left;
  font-weight: 500;
  color: var(--gray-64);
}
.aboutOutline-table .member-table {
  border-collapse: separate;
  border-spacing: 0;
}
.aboutOutline-table .member-table tr {
  display: table-row !important;
  border: unset;
}
.aboutOutline-table .member-table td {
  vertical-align: top;
  padding: 0 20px 10px 0;
}
.aboutOutline-table .member span {
  font-size: 0.875rem;
}
.aboutOutline-document {
  width: 60%;
  margin: 80px auto 0;
  padding: 40px 70px;
  background-color: #f1f7ff;
  border-radius: 4px;
}
.aboutOutline-document h3 {
  padding-left: 20px;
  border-left: 6px solid var(--gray-64);
  line-height: 34px;
}
.aboutOutline-document-item {
  padding: 20px 30px;
  background-color: white;
  border-top-right-radius: 30px;
}
.aboutOutline-document-item-content {
  grid-gap: 32px;
}
.aboutOutline-document-item img {
  flex-shrink: 0;
  width: 207px;
}
.aboutOutline-document-item img.mobile {
  display: none;
}
.aboutOutline-document-item .btn {
  margin-top: 60px;
  max-width: 350px;
  height: 68px;
  justify-content: center;
  width: 100%;
  position: relative;
  padding-right: 20px;
}
.aboutOutline-document-item .btn-circle-arrow::after {
  content: "";
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_blue.png");
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  transform: rotate(-90deg);
  background-size: 9px;
  position: absolute;
  right: 30px;
}
.aboutOutline-document-item .btn.mobile {
  display: none;
}
.circle-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #c1c1c1;
}
.aboutOutline-map {
  align-items: stretch;
}
.aboutOutline-map > img {
  width: 42%;
  max-width: 600px;
}
.aboutOutline-google-map {
  background-color: #eee;
}
.aboutOutline-tree {
  padding: 34px;
  border-radius: 4px;
  background-color: #f1f7ff;
}
.image-zoom-btn {
  display: none;
}
.aboutOutline-year-desc {
  text-align: right;
  margin-right: -10px;
}
.image-zoom-wrapper img {
  max-width: 100%;
}
.image-zoom-wrapper.border {
  border: 1px solid #c1c1c1;
  padding: 10px;
  max-width: calc(100% - 20px);
}
@media only screen and (max-width: 1144px) {
  /* font-size 14 - 0.875rem */
  .aboutOutline-table .member span {
    font-size: 1.1666666666667rem;
  }
  /* font-size 16 - 1rem */
  .mission-content,
  .aboutOutline-table table td {
    font-size: 1.3333333333333rem;
  }
  /* font-size 22 - 1.375rem */
  .mission-title {
    font-size: 1.8333333333333rem;
  }
}
@media screen and (max-width: 992px) {
  .aboutOutline .main-container {
    padding: 0;
  }
  .aboutOutline-table tr {
    display: flex;
    flex-direction: column;
  }
  .aboutOutline-table table tr {
    border: unset;
  }
  .aboutOutline-table table tr:last-child > td:last-child {
    border-bottom: 1px solid #c1c1c1;
  }
  .aboutOutline-table table.member-table tr:last-child > td:last-child {
    border-bottom: none;
  }
  .aboutOutline-table table th {
    border-top: 1px solid #c1c1c1;
  }
  .aboutOutline-table th {
    flex: 1;
    border-width: 1px 0 0 0;
    width: unset;
    padding-left: 20px;
  }
  .aboutOutline-table table td {
    border: unset;
    padding-left: 20px;
  }
  .aboutOutline-document {
    padding: 32px;
    flex-direction: column;
    align-items: stretch;
  }
  .aboutOutline-document p {
    margin-top: 20px;
  }
  .aboutOutline-document-item img {
    width: 40%;
  }
  .aboutOutline-document h3 {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .aboutOutline-document-item {
    flex-wrap: wrap;
    padding: 16px;
  }
  .aboutOutline-document-item-content {
    grid-gap: 20px;
  }
  .aboutOutline-document-item .btn {
    display: none;
    width: 100%;
    padding-right: 40px;
    position: relative;
    padding-right: 16%;
  }
  .aboutOutline-document-item .btn::after {
    position: absolute;
    right: 10%;
  }
  .aboutOutline-document-item .btn.mobile {
    display: inline-flex;
    flex: 1;
    margin-top: 24px;
    font-weight: normal;
  }
  .aboutOutline-document {
    padding: 16px;
    width: unset;
  }
  .aboutOutline-map {
    flex-direction: column;
  }
  .aboutOutline-map > img {
    width: auto;
    flex: 1;
    max-width: unset;
    margin-right: 0;
  }
  .aboutOutline-google-map {
    margin-top: 20px;
  }
  .aboutOutline-google-map iframe {
    height: 450px !important;
  }
  .aboutOutline-tree {
    padding: 10px;
    overflow: hidden;
  }
  .image-zoom-wrapper {
    width: 100%;
    overflow: hidden;
  }
  .image-zoom-btn::before {
    content: "";
    background: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fzoom-in.png");
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
  .image-zoom-btn {
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 6px 18px;
    display: flex;
    width: max-content;
    grid-gap: 8px;
    margin: 16px auto 0;
    cursor: pointer;
    color: #000;
  }
  .aboutOutline-sm-mt-35 {
    margin-top: 35px;
  }
}

/* End About Outline page */
/* Start Sustainability Initiatives Page */

@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .sustainability-img-banner {
    width: 100% !important;
    gap: unset !important;
    justify-content: space-between;
  }
  .sustainability-img-banner img:nth-child(1) {
    width: 41%;
  }
  .sustainability-img-banner img:nth-child(2) {
    width: 55%;
  }
}
@media only screen and (max-width: 992px) {
  .banner-image.sustainability-img-banner {
    width: auto;
    padding: 40px 20px 0 20px;
  }
  .sustainability-image-box {
    width: calc(100% - 30px) !important;
  }
  .sustainability-main-box {
    gap: 50px;
  }
  .sustainability-slogan-content {
    width: 100%;
  }

  .sustainability-slogan-content.sustainability-items-groups {
    height: 222px;
  }
  .sustainability-main-box .sustainability-slogan-content span,
  .sustainability-main-box .sustainability-slogan-content .message-content-text,
  .governance-btn-group .governance-police,
  .governance-btn-group .btn {
    margin: 0 15px !important;
  }
  .sustainability-slogan-content.governance-container {
    width: 100%;
    padding: 20px 0;
  }
  .governance-btn-group a.btn-circle-arrow {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
  .governance-box {
    margin-bottom: 150px;
  }
}

@media only screen and (max-width: 768px) {
  .sustainability-title.sustainability-items {
    margin-top: 140px;
  }
}
@media only screen and (max-width: 320px) {
  .governance-btn-group a.btn-circle-arrow {
    padding: 5px 10px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.top-banner-content h3.banner-title {
  width: fit-content;
}
.sustainability-img-banner {
  padding-top: 40px;
  width: 1209px;
  margin: 0 auto;
  gap: 30px;
}
hr.sustainability-underline {
  margin-bottom: 40px;
  border: none;
  border-bottom: 1px solid var(--text-3);
}
.sustainability-title {
  font-size: 1.625rem;
  line-height: 40px;
  color: var(--text-3);
  font-weight: 500;
}
.sustainability-main-box {
  position: relative;
  display: flex;
  align-items: end;
}
.sustainability-image-box {
  position: relative;
  width: 80%;
  aspect-ratio: 1.5;
  margin: auto;
}
.sustainability-image-main {
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: cover;
  top: 0;
  left: 0;
}
.sustainability-image-outline {
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  right: 0;
  bottom: 0;
  border: 1px solid #13417c;
}
.sustainability-slogan-content {
  width: 100%;
  height: 300px;
  background-color: #f1f7ff;
  border-bottom-right-radius: 50px !important;
  margin-bottom: -90px;
  margin-left: -60px;
  border-radius: 5px;
}
.sustainability-slogan-content span,
.sustainability-slogan-content .message-content-text {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 60px 0 125px;
  line-height: 1.9;
}
.governance-btn-group {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 1rem;
  line-height: 32px;
  color: #333333;
}
.governance-btn-group .btn {
  padding: 20px 60px;
  font-weight: normal;
  gap: 0;
  font-size: 1.125rem;
}
.governance-btn-group .btn .icon-external-link {
  margin: 0 40px 0 10px;
  width: 16px;
  height: 16px;
}
.governance-btn-group .icon-circle-arrow::after,
.btn-circle-arrow::after {
  width: 18px;
  height: 18px;
  padding: 5px;
}
.governance-btn-group span,
.governance-btn-group .governance-police,
.governance-btn-group .btn {
  margin: 0 70px 0 125px;
  height: unset;
}
.sustainability-items {
  margin-top: 160px;
}
.governance-container {
  height: 370px;
}
.governance-img {
  background-image: url("/assets?p=%2F.%2F.%2Fassets%2Fimages%2Fsustainability%2Fa3.JPG");
}
.governance-police {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
}
.governance-police p {
  font-weight: 600;
}
.governance-btn {
  width: 55%;
  height: 70px;
  background-color: #13417c;
  padding: 20px 0;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 500;
  justify-content: center;
}
.governance-external-icon {
  color: #fff;
  margin-left: 10px;
}
.governance-arrow-icon {
  margin-left: 40px;
}
.sustainability-slogan-box {
  z-index: -2;
}
.arrow-icons {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 50%;
  font-size: 1.0625rem;
  margin-left: 50px;
}
.btns-fake-box {
  width: 420px;
  height: 110px;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .governance-btn-group {
    font-size: 1.3333333333333rem;
  }
  /* font-size 17 - 1.0625rem */
  .arrow-icons {
    font-size: 1.4166666666667rem;
  }
  /* font-size 18 - 1.125rem */
  .governance-btn-group .btn,
  .governance-btn {
    font-size: 1.5rem;
  }
  /* font-size 20 - 1.25rem */
  .governance-police {
    font-size: 1.6666666666667rem;
  }
  /* font-size 26 - 1.625rem */
  .sustainability-title {
    font-size: 2.1666666666667rem;
  }
}
/* End Sustainability Initiatives Page */

/* Overview page */
@media only screen and (max-width: 1024px) {
  .overview-research .overview-research-info {
    padding: 30px 20px 0 20px;
    min-height: 400px;
  }

  .overview-box-third .overview-network {
    flex-wrap: wrap;
  }
  .overview-network .overview-jeri-service {
    flex-basis: 100%;
  }
  .overview-box-first {
    flex-direction: column;
  }
}

@media only screen and (max-width: 992px) {
  .overview-research-contact-box a.overview-research-link {
    padding: 12px 0;
  }
  .overview-research .overview-research-info {
    min-height: auto;
  }
  .overview-box-first,
  .overview-box-second {
    padding: 0 10px;
  }
  .main-overview-container .main-title {
    font-size: 2.3333333333333rem;
  }
  .overview-container .overview-box-third .btn {
    text-wrap: wrap;
    padding: 15px 35px;
    font-size: 1.5rem;
  }
  .overview-container .overview-slogan {
    padding: 0;
    margin: 50px 0px;
  }

  .main-overview-container .overview-container .overview-img img {
    height: 250px;
  }
  .overview-jeri-service .overview-internal-network-content {
    gap: 5px 50px;
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .overview-container .overview-box-third .btn {
    text-wrap: wrap;
    padding: 20px 40px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 320px) {
  .overview-container .overview-box-third .btn {
    text-wrap: wrap;
    padding: 20px 30px;
    font-size: 1.3333333333333rem;
  }
}
.overview-page-container .sub-title {
  margin: 0;
  font-weight: normal;
}
.overview-slogan {
  margin: 50px 0px 80px 0px;
}
.overview-box-first {
  display: flex;
  justify-content: space-between;
  gap: 84px;
  margin-bottom: 80px;
}
.overview-content-sumary {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-basis: 33.33%;
}
.overview-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.overview-content {
  font-size: 1rem;
  margin: 0;
  text-align: left;
}

.overview-box-second {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}
.overview-research-title {
  font-size: 1.25rem;
  color: #13417c;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.overview-research {
  display: flex;
  flex-direction: column;
  border: 1px solid #c1c1c1;
  flex-basis: 33.33%;
  border-radius: 10px 10px 0 0;
}
.overview-research-info {
  padding: 30px 20px 0 20px;
  min-height: 300px;
}
.overview-research-icons {
  width: 9px;
  height: 9px;
  background: #13417c;
  border-radius: 50%;
}
.overview-research-lineup {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}
.overview-research-lineup::before {
  content: "";
  width: 25px;
  height: 1px;
  background: #13417c;
  display: block;
}
p.overview-reserch-content {
  margin-top: 30px;
  font-size: 1rem;
  min-height: 130px;
}
.overview-research-contact-box {
  background-color: #f1f7ff;
  flex: 1;
}
.overview-research-contact {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
a.overview-research-link {
  background: #fff;
  color: #13417c;
  border: 2px solid #13417c;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
}
.overview-box-third {
  background: #f1f7ff;
  padding: 40px 50px;
  border-radius: 10px;
}
.overview-box-third .btn {
  padding: 20px;
  gap: 20px;
  border-radius: 50px;
  font-weight: normal;
  pointer-events: none;
}
.overview-network {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.overview-jeri-service,
.overview-jeri-logo {
  flex-basis: 50%;
}
.overview-internal-network {
  padding: 25px 35px;
  background: #fff;
  border-top-right-radius: 25px;
  box-shadow: 4px 6px 5px 0px #00000029;
}
.overview-internal-network-title {
  font-size: 1.125rem;
  color: #333333;
  font-weight: 700;
}
.overview-internal-network-sub-title {
  font-size: 1rem;
  margin-top: 15px;
  margin-left: 15px;
  font-weight: 600;
}
.overview-internal-network-content {
  display: flex;
  margin-top: 15px;
  background: #eeeeee;
  padding: 20px;
  gap: 15px;
  flex-wrap: wrap;
  border-radius: 5px;
}
.overview-internal-network-content span {
  display: flex;
  text-align: start;
}
.overview-internal-network-content span::before {
  content: "●";
  font-size: 1rem;
  display: block;
  margin-right: 5px;
  color: #c1c1c1;
  border-radius: 50%;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .overview-content,
  p.overview-reserch-content,
  a.overview-research-link,
  .overview-internal-network-sub-title,
  .overview-internal-network-content span::before {
    font-size: 1.3333333333333rem;
  }
  /* font-size 18 - 1.125rem */
  .overview-internal-network-title {
    font-size: 1.5rem;
  }
  /* font-size 20 - 1.25rem */
  .overview-research-title {
    font-size: 1.6666666666667rem;
  }
}
/* End overview */

/* Company Profile */
.about-page .company-profile-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.about-page .profile-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.8;
  filter: brightness(0.8);
  transition: 0.5s;
}
.about-page .profile-item:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}
.about-page .profile-item {
  position: relative;
  overflow: hidden;
}
.about-page .profile-item .about-btn::after {
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_blue.png") no-repeat
    center;
  transform: rotate(-90deg);
  margin-left: 5px;
  transition: 0.5s;
  background-size: 8px;
}
.about-page .profile-item .about-btn {
  text-align: center;
  position: absolute;
  bottom: 50%;
  right: 50%;
  border: 1px solid white;
  background-color: rgb(0 0 0 / 0.5);
  color: white;
  height: 25%;
  font-size: 1.5rem;
  line-height: 1.2;
  width: 60%;
  transform: translate(50%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 1;
}
.about-page .profile-item:hover .about-btn {
  background: white;
  color: var(--blue-primary);
}
.about-page .profile-item:hover span {
  text-shadow: none;
}
.about-page .profile-item:hover .about-btn::after {
  background: var(--blue-primary)
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png") no-repeat center;
  background-size: 8px;
}
.about-page .profile-item span {
  width: 60%;
  text-shadow: 0 0 3px black;
}
.img-fluid {
  width: 100%;
  height: 100%;
}
.opacity-img {
  opacity: 0.8;
  object-fit: cover;
}

.blank-img {
  visibility: hidden;
}
@media only screen and (max-width: 768px) {
  .about-page ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px !important;
    padding: 0 15px;
  }
  .about-page .profile-item a .about-btn {
    width: 70%;
  }
  .about-page .profile-item a .about-btn::after {
    width: 30px;
    height: 30px;
    right: 10px;
  }
  .about-page .profile-item a::after {
    width: 25px;
    height: 25px;
    right: 15px;
    background-size: 6px;
  }
}
/* End company profile */

/* Message page */

@media only screen and (max-width: 992px) {
  .message-container .sustainability-image-box .message-img-info {
    margin-left: 0;
    padding: 0 20px;
    bottom: -140px;
  }
  .message-container span.message-company-name {
    font-size: 1.3333333333333rem;
  }
  .message-container .sustainability-main-box .sustainability-image-box {
    width: 90% !important;
  }
  .message-img-info {
    padding: 0 20px;
  }
  .message-container .sustainability-main-box {
    height: auto;
  }
  .message-container .sustainability-slogan-content {
    width: 100%;
    padding: 10px 0;
    margin-top: 100px;
  }
  .message-container .sustainability-img,
  .message-container .sustainability-image-outline {
    width: 95%;
  }
  .message-container .message-content-text {
    gap: 0;
  }
}
span.message-content-text,
div.message-content-text {
  gap: 10px;
  flex-direction: column;
}
.message-content-container {
  padding: 60px 0;
  height: auto;
  margin-bottom: -222px;
  border-radius: 5px;
}
.message-img-container {
  height: 671px;
}
.message-img-info {
  padding: 0 45px;
  border-left: 6px solid #646464;
  margin-left: 30px;
  position: absolute;
  bottom: -160px;
  font-weight: normal;
}
span.message-company-name {
  margin-bottom: 14px;
  color: var(--text-3);
}
span.message-img-name {
  font-size: 2.25rem;
}
.message-container {
  margin-bottom: 300px;
}
@media only screen and (max-width: 1144px) {
  /* font-size 36 - 2.25rem */
  span.message-img-name {
    font-size: 3rem;
  }
}
/* End message page */

/* Start introduce page */
.introduce-page .position-area {
  width: 30%;
  transition: all 0.35s;
}
.introduce-page .position-area:hover {
  opacity: 0.302;
}
.introduce-page .position-area h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--blue-primary);
  color: white;
  margin: 0;
  padding: 20px 40px;
  font-size: 1.25rem;
  border-radius: 15px 15px 0 0;
}
.introduce-page .position-area ul {
  height: 178px;
  padding: 20px 40px;
  margin-top: 0;
  border: 1px solid var(--blue-primary);
}
.introduce-page .position-area ul li::before {
  content: "●";
  padding-right: 5px;
  color: var(--gray-64);
  line-height: 32px;
}
.introduce-page .icon-circle-arrow::before {
  background: white;
  color: var(--blue-primary);
}
@media only screen and (max-width: 1144px) {
  /* font-size 20 - 1.25rem */
  .introduce-page .position-area h4 {
    font-size: 1.6666666666667rem;
  }
}
/* End introduce page */

/* Service M&A page */
.post-box-area {
  background: #f5f5f5;
}
.post-container {
  max-width: 1600px;
  padding: 60px 40px;
  margin: 0 auto;
}
.ma-dbj-system {
  flex-basis: 45%;
}
.ma-system-box {
  padding: 55px 60px;
  background: #f1f7ff;
  border-radius: 5px;
}
.bg-primary {
  background: #13417c;
}
.bg-dark {
  background: #333333;
}
.ma-dbj-logo {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 15px 0;
}
.ma-dbj-logo.bg-primary {
  color: #FFF;
}
.ma-dbj-logo img {
  padding: 15px;
  width: 60%;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
}
.ma-dbj-system-content {
  justify-content: center;
  height: 355px;
  padding: 0 30px;
}
.ma-dbj-system-content span::before {
  content: "●";
  padding-right: 8px;
  color: #646464;
  line-height: 32px;
}
.line {
  border-bottom: 1px solid var(--text-3);
}
.ma-dbj-system-line {
  width: 140px;
  height: 2px;
  flex-basis: 10%;
  position: relative;
}
.ma-dbj-system-line::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #13417c;
  display: block;
  position: absolute;
  top: -7px;
  left: 45%;
}
.ma-workflow {
  background: #f2f8ff;
  padding: 55px 55px 55px 100px;
  border-radius: 5px;
}
.ma-workflow-box {
  gap: 100px;
}
.ma-workflow-line,
.ma-workflow-line-sp {
  height: 1px;
  margin: 18px 0 25px 0;
  position: relative;
}
.ma-workflow-items {
  flex-basis: 50%;
  position: relative;
}
.ma-workflow-items h4 {
  font-size: 1.25rem;
  color: #13417c;
  margin-bottom: -5px;
}
.ma-workflow-line::after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #000;
  float: right;
  transform: rotate(222deg);
  position: absolute;
  right: -3px;
  top: -8px;
}
.ma-workflow-item-content {
  padding: 25px 35px;
  border-radius: 10px;
  height: fit-content;
  min-height: 350px;
}
.ma-workflow-item-content ol li::before {
  content: unset !important;
}
.ma-workflow-item-content ol.number,
.ma-workflow-item-content ol.asterisk {
  list-style: auto;
  padding-left: 1.1rem;
}
.ma-workflow-item-content ol.asterisk li::marker {
  content: "※";
}
.ma-workflow-item-content-old {
  min-height: 310px;
}
.ma-workflow-item-content .dot,
.ma-workflow-item-content .dot-child {
  position: relative;
  margin-left: 20px;
}
.ma-workflow-item-content .dot::before,
.ma-workflow-item-content .dot-child::before {
  display: inline-block;
  position: absolute;
  content: "";
  top: 5px;
  left: -20px;
  width: 15px;
  height: 15px;
  background: #646464;
  border-radius: 50%;
}
.ma-workflow-item-content .dot-child {
  margin-left: 30px;
}
.ma-workflow-item-content .dot-child::before {
  width: 10px;
  height: 10px;
  top: 8px;
  left: -13px;
}
.ma-workflow-item-content span {
  margin-left: 8px;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}
.ma-workflow-index {
  width: 123px;
  height: 123px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 2%;
  left: -10%;
}
.ma-workflow-index p {
  margin: 0;
  font-weight: 700;
}
.ma-workflow-index span {
  font-size: 3rem;
  font-weight: 700;
  line-height: 50px;
}
.advisory-group {
  gap: 40px;
}
.advisory-group .advisory-item {
  border: 1px solid #c1c1c1;
  border-radius: 10px 10px 0 0;
}
.advisory-item .frame {
  padding: 40px 20px;
  text-align: center;
}
.advisory-item .frame p {
  margin: 0;
  color: var(--text-3);
}
.advisory-item .frame img {
  width: 70%;
  height: auto;
}
.advisory-item .frame .first {
  height: 50px;
  align-items: center;
  margin: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 2.1875rem;
  color: var(--text-3);
}
.advisory-item .frame .second {
  height: 185px;
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  justify-content: center;
}
.advisory-item .frame .second::before,
.advisory-item .frame .second::after {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 1px solid var(--text-3);
  margin: 25px auto;
}
.advisory-item .frame .third {
  height: 50px;
  padding: 25px;
  margin: 0;
  font-size: 1.875rem;
  color: var(--text-3);
}
.advisory-item .date {
  text-align: center;
  background: var(--gray-e);
  margin: 0;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  font-size: 1rem;
  color: var(--text-3);
}
.advisory-item .country {
  display: flex;
  border: 3px solid var(--blue-primary);
  border-radius: 50px;
  padding: 15px 25px;
  height: 45px;
  font-size: 1.0625rem;
  align-items: center;
  font-weight: 900;
  justify-content: space-between;
  color: var(--blue-primary) !important;
  margin-top: 65px !important;
}
.flag-japan,
.flag-vietnam,
.flag-china,
.flag-usa {
  display: inline-block;
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Fservices%2Fma%2Fsolution_jpn.jpg");
  width: 55px;
  aspect-ratio: 1.5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.flag-japan {
  border: 0.5px solid #8f8f8f;
}
.flag-vietnam {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Fservices%2Fma%2Fsolution_vnm.jpg");
}
.flag-china {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Fservices%2Fma%2Fsolution_chn.jpg");
}
.flag-usa {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Fservices%2Fma%2Fsolution_usa.png");
}
.ml-25 {
  margin-left: 100px;
}
.mr-25 {
  margin-right: 100px;
}
.mb-25 {
  margin-bottom: 100px;
}
.ma-main-case-year {
  background: #eeeeee;
  height: 42px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  width: 99%;
}

.ma-main-case {
  gap: 40px;
  justify-content: center;
  align-items: normal;
}
.ma-main-case img {
  width: 99.9%;
}
.ma-main-case-border {
  border: 1px solid #c1c1c1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.ma-main-case-items {
  padding: 50px 60px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  gap: 240px;
}

.ma-main-case-item-first span::before {
  content: "●";
  padding-right: 8px;
  color: #646464;
  line-height: 32px;
}
.ma-service-title {
  font-size: 1.25rem;
  border-left: 6px solid #646464;
  padding: 5px 20px;
  font-weight: 500;
  color: var(--text-3);
}
.ma-news-container {
  gap: 7px;
}
.ma-news-info {
  gap: 25px;
  align-items: flex-start;
  width: 25%;
}
.ma-news-info span.created_at {
  font-weight: 700;
}
.ma-news-content {
  flex: 1;
}
.ma-news-info span.status-publish {
  padding: 5px 25px;
  color: #fff;
  font-size: 0.875rem;
  background: #9bbb59;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.ma-dbj-system-content span {
  display: flex;
  align-items: baseline;
}
.border-radius-5 {
  border-radius: 5px;
}

.border-radius-10 {
  border-radius: 10px;
}

@media only screen and (max-width: 1144px) {
  /* font-size 14 - 0.875rem */
  .ma-news-info span.status-publish {
    font-size: 1.1666666666667rem;
  }
  /* font-size 16 - 1rem */
  .advisory-item .date {
    font-size: 1.3333333333333rem;
  }
  /* font-size 17 - 1.0625rem */
  .advisory-item .country {
    font-size: 1.4166666666667rem;
  }
  /* font-size 18 - 1.125rem */
  .advisory-item .frame .second {
    font-size: 1.5rem;
  }
  /* font-size 20 - 1.25rem */
  .ma-workflow-items h4,
  .ma-service-title {
    font-size: 1.6666666666667rem;
  }
  /* font-size 30 - 1.875rem */
  .advisory-item .frame .third {
    font-size: 2.5rem;
  }
  /* font-size 35 - 2.1875rem */
  .advisory-item .frame .first {
    font-size: 2.9166666666667rem;
  }
  /* font-size 48 - 3rem */
  .ma-workflow-index span {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 992px) {
  .ma-workflow-item-content span {
    margin-right: 0;
  }
  .ma-workflow-box {
    gap: 60px;
  }
  .ma-news-info {
    width: 100%;
  }
  .ma-main-case-item-first span {
    display: flex;
    align-items: baseline;
  }
  .ma-main-case-items {
    gap: 0;
    padding: 1rem 0.8rem;
  }
  .mt-md-25 {
    margin-top: 100px;
  }
  .ma-workflow-item-content {
    min-height: unset;
  }
  .ml-md-18 {
    margin-left: 72px;
  }
  .ml-md-15 {
    margin-left: 60px;
  }

  .mt-md-15 {
    margin-top: 60px !important;
  }
  .ma-dbj-system-content .line {
    margin: 10px 0;
  }
  .ma-dbj-system-content {
    height: fit-content;
    padding: 20px;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .ma-dbj-system-line-box {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
  }
  .ma-dbj-system-line {
    flex-basis: auto;
  }
  .ma-dbj-system {
    position: relative;
    z-index: 1;
  }
  .ma-workflow {
    padding: 50px 60px 55px 110px;
  }

  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .ma-workflow-line-sp {
    width: 1px;
    height: auto;
    left: -15px;
    top: 25px;
    margin: 0;
  }
  .ma-workflow-line-sp::after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background: #000;
    float: right;
    transform: rotate(-45deg);
    position: absolute;
    right: -21px;
    bottom: 8px;
  }
  .ma-workflow-index {
    width: 100px;
    height: 100px;
    top: -2%;
    left: -12%;
  }
}
@media only screen and (max-width: 768px) {
  .ma-workflow {
    padding: 50px 60px 55px 70px;
  }
  .ma-workflow-index {
    width: 80px;
    height: 80px;
    top: 3%;
    left: -11%;
  }
  .ma-workflow-index span {
    font-size: 2.9166666666667rem;
    line-height: 35px;
  }
  .ma-dbj-logo img {
    height: 30px;
    padding: 10px;
  }
}

@media only screen and (max-width: 425px) {
  .ma-workflow-item-content p.ma-first-content {
    margin: 5px 0;
  }
  .ma-workflow-item-content {
    padding: 20px;
  }

  .top-banner-content > * {
    margin: 0;
  }
  .container .bread-crumb {
    margin-left: 0 !important;
  }
  .mb-xs-2 {
    margin-bottom: 8px;
  }
  .ma-system-box {
    padding: 30px 25px;
    border-top-right-radius: unset;
    border-radius: 5px;
  }
  .ma-workflow {
    padding: 20px 20px 55px 55px;
  }
  .ma-workflow-index {
    width: 80px;
    height: 80px;
    top: 3%;
    left: -15%;
  }
  .ma-workflow-index span {
    line-height: 25px;
  }
  .ma-workflow-items h4 {
    margin-bottom: 8px !important;
  }
}

@media only screen and (max-width: 375px) {
  .ma-workflow-index {
    left: -20%;
  }
  .ma-workflow-items h4 {
    margin-bottom: 8px !important;
    margin-left: 45px;
  }
}

@media only screen and (max-width: 320px) {
  .ma-workflow-index {
    left: -25%;
  }
}
/* End Service M&A page */
/*=------------------------------------------------------------= */
/* Language EN Style Area */
/* Serive Page */
.en-aboutUs-description {
  width: 90%;
  margin: 0 auto !important;
  text-shadow: 0px 0px 10px #000000b8;
}
.en-aboutUs-main-content {
  width: 92%;
  margin: 40px auto 0 auto;
  text-shadow: 0px 0px 10px #000000b8;
}
.en-service-container * {
  color: var(--text-3);
}
.en-service-for-government-office {
  padding: 50px 35px;
  background: #f2f8ff;
  border-top-right-radius: 50px;
}
.en-service-groups {
  gap: 25px;
}
.flex-33 {
  flex-basis: 33.33%;
}
.flex-50 {
  flex-basis: 50%;
}
.bg-white {
  background: #fff;
}
.en-service-title {
  font-weight: 500;
  color: #333;
}
.en-service-detail {
  padding: 25px 40px;
  box-shadow: 1px 3px 4px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.en-service-left-bar::before {
  content: "";
  display: block;
  background: #13417c;
  width: 8px;
  height: 66px;
  position: absolute;
  top: 0;
  left: 0;
}
.en-service-detail-last {
  box-shadow: unset;
}

.en-about-company-sp {
  align-items: center;
  gap: 30px;
  justify-content: space-around;
}
.en-main-title {
  margin-top: 120px;
  font-size: 2.125rem;
  line-height: 2;
  font-weight: 500;
  color: var(--text-3);
  padding-left: 32px;
  border-left: 8px solid var(--blue-primary);
}
.en-about-company-area {
  border-top-right-radius: 25px;
}

@media only screen and (max-width: 1144px) {
  /* font-size 34 - 2.125rem */
  .en-main-title {
    font-size: 2.8333333333333rem;
  }
}
@media only screen and (max-width: 1200px) {
  .en-about-company-groups {
    flex-direction: column;
  }
  .en-about-company-sp {
    gap: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .btn-jump-group {
    flex-direction: column;
    grid-gap: 0;
  }
  .btn-jump {
    flex: none;
    width: 100%;
  }
  .en-about-container .service-top {
    flex-direction: column;
  }
  .d-md-flex {
    display: flex;
  }
  .en-about-company-sp {
    align-items: center;
    gap: 10px;
    justify-content: space-around;
  }
  .en-about-company-box .en-about-company-title {
    font-size: 1.3333333333333rem;
    padding: 5px 10px;
  }
  .en-about-company-sp {
    gap: 50px;
  }
  .en-about-container .en-about-organization img {
    width: 90%;
    padding: 30px;
  }
  .en-about-map-container iframe {
    min-height: 300px;
  }
  .btn-jump br {
    display: none;
  }
  .en-about-container .en-main-title {
    margin-top: 90px;
  }

  .en-about-container .en-border {
    border-left: unset;
    border-right: unset;
  }
}

@media only screen and (max-width: 768px) {
  .en-about-container .en-about-company-groups {
    padding: 47px 20px;
  }
  .en-about-container .en-about-company-groups .en-about-company-content {
    padding: 24px 20px;
  }
  .en-about-company-content .en-about-company-btn {
    margin: 0;
    text-align: center;
    padding: 15px 0;
  }
  .en-about-company {
    padding: 12px 12px 12px 38px !important;
    padding-left: 20px !important;
  }
  .en-about-company-info {
    padding: 26px 12px 26px 68px !important;
    padding-left: 20px !important;
  }
  .d-sm-done {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .w-sm-50 {
    width: 50%;
  }
  .d-sm-flex {
    display: flex;
  }
  .en-about-company-sp {
    gap: 30px;
  }
  .en-aboutUs-description {
    width: 100%;
  }
  .en-aboutUs-main-content {
    width: 100%;
  }
  .btn-jump {
    border-width: 2px;
  }
}

@media only screen and (max-width: 425px) {
  .en-service-for-government-office {
    padding: 35px 20px;
    border-top-right-radius: 50px;
  }
  h4.service-box-title {
    font-size: 1.8333333333333rem;
  }
  .en-about-company-sp {
    gap: 15px;
  }
  .en-about-container .en-about-organization img {
    width: 85%;
    padding: 25px;
  }
}

/* END Serive Page */

/* EN About Page */
.en-about-btn-active {
  background-color: #13417c;
}
.en-about-company {
  padding: 35px 40px;
  color: var(--gray-64);
  background: #eeeeee;
  flex-basis: 20%;
}
.en-about-company-info {
  padding: 35px 60px;
  flex: 1;
}
.en-border {
  border-left: 1px solid #c1c1c1;
  border-right: 1px solid #c1c1c1;
}
.en-border-top {
  border-top: 1px solid #c1c1c1;
}
.en-border-bottom {
  border-bottom: 1px solid #c1c1c1;
}
.en-about-company-groups {
  background-color: #f1f7ff;
  padding: 47px 55px;
  gap: 40px;
  justify-content: space-around;
  border-radius: 5px;
}
.en-about-company-content {
  padding: 24px;
  gap: 26px;
}
.en-about-company-box {
  flex-basis: 60%;
}
.w-25 {
  width: 25%;
}
.w-50 {
  width: 50%;
}
.w-75 {
  width: 75%;
}
.w-100 {
  width: 100%;
}
.flex-1 {
  flex: 1;
}
.mt-25 {
  margin-top: 100px;
}
.en-about-company-title {
  padding: 5px 20px;
  font-size: 1.125rem;
  border-left: 6px solid #646464;
}
.en-about-company-btn {
  padding: 20px 10px;
}
.en-about-company-content a.en-about-company-btn::after {
  margin-left: 0;
}
.en-about-company-groups a span {
  width: 65%;
  text-align: center;
}
.en-about-map-container {
  gap: 68px;
}
.en-about-organization {
  background: #f1f7ff;
  border-radius: 5px;
}
.en-about-organization img {
  padding: 35px;
  width: 95%;
}
.en-about-company-content a.en-about-company-btn:hover {
  background: #13417c;
  color: #fff;
  opacity: 0.7;
}
.en-about-company-content a.en-about-company-btn:hover::after {
  background: #fff;
  color: #333;
}
@media only screen and (max-width: 1144px) {
  /* font-size 18 - 1.125rem */
  .en-about-company-title {
    font-size: 1.5rem;
  }
}
/* End About Page */

/* End Language EN Style Area */

/* Start Service - Temporary staffing */
.temporary-staffing-banner {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Fservices%2Fservice_staff.jpeg");
  background-position: 0 68%;
}
.temporary-staffing p {
  margin: 0;
}
.temporary-staffing-maps {
  margin-left: 170px;
  width: 40%;
}
.temporary-staffing-maps img {
  max-width: 555px;
  object-fit: contain;
}
.temporary-staffing .section-title,
.financial-data .section-title {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--text-3);
  margin-top: 110px;
  font-size: 1.625rem;
}
.temporary-staffing .block-title {
  line-height: 36px;
  padding-left: 16px;
  border-left: 8px solid var(--gray-64);
}
.temporary-staffing .block-content {
  padding: 34px;
  background-color: #f1f7ff;
  line-height: 2;
  border-top-right-radius: 30px;
}
.ul-circle > span {
  font-size: 1.125rem;
  color: #646464;
  margin-right: 6px;
}
.temporary-staffing .block-address {
  border: 1px solid #c1c1c1;
  height: 138px;
}
.temporary-staffing .block-address p {
  padding-top: 0;
}
.temporary-staffing .block-address > p:nth-child(1) {
  width: 300px;
  background-color: #eeeeee;
  color: var(--gray-64);
  align-self: stretch;
}
.temporary-staffing-table1,
.temporary-staffing-table2 {
  border-collapse: collapse;
}
.temporary-staffing-table1 tr {
  display: flex;
}
.temporary-staffing-table1 td:first-child {
  min-width: 180px;
  width: max-content;
  padding-right: 20px;
}
.temporary-staffing-table1 td {
  border: unset;
  background-color: #f1f7ff;
}
.temporary-staffing-table1,
.temporary-staffing-table1 tr {
  background-color: #f1f7ff;
}
.temporary-staffing-table2 td:nth-child(1) {
  padding: 26px 36px;
  width: 408px;
  background-color: #eeeeee;
}
.temporary-staffing-table2 td:nth-child(2) {
  padding: 26px 68px;
}
.temporary-staffing-table2 tr td {
  border: unset;
  border-collapse: collapse;
}
.temporary-staffing-table2 tr {
  border: 1px solid #c1c1c1;
}
.temporary-staffing-table2 tr:last-child td:last-child {
  border-bottom: 1px solid #c1c1c1;
}
.temporary-staffing .step-wrapper {
  min-height: 100px;
  position: relative;
}
.temporary-staffing .step-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 25px;
  width: 1px;
  height: 100%;
  background-color: var(--blue-primary);
  z-index: 0;
}
.temporary-staffing .step-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 26px);
  left: 32px;
  width: 1px;
  height: 26px;
  background-color: var(--blue-primary);
  z-index: 0;
  transform: rotate(30deg);
}
.temporary-staffing .step-wrapper:last-child::before,
.temporary-staffing .step-wrapper:last-child::after {
  display: none;
}
.temporary-staffing .step-wrapper:last-child .step-number-content {
  padding-bottom: 0;
}
.temporary-staffing .step-number-content {
  padding-left: 74px;
  padding-bottom: 40px;
}
.temporary-staffing .step-number {
  width: 50px;
  height: 50px;
  align-self: flex-start;
}

@media only screen and (max-width: 1144px) {
  /* font-size 18 - 1.125rem */
  .ul-circle > span {
    font-size: 1.5rem;
  }
  /* font-size 26 - 1.625rem */
  .temporary-staffing .section-title,
  .financial-data .section-title {
    font-size: 2.1666666666667rem;
  }
}
@media screen and (max-width: 992px) {
  .temporary-staffing-images {
    flex-direction: column;
    gap: 40px;
  }
  .btn-jump-group {
    flex-direction: column;
  }
  .temporary-staffing-maps {
    margin: 0 auto;
    width: 100%;
  }
  .temporary-staffing .block-address > p:nth-child(1) {
    width: 100%;
    height: 56px;
  }
  .temporary-staffing .block-address {
    flex-direction: column;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .temporary-staffing-table1 tr,
  .temporary-staffing-table2 tr {
    display: flex;
    flex-direction: column;
  }
  .temporary-staffing-table1 tr td:not(:first-child) {
    padding-left: 24px;
  }
  .temporary-staffing-table2 tr {
    border-width: 1px 0 0;
  }
  .temporary-staffing .block-content {
    padding: 16px;
  }
  .temporary-staffing .btn-jump h3 {
    font-size: 1.5rem;
  }
  .temporary-staffing .block-address > div:nth-child(2) {
    margin: 0;
    padding: 12px;
  }
  .temporary-staffing-table2 td:nth-child(1),
  .temporary-staffing-table2 td:nth-child(2) {
    padding: 16px;
    width: unset;
  }
  .step-row {
    flex-wrap: wrap;
  }
  .step-row :first-child {
    flex-shrink: 0;
  }
  .temporary-staffing .step-number {
    margin-right: 12px;
  }
  .temporary-staffing .step-number-content {
    padding-left: 62px;
    padding-bottom: 20px;
  }
  .temporary-staffing .step-number-content p {
    padding-top: 8px;
  }
}

/* End Service - Temporary staffing */

/* Service Financial data */
.financial-data-banner {
  background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Fservices%2Fservice_financial.jpeg");
  background-position: 0 60%;
}
.financial-data .btn-jump {
  min-height: 90px;
  height: auto;
}
.financial-data .btn-jump h3 {
  padding: 12px 38px;
}
.financial-data .main-title {
  margin-top: 80px;
}
.financial-data .block-content {
  padding: 34px 40px;
  border-top-right-radius: 60px;
  background: #f1f7ff;
}
.financial-data .btn {
  width: 410px;
  height: 96px;
}
.financial-data .btn-outline {
  border-width: 2px;
  grid-gap: 0 36px;
}
.financial-data .btn-outline span {
  font-size: 1rem;
}
.financial-data .btn-outline.btn-primary.btn-circle-arrow::after {
  content: "";
  background: var(--blue-primary)
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png") no-repeat center;
  transform: rotate(-90deg);
  background-size: 6px;
}
.financial-data .btn-primary::after {
  content: "";
  background: white url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_blue.png") no-repeat
    center;
  transform: rotate(-90deg);
  background-size: 7px;
}
.financial-data .image-title {
  background: #eeeeee;
  width: max-content;
  padding: 4px 18px;
  border-radius: 40px;
  min-width: 145px;
  text-align: center;
}
.financial-data .image-wrapper {
  grid-gap: 0 110px;
}
.financial-data .image-wrapper .image-cover {
  max-height: 300px;
}
.financial-data img.border {
  border: 1px solid #c1c1c1;
  padding: 12px;
}
.financial-data .block-content-title {
  padding-left: 20px;
  border-left: 6px solid var(--gray-64);
  line-height: 34px;
}
.data-page-container .service-banner {
  box-shadow: inset 0 0 0 2000px rgb(0 76 155 / 51%);
}

@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .financial-data .btn-outline span {
    font-size: 1.3333333333333rem;
  }
}
@media screen and (max-width: 992px) {
  .financial-data .section-title {
    margin-top: 80px;
  }
  .financial-data .btn-jump-group {
    margin-top: 32px;
  }
  .financial-data .btn-jump {
    border-width: 2px;
    margin-top: 0;
    padding: 12px 0;
  }
  .financial-data .btn-jump h3 {
    padding: 0 10px 0 32px;
  }
  .financial-data .btn-jump br {
    display: none;
  }
  .financial-data .image-wrapper {
    margin: 0 32px;
    flex-direction: column;
    grid-gap: 50px 0;
    margin-top: 80px;
  }
  .financial-data .image-wrapper img {
    max-width: 100%;
    width: auto;
    object-fit: contain;
  }
  .financial-data .block-content-btn {
    flex-direction: column;
  }
  .financial-data .btn {
    margin-left: 0;
    margin-top: 32px;
    width: 100%;
    justify-content: flex-end;
    gap: 0;
  }
  .financial-data .btn:not(.btn-outline) {
    height: 80px;
  }
  .financial-data .btn::after {
    margin-right: 10%;
  }
  .financial-data .btn > *:first-child {
    flex: 1;
    padding: 0 16px;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .financial-data .block-content {
    padding: 36px 16px;
  }
  .financial-data .image-wrapper {
    margin: 0 16px;
  }
  .financial-data .image-wrapper img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
  }
  .financial-data img.border {
    padding: 12px;
    max-width: calc(100% - 24px);
  }
  .financial-data .btn-circle-arrow .ml-7 {
    margin-left: 5px;
  }
}
/* Service Financial data */

/* Home page */
.m-auto {
  margin: 0 auto;
}
.text-left {
  text-align: left;
}
.en-home-banner {
  z-index: 4;
  margin-bottom: -32px;
}
.en-main-container {
  width: calc(100% - 200px);
  padding-left: 97px;
}
.en-home-page {
  top: -250px;
  border: 2px solid #fff;
  z-index: 0;
}
.en-home-page::after,
.en-home-page::before {
  background: #fff;
}
.en-home-buttons .btn-wrapper {
  flex: none !important;
  flex-basis: 33.33% !important;
  box-shadow: 0 0 15px #000000c7;
}
.en-home-buttons .btn-wrapper a {
  justify-content: center;
}
.en-home-buttons .btn-wrapper a span.aboutUs-buttons-text {
  flex: none !important;
  width: 60%;
}
.en-home-aboutUs {
  height: unset;
  position: relative;
  z-index: 3;
}
.en-jeri-network {
  background-color: rgba(241, 247, 255, 0.5);
  border-radius: 10px;
}
.en-jeri-network a {
  font-weight: 600 !important;
}
.en-overview-jeri-service span {
  color: #646464;
}
.en-homeService {
  margin-top: 0;
  padding-top: 150px;
  background: #fff;
}
.en-homeService .homeSection-icon {
  top: -250px;
  z-index: 0;
}
.pb-20 {
  padding-bottom: 80px;
}
.en-homeService-readmore a {
  width: 521px;
}
.en-homeService-readmore span {
  width: 45%;
  text-align: center;
}
.en-homeService .homeService-item .homeService-item__content {
  background: #eeeeee;
}
@media only screen and (max-width: 992px) {
  .home-banner-area {
    margin-bottom: 0;
  }
  .home-banner .banner-description {
    font-size: 1.1666666666667rem;
    padding-top: 20px;
  }
  .home-aboutUs .homeSection-icon {
    width: 250px;
    height: 300px;
  }

  .en-home-banner {
    margin-bottom: 0;
  }

  .en-main-container {
    width: auto;
    padding: 100px 50px;
  }
  .main-container.main-container-sp {
    padding: 100px 50px 260px 50px;
  }
  .home-banner {
    height: auto;
  }
  .home-banner h2 {
    padding-left: 0;
  }
  .en-main-container p.banner-description,
  .main-container-sp p.banner-description {
    padding-left: 0;
  }
  .overview-jeri-logo img {
    width: 100%;
  }
  .container.home-container {
    padding: 0 25px 200px 25px;
  }
  .en-home-buttons .btn-wrapper {
    flex-basis: 90% !important;
  }
  .homeService p {
    border: none;
    margin: auto;
    width: 100%;
  }
  .en-homeService .homeService-item {
    background: #eee;
  }
  .flex-md-col {
    flex-direction: column;
  }
  .homeService-buttonWrapper {
    margin-left: 16px;
    margin-right: 16px;
    grid-gap: 32px;
  }
  .home-aboutUs .aboutUs-buttons .btn-wrapper {
    height: 65px;
  }
  .home-aboutUs .aboutUs-image {
    flex: auto;
    width: 100%;
    order: 1;
    height: 250px;
  }
  .home-aboutUs .aboutUs-image-wrapper {
    padding: 0;
  }
  .home-aboutUs {
    height: fit-content;
  }
  .aboutUs-buttons {
    margin-top: 50px;
    grid-gap: 50px !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .flex-md-auto {
    flex: auto !important;
  }
  .home-container.home-news-container {
    padding-bottom: 0;
  }
  .homeNewReport {
    padding-left: 100px;
  }
  .homeNewReport::before {
    /* width: fit-content; */
  }
  .homeCareer .homeCareer-link {
    width: 80%;
    height: 160px;
  }
  .homeCareer .homeCareer-link .border-white {
    padding: 0 52px 0 40px;
  }
  .homeInformation-box .viga-regular {
    font-size: 4rem;
  }
  .homeInformation-box {
    padding: 40px 25px;
  }
  .homeInformation-box ul {
    padding: 40px 20px;
  }
  .homeInformation-box li a {
    margin: 20px 0;
    letter-spacing: 1px;
    display: flex;
    align-items: baseline;
  }
  .homeInformation-box li a span.circle {
    flex: none;
  }
  .homeReport .homeReport-desc {
    margin: 20px auto 0;
    border: none;
    font-size: 1.3333333333333rem;
    line-height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner {
    background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Ftop_banner_sp.png");
    height: auto;
  }
  .home-banner h2 {
    font-size: 4rem;
    line-height: 80px;
  }
  .content-en .home-banner h2 {
    font-size: 2.5rem;
    line-height: 50px;
  }
  .en-main-container {
    display: none;
  }
  .en-main-container-sp {
    display: block;
    width: auto;
    padding: 100px 50px;
  }
  .en-main-container-sp p.banner-description {
    padding-left: 0;
  }
  .flex-sm-col {
    flex-direction: column;
  }
  .overview-box-third .overview-network {
    flex-wrap: nowrap;
  }
  .homeCareer .homeCareer-link .border-white {
    padding: 0 42px 0 40px;
  }
  .homeService-list {
    padding: 0 15px;
  }
  .home-aboutUs .aboutUs-buttons a::after {
    margin-right: 30px;
  }
  .home-aboutUs h2 {
    padding-top: 110px;
  }
  .home-aboutUs .aboutUs-description {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 425px) {
  .en-jeri-network {
    margin-top: 0;
  }
  .en-home-buttons .btn-wrapper a span.aboutUs-buttons-text {
    width: 65%;
  }
  .en-main-container-sp h2.en-main-title {
    font-size: 2.5rem !important;
  }
  .en-main-container-sp p.banner-description {
    font-size: 1.1666666666667rem !important;
  }
  .home-news {
    padding: 20px 20px 50px !important;
  }
  .aboutUs-buttons {
    padding: 0 20px 100px 20px;
    grid-gap: 30px !important;
  }
  .home-news > h2 {
    font-size: 3.5rem;
    line-height: 2.5;
  }
  .home-news > h2::before {
    top: 90%;
    width: 50px;
  }
  .homeService h3 {
    margin: 20px 0 35px;
  }
  .homeService-list {
    margin-top: 50px;
    gap: 30px;
  }
  .homeReport {
    padding-bottom: 15px;
  }
  .homeCareer-banner {
    height: 270px !important;
  }
  .homeCareer .homeCareer-link {
    height: 130px;
    top: 65%;
  }
  .homeCareer-link h3 {
    font-size: 1.6666666666667rem;
  }
  .homeCareer-link p {
    font-size: 1.25rem;
    margin-top: 5px;
  }
  .homeInformation-box {
    margin-top: 60px;
  }
  .homeInformation-box .viga-regular {
    top: -3px;
  }
  .homeInformation-box ul {
    padding: 15px 20px 25px;
  }
  .footer-nav {
    margin-top: 50px;
    padding: 30px 15px 10px;
  }
  .footer-nav .menu > li {
    margin-bottom: 25px !important;
  }
  .home-banner {
    background-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ftop%2Ftop_banner_sp.png");
    height: auto;
    background-position: center;
    background-size: cover;
  }
  .en-main-container-sp {
    padding: 80px 15px;
    padding-bottom: 155px;
  }
  .main-container.main-container-sp {
    padding: 50px 15px 260px 15px;
  }
  .home-banner h2 {
    font-size: 2.9166666666667rem;
    line-height: 60px;
  }
  .text-xs-18 {
    font-size: 1.5rem !important;
  }
  .text-xs-19 {
    font-size: 1.5833333333333rem !important;
  }
  .text-xs-16 {
    font-size: 1.3333333333333rem !important;
  }
  .text-xs-12 {
    font-size: 1rem !important;
  }
  .text-xs-14 {
    font-size: 1.1666666666667rem !important;
  }
  .text-xs-24 {
    font-size: 2rem !important;
  }
  .text-xs-26 {
    font-size: 2.1666666666667rem !important;
  }
  .text-xs-30 {
    font-size: 2.5rem !important;
  }
  .text-xs-35 {
    font-size: 2.9166666666667rem !important;
  }
  .text-xs-40 {
    font-size: 3.3333333333333rem !important;
  }
  .text-xs-left {
    text-align: left;
  }
  .m-xs-0 {
    margin: 0;
  }
  .gap-15 {
    gap: 15px;
  }
  .w-xs-100 {
    width: 100% !important;
  }
  .flex-xs-col {
    flex-direction: column;
  }
  .container.home-container {
    padding: 0 15px 50px 15px;
  }
  .homeService {
    padding-bottom: 0;
    padding-top: 150px;
  }
  .en-homeService {
    padding-top: 80px;
  }
  .overview-box-third {
    padding: 40px 15px;
  }
  .overview-internal-network {
    padding: 25px 20px;
  }
  .overview-internal-network-content span {
    align-items: baseline;
  }
  .en-home-aboutUs .homeSection-icon {
    width: 250px;
    height: 300px;
  }
  .en-home-page {
    top: -250px;
  }
  .homeService-img {
    min-width: fit-content;
  }
  .overview-internal-network-content span::before {
    font-size: 1.1666666666667rem;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .en-homeService .homeSection-icon {
    width: 230px;
    height: 290px;
  }
  .homeService .homeSection-icon {
    width: 240px;
    height: 280px;
  }
  .homeReport .homeSection-icon {
    width: 250px;
    height: 330px;
  }
  .homeNewReport {
    padding-left: 75px;
    padding-top: 30px;
  }
  .homeNewReport h3 {
    width: 60px;
    height: 240px;
  }
}

@media only screen and (max-width: 375px) {
  .home-banner h2 {
    font-size: 2rem;
    line-height: 40px;
  }
}

/* End Home page */
/* End Language EN Style Area */

/* Start Staff Page */
.staff-page .name-group {
  background: var(--blue-primary);
  color: white;
  padding: 15px 30px;
  border-radius: 10px 10px 0 0;
  margin-top: 40px;
}
.staff-page .name-group h3 {
  font-size: 1.625rem;
  margin: 10px 0;
}
.staff-page .name-en {
  font-weight: normal;
  margin-left: 20px;
  font-size: 1rem;
}
.staff-page .name-en::before,
.staff-page .name-en::after {
  content: "ー";
  margin: 10px;
}
.staff-page table {
  border-collapse: separate;
  border-spacing: 0 20px;
}
.staff-page table th,
.staff-page table td {
  border: unset !important;
}
.staff-page table th {
  width: 25%;
  background: #f2f8ff;
  border-radius: 0 15px 0 0;
  text-align: start;
  padding: 30px;
}
.staff-page table td {
  padding-left: 50px;
}
.staff-page table ul {
  padding-left: 1.25em;
}
.staff-page table ul li {
  text-indent: -1.25em;
}
.staff-page table ul li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  border-radius: 100%;
  background: #c1c1c1;
  transform: translateY(2px);
}
.staff-page table a {
  color: #0098e1 !important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.staff-page table a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1144px) {
  /* font-size 16 - 1rem */
  .staff-page .name-en {
    font-size: 1.3333333333333rem;
  }
  /* font-size 26 - 1.625rem */
  .staff-page .name-group h3 {
    font-size: 2.1666666666667rem;
  }
}
@media only screen and (max-width: 992px) {
  .staff-page table th,
  .staff-page table td {
    display: block;
    padding-left: 20px;
  }
  .staff-page .name-group {
    padding: 1px 20px;
    margin-bottom: 20px;
  }
  .staff-page .name-en {
    font-size: 1.3333333333333rem;
    margin-left: 0;
  }
  .staff-page table th {
    padding: 15px;
    width: unset;
  }
}
/* End Staff Page */
/* Start Position Page */
.staff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  margin: 0;
}
.staff-info {
  background: #f2f8ff;
  border-radius: 0 30px 0 0;
  text-align: start;
  padding: 20px 30px;
  color: var(--blue-primary);
  transition: 0.5s;
}
.staff-info h5,
.staff-info h4 {
  margin: 0;
  color: var(--blue-primary);
}
.staff-info .division {
  border-top: 1px solid var(--blue-primary);
  margin-top: 15px;
  min-height: 60px;
}
.division-title {
  color: var(--text-3);
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-64);
  font-size: 1.625rem;
}
.staff-info .division .division-tag {
  display: inline-block;
  background: var(--gray-64);
  color: white;
  padding: 3px 20px;
  border-radius: 20px;
  font-size: 0.8125rem;
  margin: 15px 0 5px 0;
}
.staff-info .name-en {
  margin-left: 20px;
  font-weight: normal;
  font-size: 0.875rem;
}
.staff-info .name-en::before,
.staff-info .name-en::after {
  content: "ー";
  margin: 5px;
}
.staff-info .icon-circle-arrow::after {
  background: var(--blue-primary)
    url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow_down_white.png") no-repeat center;
  color: white;
  background-size: 7px;
}
.staff-info:hover {
  opacity: 0.5;
}
.staff-info:hover .icon-circle-arrow::after {
  transform: translateX(-10px) rotate(-90deg);
}
.image-frame .wp-block-media-text__media {
  position: relative;
  z-index: 10;
}
.image-frame .wp-block-media-text__media::after {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid;
  width: 100%;
  height: 100%;
  bottom: -15px;
  right: -15px;
  z-index: 9;
}
.image-frame .wp-block-media-text__content {
  background: #f1f7ff;
  border-bottom-right-radius: 50px;
  padding: 40px;
}
.text-icon {
  display: flex;
}

.sustainability-btn .icon-circle-arrow {
  display: inline-flex;
}
.sustainability-btn .icon-external-link {
  margin: 0 50px -3px 10px;
}
.input-search-close .btn-close {
  visibility: hidden;
  transition-duration: 0.2s;
}
@media only screen and (max-width: 1144px) {
  /* font-size 13 - 0.8125rem */
  .staff-info .division .division-tag {
    font-size: 1.0833333333333rem;
  }
  /* font-size 14 - 0.875rem */
  .staff-info .name-en {
    font-size: 1.1666666666667rem;
  }
  /* font-size 26 - 1.625rem */
  .division-title {
    font-size: 2.1666666666667rem;
  }
}
@media only screen and (max-width: 992px) {
  .en-service-detail {
    padding: 12px 35px;
  }
  .en-service-left-bar::before {
    width: 9px;
    height: 55px;
  }
  .en-service-container .en-service-detail .mt-7 {
    margin-top: 15px;
  }
  .en-jeri-network.overview-box-third .btn {
    padding: 12px;
  }
  .homeService-item__list {
    margin-left: 0 !important;
  }
  .en-service-detail-last {
    display: none;
  }
  .container {
    padding: 0 20px;
  }
  .content-en .top-banner-content {
    min-height: 193px;
  }
  .main-container {
    padding: 0 20px;
  }
  .top-banner {
    min-height: 193px;
    height: auto;
    margin-right: 20px;
  }
  .top-banner-content h3 {
    font-size: 1.0833333333333rem;
    letter-spacing: 1px;
    padding-right: 30px;
    line-height: 16px;
    padding-bottom: 16px;
    margin-top: 45px;
  }
  .top-banner-content h1,
  .top-banner-content h2 {
    font-size: 2.5rem;
    margin-top: 19px;
    margin-bottom: 30px;
    line-height: 40px;
  }
  .top-banner-content h1 span,
  .top-banner-content h2 span {
    font-size: 2.0833333333333rem;
  }
  .container .bread-crumb {
    padding: 0;
    margin-left: 20px;
    margin-bottom: 50px;
    line-height: 1.2;
  }
  .container .main-title {
    font-size: 2rem;
    line-height: 1.5;
    padding-left: 20px;
    margin: 50px 0 40px;
  }
  .container .sub-title {
    display: block !important;
    padding: 0 20px;
  }
  .news-form .news-form-title {
    display: none;
  }
  .news-form .form-content {
    padding: 10px 15px 30px 15px;
    font-size: 1.3333333333333rem;
  }
  .news-form .select-custom .select-title {
    width: 100%;
  }
  .search-row,
  .news-form .form-button {
    margin-top: 20px !important;
  }
  .news-form button.form-button {
    max-width: 360px;
    width: 100%;
  }
  .search-row label[for="keyword"],
  .search-row .a11y_sp_hide {
    display: none;
  }
  .tag-form-group {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
  }
  .main-form-box .main-form-title {
    background-color: unset;
    box-shadow: unset;
    width: auto;
    justify-content: space-between;
    padding: 0 26px;
  }
  .main-form-box .main-form-title h2 {
    margin: 17px 0;
  }
  .main-form-box .main-form-title .btn-expand {
    display: block !important;
    font-size: 2.5rem;
  }

  .staff-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-news {
    padding: 40px 40px 100px;
  }
  .news-item {
    flex-wrap: wrap;
  }
  .news-item .news-date {
    width: 100%;
    margin-right: 0;
  }
  .archive-report-form .main-form-title {
    padding: 0;
  }
  .archive-report-form .form-checkbox-group {
    flex-wrap: wrap;
    margin: 0;
    grid-gap: 25px;
  }
  .archive-report-form .tags-title-icon {
    display: none !important;
  }
  .archive-report-form .form-checkbox-group > label.theme_tag,
  .archive-report-form .form-checkbox-group > .theme_tag {
    width: 100%;
    flex: unset;
  }
  .main-form-box .form-content {
    padding: 0;
  }
  ul.report-list {
    grid-template-columns: repeat(2, 1fr);
  }
  #keyword-search.archive-report-form .main-form-title {
    display: none;
  }
  #keyword-search.archive-report-form .btn-search {
    width: auto;
  }
  #keyword-search.archive-report-form .input-search-wrapper {
    margin: 0;
  }
  .results-form .main-form-title {
    display: none;
  }
  .main-form-box .search-row .input-search-wrapper .icon-search {
    margin: 0 10px;
  }
  .main-form-box .search-row .input-search-wrapper .btn-close,
  .main-form-box .search-row .btn-search {
    display: block;
  }
  .main-form-box .search-row .btn-search {
    width: auto;
    height: auto;
    margin-left: 0;
  }
  .select-custom .select-dropdown {
    max-height: 315px;
  }
  .main-form-box {
    padding: 30px 20px;
    border-top-right-radius: 30px !important;
  }
  .results-form .btn-expand {
    display: block;
  }
  .results-form .button-group {
    flex-wrap: wrap;
    margin-top: 25px;
    grid-gap: 25px;
  }
  .results-form .form-checkbox {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .results-form .row-title {
    padding: 0 20px;
    border-left: 6px solid var(--gray-64);
    font-size: 1.5rem !important;
    margin: 20px 0 20px !important;
  }
  .results-form .results-select-group {
    gap: unset;
  }
  .results-form .expand-parent {
    width: 100%;
    flex: none;
  }
  .results-form .expand-area {
    display: none;
  }
  .report-form-freeword .main-form-title {
    display: none;
  }
  .report-form-freeword .search-row .input-search-wrapper {
    height: auto;
  }
  .report-form-freeword .btn-search {
    width: auto;
    height: auto;
    margin-left: 0;
  }
  .archive-report-form.main-form-box .main-form-title h2 {
    margin: 0;
  }
  .archive-report-form.main-form-box .form-content {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .main-container {
    padding: 0;
  }
  .staff-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .staff-list .staff-info {
    padding: 20px 20px;
  }
  ul.report-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .archive-report-form .form-checkbox-group > label.theme_tag,
  .archive-report-form .form-checkbox-group > .theme_tag {
    border-radius: 12px;
    padding: 16px 24px;
  }
  .archive-report-form .form-checkbox-group > label.theme_tag::after.
  .archive-report-form .form-checkbox-group > .theme_tag::after {
    border-radius: 12px;
  }
  .archive-report-form .form-checkbox-group > label,
  .archive-report-form .form-checkbox-group > .theme_tag {
    border-width: 2px;
    padding: 10px 15px;
  }
  .archive-report-form .input-radio-container > .checkmark {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .archive-report-form .form-checkbox-group {
    grid-gap: 10px 15px;
  }
  .archive-report-form .input-radio-container .description {
    margin-top: 12px;
  }
  .archive-report-form .button-group {
    flex-direction: column-reverse;
    gap: 20px;
    padding-top: 36px;
  }
  .archive-report-form .button-group .report-form-button {
    width: auto;
  }
  .archive-report-container .report-list {
    margin-top: 60px;
    margin-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
  ul.report-list li .trend-tag {
    width: auto;
  }
  .pagination-container {
    margin-bottom: 80px;
    flex-wrap: wrap;
  }
  .pagination-container .page-numbers.next {
    margin-left: 20px;
  }
  .pagination-container .page-numbers.prev {
    margin-right: 20px;
  }
  .pagination-container .page-numbers {
    margin: 0;
  }
  .results-list table td > * {
    padding: 5px;
    min-width: 3em;
  }
  .archive-result .main-desc {
    padding-top: 32px;
  }
  .archive-result .main-form-box {
    margin-top: 60px;
  }
  .results-form .check-all-label {
    padding: 6px 15px !important;
  }
  .results-form .checkbox-title,
  .results-form .checkbox-body {
    padding: 20px !important;
  }
  .news-form .input-radio-container {
    width: calc(50% - 10px);
  }
  .news-form .input-radio-container > .content {
    min-width: unset;
    width: 100%;
  }
  .news-form .select-year {
    flex: 1;
  }
  .news-form .select-year .select-custom {
    width: 100%;
  }
  .main-form-box.archive-report-form {
    margin-top: 32px;
  }
  form.main-form-box.report-form-freeword {
    margin-top: 60px;
  }
  ul.report-list li .content {
    padding: 32px 24px;
  }
  .news-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
/* End Position Page */

/* Table commom */
@media only screen and (max-width: 768px) {
  .financial-page .table-fixed-column-outter {
    position: relative;
    margin: 2rem auto;
  }

  .financial-page .table-fixed-column-inner {
    overflow-x: scroll;
    overflow-y: visible;
    margin-left: calc(100vw / 3 - 11.4px);
  }
  .financial-page .table-fixed-column-inner::-webkit-scrollbar {
    width: 10px;
  }
  .financial-page .table-fixed-column-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .financial-page .table-fixed-column-inner::-webkit-scrollbar-thumb {
    background: #888;
  }
  .financial-page .table-fixed-column-inner::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .financial-page .table-fixed-column-inner .table {
    margin-bottom: 0.25rem;
  }

  .financial-page .table.table-fixed-column {
    table-layout: fixed;
    width: 100%;
  }

  .financial-page .table td,
  .financial-page .table th {
    width: calc(100vw / 3 - 13.3px);
  }

  .financial-page .table th:first-child,
  .financial-page .table tr td:first-child {
    position: absolute;
    left: 0;
    width: calc(100vw / 3 - 13px);
    transform: translateY(-1px);
  }

  .financial-page table.fixed-table .fixed-header-right-table {
    height: 25px !important;
    text-align: center;
    padding: 19px 0;
  }

  .financial-page table.fixed-table .fixed-header-top-table {
    height: 75px !important;
    text-align: center;
  }
  .financial-page .table-content-data {
    height: 58px;
    text-align: center;
  }
  .contact-form-custom textarea {
    border-radius: 0;
    -webkit-appearance: none;
  }
}
/* End table common */
/* Custom single page */
@media only screen and (min-width: 769px) {
  .single-service .main-container ul {
    padding: 1.5rem 2.5rem;
  }
  .single-service .page-padding {
    padding: 0 2rem 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .single-service .main-container ul {
    padding: 1rem 0.8rem;
  }
  .single-service .page-padding {
    padding: 0 0.5rem 1.8rem;
  }
}
[class^="wp-block-"] * {
  color: var(--text-3);
}
.single-service h3.sub-title {
  color: var(--text-3);
}
.single-service .main-container ul li:not(.news-item) {
  position: relative;
  padding-left: 1.2rem;
  padding-bottom: 0.5rem;
}
.single-service .main-container li:not(.news-item)::before {
  content: "";
  background: #646464;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0.4rem;
}
.single-service .main-container ul {
  margin: 0;
  list-style: none;
}
.single-service .border-list {
  border: 1px solid #8f8f8f;
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .single-service .wp-block-table td {
    display: block;
    width: unset !important;
  }
  .privacy-table th,
  .privacy-table td {
    display: block;
  }
}
.normal-content .other-link a {
  color: #0076A8;
  text-decoration: underline;
  text-wrap: wrap;
}
.normal-content .other-link a:hover {
  text-decoration: underline;
  opacity: 0.6;
}
.single-report .normal-content .pdf-btn a {
  border: 1px solid #c2c2c2;
}
.single-report .normal-content .pdf-btn:hover {
  background: #0098e1;
}
.single-report .normal-content .pdf-btn:hover a::first-line {
  color: white;
}
.single-report .normal-content .pdf-btn a::first-line {
  color: #0076A8;
}
.contact-box .wp-block-column {
  margin: auto;
  max-width: 40%;
  border: 1px solid #c2c2c2;
  padding: 0 30px;
}
.contact-box h4 {
  color: #0076A8;
  text-align: center;
  font-size: 1.25rem;
}
.contact-box h4::before {
  margin-right: 1em;
}
.contact-box h4::after {
  margin-left: 1em;
}
.contact-box h4::before,
.contact-box h4::after {
  display: inline-block;
  content: "";
  background-color: #0076A8;
  width: 20px;
  height: 3px;
  margin-bottom: 0.3em;
}
.contact-btn {
  position: relative;
}
.contact-btn:hover a {
  color: white !important;
  background: var(--text-3) !important;
}
.contact-btn:hover::before,
.contact-btn:hover::after {
  background: white;
}
.contact-btn::before,
.contact-btn::after {
  content: "";
  position: absolute;
  mask-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Fmail.svg");
  background: var(--text-3);
  width: 25px;
  height: 25px;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}
.contact-btn::after {
  mask-image: url("/assets?p=%2F.%2Fassets%2Fimages%2Ficons%2Farrow.svg");
  width: 15px;
  height: 15px;
  left: auto;
  right: 3%;
}
.privacy-table table {
  margin: 40px 0;
}
.privacy-table th,
.privacy-table td {
  border-left: none;
  border-right: none;
  padding: 20px;
  place-content: flex-start;
}
.search-page-container .link-hover {
  color: #0076A8;
}
.about-btn {
  position: relative;
}
.about-btn .icon-circle-arrow {
  position: absolute;
  right: 25px;
}
/* introduce page start */
.introduce-page .introduce-area {
  width: 31%;
}
.introduce-page .introduce-area h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--blue-primary);
  color: white;
  margin: 0;
  padding: 20px 40px;
  font-size: 1.25rem;
  border-radius: 15px 15px 0 0;
  height: 35px;
}
.introduce-page .introduce-area ul {
  padding: 20px 40px;
  margin-top: 0;
  border: 1px solid var(--blue-primary);
  height: 178px;
  line-height: 30px;
}
.introduce-page .introduce-area ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #c1c1c1;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}
@media only screen and (max-width: 1144px) {
  /* font-size 20 - 1.25rem */
  .contact-box h4,
  .introduce-page .introduce-area h4 {
    font-size: 1.6666666666667rem;
  }
}
/* introduce page end */
/* financial page start */
.financial-page .unit {
  text-align: end;
}
.financial-page table {
  width: 100%;
  text-align: center;
}
.financial-page table thead {
  border-bottom: unset;
}
.financial-page table td:first-child,
.financial-page table th:not(:first-child) {
  background: var(--gray-64);
  color: white;
  height: 88px;
  border: 1px solid white;
}
.financial-page table th {
  border: unset;
}
.financial-page table th:last-child {
  background: var(--blue-primary);
  border-right: none;
}
.financial-page table td:last-child {
  color: var(--blue-primary);
  font-weight: bold;
}
.financial-page table td:not(:first-child) {
  border: 1px solid var(--gray-64);
}
/* financial page end */
.outline-page table th {
  background: #eee;
  color: var(--gray-64);
}
.outline-page.book-group {
  background: #f1f7ff;
  padding: 20px 30px;
}
.outline-page.book-group .wp-block-column {
  background: white;
  border-top-right-radius: 30px;
  padding: 20px;
}
.jump-btn-group a .icon-circle-arrow::after {
  background: var(--blue-primary);
  color: white;
  float: inline-end;
}
.jump-btn-group a {
  background: white;
  color: black;
  border-bottom: 1px solid;
  transition: 0.5s;
}
.jump-btn-group a:hover {
  background: var(--blue-primary);
  color: white;
}
.jump-btn-group a:hover .icon-circle-arrow::after {
  background: white;
  color: black;
}
@media only screen and (max-width: 992px) {
  .outline-page table th,
  .outline-page table td {
    display: block;
  }
  .jump-btn-group a .icon-circle-arrow::after {
    content: "⇂";
  }
  .introduce-page .introduce-area {
    width: 100%;
  }
  .introduce-page .introduce-area ul {
    padding: 20px 20px;
  }
  .introduce-group {
    row-gap: 20px;
  }
}
.error__section {
  margin: auto;
  padding: 65px 0 25px;
  width: calc(100% - 50px);
  margin: auto;
}
.error__title {
  margin: 0 -25px 15px;
  color: #002f7b;
  font-size: 5.6rem;
  font-weight: bold;
  text-align: center;
}
.error__title span {
  display: block;
  font-size: 3.5rem;
  margin-top: 5px;
}
.error__subTitle {
  margin-bottom: 15px;
  color: #002f7b;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.75;
}
.error__text {
  margin-bottom: 30px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.75;
}

/* 2024.12 - a11y add */
.a11y_search-found {
    font-weight: normal;
    line-height: 1.9;
}
.a11y_hide {
  display: block;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media only screen and (min-width: 993px) {
  .a11y_hide_pc {
    display: block;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}
.a11y_fc:has(input[name="your-sendmail"]:focus-visible),
.a11y_fc:has(input[name="your-checkbox"]:focus-visible) {
  outline: auto;
}
.a11y_hidefet {
  margin: 0;
  padding: 0;
  border: none;
}
.a11y_hidefet_02 {
  margin: 0;
  padding: 0;
  border: none;
  height: 100%;
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .a11y_hidefet_02 {
    flex: none;
    width: 100%;
  }
}
.a11y_ls1 { letter-spacing: 1em; margin-right: -1em; display: inline-block; }