@keyframes bounce {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  box-shadow: none !important;
  border: none !important;
  background: #f3f6f7;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
}
body.jp, body.jp-top.jp {
  font-family: "Noto Sans JP", sans-serif;
}
body.en, body.jp-top.en {
  font-family: "Inter", sans-serif !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-out;
  word-break: break-all;
}

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

.icon-search {
  width: 18px;
  cursor: pointer;
  height: 18px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.text-back-to-top {
  color: #A9C0CC;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease-out;
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.text-normal {
  font-size: 14px;
}

.sp {
  display: none;
}

.tablet {
  display: none;
}

.pc {
  display: block;
}

h1 {
  border-bottom: none !important;
  clear: none !important;
  color: unset !important;
  font-size: unset !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pagetop {
  border-radius: 8px;
  background-color: white;
  opacity: 0.5;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.pagetop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background-image: url("/wp-content/themes/prcd/images/ico_arrow_up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pagetop.sp {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.08), 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: 0.02em;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.04), 0px 6px 6px 0px rgba(0, 0, 0, 0.03), 0px 14px 9px 0px rgba(0, 0, 0, 0.02), 0px 25px 10px 0px rgba(0, 0, 0, 0.01), 0px 40px 11px 0px rgba(0, 0, 0, 0);
}
.header.hidden {
  transform: translateY(-100%);
}

/* 埋め込みフォーム(_hmup_remodal)の確認モーダル表示中はサイトヘッダーを退避 */
body:has(._hmup_remodal-overlay[style*="display: block"]) .header {
  visibility: hidden;
}

.header-container {
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  height: 96px;
}
.header .logo a {
  display: flex;
  flex-direction: column;
  color: #231815;
  transition: all 0.3s ease-out;
}
.header .logo a img {
  width: 188.5px;
}
.header .logo .logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #231815;
}
.header .logo .logo-sub {
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  margin-top: 2px;
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex: 1;
}
.header-top {
  display: flex;
  align-items: center;
  line-height: 17px;
  gap: 32px;
  margin-right: 17px;
}
.header-top .lang-selector {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #231815;
  font-family: "Inter", sans-serif !important;
}
.header-top .lang-selector .lang-active {
  font-weight: 500;
  opacity: 0.5;
}
.header-top .lang-selector .lang-separator {
  color: #666;
}
.header-top .lang-selector .lang-option {
  cursor: pointer;
  color: #231815;
  transition: opacity 0.3s ease-out;
  transition: color 0.3s ease-out;
  opacity: 1;
}
.header-top .lang-selector .lang-option:hover {
  color: #527081;
}
.header-top .lang-selector .lang-option.lang-active {
  opacity: 0.5;
}
.header-top .utility-link {
  font-size: 14px;
  color: #231815;
  transition: color 0.3s ease-out;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.header-top .utility-link:hover {
  color: #527081;
}
.header-top .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: color 0.3s ease-out;
}
.header-top .search-btn:hover {
  color: #0066cc;
}
.header-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.header .has-service-panel {
  position: relative;
}
.header .has-service-panel .service-panel-mobile {
  display: none;
}
.header .has-service-panel .service-panel-blank {
  position: fixed;
  left: 65%;
  transform: translateX(-65%) translateY(0);
  width: 1200px;
  top: 96px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 900;
  border-radius: 8px;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in, visibility 0s linear 0.3s;
}
.header .has-service-panel .service-panel-blank.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease-in, visibility 0s linear 0s;
}
.header .has-service-panel ::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
}
.header .has-service-panel .service-panel-blank::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: auto;
}
.header .has-service-panel .service-panel-inner {
  display: flex;
  height: 100%;
}
.header .has-service-panel .service-panel-left {
  min-width: 224px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  background-color: #F3F6F7;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.header .has-service-panel .service-header-button {
  align-self: flex-start;
}
.header .has-service-panel .service-header-button .common-button-container {
  min-width: 160px;
  width: 160px;
  height: 50px;
}
.header .has-service-panel .service-header-button .common-button-container .common-button-text {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 21px;
}
.header .has-service-panel .service-header-button .common-button-text {
  color: #ffffff !important;
}
.header .has-service-panel .service-header-button .common-button-container:hover {
  background-color: #007AC0;
}
.header .has-service-panel .service-panel-label {
  font-size: 40px;
  font-weight: 700;
  color: #006FD6;
  font-family: "Inter", sans-serif !important;
  line-height: 51px;
}
.header .has-service-panel .service-panel-right {
  flex: 1;
  display: flex;
  justify-content: space-around;
  padding: 32px 48px;
}
.header .has-service-panel .service-panel-column {
  flex: 1;
  min-width: 0;
}
.header .has-service-panel .service-panel-column-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.3s ease-out;
}
.header .has-service-panel .service-panel-column-title span {
  display: inline-flex;
  align-items: center;
}
.header .has-service-panel .service-panel-column-title img {
  transition: all 0.3s ease-out;
}
.header .has-service-panel .service-panel-column-title:hover {
  color: #527081;
}
.header .has-service-panel .service-panel-column-title:hover img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(15%) saturate(1000%) hue-rotate(180deg) brightness(0.7);
}
.header .has-service-panel .service-panel-column-title:active {
  animation: bounce 0.3s ease;
}
.header .has-service-panel .service-panel-list li {
  cursor: pointer;
}
.header .has-service-panel .service-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.header .has-service-panel .service-panel-list li a {
  font-size: 12px;
  font-weight: 400;
  color: #231815;
  line-height: 18px;
  transition: color 0.3s ease-out;
  text-wrap: auto;
  letter-spacing: 0.04em;
}
.header .has-service-panel .service-panel-list li a:hover {
  color: #527081;
}
.header .has-service-panel:focus-within .service-panel-blank {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-65%) translateY(0);
  transition: opacity 0.3s ease-in, visibility 0s linear 0s;
}
.header .nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  line-height: 18px;
}
.header .nav-list a {
  font-size: 15px;
  font-weight: 700;
  color: #231815;
  transition: color 0.3s ease-out;
  line-height: 15px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.header .nav-list a:hover {
  color: #527081;
}
.header .nav-mobile {
  display: none;
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .btn-download {
  min-width: 146px;
  padding: 8px 16px;
  border: 1px solid #231815;
  background: #ffffff;
  color: #231815;
  font-size: 14px;
  font-weight: 700;
  border-radius: 1000px;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  cursor: pointer;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.header .btn-download:hover {
  background: #F3F9FF;
  border-color: #0053A6;
  color: #0053A6;
}
.header .btn-contact {
  width: 118px;
  border: none;
  background: #231815;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  cursor: pointer;
}
.header .btn-contact:hover {
  background: #007AC0;
  color: #ffffff;
}

.banner-section {
  position: relative;
  background: #f0f0f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0 50px;
  overflow: hidden;
}
.banner-section .banner-background {
  display: none;
}
.banner-section .container {
  position: relative;
  z-index: 1;
}
.banner-section .breadcrumb {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.banner-section .breadcrumb a {
  color: #555;
  transition: color 0.3s ease-out;
}
.banner-section .breadcrumb a:hover {
  color: #0066cc;
}
.banner-section .breadcrumb .separator {
  color: #555;
}
.banner-section .breadcrumb .current {
  color: #555;
  font-weight: 400;
  cursor: default;
}
.banner-section .banner-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.banner-section .banner-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-section .banner-bullet {
  width: 8px;
  height: 8px;
  background: #6bb6ff;
  border-radius: 50%;
  display: inline-block;
}
.banner-section .banner-japanese {
  font-size: 18px;
  font-weight: 400;
  color: #555;
}
.banner-section .main-title {
  font-size: 56px;
  font-weight: 700;
  color: #0066cc;
  margin: 0;
}

.csi-banner {
  position: relative;
  background-color: #F3F6F7;
  letter-spacing: 0.02em;
}
.csi-banner .inner {
  max-width: 100%;
  display: flex;
  align-items: stretch;
}
.csi-banner .banner-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.csi-banner .banner-content {
  display: flex;
  flex-direction: column;
  padding: 24px 0 24px 72px;
  gap: 24px;
  position: relative;
  z-index: 10;
}
.csi-banner .banner-content .breadcrumb {
  width: calc(100% + 24px);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #231815;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  letter-spacing: 0.02em;
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.csi-banner .banner-content .breadcrumb a {
  text-decoration: none;
  transition: color 0.3s ease-out;
}
.csi-banner .banner-content .breadcrumb a:hover {
  color: #527081;
}
.csi-banner .banner-content .breadcrumb .current {
  color: #5A677D;
  white-space: nowrap;
  letter-spacing: 0.02em;
  cursor: default;
}
.csi-banner .banner-content .csi-logo-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.csi-banner .banner-content .csi-logo {
  display: flex;
  align-items: center;
  gap: 32px;
}
.csi-banner .banner-content .csi-logo .csi-logo-img {
  width: 281px;
  height: 124.5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.csi-banner .banner-content .csi-logo .section-title .sub-title {
  margin: 0;
}
.csi-banner .banner-content .csi-tagline {
  font-size: 18px;
  color: #231815;
  line-height: 29px;
  letter-spacing: 0.03em;
}
.csi-banner .banner-content .section-title-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.csi-banner .banner-content .section-title {
  margin: 0;
}
.csi-banner .banner-content .section-title .sub-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #231815;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}
.csi-banner .banner-content .section-title .main-title {
  font-size: 40px;
  font-weight: 700;
  color: #0053A6;
  line-height: 51px;
  text-align: left;
  letter-spacing: 0.02em;
}
.csi-banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.csi-banner .banner-image .banner-layer-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 45%;
     object-position: center 45%;
  mix-blend-mode: darken;
  z-index: 3;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 35%, transparent 60%);
          mask-image: linear-gradient(90deg, black 0%, black 35%, transparent 60%);
}
.csi-banner .banner-image .banner-layer-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 45%;
     object-position: center 45%;
  opacity: 0.3;
  mix-blend-mode: luminosity;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 35%, transparent 60%);
          mask-image: linear-gradient(90deg, black 0%, black 35%, transparent 60%);
}
.csi-banner .banner-image .banner-layer-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 63%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom;
     object-position: right bottom;
  z-index: 1;
}
.csi-banner .banner-image.bg-white::before {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 38%, rgba(255, 255, 255, 0) 53%);
}
.csi-banner .banner-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #F3F6F7 0%, #F3F6F7 38%, rgba(243, 246, 247, 0) 53%);
  z-index: 4;
  pointer-events: none;
}
.csi-banner .banner-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.main-content {
  padding: 60px 0;
}

.container {
  margin: 0 auto;
  padding: 0 40px;
}

.intro-section {
  background: #ffffff;
  border-top: 1px solid #fff9e6;
  border-bottom: 1px solid #fff9e6;
  padding: 50px 40px;
  margin-bottom: 60px;
}
.intro-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #231815;
  text-align: center;
}
.intro-section .intro-text {
  text-align: left;
  margin-bottom: 30px;
}
.intro-section .intro-text p {
  font-size: 16px;
  line-height: 29px;
  color: #231815;
  text-align: left;
}
.intro-section .intro-text p:last-child {
  margin-bottom: 0;
}

.content .inner {
  max-width: 1440px;
  width: 100% !important;
  margin: auto;
}

.common-button-container {
  background: #231815;
  padding: 12px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  min-width: 180px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease-in;
}
@media (hover: hover) and (min-width: 768px) {
  .common-button-container:hover {
    background-color: #006FD6;
  }
  .common-button-container:hover .common-button-text {
    border-right-color: #66B2FF;
  }
  .common-button-container:hover .common-button-icon img {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  .common-button-container:hover .common-button-icon::after {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
}
.common-button-container .common-button-icon {
  display: inline-block;
  position: relative;
  padding: 0 16px 0 12px;
  overflow: hidden;
}
.common-button-container .common-button-icon img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: translateX(0);
  transition: none;
}
.common-button-container .common-button-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/prcd/images/ico_arrow_right_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateX(-20px);
  transition: none;
}
.common-button-container .common-button-text {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-direction: column;
  flex: 1;
  border-right: 1px solid #434343;
  padding: 0px 12px 0 16px;
  transition: color 0.3s ease-out, border-right-color 0.3s ease-out;
}
.common-button-container .common-button-text span {
  color: #C7D5DD;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.04em;
  transition: color 0.3s ease-out;
}
.common-button-container.move-down, .common-button-container.has-subtext {
  gap: 0;
  position: relative;
  padding: 12px 0;
}
@media (hover: hover) and (min-width: 768px) {
  .common-button-container.move-down:hover .common-button-icon-down img, .common-button-container.has-subtext:hover .common-button-icon-down img {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  .common-button-container.move-down:hover .common-button-icon-down::after, .common-button-container.has-subtext:hover .common-button-icon-down::after {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  .common-button-container.move-down:hover .common-button-subtext, .common-button-container.has-subtext:hover .common-button-subtext {
    color: #CBE9F8;
    transition: color 0.3s ease-out;
  }
}
.common-button-container.move-down .common-button-text, .common-button-container.has-subtext .common-button-text {
  min-height: 34px;
  padding: 0 12px 0 16px;
  justify-content: center;
}
.common-button-container.move-down .common-button-icon-down, .common-button-container.has-subtext .common-button-icon-down {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 16px;
}
.common-button-container.move-down .common-button-icon-down img, .common-button-container.has-subtext .common-button-icon-down img {
  display: block;
  width: 18px;
  height: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
.common-button-container.move-down .common-button-icon-down::after, .common-button-container.has-subtext .common-button-icon-down::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url("/wp-content/themes/prcd/images/ico_arrow_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateY(-18px);
  transition: none;
}

.main-title {
  font-family: "Inter", sans-serif !important;
  letter-spacing: 0;
}

.sub-title {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.sub-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-left: 4px;
}

.free-consulting {
  background-color: #E1EAEE;
}
.free-consulting .inner {
  margin: 0 auto;
  max-width: 1440px;
  padding: 63px 72px !important;
}
.free-consulting .inner .free-consulting-content {
  max-width: 956px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-left {
  flex: 1;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-left .free-consulting-content-title {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-left .free-consulting-content-title .free-consulting-content-title-text {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  line-height: 41.6px;
  letter-spacing: 0.02em;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-left .free-consulting-content-description {
  font-size: 16px;
  font-weight: 400;
  color: #231815;
  line-height: 1.8em;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-left .free-consulting-content-button {
  display: flex;
  justify-content: flex-end;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-left .free-consulting-content-button .common-button {
  min-width: 212px;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-right {
  width: 280px;
  height: 292px;
}
.free-consulting .inner .free-consulting-content .free-consulting-content-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-and-reasons {
  max-width: 1440px;
  margin: 0 auto;
}
.services-and-reasons .inner {
  padding: 60px;
  background-color: #f3f6f7;
}
.services-and-reasons .services-and-reasons-content {
  display: flex;
  gap: 16px;
}
.services-and-reasons .services-and-reasons-content .common-button {
  flex: 1;
}

.common-header-center {
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  flex-direction: column;
}
.common-header-center.pr {
  padding-right: 72px;
}
.common-header-center .common-header-title {
  position: relative;
  display: inline-block;
}
.common-header-center .common-header-title .common-header-title-text {
  position: relative;
  display: inline-block;
  height: 96px;
  padding: 12px 0px;
}
.common-header-center .common-header-title .common-header-title-text.long {
  height: unset;
  padding: 24px 0px 86px 0px;
}
.common-header-center .common-header-title .common-header-title-text-en {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}
.common-header-center .common-header-title .common-header-title-text-en.pickup {
  width: 225px;
  background-image: url("/wp-content/themes/prcd/images/img_pickup_en.svg");
}
.common-header-center .common-header-title .common-header-title-text-en.pickup.pickup-white-bg {
  background-image: url("/wp-content/themes/prcd/images/img_pickup_en_white.svg") !important;
}
.common-header-center .common-header-title .common-header-title-text-en.material {
  width: 309px;
  background-image: url("/wp-content/themes/prcd/images/img_material_en.svg");
}
.common-header-center .common-header-title .common-header-title-text-en.articles {
  width: 297px;
  background-image: url("/wp-content/themes/prcd/images/img_article_en.svg");
}
.common-header-center .common-header-title .common-header-title-text-en.articles.articles-white-bg {
  background-image: url("/wp-content/themes/prcd/images/img_article_en_white.svg") !important;
}
.common-header-center .common-header-title .common-header-title-text-en.cases {
  width: 298px;
  background-image: url("/wp-content/themes/prcd/images/img_work_en.svg");
}
.common-header-center .common-header-title .common-header-title-text-en.cases.cases-white-bg {
  background-image: url("/wp-content/themes/prcd/images/img_work_en.svg") !important;
}
.common-header-center .common-header-title .common-header-title-text-en.services {
  width: 298px;
  background-image: url("/wp-content/themes/prcd/images/img_service_en.svg");
}
.common-header-center .common-header-title .common-header-title-text-en.services.services-white-bg {
  background-image: url("/wp-content/themes/prcd/images/img_service_en_white.svg") !important;
}
.common-header-center .common-header-title .common-header-title-text-en.related {
  width: 272px;
  background-image: url("/wp-content/themes/prcd/images/img_related_en.svg");
}
.common-header-center .common-header-title .common-header-title-text-en.numbers {
  width: 398px;
  background-image: url("/wp-content/themes/prcd/images/img_numbers_en.svg");
}
.common-header-center .common-header-title .common-header-title-text-ja {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  position: absolute;
  line-height: 42px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1;
}
.common-header-center .common-header-title .common-header-title-text-ja.long {
  position: unset;
  transform: unset;
  left: unset;
  top: unset;
  white-space: unset;
}
.common-header-center .common-header-sub-title .common-header-sub-title-text {
  font-size: 18px;
  font-weight: 400;
  color: #231815;
  line-height: 28px;
  letter-spacing: 0.03em;
}
.common-header-center .common-header-sub-title .common-header-sub-title-text-note {
  font-size: 12px;
  font-weight: 400;
  color: #231815;
  line-height: 16px;
  letter-spacing: 0.02em;
}

.common-banner {
  position: relative;
  max-width: 1440px;
  margin: auto;
  min-height: 383px;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.common-banner .inner {
  padding: 24px 0 24px 72px !important;
}
.common-banner::after {
  content: "";
  position: absolute;
  top: -96px;
  left: 0;
  width: 100%;
  height: 479px;
  background-image: url("/wp-content/themes/prcd/images/img_banner_service.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: darken;
  z-index: 0;
}
.common-banner .banner-container {
  position: relative;
  z-index: 2;
}
.common-banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.common-banner .banner-container .banner-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #231815;
  line-height: 21px;
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: none;
  letter-spacing: 0.02em;
}
.common-banner .banner-container .banner-content .breadcrumb::-webkit-scrollbar {
  display: none;
}
.common-banner .banner-container .banner-content .breadcrumb {
  cursor: pointer;
  pointer-events: auto;
}
.common-banner .banner-container .banner-content .breadcrumb a {
  cursor: pointer;
  transition: color 0.3s ease-out;
}
.common-banner .banner-container .banner-content .breadcrumb a:hover {
  color: #527081;
}
.common-banner .banner-container .banner-content .breadcrumb img {
  width: auto;
  height: 12px;
}
.common-banner .banner-container .banner-content .breadcrumb .current {
  color: #5a677d;
  letter-spacing: 0.02em;
  cursor: default;
}
.common-banner .banner-container .banner-content .breadcrumb .company-detail-breadcrumb-extra {
  display: flex;
  gap: 4px;
  align-items: center;
}
.common-banner .banner-container .banner-content .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006fd6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 0;
}
.common-banner .banner-container .banner-content .section-title .sub-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
  margin-bottom: 4px;
}
.common-banner .banner-container .banner-content .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68bee4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.common-banner .banner-container .banner-content .section-title .main-title-container .main-title {
  font-size: 80px;
  font-weight: 700;
  color: #006fd6;
  margin: 0;
  line-height: 96px;
}
.common-banner .banner-container .banner-content .section-title .banner-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #231815;
  line-height: 19px;
  margin: 16px 0 0;
}

.common-pagination {
  display: flex;
  justify-content: center;
}
.common-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.common-pagination .page-numbers li a,
.common-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #E1EAEE;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #231815;
  text-decoration: none;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease-out;
}
.common-pagination .page-numbers li a:hover,
.common-pagination .page-numbers li span:hover {
  background-color: #F3F9FF;
  border-color: #F3F9FF;
  color: #333333;
}
.common-pagination .page-numbers li a.current,
.common-pagination .page-numbers li span.current {
  background-color: #006fd6;
  border-color: #006fd6;
  color: #ffffff;
  font-weight: 700;
  cursor: default;
}
.common-pagination .page-numbers li a.disabled,
.common-pagination .page-numbers li span.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.list-author {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.author-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border: 1px solid #C7D5DD;
}
.author-item .author-image {
  width: 100px;
}
.author-item .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.author-item .author-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.author-item .author-info .author-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.author-item .author-info .author-header .author-header-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.author-item .author-info .author-header .author-header-text .author-position {
  font-size: 12px;
  line-height: 21px;
  font-weight: 400;
  color: #231815;
}
.author-item .author-info .author-header .author-header-text .author-name {
  font-size: 20px;
  line-height: 21px;
  font-weight: 700;
  color: #231815;
}
.author-item .author-info .author-header .author-list-articles {
  line-height: 26px;
}
.author-item .author-info .author-header .author-list-articles .author-list-articles-link {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #0053A6;
  text-decoration: none;
  transition: background-color 0.3s ease-out;
  padding: 4px 12px;
  border-radius: 1000px;
  border: 1px solid #0053A6;
}
.author-item .author-info .author-header .author-list-articles .author-list-articles-link:hover {
  background-color: #CBE9F8;
}
.author-item .author-info .author-content .author-content-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #5A677D;
}

.consulting-document-download {
  padding: 60px 0;
  background-color: #F3F6F7;
}
.consulting-document-download .inner {
  padding: 0 160px;
}
.consulting-document-download .document-download-box {
  background-color: white;
  border-color: #C7D5DD;
  border-radius: 8px;
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #C7D5DD;
  transition: background-color 0.3s ease-out;
  cursor: pointer;
}
.consulting-document-download .document-download-box:hover {
  background-color: #F3F6F7;
}
.consulting-document-download .document-download-box:hover .document-download-content .document-download-thumbnail img {
  opacity: 0.5;
}
.consulting-document-download .document-download-box:hover .document-download-content .document-download-info .document-download-info-title {
  color: #527081;
}
.consulting-document-download .document-download-box:hover .document-download-content .document-download-info .document-download-info-description {
  color: #5A677D;
}
.consulting-document-download .document-download-box:hover .document-download-content .document-download-info .document-download-button {
  color: #527081;
}
.consulting-document-download .document-download-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}
.consulting-document-download .document-download-header .document-download-bullet {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  flex-shrink: 0;
}
.consulting-document-download .document-download-header .document-download-title {
  font-size: 14px;
  font-weight: 500;
  color: #007AC0;
  line-height: 21px;
}
.consulting-document-download .document-download-content {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
.consulting-document-download .document-download-thumbnail {
  flex-shrink: 0;
  width: 192px;
  align-content: center;
}
.consulting-document-download .document-download-thumbnail img {
  width: 100%;
  height: 108px;
  border-radius: 4px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.consulting-document-download .document-download-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.consulting-document-download .document-download-info-title {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 27px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}
.consulting-document-download .document-download-info-description {
  font-size: 14px;
  color: #5A677D;
  line-height: 21px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}
.consulting-document-download .document-download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  min-width: 215px;
  justify-content: center;
  align-items: center;
  color: #527081;
  background-color: white;
  border: 1px solid #527081;
  border-radius: 1000px;
  text-decoration: none;
  align-self: flex-end;
  transition: all 0.3s ease-out;
}
.consulting-document-download .document-download-button:hover {
  border-color: #007AC0;
  background-color: #E8F5FB;
}
.consulting-document-download .document-download-button:hover .document-download-button-text {
  color: #007AC0;
}
.consulting-document-download .document-download-button:hover .document-download-button-icon {
  filter: brightness(0) saturate(100%) invert(40%) sepia(90%) saturate(2000%) hue-rotate(180deg) brightness(95%) contrast(95%);
}
.consulting-document-download .document-download-button .document-download-button-text {
  font-size: 14px;
  color: #527081;
  font-weight: 700;
  line-height: 17px;
  transition: color 0.3s ease-out;
  letter-spacing: 0.02em;
}
.consulting-document-download .document-download-button .document-download-button-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: filter 0.3s ease-out;
}

.magazine-download {
  background-color: #F3F6F7;
  max-width: 1440px;
  margin: 0 auto;
}
.magazine-download div, .magazine-download h3, .magazine-download h4, .magazine-download img {
  margin: 0 !important;
}
.magazine-download p {
  margin: 0 !important;
}
.magazine-download .document-download-box {
  background-color: white;
  border-color: #C7D5DD;
  border-radius: 8px;
  padding: 24px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #C7D5DD;
  transition: background-color 0.3s ease-out;
  cursor: pointer;
}
.magazine-download .document-download-box:hover {
  background-color: #F3F6F7;
}
.magazine-download .document-download-box:hover .document-download-content .document-download-thumbnail img {
  opacity: 0.5;
}
.magazine-download .document-download-box:hover .document-download-content .document-download-info .document-download-info-title {
  color: #527081;
}
.magazine-download .document-download-box:hover .document-download-content .document-download-info .document-download-info-description {
  color: #5A677D;
}
.magazine-download .document-download-box:hover .document-download-content .document-download-info .document-download-button {
  color: #527081;
}
.magazine-download .document-download-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}
.magazine-download .document-download-header .document-download-bullet {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  flex-shrink: 0;
}
.magazine-download .document-download-header .document-download-title {
  font-size: 14px;
  font-weight: 500;
  color: #007AC0;
  line-height: 1.5;
}
.magazine-download .document-download-content {
  display: flex;
  align-items: stretch;
}
.magazine-download .document-download-thumbnail {
  flex-shrink: 0;
  width: 192px;
  align-content: center;
}
.magazine-download .document-download-thumbnail img {
  width: 100%;
  height: 108px;
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.031372549), 0px 12px 16px -4px rgba(0, 0, 0, 0.0784313725);
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.magazine-download .document-download-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 32px;
}
.magazine-download .document-download-info-title {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 27px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}
.magazine-download .document-download-info-description {
  font-size: 14px;
  color: #5A677D;
  line-height: 21px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}
.magazine-download p:last-child {
  display: flex;
  justify-content: flex-end;
}
.magazine-download .document-download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  min-width: 215px;
  justify-content: center;
  color: #527081;
  background-color: white;
  border: 1px solid #527081;
  border-radius: 1000px;
  text-decoration: none;
  align-self: flex-end;
  transition: all 0.3s ease-out;
}
.magazine-download .document-download-button:hover {
  border-color: #007AC0;
  background-color: #E8F5FB;
}
.magazine-download .document-download-button:hover .document-download-button-text {
  color: #007AC0;
}
.magazine-download .document-download-button:hover .document-download-button-icon {
  filter: brightness(0) saturate(100%) invert(40%) sepia(90%) saturate(2000%) hue-rotate(180deg) brightness(95%) contrast(95%);
}
.magazine-download .document-download-button .document-download-button-text {
  font-size: 14px;
  color: #527081;
  font-weight: 700;
  line-height: 17px;
  transition: color 0.3s ease-out;
  letter-spacing: 0.02em;
}
.magazine-download .document-download-button .document-download-button-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: filter 0.3s ease-out;
}

.company-management-information-item {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  cursor: pointer;
}
.company-management-information-item:hover .company-management-information-item-image-container .company-management-information-item-image {
  opacity: 0.5;
}
.company-management-information-item:hover .company-management-information-item-content .company-management-information-item-title .company-management-information-item-title-text {
  color: #527081;
}
.company-management-information-item .company-management-information-item-image-container .company-management-information-item-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.company-management-information-item .company-management-information-item-content {
  padding: 16px 24px 24px;
}
.company-management-information-item .company-management-information-item-content .company-management-information-item-sub-title .company-management-information-item-sub-title-text {
  font-size: 14px;
  font-weight: 500;
  color: #527081;
  line-height: 17px;
  letter-spacing: 0.03em;
}
.company-management-information-item .company-management-information-item-content .company-management-information-item-title .company-management-information-item-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 25px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}

.seminars-content-item {
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.seminars-content-item:hover img {
  opacity: 0.5;
}
.seminars-content-item:hover .seminars-content-item-content .seminars-content-item-content-title {
  color: #527081;
}
.seminars-content-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.seminars-content-item .seminars-content-item-content {
  background-color: #FFFFFF;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  flex: 1;
}
.seminars-content-item .seminars-content-item-content .seminars-content-item-content-title {
  padding: 0 24px;
  font-size: 20px;
  font-weight: 700;
  color: #231815;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease-out;
}
.seminars-content-item .seminars-content-item-content .seminars-content-item-content-date-time {
  padding: 16px 24px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #E1EAEE;
}
.seminars-content-item .seminars-content-item-content .seminars-content-item-content-date-time .seminars-content-item-content-date-time-label {
  background-color: #F3F9FF;
  padding: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #006FD6;
  line-height: 21px;
  width: -moz-fit-content;
  width: fit-content;
}
.seminars-content-item .seminars-content-item-content .seminars-content-item-content-date-time .seminars-content-item-content-date-time-value {
  font-size: 14px;
  font-weight: 500;
  color: #527081;
  line-height: 21px;
  letter-spacing: 0.02em;
}

.recruit-other-item {
  cursor: pointer;
}
.recruit-other-item:hover .recruit-other-item-content .recruit-other-item-content-image img {
  opacity: 0.5;
}
.recruit-other-item:hover .recruit-other-item-content .recruit-other-item-content-title {
  color: #527081;
}
.recruit-other-item .recruit-other-item-content {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.recruit-other-item .recruit-other-item-content .recruit-other-item-content-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.recruit-other-item .recruit-other-item-content .recruit-other-item-content-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-underline-offset: 2px;
  line-clamp: 2;
  transition: color 0.3s ease-out;
}

.top-page {
  --kv-safe-max-width: 1440px;
  --kv-scale: 0.85;
  --kv-position-x: 50%;
}
.top-page .section-title .main-title {
  font-size: clamp(44px, 30.629px + 3.4286vw, 80px);
}
.top-page .banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 530px;
  max-height: 530px;
  background-color: #f0f0f0;
}
.top-page .banner .banner-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.top-page .banner .banner-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--kv-position-x) center;
     object-position: var(--kv-position-x) center;
  transform-origin: center center;
}
.top-page .banner .banner-safe-area {
  position: relative;
  z-index: 1;
  width: min(100%, var(--kv-safe-max-width));
  height: 100%;
  margin: 0 auto;
  pointer-events: none;
}
.top-page .banner.banner-en {
  --kv-position-x: 52%;
}

.pick-up {
  background-color: #f3f6f7;
  letter-spacing: 0.02em;
}
.pick-up .inner {
  padding: 60px 0 60px 72px;
}
.pick-up .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006FD6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 48px;
}
.pick-up .section-title .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
}
.pick-up .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.pick-up .pick-up-content .slick-list {
  padding: 0 !important;
  margin-left: 1px;
}
.pick-up .pick-up-content .pick-up-item-list {
  display: flex;
  gap: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  max-width: 1440px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pick-up .pick-up-content .pick-up-item-list::-webkit-scrollbar {
  display: none;
}
.pick-up .pick-up-content .pick-up-item-list:active {
  cursor: grabbing;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item {
  width: 240px;
  margin: 0 30px;
  flex-shrink: 0;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-link:hover .pick-up-item-image {
  opacity: 0.5;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-link:hover .pick-up-item-date-text {
  color: #527081;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-link:hover .pick-up-item-type {
  color: #5A677D;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-link:hover .pick-up-item-title-text {
  color: #527081;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-image img {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid #E1EAEE;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-date {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  height: 21px;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-date .pick-up-item-date-text {
  font-size: 14px;
  font-weight: 500;
  color: #527081;
  line-height: 14px;
  font-family: "Inter", sans-serif !important;
  letter-spacing: 0.03em !important;
  transition: color 0.3s ease-out;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-date .pick-up-item-type {
  font-size: 14px;
  font-weight: 500;
  color: #5A677D;
  line-height: 18px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.3s ease-out;
  letter-spacing: 0.02em;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-title {
  margin-bottom: 24px;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-title .pick-up-item-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease-out;
  letter-spacing: 0.02em;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-tags .pick-up-item-tag {
  border: 1px solid #0053A6;
  border-radius: 1000px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #0053A6;
  line-height: 21px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
  letter-spacing: 0.02em;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-tags .pick-up-item-tag:hover {
  background-color: #CBE9F8;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-link {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-link .pick-up-item-link-text {
  border: 1px solid #0053A6;
  border-radius: 1000px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #0053A6;
  line-height: 21px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background-color 0.3s ease-out;
}
.pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-link .pick-up-item-link-text:hover {
  background-color: #CBE9F8;
}

.service {
  padding: 0 !important;
  background-color: #ffffff !important;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  position: relative;
}
.service .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 72px 145px 72px !important;
  background-color: #ffffff;
}
.service .services-container {
  margin-bottom: 56px;
}
.service .services-container.en {
  margin-bottom: 0;
}
.service .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006FD6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 24px;
  letter-spacing: 0.02em !important;
}
.service .section-title .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
}
.service .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.service .section-title .main-title-container {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}
.service .section-title .main-title-note {
  font-size: 16px !important;
  font-weight: 400;
  color: #231815;
  line-height: 25px;
  height: 75px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  letter-spacing: 0.04em;
}
.service .section-title .main-title-note.en {
  display: block;
  height: 66px;
}
.service .service-header {
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}
.service .service-header.en {
  margin-bottom: 0;
}
.service .service-header .service-header-title {
  position: relative;
  display: inline-block;
}
.service .service-header .service-header-title .service-header-title-text {
  position: relative;
  display: inline-block;
  min-width: 300px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service .service-header .service-header-title .service-header-title-text-en {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 72px;
}
.service .service-header .service-header-title .service-header-title-text-en.service {
  background-image: url("/wp-content/themes/prcd/images/img_service_en.svg");
}
.service .service-header .service-header-title .service-header-title-text-en.domains {
  background-image: url("/wp-content/themes/prcd/images/img_domains_en.svg");
}
.service .service-header .service-header-title .service-header-title-text-en.strengths {
  background-image: url("/wp-content/themes/prcd/images/img_strength_en.svg");
}
.service .service-header .service-header-title .service-header-title-text-en.case {
  background-image: url("/wp-content/themes/prcd/images/img_case_en.svg");
}
.service .service-header .service-header-title .service-header-title-text-en.article {
  background-image: url("/wp-content/themes/prcd/images/img_article_en.svg");
}
.service .service-header .service-header-title .service-header-title-text-en.seminar {
  background-image: url("/wp-content/themes/prcd/images/img_seminar_en.svg");
}
.service .service-header .service-header-title .service-header-title-text-en.material {
  background-image: url("/wp-content/themes/prcd/images/img_material_en.svg");
}
.service .service-header .service-header-title .service-header-title-text-ja {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  line-height: 42px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 1;
}
.service .service-header .service-header-button .common-button-container {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.service .service-content .service-item-list {
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service .service-content .service-item {
  display: flex;
  align-items: center;
  border: 1px solid #E1EAEE;
  padding: 25.5px 32px 25.5px 24px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.03), 0 12px 16px -4px rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
  transition: background-color 0.3s ease-out;
}
.service .service-content .service-item:hover {
  background-color: #F3F9FF;
}
.service .service-content .service-item:hover .service-item-name {
  color: #0053A6;
}
.service .service-content .service-item:hover .service-item-arrow::after {
  content: url("../images/ico_arrow_up_right_hover.svg");
}
.service .service-content .service-item .service-item-name {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 25px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}
.service .service-content .service-item img {
  position: absolute;
  right: 14px;
  top: 15px;
}
.service .service-content .service-item .service-item-arrow {
  position: absolute;
  right: 14px;
  top: 15px;
}
.service .service-content .service-item .service-item-arrow::after {
  transition: content 0.3s ease-out;
  content: url("../images/ico_arrow_up_right.svg");
  transition: content 0.3s ease-out;
}

.strength {
  background-color: #f3f6f7;
}
.strength .inner {
  padding: 120px 72px 60px 72px;
}
.strength .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006FD6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 48px;
}
.strength .section-title .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
}
.strength .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.strength .section-title .main-title-container {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}
.strength .section-title .main-title-note {
  font-size: 16px !important;
  font-weight: 400;
  color: #231815;
  line-height: 25px;
  height: 90px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  letter-spacing: 0.04em;
}
.strength .strength-content {
  position: relative;
  width: 100%;
}
.strength .strength-nav-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  background: #f3f6f7;
}
.strength .strength-nav-tabs .strength-nav-tab-container {
  position: relative;
  width: 240px;
}
.strength .strength-nav-tabs .strength-nav-tab-container::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #0091DA;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.strength .strength-nav-tabs .strength-nav-tab-container.active::after {
  opacity: 1;
}
.strength .strength-nav-tabs .strength-nav-tab-container .tab-indicator {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0091DA;
}
.strength .strength-nav-tabs .strength-nav-tab-container .tab-indicator.active {
  display: block;
}
.strength .strength-nav-tabs.list {
  counter-reset: box;
}
.strength .strength-nav-tabs .box {
  overflow: hidden;
  height: 90px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.02), 0px 6px 6px rgba(0, 0, 0, 0.03), 0px 14px 9px rgba(0, 0, 0, 0.04), 0px 25px 10px rgba(0, 0, 0, 0.01), 0px 40px 11px rgba(0, 0, 0, 0);
}
.strength .strength-nav-tabs .box:hover:not(.active) {
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.02), 0px 6px 6px rgba(0, 0, 0, 0.03), 0px 14px 9px rgba(0, 0, 0, 0.04), 0px 25px 10px rgba(0, 0, 0, 0.01), 0px 40px 11px rgba(0, 0, 0, 0);
  border-bottom: unset;
  transform: translateY(-3px);
}
.strength .strength-nav-tabs .box:hover:not(.active)::before {
  background-color: #F3F9FF;
}
.strength .strength-nav-tabs .box span {
  position: relative;
  z-index: 3;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.strength .strength-nav-tabs .box .tab-text-sp {
  display: none;
}
.strength .strength-nav-tabs .box:after {
  counter-increment: box;
  content: counter(box, decimal-leading-zero);
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 80px;
  width: 96px;
  font-weight: 700;
  height: 96px;
  color: #daeef7;
  font-family: "Inter", sans-serif;
  z-index: 2;
}
.strength .strength-nav-tabs .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  top: 0;
  left: 0;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.strength .strength-nav-tabs .box.active {
  border-bottom-color: #0091da;
}
.strength .strength-nav-tabs .box.active::before {
  background-color: #F3F9FF;
}
.strength .strength-nav-tabs .box.active::after {
  color: #daeef7;
  z-index: 2;
}
.strength .strength-main-content {
  padding: 40px;
  background-color: #ffffff;
}
.strength .strength-main-content .strength-main-content-container {
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  height: 0;
  overflow: hidden;
}
.strength .strength-main-content .strength-main-content-container.active {
  height: 100%;
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  overflow: visible;
}
.strength .strength-text-content {
  flex: 1;
  min-width: 0;
}
.strength .strength-text-content .strength-text-content-header {
  padding-left: 20px;
  border-left: 4px solid #0091DA;
}
.strength .strength-text-content .strength-text-content-header .strength-main-title {
  font-size: 40px;
  font-weight: 700;
  color: #006FD6;
  line-height: 60px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.strength .strength-text-content .strength-text-content-header .strength-intro {
  font-size: 16px;
  font-weight: 400;
  color: #231815;
  line-height: 26px;
  letter-spacing: 0.04em;
}
.strength .strength-text-content .strength-text-content-line {
  width: 100%;
  height: 1px;
  background-color: #E1EAEE;
  margin: 16px 0;
}
.strength .strength-image-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 331px;
}
.strength .strength-image-content > img {
  margin-block: auto;
}
.strength .strength-image-content .strength-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.strength .strength-image-content .strength-button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.strength .strength-section {
  margin-bottom: 24px;
  padding-left: 28px;
}
.strength .strength-section:last-of-type {
  margin-bottom: 0;
}
.strength .strength-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #5A677D;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.strength .strength-challenge-list,
.strength .strength-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strength .strength-challenge-item,
.strength .strength-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #231815;
  line-height: 21px;
}
.strength .strength-challenge-item:last-child,
.strength .strength-service-item:last-child {
  margin-bottom: 0;
}
.strength .strength-challenge-item {
  width: -moz-fit-content;
  width: fit-content;
}
.strength .challenge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.strength .challenge-icon svg {
  width: 100%;
  height: 100%;
}
.strength .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.strength .service-icon svg {
  width: 100%;
  height: 100%;
}
.strength .challenge-text,
.strength .service-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #231815;
  line-height: 24px;
  letter-spacing: 0.02em;
}
.strength .service-text {
  margin-left: 16px;
}
.strength .challenge-text {
  padding: 8px 16px;
  background-color: #F3F9FF;
  border-radius: 1000px;
  letter-spacing: 0.02em;
}
.strength .challenge-text-highlight {
  font-weight: 700;
}
.strength .service-text-highlight {
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.strength .service-text-highlight:hover {
  color: #5A677D;
  text-decoration: none;
}
.strength .strength-illustration {
  width: 331px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.strength .strength-illustration .common-button {
  position: absolute;
  bottom: 0;
}
.strength .strength-illustration .common-button .common-button-container {
  width: 296px;
}
.strength .strength-content .strength-main-container {
  padding: 40px 0px;
  margin-bottom: 16px !important;
  background-color: white;
  display: flex;
  gap: 32px;
  flex-direction: column;
}
.strength .strength-content .strength-main-container .strength-main-content {
  flex-direction: column;
  padding: 0 48px !important;
  gap: 32px;
}
.strength .strength-content .strength-main-container .ourwork {
  background-color: white;
}
.strength .strength-content .strength-main-container .ourwork .inner {
  padding: 0 0 0 48px !important;
}
.strength .strength-content .strength-main-container .ourwork .inner .strength-ourwork-title {
  margin-bottom: 32px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.strength .strength-content .strength-main-container .ourwork .inner .strength-ourwork-title .strength-ourwork-title-text {
  font-size: 24px;
  font-weight: 700;
  color: #231815;
  line-height: 34px;
}
.strength .strength-content .strength-main-container .ourwork .inner .case-slider-controls {
  padding: 0;
  justify-content: center !important;
}
.strength .strength-content .strength-main-container .ourwork .inner .case-slider-controls .case-slider-bar {
  background-color: #F3F6F7;
}
.strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list.slick-initialized .slick-list {
  margin-left: 1px !important;
  padding: 0 !important;
}
.strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item {
  width: 306px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: none !important;
}
.strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-image {
  margin-bottom: 16px;
}
.strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-date-text {
  padding: 0;
}
.strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-title-text {
  padding: 0;
  margin-bottom: 24px;
}
.strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-tags {
  padding: 0;
}
.strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-link {
  margin: 0;
  padding: 0;
}
.strength .strength-content .strength-main-container .magazine {
  background-color: white;
}
.strength .strength-content .strength-main-container .magazine .inner {
  padding: 0 0 0 48px !important;
}
.strength .strength-content .strength-main-container .magazine .inner .strength-magazine-title {
  margin-bottom: 32px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: left;
}
.strength .strength-content .strength-main-container .magazine .inner .strength-magazine-title .strength-magazine-title-text {
  font-size: 24px;
  font-weight: 700;
  color: #231815;
  line-height: 34px;
}
.strength .strength-content .strength-main-container .magazine .inner .case-item-image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.strength .strength-content .strength-main-container .magazine .inner .services-magazine-content .services-magazine-item-list .slick-list {
  margin-left: 1px !important;
  padding: 0 !important;
}
.strength .strength-content .strength-main-container .magazine .inner .services-magazine-content .services-magazine-item-list .slick-list .case-item {
  margin: 0 27px;
}
.strength .strength-content .strength-main-container .magazine .inner .case-slider-controls {
  padding: 0;
  justify-content: center !important;
}
.strength .strength-content .strength-main-container .magazine .inner .case-slider-controls .case-slider-bar {
  background-color: #F3F6F7;
}
.strength .strength-content .strength-main-container .strength-related-content {
  display: none;
}
.strength .strength-content .strength-main-container .strength-related-content.active {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.strength .strength-content .strength-tags {
  padding: 24px 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.strength .strength-content .strength-tags .strength-tag-item {
  font-size: 12px;
  font-weight: 500;
  color: #00649F;
  line-height: 18px;
  cursor: pointer;
  border: 1px solid #0053A6;
  padding: 4px 12px;
  border-radius: 1000px;
}
.strength .strength-content .strength-tags .strength-tag-item:hover {
  background-color: #CBE9F8;
}
.strength .strength-content .strength-nav-tabs.under-tabs .strength-nav-tab-container.active::after {
  content: none;
}

.case,
.case-study {
  background-color: #f3f6f7;
}
.case .inner,
.case-study .inner {
  padding: 60px 0 60px 72px;
}
.case .section-title,
.case-study .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006FD6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 32px;
}
.case .section-title .sub-title,
.case-study .section-title .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
}
.case .section-title .sub-title-icon,
.case-study .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.case .section-title .main-title-container,
.case-study .section-title .main-title-container {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  padding-right: 72px;
}
.case .section-title .main-title-note,
.case-study .section-title .main-title-note {
  font-size: 16px !important;
  font-weight: 400;
  color: #231815;
  line-height: 25px;
  height: 90px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  letter-spacing: 0.04em;
}
.case .case-content .case-item-list.slick-initialized .slick-list,
.case .case-content .services-case-item-list.slick-initialized .slick-list,
.case .services-case-content .case-item-list.slick-initialized .slick-list,
.case .services-case-content .services-case-item-list.slick-initialized .slick-list,
.case-study .case-content .case-item-list.slick-initialized .slick-list,
.case-study .case-content .services-case-item-list.slick-initialized .slick-list,
.case-study .services-case-content .case-item-list.slick-initialized .slick-list,
.case-study .services-case-content .services-case-item-list.slick-initialized .slick-list {
  padding: 0 !important;
  margin-left: 1px !important;
}
.case .case-content .case-item-list.slick-initialized .slick-track,
.case .case-content .services-case-item-list.slick-initialized .slick-track,
.case .services-case-content .case-item-list.slick-initialized .slick-track,
.case .services-case-content .services-case-item-list.slick-initialized .slick-track,
.case-study .case-content .case-item-list.slick-initialized .slick-track,
.case-study .case-content .services-case-item-list.slick-initialized .slick-track,
.case-study .services-case-content .case-item-list.slick-initialized .slick-track,
.case-study .services-case-content .services-case-item-list.slick-initialized .slick-track {
  display: flex !important;
  align-items: stretch;
}
.case .case-content .case-item-list.slick-initialized .slick-slide,
.case .case-content .services-case-item-list.slick-initialized .slick-slide,
.case .services-case-content .case-item-list.slick-initialized .slick-slide,
.case .services-case-content .services-case-item-list.slick-initialized .slick-slide,
.case-study .case-content .case-item-list.slick-initialized .slick-slide,
.case-study .case-content .services-case-item-list.slick-initialized .slick-slide,
.case-study .services-case-content .case-item-list.slick-initialized .slick-slide,
.case-study .services-case-content .services-case-item-list.slick-initialized .slick-slide {
  height: auto;
}
.case .case-content .case-item-list.slick-initialized .slick-slide > .case-item,
.case .case-content .services-case-item-list.slick-initialized .slick-slide > .case-item,
.case .services-case-content .case-item-list.slick-initialized .slick-slide > .case-item,
.case .services-case-content .services-case-item-list.slick-initialized .slick-slide > .case-item,
.case-study .case-content .case-item-list.slick-initialized .slick-slide > .case-item,
.case-study .case-content .services-case-item-list.slick-initialized .slick-slide > .case-item,
.case-study .services-case-content .case-item-list.slick-initialized .slick-slide > .case-item,
.case-study .services-case-content .services-case-item-list.slick-initialized .slick-slide > .case-item {
  height: 100%;
}
.case .case-content .case-item-list,
.case .case-content .services-case-item-list,
.case .services-case-content .case-item-list,
.case .services-case-content .services-case-item-list,
.case-study .case-content .case-item-list,
.case-study .case-content .services-case-item-list,
.case-study .services-case-content .case-item-list,
.case-study .services-case-content .services-case-item-list {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 1440px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.case .case-content .case-item-list::-webkit-scrollbar,
.case .case-content .services-case-item-list::-webkit-scrollbar,
.case .services-case-content .case-item-list::-webkit-scrollbar,
.case .services-case-content .services-case-item-list::-webkit-scrollbar,
.case-study .case-content .case-item-list::-webkit-scrollbar,
.case-study .case-content .services-case-item-list::-webkit-scrollbar,
.case-study .services-case-content .case-item-list::-webkit-scrollbar,
.case-study .services-case-content .services-case-item-list::-webkit-scrollbar {
  display: none;
}
.case .case-content .case-item-list.case-reordering,
.case .case-content .services-case-item-list.case-reordering,
.case .services-case-content .case-item-list.case-reordering,
.case .services-case-content .services-case-item-list.case-reordering,
.case-study .case-content .case-item-list.case-reordering,
.case-study .case-content .services-case-item-list.case-reordering,
.case-study .services-case-content .case-item-list.case-reordering,
.case-study .services-case-content .services-case-item-list.case-reordering {
  cursor: grabbing;
}
.case .case-content .case-item-list .case-item--ghost,
.case .case-content .services-case-item-list .case-item--ghost,
.case .services-case-content .case-item-list .case-item--ghost,
.case .services-case-content .services-case-item-list .case-item--ghost,
.case-study .case-content .case-item-list .case-item--ghost,
.case-study .case-content .services-case-item-list .case-item--ghost,
.case-study .services-case-content .case-item-list .case-item--ghost,
.case-study .services-case-content .services-case-item-list .case-item--ghost {
  opacity: 0.95;
}
.case .case-content .case-item-list .case-item--placeholder,
.case .case-content .services-case-item-list .case-item--placeholder,
.case .services-case-content .case-item-list .case-item--placeholder,
.case .services-case-content .services-case-item-list .case-item--placeholder,
.case-study .case-content .case-item-list .case-item--placeholder,
.case-study .case-content .services-case-item-list .case-item--placeholder,
.case-study .services-case-content .case-item-list .case-item--placeholder,
.case-study .services-case-content .services-case-item-list .case-item--placeholder {
  border: 2px dashed #9fb3c8;
  background: rgba(199, 213, 221, 0.25);
}
.case .case-content .case-item-list .case-item-link .case-item-image,
.case .case-content .services-case-item-list .case-item-link .case-item-image,
.case .services-case-content .case-item-list .case-item-link .case-item-image,
.case .services-case-content .services-case-item-list .case-item-link .case-item-image,
.case-study .case-content .case-item-list .case-item-link .case-item-image,
.case-study .case-content .services-case-item-list .case-item-link .case-item-image,
.case-study .services-case-content .case-item-list .case-item-link .case-item-image,
.case-study .services-case-content .services-case-item-list .case-item-link .case-item-image {
  transition: opacity 0.3s ease-in;
}
.case .case-content .case-item-list .case-item-link .case-item-date-text,
.case .case-content .services-case-item-list .case-item-link .case-item-date-text,
.case .services-case-content .case-item-list .case-item-link .case-item-date-text,
.case .services-case-content .services-case-item-list .case-item-link .case-item-date-text,
.case-study .case-content .case-item-list .case-item-link .case-item-date-text,
.case-study .case-content .services-case-item-list .case-item-link .case-item-date-text,
.case-study .services-case-content .case-item-list .case-item-link .case-item-date-text,
.case-study .services-case-content .services-case-item-list .case-item-link .case-item-date-text {
  transition: color 0.3s ease-in;
}
.case .case-content .case-item-list .case-item-link .case-item-title-text,
.case .case-content .services-case-item-list .case-item-link .case-item-title-text,
.case .services-case-content .case-item-list .case-item-link .case-item-title-text,
.case .services-case-content .services-case-item-list .case-item-link .case-item-title-text,
.case-study .case-content .case-item-list .case-item-link .case-item-title-text,
.case-study .case-content .services-case-item-list .case-item-link .case-item-title-text,
.case-study .services-case-content .case-item-list .case-item-link .case-item-title-text,
.case-study .services-case-content .services-case-item-list .case-item-link .case-item-title-text {
  transition: color 0.3s ease-in;
}
.case .case-content .case-item-list .case-item-link:hover .case-item-image,
.case .case-content .services-case-item-list .case-item-link:hover .case-item-image,
.case .services-case-content .case-item-list .case-item-link:hover .case-item-image,
.case .services-case-content .services-case-item-list .case-item-link:hover .case-item-image,
.case-study .case-content .case-item-list .case-item-link:hover .case-item-image,
.case-study .case-content .services-case-item-list .case-item-link:hover .case-item-image,
.case-study .services-case-content .case-item-list .case-item-link:hover .case-item-image,
.case-study .services-case-content .services-case-item-list .case-item-link:hover .case-item-image {
  opacity: 0.5;
}
.case .case-content .case-item-list .case-item-link:hover .case-item-date-text,
.case .case-content .services-case-item-list .case-item-link:hover .case-item-date-text,
.case .services-case-content .case-item-list .case-item-link:hover .case-item-date-text,
.case .services-case-content .services-case-item-list .case-item-link:hover .case-item-date-text,
.case-study .case-content .case-item-list .case-item-link:hover .case-item-date-text,
.case-study .case-content .services-case-item-list .case-item-link:hover .case-item-date-text,
.case-study .services-case-content .case-item-list .case-item-link:hover .case-item-date-text,
.case-study .services-case-content .services-case-item-list .case-item-link:hover .case-item-date-text {
  color: #527081;
}
.case .case-content .case-item-list .case-item-link:hover .case-item-title-text,
.case .case-content .services-case-item-list .case-item-link:hover .case-item-title-text,
.case .services-case-content .case-item-list .case-item-link:hover .case-item-title-text,
.case .services-case-content .services-case-item-list .case-item-link:hover .case-item-title-text,
.case-study .case-content .case-item-list .case-item-link:hover .case-item-title-text,
.case-study .case-content .services-case-item-list .case-item-link:hover .case-item-title-text,
.case-study .services-case-content .case-item-list .case-item-link:hover .case-item-title-text,
.case-study .services-case-content .services-case-item-list .case-item-link:hover .case-item-title-text {
  color: #527081;
}
.case .case-content .case-item-list .case-item,
.case .case-content .services-case-item-list .case-item,
.case .services-case-content .case-item-list .case-item,
.case .services-case-content .services-case-item-list .case-item,
.case-study .case-content .case-item-list .case-item,
.case-study .case-content .services-case-item-list .case-item,
.case-study .services-case-content .case-item-list .case-item,
.case-study .services-case-content .services-case-item-list .case-item {
  width: 306px;
  flex-shrink: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.03), 0 12px 16px -4px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.case .case-content .case-item-list .case-item:hover .case-item-image,
.case .case-content .services-case-item-list .case-item:hover .case-item-image,
.case .services-case-content .case-item-list .case-item:hover .case-item-image,
.case .services-case-content .services-case-item-list .case-item:hover .case-item-image,
.case-study .case-content .case-item-list .case-item:hover .case-item-image,
.case-study .case-content .services-case-item-list .case-item:hover .case-item-image,
.case-study .services-case-content .case-item-list .case-item:hover .case-item-image,
.case-study .services-case-content .services-case-item-list .case-item:hover .case-item-image {
  opacity: 0.5;
}
.case .case-content .case-item-list .case-item:hover .case-item-date-text,
.case .case-content .services-case-item-list .case-item:hover .case-item-date-text,
.case .services-case-content .case-item-list .case-item:hover .case-item-date-text,
.case .services-case-content .services-case-item-list .case-item:hover .case-item-date-text,
.case-study .case-content .case-item-list .case-item:hover .case-item-date-text,
.case-study .case-content .services-case-item-list .case-item:hover .case-item-date-text,
.case-study .services-case-content .case-item-list .case-item:hover .case-item-date-text,
.case-study .services-case-content .services-case-item-list .case-item:hover .case-item-date-text {
  color: #527081;
}
.case .case-content .case-item-list .case-item:hover .case-item-title-text,
.case .case-content .services-case-item-list .case-item:hover .case-item-title-text,
.case .services-case-content .case-item-list .case-item:hover .case-item-title-text,
.case .services-case-content .services-case-item-list .case-item:hover .case-item-title-text,
.case-study .case-content .case-item-list .case-item:hover .case-item-title-text,
.case-study .case-content .services-case-item-list .case-item:hover .case-item-title-text,
.case-study .services-case-content .case-item-list .case-item:hover .case-item-title-text,
.case-study .services-case-content .services-case-item-list .case-item:hover .case-item-title-text {
  color: #527081;
}
.case .case-content .case-item-list .case-item .case-item-image,
.case .case-content .services-case-item-list .case-item .case-item-image,
.case .services-case-content .case-item-list .case-item .case-item-image,
.case .services-case-content .services-case-item-list .case-item .case-item-image,
.case-study .case-content .case-item-list .case-item .case-item-image,
.case-study .case-content .services-case-item-list .case-item .case-item-image,
.case-study .services-case-content .case-item-list .case-item .case-item-image,
.case-study .services-case-content .services-case-item-list .case-item .case-item-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 32px;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.case .case-content .case-item-list .case-item .case-item-image img,
.case .case-content .services-case-item-list .case-item .case-item-image img,
.case .services-case-content .case-item-list .case-item .case-item-image img,
.case .services-case-content .services-case-item-list .case-item .case-item-image img,
.case-study .case-content .case-item-list .case-item .case-item-image img,
.case-study .case-content .services-case-item-list .case-item .case-item-image img,
.case-study .services-case-content .case-item-list .case-item .case-item-image img,
.case-study .services-case-content .services-case-item-list .case-item .case-item-image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.case .case-content .case-item-list .case-item .case-item-date-text,
.case .case-content .services-case-item-list .case-item .case-item-date-text,
.case .services-case-content .case-item-list .case-item .case-item-date-text,
.case .services-case-content .services-case-item-list .case-item .case-item-date-text,
.case-study .case-content .case-item-list .case-item .case-item-date-text,
.case-study .case-content .services-case-item-list .case-item .case-item-date-text,
.case-study .services-case-content .case-item-list .case-item .case-item-date-text,
.case-study .services-case-content .services-case-item-list .case-item .case-item-date-text {
  padding: 0 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #527081;
  line-height: 14px;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  letter-spacing: 0.03em;
  transition: color 0.3s ease-out;
}
.case .case-content .case-item-list .case-item .case-item-title-text,
.case .case-content .services-case-item-list .case-item .case-item-title-text,
.case .services-case-content .case-item-list .case-item .case-item-title-text,
.case .services-case-content .services-case-item-list .case-item .case-item-title-text,
.case-study .case-content .case-item-list .case-item .case-item-title-text,
.case-study .case-content .services-case-item-list .case-item .case-item-title-text,
.case-study .services-case-content .case-item-list .case-item .case-item-title-text,
.case-study .services-case-content .services-case-item-list .case-item .case-item-title-text {
  padding: 0 24px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease-out;
}
.case .case-content .case-item-list .case-item .case-item-tags,
.case .case-content .services-case-item-list .case-item .case-item-tags,
.case .services-case-content .case-item-list .case-item .case-item-tags,
.case .services-case-content .services-case-item-list .case-item .case-item-tags,
.case-study .case-content .case-item-list .case-item .case-item-tags,
.case-study .case-content .services-case-item-list .case-item .case-item-tags,
.case-study .services-case-content .case-item-list .case-item .case-item-tags,
.case-study .services-case-content .services-case-item-list .case-item .case-item-tags {
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.case .case-content .case-item-list .case-item .case-item-tags .case-item-tag,
.case .case-content .services-case-item-list .case-item .case-item-tags .case-item-tag,
.case .services-case-content .case-item-list .case-item .case-item-tags .case-item-tag,
.case .services-case-content .services-case-item-list .case-item .case-item-tags .case-item-tag,
.case-study .case-content .case-item-list .case-item .case-item-tags .case-item-tag,
.case-study .case-content .services-case-item-list .case-item .case-item-tags .case-item-tag,
.case-study .services-case-content .case-item-list .case-item .case-item-tags .case-item-tag,
.case-study .services-case-content .services-case-item-list .case-item .case-item-tags .case-item-tag {
  border: 1px solid #0053A6;
  border-radius: 1000px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0053A6;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
.case .case-content .case-item-list .case-item .case-item-tags .case-item-tag:hover,
.case .case-content .services-case-item-list .case-item .case-item-tags .case-item-tag:hover,
.case .services-case-content .case-item-list .case-item .case-item-tags .case-item-tag:hover,
.case .services-case-content .services-case-item-list .case-item .case-item-tags .case-item-tag:hover,
.case-study .case-content .case-item-list .case-item .case-item-tags .case-item-tag:hover,
.case-study .case-content .services-case-item-list .case-item .case-item-tags .case-item-tag:hover,
.case-study .services-case-content .case-item-list .case-item .case-item-tags .case-item-tag:hover,
.case-study .services-case-content .services-case-item-list .case-item .case-item-tags .case-item-tag:hover {
  background-color: #CBE9F8;
}
.case .case-content .case-item-list .case-item .case-item-link,
.case .case-content .services-case-item-list .case-item .case-item-link,
.case .services-case-content .case-item-list .case-item .case-item-link,
.case .services-case-content .services-case-item-list .case-item .case-item-link,
.case-study .case-content .case-item-list .case-item .case-item-link,
.case-study .case-content .services-case-item-list .case-item .case-item-link,
.case-study .services-case-content .case-item-list .case-item .case-item-link,
.case-study .services-case-content .services-case-item-list .case-item .case-item-link {
  padding: 0 24px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case .case-content .case-item-list .case-item .case-item-link .case-item-link-text,
.case .case-content .services-case-item-list .case-item .case-item-link .case-item-link-text,
.case .services-case-content .case-item-list .case-item .case-item-link .case-item-link-text,
.case .services-case-content .services-case-item-list .case-item .case-item-link .case-item-link-text,
.case-study .case-content .case-item-list .case-item .case-item-link .case-item-link-text,
.case-study .case-content .services-case-item-list .case-item .case-item-link .case-item-link-text,
.case-study .services-case-content .case-item-list .case-item .case-item-link .case-item-link-text,
.case-study .services-case-content .services-case-item-list .case-item .case-item-link .case-item-link-text {
  border: 1px solid #0053A6;
  border-radius: 1000px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0053A6;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
.case .case-content .case-item-list .case-item .case-item-link .case-item-link-text:hover,
.case .case-content .services-case-item-list .case-item .case-item-link .case-item-link-text:hover,
.case .services-case-content .case-item-list .case-item .case-item-link .case-item-link-text:hover,
.case .services-case-content .services-case-item-list .case-item .case-item-link .case-item-link-text:hover,
.case-study .case-content .case-item-list .case-item .case-item-link .case-item-link-text:hover,
.case-study .case-content .services-case-item-list .case-item .case-item-link .case-item-link-text:hover,
.case-study .services-case-content .case-item-list .case-item .case-item-link .case-item-link-text:hover,
.case-study .services-case-content .services-case-item-list .case-item .case-item-link .case-item-link-text:hover {
  background-color: #CBE9F8;
}
.case .case-content .case-footer-row,
.case .services-case-content .case-footer-row,
.case-study .case-content .case-footer-row,
.case-study .services-case-content .case-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
}
.case .case-content .case-slider-controls,
.case .services-case-content .case-slider-controls,
.case-study .case-content .case-slider-controls,
.case-study .services-case-content .case-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1 1 auto;
  margin: 0 auto;
  padding-right: 106px;
}
.case .case-content .case-slider-controls .case-slider-controls-left,
.case .services-case-content .case-slider-controls .case-slider-controls-left,
.case-study .case-content .case-slider-controls .case-slider-controls-left,
.case-study .services-case-content .case-slider-controls .case-slider-controls-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.case .case-content .case-slider-controls .case-btn,
.case .services-case-content .case-slider-controls .case-btn,
.case-study .case-content .case-slider-controls .case-btn,
.case-study .services-case-content .case-slider-controls .case-btn {
  border: 1px solid #E1EAEE;
  background-color: #E1EAEE;
  border-radius: 4px;
  min-width: 40px;
  padding: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.case .case-content .case-slider-controls .case-btn.case-btn--primary,
.case .services-case-content .case-slider-controls .case-btn.case-btn--primary,
.case-study .case-content .case-slider-controls .case-btn.case-btn--primary,
.case-study .services-case-content .case-slider-controls .case-btn.case-btn--primary {
  background-color: #006FD6;
  border-color: #006FD6;
  color: #ffffff;
}
.case .case-content .case-slider-controls .case-btn.case-btn--primary:hover,
.case .services-case-content .case-slider-controls .case-btn.case-btn--primary:hover,
.case-study .case-content .case-slider-controls .case-btn.case-btn--primary:hover,
.case-study .services-case-content .case-slider-controls .case-btn.case-btn--primary:hover {
  background-color: #66B2FF;
  border-color: #66B2FF;
}
.case .case-content .case-slider-controls .case-btn.case-btn--muted,
.case .services-case-content .case-slider-controls .case-btn.case-btn--muted,
.case-study .case-content .case-slider-controls .case-btn.case-btn--muted,
.case-study .services-case-content .case-slider-controls .case-btn.case-btn--muted {
  background-color: #E1EAEE;
  border-color: #E1EAEE;
  color: #9fb3c8;
}
.case .case-content .case-slider-controls .case-btn.case-btn-pause,
.case .services-case-content .case-slider-controls .case-btn.case-btn-pause,
.case-study .case-content .case-slider-controls .case-btn.case-btn-pause,
.case-study .services-case-content .case-slider-controls .case-btn.case-btn-pause {
  background-color: #A9C0CC;
  border-color: #A9C0CC;
  color: #ffffff;
}
.case .case-content .case-slider-controls .case-btn.case-btn-pause:hover,
.case .services-case-content .case-slider-controls .case-btn.case-btn-pause:hover,
.case-study .case-content .case-slider-controls .case-btn.case-btn-pause:hover,
.case-study .services-case-content .case-slider-controls .case-btn.case-btn-pause:hover {
  background-color: #C7D5DD;
  border-color: #C7D5DD;
}
.case .case-content .case-slider-controls .case-btn:hover,
.case .services-case-content .case-slider-controls .case-btn:hover,
.case-study .case-content .case-slider-controls .case-btn:hover,
.case-study .services-case-content .case-slider-controls .case-btn:hover {
  color: #ffffff;
}
.case .case-content .case-slider-controls .case-slider-bar,
.case .services-case-content .case-slider-controls .case-slider-bar,
.case-study .case-content .case-slider-controls .case-slider-bar,
.case-study .services-case-content .case-slider-controls .case-slider-bar {
  position: relative;
  flex: 0 0 auto;
  width: 500px;
  margin-left: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 999px;
  overflow: hidden;
}
.case .case-content .case-slider-controls .case-slider-thumb,
.case .services-case-content .case-slider-controls .case-slider-thumb,
.case-study .case-content .case-slider-controls .case-slider-thumb,
.case-study .services-case-content .case-slider-controls .case-slider-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #C7D5DD;
  border-radius: 999px;
  pointer-events: auto;
}
.case .case-content .case-button-wrap,
.case .services-case-content .case-button-wrap,
.case-study .case-content .case-button-wrap,
.case-study .services-case-content .case-button-wrap {
  flex: 0 0 auto;
}
.case .case-content .case-button-wrap .common-button-container,
.case .services-case-content .case-button-wrap .common-button-container,
.case-study .case-content .case-button-wrap .common-button-container,
.case-study .services-case-content .case-button-wrap .common-button-container {
  min-width: unset !important;
}

.magazine {
  background-color: #f3f6f7;
}
.magazine .inner {
  padding: 60px 0 60px 72px;
}
.magazine .inner .magazine-content .case-item-list.slick-initialized .slick-list {
  padding: 0 !important;
  margin-left: 2px !important;
}
.magazine .inner .magazine-content .case-item-list.slick-initialized .slick-track {
  display: flex !important;
  align-items: stretch;
}
.magazine .inner .magazine-content .case-item-list.slick-initialized .slick-slide {
  height: auto;
}
.magazine .inner .magazine-content .case-item-list.slick-initialized .slick-slide > .case-item {
  height: 100%;
}
.magazine.ranking-magazine .section-title {
  margin-bottom: 16px !important;
}
.magazine.ranking-magazine .section-title .sub-title {
  font-size: 24px;
  line-height: 34px;
}
.magazine.ranking-magazine .magazine-content .case-item-list {
  padding-left: 16px;
}
.magazine .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006FD6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 40px;
}
.magazine .section-title .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
}
.magazine .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.magazine .section-title .main-title-container {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  padding-right: 72px;
}
.magazine .section-title .main-title-note {
  font-size: 16px !important;
  font-weight: 400;
  color: #231815;
  line-height: 25px;
  height: 90px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  letter-spacing: 0.04em;
}
.magazine .magazine-content .case-item-list,
.magazine .magazine-content .services-magazine-item-list,
.magazine .services-magazine-content .case-item-list,
.magazine .services-magazine-content .services-magazine-item-list {
  display: flex;
  align-items: stretch;
  gap: 54px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  max-width: 1440px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.magazine .magazine-content .case-item-list::-webkit-scrollbar,
.magazine .magazine-content .services-magazine-item-list::-webkit-scrollbar,
.magazine .services-magazine-content .case-item-list::-webkit-scrollbar,
.magazine .services-magazine-content .services-magazine-item-list::-webkit-scrollbar {
  display: none;
}
.magazine .magazine-content .case-item-list.case-reordering,
.magazine .magazine-content .services-magazine-item-list.case-reordering,
.magazine .services-magazine-content .case-item-list.case-reordering,
.magazine .services-magazine-content .services-magazine-item-list.case-reordering {
  cursor: grabbing;
}
.magazine .magazine-content .case-item-list .case-item--ghost,
.magazine .magazine-content .services-magazine-item-list .case-item--ghost,
.magazine .services-magazine-content .case-item-list .case-item--ghost,
.magazine .services-magazine-content .services-magazine-item-list .case-item--ghost {
  opacity: 0.95;
}
.magazine .magazine-content .case-item-list .case-item--placeholder,
.magazine .magazine-content .services-magazine-item-list .case-item--placeholder,
.magazine .services-magazine-content .case-item-list .case-item--placeholder,
.magazine .services-magazine-content .services-magazine-item-list .case-item--placeholder {
  border: 2px dashed #9fb3c8;
  background: rgba(199, 213, 221, 0.25);
}
.magazine .magazine-content .case-item-list .case-item,
.magazine .magazine-content .services-magazine-item-list .case-item,
.magazine .services-magazine-content .case-item-list .case-item,
.magazine .services-magazine-content .services-magazine-item-list .case-item {
  width: 240px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease-out;
}
.magazine .magazine-content .case-item-list .case-item.has-rank,
.magazine .magazine-content .services-magazine-item-list .case-item.has-rank,
.magazine .services-magazine-content .case-item-list .case-item.has-rank,
.magazine .services-magazine-content .services-magazine-item-list .case-item.has-rank {
  padding-top: 24px;
  position: relative;
}
.magazine .magazine-content .case-item-list .case-item.has-rank .case-item-rank,
.magazine .magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank,
.magazine .services-magazine-content .case-item-list .case-item.has-rank .case-item-rank,
.magazine .services-magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank {
  z-index: 1;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 9px;
  left: -15px;
  background-color: #ffffff;
  color: #006FD6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.03), 0 12px 16px -4px rgba(0, 0, 0, 0.08);
}
.magazine .magazine-content .case-item-list .case-item.has-rank .case-item-rank.top-rank,
.magazine .magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank.top-rank,
.magazine .services-magazine-content .case-item-list .case-item.has-rank .case-item-rank.top-rank,
.magazine .services-magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank.top-rank {
  background-color: #1F7FE6;
}
.magazine .magazine-content .case-item-list .case-item.has-rank .case-item-rank.top-rank .case-item-rank-text,
.magazine .magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank.top-rank .case-item-rank-text,
.magazine .services-magazine-content .case-item-list .case-item.has-rank .case-item-rank.top-rank .case-item-rank-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank.top-rank .case-item-rank-text {
  color: #ffffff;
}
.magazine .magazine-content .case-item-list .case-item.has-rank .case-item-rank .case-item-rank-text,
.magazine .magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank .case-item-rank-text,
.magazine .services-magazine-content .case-item-list .case-item.has-rank .case-item-rank .case-item-rank-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item.has-rank .case-item-rank .case-item-rank-text {
  font-size: 18px;
  font-weight: 500;
  color: #006FD6;
  line-height: 27px;
  font-family: "Inter", sans-serif;
}
.magazine .magazine-content .case-item-list .case-item .case-item-image,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-image,
.magazine .services-magazine-content .case-item-list .case-item .case-item-image,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-image {
  width: 100%;
  height: 135px;
  margin-bottom: 16px;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
}
.magazine .magazine-content .case-item-list .case-item .case-item-image img,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-image img,
.magazine .services-magazine-content .case-item-list .case-item .case-item-image img,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.magazine .magazine-content .case-item-list .case-item .case-item-date-text,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-date-text,
.magazine .services-magazine-content .case-item-list .case-item .case-item-date-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-date-text {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #527081;
  line-height: 14px;
  font-family: "Inter", sans-serif !important;
}
.magazine .magazine-content .case-item-list .case-item .case-item-title-text,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-title-text,
.magazine .services-magazine-content .case-item-list .case-item .case-item-title-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-title-text {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.magazine .magazine-content .case-item-list .case-item .case-item-tags,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-tags,
.magazine .services-magazine-content .case-item-list .case-item .case-item-tags,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.magazine .magazine-content .case-item-list .case-item .case-item-tags .case-item-tag,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-tags .case-item-tag,
.magazine .services-magazine-content .case-item-list .case-item .case-item-tags .case-item-tag,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-tags .case-item-tag {
  border: 1px solid #0053A6;
  border-radius: 1000px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0053A6;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
.magazine .magazine-content .case-item-list .case-item .case-item-tags .case-item-tag:hover,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-tags .case-item-tag:hover,
.magazine .services-magazine-content .case-item-list .case-item .case-item-tags .case-item-tag:hover,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-tags .case-item-tag:hover {
  background-color: #CBE9F8;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link .case-item-image,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-image,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link .case-item-image,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-image {
  transition: opacity 0.3s ease-in;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link .case-item-date-text,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-date-text,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link .case-item-date-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-date-text {
  transition: color 0.3s ease-in;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link .case-item-title-text,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-title-text,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link .case-item-title-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-title-text {
  transition: color 0.3s ease-in;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link:hover .case-item-image,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link:hover .case-item-image,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link:hover .case-item-image,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link:hover .case-item-image {
  opacity: 0.5;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link:hover .case-item-date-text,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link:hover .case-item-date-text,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link:hover .case-item-date-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link:hover .case-item-date-text {
  color: #527081;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link:hover .case-item-title-text,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link:hover .case-item-title-text,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link:hover .case-item-title-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link:hover .case-item-title-text {
  color: #527081;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link .case-item-link-text,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-link-text,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link .case-item-link-text,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-link-text {
  border: 1px solid #0053A6;
  border-radius: 1000px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0053A6;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
.magazine .magazine-content .case-item-list .case-item .case-item-link .case-item-link-text:hover,
.magazine .magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-link-text:hover,
.magazine .services-magazine-content .case-item-list .case-item .case-item-link .case-item-link-text:hover,
.magazine .services-magazine-content .services-magazine-item-list .case-item .case-item-link .case-item-link-text:hover {
  background-color: #CBE9F8;
}
.magazine .magazine-content .case-footer-row,
.magazine .services-magazine-content .case-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
}
.magazine .magazine-content .case-slider-controls,
.magazine .services-magazine-content .case-slider-controls {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1 1 auto;
  justify-content: center;
  margin: 0 auto;
  padding-right: 72px;
}
.magazine .magazine-content .case-slider-controls .case-slider-controls-left,
.magazine .services-magazine-content .case-slider-controls .case-slider-controls-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.magazine .magazine-content .case-slider-controls .case-btn,
.magazine .services-magazine-content .case-slider-controls .case-btn {
  border: 1px solid #E1EAEE;
  background-color: #E1EAEE;
  border-radius: 4px;
  min-width: 40px;
  padding: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.magazine .magazine-content .case-slider-controls .case-btn.case-btn--primary,
.magazine .services-magazine-content .case-slider-controls .case-btn.case-btn--primary {
  background-color: #006FD6;
  border-color: #006FD6;
  color: #ffffff;
}
.magazine .magazine-content .case-slider-controls .case-btn.case-btn--primary:hover,
.magazine .services-magazine-content .case-slider-controls .case-btn.case-btn--primary:hover {
  background-color: #66B2FF;
  border-color: #66B2FF;
}
.magazine .magazine-content .case-slider-controls .case-btn.case-btn--muted,
.magazine .services-magazine-content .case-slider-controls .case-btn.case-btn--muted {
  background-color: #E1EAEE;
  border-color: #E1EAEE;
  color: #9fb3c8;
}
.magazine .magazine-content .case-slider-controls .case-btn.case-btn-pause,
.magazine .services-magazine-content .case-slider-controls .case-btn.case-btn-pause {
  background-color: #A9C0CC;
  border-color: #A9C0CC;
  color: #ffffff;
}
.magazine .magazine-content .case-slider-controls .case-btn.case-btn-pause:hover,
.magazine .services-magazine-content .case-slider-controls .case-btn.case-btn-pause:hover {
  background-color: #C7D5DD;
  border-color: #C7D5DD;
}
.magazine .magazine-content .case-slider-controls .case-btn:hover,
.magazine .services-magazine-content .case-slider-controls .case-btn:hover {
  color: #ffffff;
}
.magazine .magazine-content .case-slider-controls .case-slider-bar,
.magazine .services-magazine-content .case-slider-controls .case-slider-bar {
  position: relative;
  flex: 0 0 auto;
  width: 500px;
  margin-left: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 999px;
  overflow: hidden;
}
.magazine .magazine-content .case-slider-controls .case-slider-thumb,
.magazine .services-magazine-content .case-slider-controls .case-slider-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #C7D5DD;
  border-radius: 999px;
  pointer-events: auto;
}
.magazine .magazine-content .case-button-wrap,
.magazine .services-magazine-content .case-button-wrap {
  flex: 0 0 auto;
}

.news {
  padding: 0 !important;
  background-color: #ffffff;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  position: relative;
}
.news .inner {
  padding: 60px 72px 60px 72px !important;
}
.news .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006FD6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 24px;
}
.news .section-title .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
}
.news .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.news .section-title .main-title-container {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}
.news .news-content .news-item-list:first-child {
  border-top: 1px solid #E1EAEE;
}
.news .news-content .news-item {
  padding: 24px 32px;
  display: flex;
  border-bottom: 1px solid #E1EAEE;
  cursor: pointer;
  gap: 8px;
  transition: background-color 0.6s ease-in;
}
.news .news-content .news-item:hover {
  background-color: #F3F6F7;
}
.news .news-content .news-item:hover .news-item-title .news-item-title-text {
  color: #5A677D;
}
.news .news-content .news-item .news-item-title .news-item-title-text {
  transition: color 0.6s ease-in;
  color: #231815;
}
.news .news-content .news-item .news-item-content {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 280px;
  max-width: 280px;
}
.news .news-content .news-item .news-item-content .news-item-date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #527081;
  line-height: 14px;
}
.news .news-content .news-item .news-item-content .news-item-date .news-item-date-text {
  font-family: "Inter", sans-serif !important;
}
.news .news-content .news-item .news-item-content .news-item-types {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-direction: column;
}
.news .news-content .news-item .news-item-content .news-item-type {
  background-color: #ffffff;
  padding: 4px 12px;
  border: 1px solid #B9540F;
  border-radius: 1000px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #B9540F;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.news .news-content .news-item .news-item-content .news-item-type.is-news-release {
  border-color: #00649F;
  color: #00649F;
}
.news .news-content .news-item .news-item-content .news-item-type.is-news-release .news-item-type-text {
  color: #00649F;
}
.news .news-content .news-item .news-item-content .news-item-type.is-news-release:hover {
  background-color: #CBE9F8;
}
.news .news-content .news-item .news-item-content .news-item-type:hover {
  background-color: #FFF3E8;
}
.news .news-content .news-item .news-item-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news .news-button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.news .news-button {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.recruit {
  background-color: #f3f6f7;
}
.recruit .inner {
  padding: 120px 0 120px 72px !important;
  display: flex;
  gap: 60px;
}
.recruit .inner .section-title {
  font-size: 80px;
  font-weight: 700;
  color: #006FD6;
  text-align: left;
  line-height: 96px;
  margin-bottom: 24px;
}
.recruit .inner .section-title .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
}
.recruit .inner .section-title .sub-title-icon {
  width: 8px;
  height: 8px;
  background-color: #68BEE4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.recruit .inner .section-title .main-title {
  margin-bottom: 24px !important;
}
.recruit .inner .section-title .note {
  font-size: 16px;
  font-weight: 400;
  color: #231815;
  line-height: 26px;
}
.recruit .inner .section-title .recruit-button-container {
  margin-top: 24px;
  display: flex;
}
.recruit .inner .section-title .recruit-button-container .recruit-button .common-button-container {
  min-width: unset !important;
}
.recruit .inner .recruit-content {
  min-width: 635px;
  flex: 1;
  background-image: url("/wp-content/themes/prcd/images/img_recruit.png");
  height: 405px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slick-track {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.contact-and-download {
  position: relative;
  z-index: 2;
}
.contact-and-download .section-contact-and-download-container {
  display: flex;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
}
.contact-and-download .section-download {
  background-color: #A9C0CC;
  padding: 32px 40px 32px 72px;
  flex: 1;
}
.contact-and-download .section-download .section-download-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.contact-and-download .section-download .section-download-title .section-download-title-text {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  line-height: 42px;
  letter-spacing: 0.02em;
}
.contact-and-download .section-download .section-download-content {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.contact-and-download .section-download .section-download-content .section-download-content-text {
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  line-height: 21px;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.contact-and-download .section-download .section-download-content .section-download-button {
  width: -moz-max-content;
  width: max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  flex: 0 0 auto;
}
.contact-and-download .section-download .section-download-content .section-download-button .common-button-container {
  min-width: -moz-max-content;
  min-width: max-content;
}
.contact-and-download .section-download .section-download-content .section-download-button .common-button-text {
  white-space: nowrap;
}
.contact-and-download .section-contact {
  background-color: #E1EAEE;
  padding: 32px 72px 32px 40px;
  flex: 1;
}
.contact-and-download .section-contact .section-contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.contact-and-download .section-contact .section-contact-title .section-contact-title-text {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  line-height: 42px;
  letter-spacing: 0.02em;
}
.contact-and-download .section-contact .section-contact-content {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  justify-content: space-between;
}
.contact-and-download .section-contact .section-contact-content .section-contact-content-text {
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  line-height: 21px;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.contact-and-download .section-contact .section-contact-content .section-contact-button {
  min-width: 180px;
}

.contact-inquiry {
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.contact-inquiry .inner {
  padding: 60px 72px;
}
.contact-inquiry .contact-inquiry-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.contact-inquiry .contact-inquiry-header .contact-inquiry-icon {
  width: 32px;
  height: 32px;
  fill: #0066cc;
}
.contact-inquiry .contact-inquiry-header .contact-inquiry-title {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  line-height: 42px;
  letter-spacing: 0.04em;
}
.contact-inquiry .contact-inquiry-text {
  font-size: 18px;
  font-weight: 500;
  color: #231815;
  line-height: 29px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.contact-inquiry .contact-inquiry-btn-wrap {
  display: flex;
  justify-content: center;
}
.contact-inquiry .contact-inquiry-btn-wrap .common-button-container {
  min-width: 180px !important;
}

.customer {
  max-width: 1440px;
  margin: auto;
  background-color: #F3F6F7;
}
.customer .inner {
  padding: 160px 72px;
}
.customer .inner.no-items {
  padding: 30px 0;
}
.customer .inner.no-items.pr {
  padding-right: 24px;
}
.customer .customer-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}
.customer .customer-slider {
  flex: 1;
  overflow: hidden;
}
.customer .customer-slider .slick-list {
  margin: 0 -10px;
  padding: 0 !important;
}
.customer .customer-slider .slick-track {
  display: flex;
  align-items: center;
}
.customer .customer-slider .slick-slide {
  height: auto;
  float: left;
  flex-shrink: 0;
}
.customer .customer-slider .customer-item {
  padding: 0;
  margin: 0 10px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
.customer .customer-slider .customer-item img {
  width: 100%;
  max-width: 220px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
.customer .customer-slider .customer-item:hover img {
  opacity: 0.5;
}
.customer .customer-slider-nav {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: none;
  background-color: #006FD6;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  flex-shrink: 0;
  outline: none;
}
.customer .customer-slider-nav i {
  font-size: 20px;
}
.customer .customer-slider-nav:hover:not(:disabled) {
  background-color: #66B2FF;
  color: #ffffff;
}
.customer .customer-slider-nav:disabled {
  background-color: #E1EAEE;
  color: #231815;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.csi-contact {
  background-color: #E1EAEE;
}
.csi-contact .inner {
  max-width: 900px;
  padding: 60px 72px;
}
.csi-contact .csi-contact-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.csi-contact .csi-contact-header {
  text-align: center;
}
.csi-contact .csi-contact-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.csi-contact .csi-contact-icon {
  width: 32px;
  height: 32px;
}
.csi-contact .csi-contact-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0);
}
.csi-contact .csi-contact-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0.04em;
  color: #333333;
  margin: 0;
}
.csi-contact .csi-contact-subtitle {
  letter-spacing: 0.02em;
}
.csi-contact .csi-contact-subtitle .csi-contact-subititle {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  color: #231815;
  line-height: 31px;
  margin: 0;
  letter-spacing: 0.04em;
}
.csi-contact .csi-contact-subtitle .csi-contact-class {
  font-size: 24px;
  font-weight: 700;
  color: #231815;
  line-height: 33px;
  letter-spacing: 0.04em;
}
.csi-contact .csi-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.csi-contact .csi-contact-card {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #ffffff;
  padding: 24px 0;
  flex-direction: column;
}
.csi-contact .csi-contact-card .csi-contact-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.csi-contact .csi-contact-card-icon-top {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.csi-contact .csi-contact-card-icon-top img {
  width: 23px;
  height: 23px;
  filter: brightness(0);
}
.csi-contact .csi-contact-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: #231815;
  letter-spacing: 0.04em;
}
.csi-contact .csi-contact-card-value {
  font-size: 20px;
  font-weight: 500;
  color: #5A677D;
  line-height: 30px;
  letter-spacing: 0.02em;
}
.csi-contact .csi-contact-card-email {
  font-size: 20px;
  font-size: 500;
  line-height: 30px;
  text-decoration: underline;
  letter-spacing: 0.03em;
  transition: all 0.3s ease-out;
}
.csi-contact .csi-contact-card-email:hover {
  color: #5A677D;
  text-decoration: none;
}
.csi-contact .csi-contact-card-desc {
  font-size: 14px;
  color: #5A677D;
  margin: 0;
  line-height: 19px;
}

.csi-research-theme-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: start;
}
.csi-research-theme-container .csi-research-theme-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  cursor: pointer;
}
.csi-research-theme-container .csi-research-theme-item:hover img {
  opacity: 0.5;
}
.csi-research-theme-container .csi-research-theme-item:hover .csi-research-theme-item-content .csi-research-theme-item-title {
  color: #527081;
}
.csi-research-theme-container .csi-research-theme-item:hover .csi-research-theme-item-content .csi-research-theme-item-sub-title {
  transition: all 0.3s ease-out;
  color: #527081;
}
.csi-research-theme-container .csi-research-theme-item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.031372549), 0px 12px 16px -4px rgba(0, 0, 0, 0.0784313725);
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.csi-research-theme-container .csi-research-theme-item .csi-research-theme-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
}
.csi-research-theme-container .csi-research-theme-item .csi-research-theme-item-content .csi-research-theme-item-title {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: #231815;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}
.csi-research-theme-container .csi-research-theme-item .csi-research-theme-item-content .csi-research-theme-item-sub-title {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #231815;
  letter-spacing: 0.02em;
  transition: color 0.3s ease-out;
}

.footer {
  background: #231815;
  color: #FFFFFF;
  padding: 40px 72px;
}
.footer .container {
  padding: 0;
}
.footer .copyright-area {
  width: unset;
}
.footer .copyright-area .inner {
  width: unset;
}
.footer .description {
  font-size: 12px;
  margin-top: 3px;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease-out;
}
.footer .description:hover {
  color: #A9C0CC;
}
.footer .footer-content-pc {
  margin: 0;
  display: flex;
  margin-bottom: 15px;
  justify-content: space-between;
  gap: 0;
}
.footer .footer-content-pc .footer-nav-left {
  width: 20%;
}
.footer .footer-content-pc .footer-nav-right {
  width: 80%;
  display: flex;
  gap: 40px;
}
.footer .footer-content-pc .footer-nav-right .footer-nav-main {
  display: flex;
  width: 60%;
}
.footer .footer-content-pc .footer-nav-right .footer-nav-main.en {
  width: 50%;
}
.footer .footer-content-pc .footer-nav-right .footer-nav-main .footer-nav-column {
  width: 33.3333%;
}
.footer .footer-content-pc .footer-nav-right .footer-nav-main .footer-nav-column.en {
  width: 50%;
}
.footer .footer-content-pc .footer-nav-right .footer-nav-secondary {
  width: 40%;
  display: flex;
  gap: 40px;
}
.footer .footer-content-pc .footer-nav-right .footer-nav-secondary.en {
  width: 50%;
}
.footer .footer-content-pc .footer-nav-right .footer-nav-secondary .footer-nav-column {
  width: 50%;
}
.footer .footer-content-sp {
  display: none;
  margin: 0 auto;
  margin-bottom: 40px;
}
.footer .footer-nav-column:nth-child(2) {
  width: 237px;
  flex-shrink: 0;
}
.footer .footer-nav-column:nth-child(3) {
  width: 237px;
  flex-shrink: 0;
}
.footer .footer-nav-column:nth-child(4) {
  margin-right: 50px;
}
.footer .footer-nav-column .footer-logo {
  margin-bottom: 0;
  width: 193px;
  margin-right: 40px;
}
.footer .footer-nav-column .footer-logo a {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  transition: opacity 0.3s ease-out;
}
.footer .footer-nav-column .footer-logo a:hover {
  opacity: 0.8;
}
.footer .footer-nav-column .footer-logo .logo-main {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}
.footer .footer-nav-column .footer-logo .logo-sub {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin-top: 2px;
}
.footer .footer-nav-column .footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  margin-bottom: 16px;
  color: #FFFFFF;
  cursor: pointer;
}
.footer .footer-nav-column .footer-nav-title.footer-link-with-dash {
  font-weight: 500;
}
.footer .footer-nav-column .footer-nav-title:first-child {
  margin-top: 0;
}
.footer .footer-nav-column .footer-nav-title:hover {
  color: #A9C0CC;
}
.footer .footer-nav-column .footer-nav-title-xs {
  cursor: pointer;
}
.footer .footer-nav-column .footer-nav-title-xs:hover {
  color: #A9C0CC;
}
.footer .footer-nav-column .footer-nav-title-xs {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 20px;
  color: #FFFFFF;
  line-height: 22px;
}
.footer .footer-nav-column .footer-nav-list {
  list-style: none;
  margin-bottom: 20px;
}
.footer .footer-nav-column .footer-nav-list li {
  margin-bottom: 8px;
  cursor: pointer;
  line-height: 18px;
}
.footer .footer-nav-column .footer-nav-list li:last-child {
  margin-bottom: 0;
}
.footer .footer-nav-column .footer-nav-list li a {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: #FFFFFF;
  transition: color 0.3s ease-out;
}
.footer .footer-nav-column .footer-nav-list li a.footer-link-with-dash {
  font-size: 14px;
  font-weight: 500;
}
.footer .footer-nav-column .footer-nav-list li a:hover {
  color: #A9C0CC;
}
.footer .footer-nav-column .footer-nav-list li:has(a.footer-link-with-dash) {
  margin-bottom: 16px;
}
.footer .footer-nav-column.footer-col-1 .footer-logo {
  margin-bottom: 30px;
}
.footer .footer-nav-column.footer-col-4 .footer-nav-title {
  margin-bottom: 15px;
}
.footer .footer-nav-column.footer-nav-column-mt {
  margin-top: 65px;
}
.footer .footer-sp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}
.footer .footer-sp-header .back-to-top-sp {
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer .footer-sp-header .footer-logo {
  margin-bottom: 0;
}
.footer .footer-sp-header .footer-logo img {
  max-height: 40px;
  width: auto;
}
.footer .back-to-top-sp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #FFFFFF;
  transition: color 0.3s ease-out;
}
.footer .back-to-top-sp:hover {
  color: #A9C0CC;
}
.footer .back-to-top-sp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer .footer-sp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer .footer-sp-column {
  display: flex;
  flex-direction: column;
}
.footer .footer-sp-column .footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 20px;
  color: #FFFFFF;
  line-height: 20px;
}
.footer .footer-sp-column .footer-nav-title:first-child {
  margin-top: 0;
}
.footer .footer-sp-column .footer-nav-title:nth-of-type(2) {
  margin-top: 5px;
}
.footer .footer-sp-column .footer-nav-title:nth-of-type(3) {
  margin-top: 5px;
}
.footer .footer-sp-column .footer-nav-title:nth-of-type(4), .footer .footer-sp-column .footer-nav-title:nth-of-type(5) {
  margin-top: 5px;
}
.footer .footer-sp-column .footer-nav-title:hover {
  color: #A9C0CC;
}
.footer .footer-sp-column .footer-nav-title-xs {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 20px;
  color: #FFFFFF;
  line-height: 22px;
  cursor: pointer;
}
.footer .footer-sp-column .footer-nav-title-xs:hover {
  color: #A9C0CC;
}
.footer .footer-sp-column .footer-nav-list {
  list-style: none;
  margin-bottom: 20px;
}
.footer .footer-sp-column .footer-nav-list li {
  margin-bottom: 8px;
}
.footer .footer-sp-column .footer-nav-list li a {
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  transition: color 0.3s ease-out;
  line-height: 18px;
}
.footer .footer-sp-column .footer-nav-list li a.footer-link-with-dash {
  font-weight: 500;
}
.footer .footer-sp-column .footer-nav-list li a:hover {
  color: #A9C0CC;
}
.footer .footer-sp-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 245, 220, 0.3);
}
.footer .footer-sp-links.csi {
  grid-template-columns: 1fr;
  border-top: none;
}
.footer .footer-sp-link {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
}
.footer .footer-sp-link:hover {
  color: #FFFFFF;
}
.footer .footer-divider {
  margin: 10px 32px 30px;
  height: 1px;
  background: rgba(245, 245, 220, 0.3);
}
.footer .footer-bottom {
  margin: 0 auto;
  position: relative;
}
.footer .footer-bottom .footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.footer .footer-bottom .footer-social .social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.footer .footer-bottom .footer-social .social-icon:hover {
  color: #A9C0CC;
}
.footer .footer-bottom .footer-social .social-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: none;
}
.footer .footer-bottom .footer-social .social-icon:hover img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(15%) saturate(500%) hue-rotate(180deg) brightness(0.85);
}
.footer .footer-bottom .footer-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: center;
  flex-wrap: nowrap;
  margin: 8px 0;
}
.footer .footer-bottom .footer-links a {
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 400;
  transition: color 0.3s ease-out;
  white-space: nowrap;
}
.footer .footer-bottom .footer-links a:hover {
  color: #A9C0CC;
}
.footer .footer-bottom .footer-copyright-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-bottom .footer-copyright-wrapper .footer-copyright {
  font-size: 12px;
  color: #E1EAEE;
  margin-top: 8px;
  font-weight: 500;
}
.footer .footer-bottom .footer-copyright-wrapper .back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #FFFFFF;
  transition: color 0.3s ease-out;
}
.footer .footer-bottom .footer-copyright-wrapper .back-to-top:hover {
  color: #A9C0CC;
}
.footer .footer-bottom .footer-copyright-wrapper .back-to-top svg {
  width: 16px;
  height: 16px;
}
.footer .footer-bottom > div:last-child {
  position: absolute;
  right: -20px;
  bottom: 0;
}
.footer .footer-bottom > div:last-child .back-to-top {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  transform: rotate(90deg);
  transform-origin: right top;
  white-space: nowrap;
  position: fixed;
  right: 27px;
  bottom: 0;
  z-index: 10;
}
.footer .footer-bottom > div:last-child .back-to-top:hover {
  color: #A9C0CC;
}
.footer .footer-bottom > div:last-child .back-to-top:hover .back-to-top-arrow {
  background-image: url("/wp-content/themes/prcd/images/ico_arrow_up_blue.svg");
}
.footer .footer-bottom > div:last-child .back-to-top:hover .text-back-to-top {
  transition: all 0.3s ease-out;
  color: #0053A6;
}
.footer .footer-bottom > div:last-child .back-to-top .back-to-top-arrow {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
  transition: all 0.3s ease-out;
  background-image: url("/wp-content/themes/prcd/images/ico_arrow_up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header-mobile {
  display: none;
  color: #111;
  padding: 30px 0 20px;
}
.header-mobile a {
  color: inherit;
  transition: all 0.3s ease-out;
}
.header-mobile a:hover {
  color: inherit;
  opacity: 0.8;
}
.header-mobile .header-mobile-content {
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.header-mobile .header-mobile-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.header-mobile .header-mobile-column {
  display: flex;
  flex-direction: column;
}
.header-mobile .header-mobile-column .header-mobile-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 20px;
  color: inherit;
  line-height: 20px;
}
.header-mobile .header-mobile-column .header-mobile-title:first-child {
  margin-top: 0;
}
.header-mobile .header-mobile-column .header-mobile-list {
  list-style: none;
  margin-bottom: 20px;
}
.header-mobile .header-mobile-column .header-mobile-list li {
  margin-bottom: 8px;
}
.header-mobile .header-mobile-column .header-mobile-list li a {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.header-mobile .header-mobile-column .header-mobile-list li a.header-mobile-link-with-dash {
  font-size: 14px;
  font-weight: 500;
}
.header-mobile .header-mobile-links {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  /* ===== HEADER ===== */
}
.header-mobile .header-mobile-links .header-mobile-header {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 15px;
}
.header-mobile .header-mobile-links .header-mobile-header .header-mobile-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.header-mobile .header-mobile-links .header-mobile-content {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.header-mobile .header-mobile-links .search-box {
  position: relative;
  width: 258px;
}
.header-mobile .header-mobile-links .search-box input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 16px;
  border-radius: 10px;
  border: none;
  background: #fff;
  font-size: 14px;
  outline: none;
}
.header-mobile .header-mobile-links .search-box input::-moz-placeholder {
  color: #5a677d;
}
.header-mobile .header-mobile-links .search-box input::placeholder {
  color: #5a677d;
}
.header-mobile .header-mobile-links .search-box .icon-search {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.header-mobile .header-mobile-links {
  /* ===== LANGUAGE ===== */
}
.header-mobile .header-mobile-links .lang-selector {
  display: flex;
  gap: 8px !important;
  font-size: 14px;
  color: #231815;
  font-family: "Inter", sans-serif !important;
}
.header-mobile .header-mobile-links .lang-selector .lang-active {
  font-weight: 500;
  opacity: 0.5;
}
.header-mobile .header-mobile-links .lang-selector .lang-option {
  cursor: pointer;
  transition: all 0.3s ease-out;
  opacity: 1;
}
.header-mobile .header-mobile-links .lang-selector .lang-option.lang-active {
  opacity: 0.5;
}
.header-mobile .header-mobile-divider {
  margin: 0 auto;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 40px auto 30px;
}
.header-mobile .header-mobile-bottom {
  margin: 0 auto;
  position: relative;
}
.header-mobile .header-mobile-bottom .header-mobile-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
.header-mobile .header-mobile-bottom .header-mobile-social .header-mobile-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}
.header-mobile .header-mobile-bottom .header-mobile-social .header-mobile-social-icon:hover {
  opacity: 0.7;
  transform: translateY(-3px);
}
.header-mobile .header-mobile-bottom .header-mobile-social .header-mobile-social-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0);
}
.header-mobile .header-mobile-bottom .header-mobile-legal-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
  row-gap: 12px;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.header-mobile .header-mobile-bottom .header-mobile-legal-links a {
  font-size: 12px;
  white-space: nowrap;
}
.header-mobile .header-mobile-bottom .header-mobile-copyright-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-mobile .header-mobile-bottom .header-mobile-copyright-wrapper .header-mobile-copyright {
  font-size: 12px;
  color: #66889B;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  display: none;
  position: relative;
}
.mobile-menu-toggle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.mobile-menu-toggle .menu-icon {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.mobile-menu-toggle .close-icon {
  width: 12px;
  height: 12px;
  opacity: 0;
}
.mobile-menu-toggle.active .menu-icon {
  opacity: 0;
}
.mobile-menu-toggle.active .close-icon {
  opacity: 1;
}

.contents-area {
  margin: 0 auto !important;
  width: 100% !important;
  padding-top: 96px !important;
  padding-bottom: 0 !important;
}
.contents-area .content.mainvisual {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0;
  padding-right: 0;
}

.materials {
  background-color: #f3f6f7;
}
.materials .inner {
  padding: 120px 72px 97px 72px !important;
}
.materials .materials-content {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.materials .materials-content .slick-track {
  display: flex;
  align-items: stretch;
  padding-bottom: 24px;
}
.materials .materials-content .slick-slide {
  height: auto;
}
.materials .materials-content .slick-slide > div {
  height: 100%;
}
.materials .materials-content .materials-item {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  max-width: 300px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.materials .materials-content .materials-item:hover .materials-item-image img {
  opacity: 0.5;
}
.materials .materials-content .materials-item:hover .materials-item-content .materials-item-content-title {
  color: #527081;
}
.materials .materials-content .materials-item:hover .materials-item-content .materials-item-content-description {
  color: #527081;
}
.materials .materials-content .materials-item .materials-item-image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.materials .materials-content .materials-item .materials-item-content {
  padding: 16px 24px 24px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-title {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 25px;
  margin-bottom: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease-out;
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-description {
  max-width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: #231815;
  line-height: 18px;
  margin-bottom: 16px;
  transition: color 0.3s ease-out;
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-description p {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-button {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-button .button-download {
  border-radius: 1000px;
  background: #ffffff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  border: 1px solid #527081;
  color: #527081;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.02em;
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-button .button-download:hover {
  background: #E8F5FB;
  border-color: #007AC0;
  color: #007AC0;
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-button .button-download:hover .materials-item-content-button-icon {
  background-image: url("/wp-content/themes/prcd/images/ico_download_hover.svg");
}
.materials .materials-content .materials-item .materials-item-content .materials-item-content-button-icon {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/wp-content/themes/prcd/images/ico_download.svg");
}
.materials .materials-content .materials-item .materials-item-bottom {
  flex: 1 0 auto;
}
.materials .materials-item-bottom {
  padding: 24px;
  background: #F3F6F7;
}
.materials .materials-item-bottom .materials-item-bottom-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.materials .materials-item-bottom .materials-item-bottom-tags .materials-item-bottom-tag {
  padding: 4px 12px;
  border-radius: 1000px;
  border: 1px solid #0053A6;
  color: #0053A6;
  line-height: 18px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.materials .materials-item-bottom .materials-item-bottom-tags .materials-item-bottom-tag:hover {
  background: #CBE9F8;
  border-color: #00649F;
  color: #00649F;
}
.materials .materials-item-bottom .materials-item-bottom-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.materials .materials-item-bottom .materials-item-bottom-links .materials-item-bottom-link {
  padding: 4px 12px;
  border-radius: 1000px;
  border: 1px solid #0053A6;
  color: #0053A6;
  line-height: 18px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.materials .materials-item-bottom .materials-item-bottom-links .materials-item-bottom-link:hover {
  background: #CBE9F8;
  border-color: #00649F;
  color: #00649F;
}
.materials .materials-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.contact-free-consulting .section-contact-free-consulting-container {
  display: flex;
  justify-content: center;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting {
  padding: 40px 40px 40px 72px;
  flex: 1;
  background-color: #A9C0CC;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-title .section-free-consulting-title-text {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  line-height: 42px;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 171px;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content .section-free-consulting-content-image {
  width: 160px;
  height: 167px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content .section-free-consulting-content-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  gap: 16px;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content .section-free-consulting-content-text .section-free-consulting-content-text-description {
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  line-height: 21px;
}
.contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content .section-free-consulting-content-text .section-free-consulting-content-button {
  display: flex;
  justify-content: flex-end;
}
.contact-free-consulting .section-contact-free-consulting-container .section-contact {
  padding: 40px 72px 40px 40px;
  flex: 1;
  background-color: #E1EAEE;
  display: flex;
  flex-direction: column;
}
.contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-title {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  align-items: center;
}
.contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-title .section-contact-title-text {
  font-size: 32px;
  font-weight: 700;
  color: #231815;
  line-height: 42px;
}
.contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-content .section-contact-content-text {
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  line-height: 21px;
}
.contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-content .section-contact-content-button {
  display: flex;
  justify-content: flex-end;
}

.csi-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}
.csi-item:hover .csi-item-link-wrapper .csi-item-image img {
  opacity: 0.5;
}
.csi-item:hover .csi-item-link-wrapper .csi-item-date-text {
  color: #527081;
}
.csi-item:hover .csi-item-link-wrapper .csi-item-title-text {
  color: #527081;
}
.csi-item .csi-item-link-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.csi-item .csi-item-link-wrapper .csi-item-image {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.03), 0px 12px 16px -4px rgba(0, 0, 0, 0.08);
}
.csi-item .csi-item-link-wrapper .csi-item-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.csi-item .csi-item-link-wrapper .csi-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.csi-item .csi-item-link-wrapper .csi-item-date-text {
  font-size: 14px;
  font-weight: 500;
  color: #527081;
  line-height: 17px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease-out;
}
.csi-item .csi-item-link-wrapper .csi-item-title-text {
  font-size: 16px;
  font-weight: 700;
  color: #231815;
  line-height: 23px;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 100%;
  transition: color 0.3s ease-out;
}
.csi-item .csi-item-link-wrapper .csi-item-title-text a {
  color: inherit;
  text-decoration: none;
}
.csi-item .csi-item-tags,
.csi-item .csi-item-category-links {
  margin-bottom: 45.72px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.csi-item .csi-item-tags .csi-item-tag,
.csi-item .csi-item-tags .csi-item-link-text,
.csi-item .csi-item-category-links .csi-item-tag,
.csi-item .csi-item-category-links .csi-item-link-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #231815;
}

.csi-magazine-sticky-banner {
  position: fixed;
  right: 0px;
  top: 131px;
  width: 140px;
  height: 140px;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.csi-magazine-sticky-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.csi-magazine-sticky-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.csi-magazine-sticky-banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  display: block;
}
.csi-magazine-sticky-banner-close {
  position: absolute;
  top: -10px;
  left: -10px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-color: white;
  border-radius: 50%;
}
.csi-magazine-sticky-banner-close img {
  width: 20px;
  height: 20px;
}

.header-search-box {
  display: flex;
  align-items: center;
  position: relative;
}
.header-search-box .header-search-input {
  width: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid transparent;
  outline: none;
  font-size: 16px;
  background: transparent;
  opacity: 0;
  transition: width 0.35s ease, opacity 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  color: #333;
  line-height: 21px;
  box-sizing: border-box;
}
.header-search-box .header-search-input::-moz-placeholder {
  color: #999;
}
.header-search-box .header-search-input::placeholder {
  color: #999;
}
.header-search-box.active .header-search-input {
  width: 220px;
  padding: 4px 8px;
  opacity: 1;
  border-bottom-color: #333;
}
.header-search-box .icon-search {
  cursor: pointer;
  flex-shrink: 0;
}

.no-items {
  font-size: 16px;
  font-weight: 400;
  color: #231815;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: center;
}
.no-items.pr {
  padding-right: 72px;
}

.seminar-item-list {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.seminar-item-list .seminar-item {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.04), 0px 6px 6px 0px rgba(0, 0, 0, 0.03), 0px 14px 9px 0px rgba(0, 0, 0, 0.02), 0px 25px 10px 0px rgba(0, 0, 0, 0.01), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  cursor: pointer;
  max-width: 300px;
}
.seminar-item-list .seminar-item:hover .seminar-item-image img {
  opacity: 0.5;
}
.seminar-item-list .seminar-item:hover .seminar-item-content .seminar-item-content-title .seminar-item-content-title-text {
  color: #527081;
}
.seminar-item-list .seminar-item .seminar-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.seminar-item-list .seminar-item .seminar-item-content {
  padding: 32px 24px 24px;
}
.seminar-item-list .seminar-item .seminar-item-content .seminar-item-content-title .seminar-item-content-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  transition: color 0.3s ease-out;
}

.seminar-button {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

.csi-service-description-highlight {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}

.provision-of-solutions-and-services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
}

.provision-of-solutions-and-services-item {
  display: flex;
  align-items: center;
  border: 1px solid #E1EAEE;
  padding: 16px 32px 16px 24px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.03), 0 12px 16px -4px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease-out;
}
.provision-of-solutions-and-services-item:hover {
  background-color: #E8F5FB;
}
.provision-of-solutions-and-services-item:hover .provision-of-solutions-and-services-item-name .provision-of-solutions-and-services-item-name-text {
  color: #00649F;
}
.provision-of-solutions-and-services-item:hover .provision-of-solutions-and-services-item-arrow::after {
  content: url("/wp-content/themes/prcd/images/ico_arrow_up_right_hover.svg");
}
.provision-of-solutions-and-services-item .provision-of-solutions-and-services-item-name-text {
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  line-height: 25px;
  text-align: left;
  transition: color 0.3s ease-out;
}
.provision-of-solutions-and-services-item .provision-of-solutions-and-services-item-arrow {
  position: absolute;
  right: 14px;
  top: 15px;
}
.provision-of-solutions-and-services-item .provision-of-solutions-and-services-item-arrow::after {
  content: url("/wp-content/themes/prcd/images/ico_arrow_up_right.svg");
}

.banner-en-container {
  background-color: white;
  max-width: 1440px;
  margin: 0 auto;
}
.banner-en-container .banner-en-text {
  text-align: center;
  padding: 60px 0;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: clamp(38px, 35.771px + 0.5714vw, 44px);
}
.banner-en-container .banner-en-text p {
  margin: 0;
  display: inline-block;
  background: linear-gradient(90deg, #009AFF 0%, #0028FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.magazine-detail-social-text {
  letter-spacing: 0;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .sp {
    display: none;
  }
  .box span {
    font-size: 16px !important;
  }
  .tablet {
    display: block !important;
  }
  .pc {
    display: none;
  }
  .top-page .banner {
    height: 530px;
    max-height: 530px;
  }
  .top-page .banner.banner-en {
    --kv-position-x: 54%;
  }
  .slick-list {
    padding: 0 !important;
  }
  .contents-area {
    padding-top: 131px !important;
  }
  .header-container {
    height: auto !important;
  }
  .header-top {
    gap: 20px;
  }
  .header-bottom {
    gap: 16px;
    flex-direction: column;
    align-items: flex-end;
  }
  .header-bottom .header-buttons {
    padding: 0;
  }
  .header .nav-list {
    gap: 15px;
  }
  .header-buttons {
    gap: 10px;
    padding: 20px;
  }
  .header .btn-download,
  .header .btn-contact {
    padding: 6px 12px;
    font-size: 13px;
  }
  .pick-up {
    min-height: unset;
  }
  .pick-up .inner {
    padding: 40px 0 40px 72px;
  }
  .pick-up .section-title .main-title {
    font-size: 72px !important;
    line-height: 86px;
  }
  .pick-up .pick-up-content .pick-up-item-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  .pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-title {
    margin-bottom: 16px;
  }
  .service .section-title .main-title {
    font-size: 72px !important;
    line-height: 86px;
  }
  .service .service-item-list {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .contact-and-download .section-download-content,
  .contact-and-download .section-contact-content {
    flex-direction: column;
    gap: 24px !important;
  }
  .recruit .inner {
    gap: 24px !important;
  }
  .recruit .section-title {
    margin-bottom: 0;
    width: unset !important;
    max-width: 502px;
  }
  .recruit .section-title .main-title {
    font-size: 72px !important;
  }
  .recruit .recruit-content {
    min-width: 426px !important;
    background-image: url("/wp-content/themes/prcd/images/img_recruit.png") !important;
    height: 290px !important;
    background-size: unset !important;
    background-position: unset !important;
  }
  .magazine.ranking-magazine .inner .case-slider-controls {
    justify-content: center;
  }
  .magazine .inner .section-title .main-title {
    font-size: 72px !important;
  }
  .magazine .inner .magazine-content .case-item-list {
    margin-left: 0;
  }
  .magazine .inner .case-slider-controls {
    justify-content: space-between;
  }
  .case .inner {
    padding: 60px 0 !important;
  }
  .case .inner .section-title {
    padding: 0 72px;
  }
  .case .inner .section-title .main-title {
    font-size: 72px !important;
  }
  .case .inner .case-content .case-item-list {
    margin-left: 72px;
  }
  .case .inner .case-content .case-footer-row {
    padding: 0 64px;
  }
  .case .inner .case-content .case-button-wrap .common-button-container {
    min-width: 146px !important;
  }
  .case .inner .case-slider-controls {
    padding: 0 !important;
    justify-content: center !important;
  }
  .strength .section-title .main-title {
    font-size: 72px !important;
  }
  .strength .strength-illustration {
    justify-content: center;
    position: relative;
  }
  .strength .strength-illustration .common-button {
    position: absolute;
    bottom: 0;
  }
  .strength .strength-main-title {
    font-size: 36px !important;
  }
  .news .section-title .main-title {
    font-size: 72px !important;
  }
  .service-page .banner {
    width: 100%;
    height: auto;
  }
  .service-page .service-content .service-item-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .service-page .service-content .service-item-list .term-service-item .term-service-item-content .term-service-item-content-left .term-service-item-name-description {
    text-overflow: ellipsis;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .materials .inner {
    padding: 60px 72px 60px 72px !important;
  }
  .materials .inner .materials-content {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1px 1px 32px 1px !important;
    gap: 24px !important;
  }
  .materials .inner .materials-content::-webkit-scrollbar {
    display: none;
  }
  .materials .inner .materials-content .materials-item {
    flex-shrink: 0;
    max-width: 300px;
  }
  .contact-free-consulting .section-contact-free-consulting-container {
    flex-direction: column;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-free-consulting {
    padding: 60px 72px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-contact {
    padding: 60px 72px !important;
  }
  .free-consulting .inner {
    padding: 60px 72px !important;
  }
  .consulting-document-download .inner {
    padding: 0 72px !important;
  }
  .csi-research-theme-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .header-search-box.active .header-search-input {
    width: 160px;
  }
  .seminar-item-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .provision-of-solutions-and-services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .tablet {
    display: none;
  }
  .pc {
    display: none;
  }
  .editor {
    margin: unset;
  }
  .top-page .banner {
    height: 420px;
    max-height: 420px;
    --kv-scale: 0.82;
    --kv-position-x: 54%;
  }
  .top-page .banner.banner-en {
    --kv-position-x: 56%;
  }
  .contents-area {
    padding-top: 72px !important;
    padding-bottom: 0 !important;
  }
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    width: 100%;
    height: 72px;
  }
  .header .logo a img {
    width: 142px;
    height: 44px;
  }
  .header .mobile-menu-toggle {
    display: flex;
  }
  .header .description {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .header-right {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header-right.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header-right.is-closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header-top {
    display: none;
  }
  .header-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }
  .header .nav {
    display: none;
  }
  .header-list {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    width: 100%;
  }
  .header-list li {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  .header-list li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }
  .header-list li:last-child {
    border-bottom: none;
  }
  .header-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px 24px;
  }
  .header-buttons .btn-download,
  .header-buttons .btn-contact {
    width: 163px;
    height: 49px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
  }
  .header-buttons .btn-contact {
    background: #007AC0;
  }
  .csi-magazine-sticky-banner {
    width: 105px;
    height: 105px;
    right: 0;
    top: 442px;
  }
  .logo img {
    max-height: 44px;
    width: auto;
  }
  .banner-section {
    padding: 20px 0 30px;
  }
  .banner-section .breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .banner-section .banner-japanese {
    font-size: 14px;
  }
  .banner-section .main-title {
    font-size: 32px !important;
  }
  .main-content {
    padding: 40px 0;
  }
  .container {
    padding: 0 15px;
  }
  .intro-section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  .intro-section .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .intro-section .intro-text p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .intro-section .intro-footnote {
    font-size: 12px;
    margin-top: 20px;
  }
  .footer {
    padding: 24px;
  }
  .footer .container {
    width: unset;
  }
  .footer .footer-content-pc {
    display: none;
  }
  .footer .footer-content-sp {
    display: block;
    margin-bottom: 16px;
  }
  .footer .footer-sp-content {
    gap: 20px;
    margin-bottom: 16px;
  }
  .footer .footer-sp-header {
    margin-bottom: 25px;
    align-items: flex-end;
  }
  .footer .footer-sp-header .footer-logo img {
    max-height: 50px;
  }
  .footer .back-to-top-sp:hover .back-to-top-arrow {
    background-image: url("/wp-content/themes/prcd/images/ico_arrow_up_blue.svg");
  }
  .footer .back-to-top-sp:hover .text-back-to-top {
    color: #00649F;
  }
  .footer .back-to-top-arrow {
    transition: all 0.3s ease-out;
    background-image: url("/wp-content/themes/prcd/images/ico_arrow_up.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 18px;
    height: 18px;
  }
  .footer .text-back-to-top {
    font-size: 14px;
    transition: color 0.3s ease-out;
  }
  .footer .footer-sp-column .footer-nav-title {
    font-size: 14px;
    margin-bottom: 12px;
    margin-top: 15px;
  }
  .footer .footer-sp-column .footer-nav-title.footer-nav-title-custom {
    margin-bottom: 25px !important;
  }
  .footer .footer-sp-column .footer-nav-list {
    margin-bottom: 15px;
  }
  .footer .footer-sp-column .footer-nav-list.footer-nav-list-custom {
    margin-bottom: 5px !important;
  }
  .footer .footer-sp-column .footer-nav-list li {
    margin-bottom: 12px;
  }
  .footer .footer-sp-column .footer-nav-list li a {
    font-size: 12px;
  }
  .footer .footer-sp-column .footer-nav-list li a footer-link-with-dash {
    font-size: 12px;
  }
  .footer .description {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .footer .footer-sp-links {
    gap: 4px;
    padding-top: 4px;
  }
  .footer .footer-sp-links.footer-sp-links-parent {
    padding-top: 16px;
  }
  .footer .footer-sp-link {
    font-size: 14px;
    padding: 8px 0;
  }
  .footer .footer-content-pc .footer-nav-column:first-child {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .footer-content-pc .footer-nav-column:first-child .footer-logo {
    margin-bottom: 0;
  }
  .footer .footer-content-pc .footer-nav-column .footer-logo {
    margin-bottom: 20px;
  }
  .footer .footer-content-pc .footer-nav-column .footer-logo img {
    max-height: 35px;
    width: auto;
  }
  .footer .footer-content-pc .footer-nav-column .footer-nav-title {
    font-size: 13px;
    margin-bottom: 12px;
    margin-top: 15px;
  }
  .footer .footer-content-pc .footer-nav-column .footer-nav-list {
    margin-bottom: 15px;
  }
  .footer .footer-content-pc .footer-nav-column .footer-nav-list li {
    margin-bottom: 6px;
  }
  .footer .footer-content-pc .footer-nav-column .footer-nav-list li a {
    font-size: 12px;
  }
  .footer .footer-divider {
    margin: 20px 0 20px;
  }
  .footer .footer-bottom {
    position: relative;
    margin-top: 30px;
  }
  .footer .footer-bottom > div:last-child {
    display: none;
  }
  .footer .footer-bottom .footer-social {
    gap: 20px;
    margin-bottom: 24px;
  }
  .footer .footer-bottom .footer-social .social-icon {
    width: 24px;
    height: 24px;
  }
  .footer .footer-bottom .footer-social .social-icon img {
    width: 24px;
    height: 24px;
  }
  .footer .footer-bottom .footer-links {
    flex-wrap: wrap;
    justify-content: start;
    -moz-column-gap: 25px;
         column-gap: 25px;
    row-gap: 16px;
    margin: 16px 0;
  }
  .footer .footer-bottom .footer-links a {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .footer .footer-bottom .footer-copyright-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer .footer-bottom .footer-copyright-wrapper .footer-copyright {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: center;
  }
  .header-right {
    gap: 0;
  }
  .header-right .header-mobile {
    display: block;
  }
  .header-mobile {
    padding: 0 24px 16px 24px;
  }
  .header-mobile .header-mobile-columns {
    gap: 24px;
    margin-bottom: 24px;
  }
  .header-mobile .header-mobile-column {
    gap: 24px;
  }
  .header-mobile .header-mobile-column .header-mobile-column-service .header-mobile-title,
  .header-mobile .header-mobile-column .header-mobile-column-company .header-mobile-title {
    margin-bottom: 16px;
  }
  .header-mobile .header-mobile-column .header-mobile-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
  }
  .header-mobile .header-mobile-column .header-mobile-list {
    margin-bottom: 0;
  }
  .header-mobile .header-mobile-column .header-mobile-list li {
    margin-bottom: 16px;
  }
  .header-mobile .header-mobile-column .header-mobile-list li:last-child {
    margin-bottom: 0;
  }
  .header-mobile .header-mobile-column .header-mobile-list li a {
    font-size: 12px;
  }
  .header-mobile .header-mobile-column .header-mobile-list li a.header-mobile-link-with-dash {
    font-size: 14px;
    font-weight: 500;
  }
  .header-mobile .header-mobile-column .header-mobile-list li a.text-indent {
    text-indent: -11px;
    padding-left: 11px;
    display: inline-block;
  }
  .header-mobile .header-mobile-links {
    gap: 12px;
    padding-top: 24px;
  }
  .header-mobile .header-mobile-links .header-mobile-header {
    margin-bottom: 24px;
  }
  .header-mobile .header-mobile-content {
    margin-bottom: 0;
  }
  .header-mobile .header-mobile-link {
    font-size: 12px;
    padding: 8px 0;
  }
  .header-mobile .header-mobile-divider {
    margin: 24px 0;
  }
  .header-mobile .header-mobile-bottom .header-mobile-guidelines {
    font-size: 12px;
    font-weight: 400;
  }
  .header-mobile .header-mobile-bottom .header-mobile-social {
    gap: 24px;
    margin-bottom: 24px;
  }
  .header-mobile .header-mobile-bottom .header-mobile-social .header-mobile-social-icon {
    width: 35px;
    height: 35px;
  }
  .header-mobile .header-mobile-bottom .header-mobile-social .header-mobile-social-icon img {
    width: 20px;
    height: 20px;
  }
  .header-mobile .header-mobile-bottom .header-mobile-legal-links {
    justify-content: start;
    margin-bottom: 24px;
    margin-top: 16px;
    gap: 16px;
  }
  .header-mobile .header-mobile-bottom .header-mobile-legal-links a {
    font-size: 12px;
  }
  .header-mobile .header-mobile-bottom .header-mobile-copyright-wrapper .header-mobile-copyright {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: center;
    font-weight: 500;
  }
  .mainvisual img {
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .free-consulting .inner {
    padding: 24px !important;
  }
  .free-consulting .free-consulting-content {
    flex-direction: column;
  }
  .free-consulting .free-consulting-content .free-consulting-content-left .free-consulting-content-title .free-consulting-content-title-text {
    font-size: 24px !important;
    line-height: 33.6px !important;
  }
  .free-consulting .free-consulting-content .free-consulting-content-left .free-consulting-content-description {
    font-size: 14px !important;
    line-height: 21px !important;
    margin-bottom: 24px !important;
  }
  .free-consulting .free-consulting-content .free-consulting-content-right {
    width: 100% !important;
    height: 219px !important;
    display: flex;
    justify-content: center;
  }
  .free-consulting .free-consulting-content .free-consulting-content-right img {
    width: 210px !important;
    height: 219px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    aspect-ratio: 16/9;
  }
  .common-header-center {
    height: 48px !important;
    margin-bottom: 40px !important;
  }
  .common-header-center.pr {
    padding-right: 24px;
  }
  .common-header-center .common-header-title .common-header-title-text {
    position: relative;
    display: inline-block;
    height: 55px !important;
    padding: 0 !important;
  }
  .common-header-center .common-header-title .common-header-title-text.long {
    height: unset !important;
    padding: 0 24px 24px 0 !important;
  }
  .common-header-center .common-header-title .common-header-title-text-en {
    font-size: 46px !important;
    line-height: 55px;
  }
  .common-header-center .common-header-title .common-header-title-text-en.numbers {
    width: 226px !important;
  }
  .common-header-center .common-header-title .common-header-title-text-ja {
    font-size: 24px !important;
    line-height: 33px;
  }
  .common-banner {
    min-height: 240px;
  }
  .common-banner .inner {
    padding: 24px 0 24px 24px !important;
  }
  .common-banner::after {
    top: -72px;
    background-image: url("/wp-content/themes/prcd/images/img_banner_service_sp.png");
  }
  .common-banner .banner-container .banner-content {
    gap: 16px;
  }
  .common-banner .banner-container .banner-content .breadcrumb {
    font-size: 11px;
    overflow: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .common-banner .banner-container .banner-content .breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .common-banner .banner-container .banner-content .breadcrumb {
    cursor: pointer;
    pointer-events: auto;
  }
  .common-banner .banner-container .banner-content .section-title {
    font-size: 46px;
  }
  .common-banner .banner-container .banner-content .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0px;
    line-height: 21px;
  }
  .common-banner .banner-container .banner-content .section-title .main-title-container .main-title {
    line-height: 55px;
  }
  .common-pagination .page-numbers {
    gap: 6px;
  }
  .common-pagination .page-numbers li a,
  .common-pagination .page-numbers li span {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .author-item {
    flex-direction: column;
  }
  .author-item .author-info .author-header .author-header-text {
    justify-content: center;
    align-items: center;
  }
  .consulting-document-download {
    padding: 0;
  }
  .consulting-document-download .document-download-box {
    padding: 24px;
  }
  .consulting-document-download .inner {
    max-width: none;
    margin: 0;
    padding: 32px 24px;
  }
  .consulting-document-download .document-download-content {
    flex-direction: column;
    gap: 24px;
  }
  .consulting-document-download .document-download-thumbnail {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .consulting-document-download .document-download-thumbnail img {
    width: auto;
    max-width: 100%;
  }
  .consulting-document-download .document-download-info {
    text-align: left;
  }
  .magazine-download {
    padding: 0;
  }
  .magazine-download .document-download-box {
    padding: 24px 24px 8px 24px;
  }
  .magazine-download .inner-magazine-download {
    max-width: none;
    margin: 0;
  }
  .magazine-download .document-download-content {
    flex-direction: column;
    gap: 8px;
  }
  .magazine-download .document-download-thumbnail {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .magazine-download .document-download-thumbnail img {
    width: auto;
    max-width: 100%;
  }
  .magazine-download .document-download-info {
    margin-top: 16px !important;
    text-align: left;
    padding-left: 0;
  }
  .pick-up {
    padding: 0 !important;
    min-height: unset;
  }
  .pick-up .inner {
    padding: 32px 0 24px 24px;
  }
  .pick-up .section-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .pick-up .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .pick-up .section-title .main-title {
    font-size: 46px !important;
    line-height: 55px;
  }
  .pick-up .pick-up-content .pick-up-item-list.slick-initialized .slick-list {
    margin: 0;
  }
  .pick-up .pick-up-content .pick-up-item-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .pick-up .pick-up-content .pick-up-item-list .pick-up-item {
    width: 284px !important;
    margin: 0 10px;
  }
  .pick-up .pick-up-content .pick-up-item-list .pick-up-item .pick-up-item-title {
    margin-bottom: 16px;
  }
  .service .inner {
    padding: 60px 24px !important;
  }
  .service .services-container {
    margin-bottom: 48px;
  }
  .service .services-container.en {
    margin-bottom: 32px;
  }
  .service .section-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .service .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .service .section-title .main-title {
    font-size: 46px !important;
    line-height: 55px;
  }
  .service .section-title .main-title-note {
    font-size: 14px !important;
  }
  .service .section-title .main-title-container {
    flex-direction: column;
    gap: 24px !important;
    align-items: flex-start !important;
  }
  .service .section-title .main-title-container .main-title-note {
    display: block;
    height: auto !important;
  }
  .service .service-header {
    flex-direction: column;
    gap: 24px;
    height: auto !important;
    align-items: flex-end !important;
  }
  .service .service-header .service-header-title {
    width: 100%;
  }
  .service .service-header .service-header-title .service-header-title-text {
    height: 48px;
  }
  .service .service-header .service-header-title .service-header-title-text-en {
    font-size: 46px;
    line-height: 55px;
  }
  .service .service-header .service-header-title .service-header-title-text-ja {
    font-size: 24px;
    line-height: 34px;
  }
  .service .service-content .service-item-list {
    padding: 0px;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .service .service-content .service-item-list .service-item {
    padding: 17px 32px 17px 24px;
  }
  .service .service-content .service-item-list .service-item .service-item-name {
    font-size: 16px;
  }
  .common-button-container {
    position: relative !important;
    transform: unset !important;
    top: unset !important;
    right: unset !important;
    min-width: 160px !important;
  }
  .common-button-container .common-button-text {
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    line-height: 21px !important;
  }
  .common-button-container .common-button-text.text-bold {
    font-weight: 700;
    font-size: 16px !important;
    line-height: 23px !important;
  }
  .common-button-container.move-down {
    padding: 4px 0;
  }
  .common-button-container.move-down .common-button-icon-down {
    padding: 0px 11px;
  }
  .common-button-container.move-down .common-button-text {
    letter-spacing: 0.02em !important;
  }
  .strength .inner {
    padding: 60px 24px 32px 24px;
  }
  .strength .section-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .strength .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .strength .section-title .main-title {
    font-size: 46px !important;
    line-height: 55px;
  }
  .strength .section-title .main-title-container {
    flex-direction: column;
    gap: 24px !important;
    align-items: flex-start !important;
  }
  .strength .section-title .main-title-container .main-title-note {
    font-size: 14px !important;
    display: block;
    height: auto !important;
  }
  .strength .strength-content .strength-nav-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }
  .strength .strength-content .strength-nav-tabs .strength-nav-tab-container {
    position: relative;
    width: unset;
  }
  .strength .strength-content .strength-nav-tabs .strength-nav-tab-container .box:hover:not(.active) {
    box-shadow: none;
    height: 56px;
  }
  .strength .strength-content .strength-nav-tabs .strength-nav-tab {
    width: 100%;
    height: 60px;
  }
  .strength .strength-content .strength-nav-tabs .strength-nav-tab:nth-child(5) {
    grid-column: 1;
    justify-self: start;
  }
  .strength .strength-content .strength-nav-tabs .strength-nav-tab .tab-text {
    font-size: 16px;
  }
  .strength .strength-content .strength-nav-tabs .strength-nav-tab .tab-text-pc {
    display: none;
  }
  .strength .strength-content .strength-nav-tabs .strength-nav-tab .tab-text-sp {
    display: inline;
  }
  .strength .strength-content .strength-nav-tabs.sp {
    margin-top: 24px;
  }
  .strength .strength-content .strength-nav-tabs.sp .strength-nav-tab-container.active::after {
    content: none;
  }
  .strength .strength-content .strength-main-content {
    flex-direction: column;
    padding: 24px;
  }
  .strength .strength-content .strength-main-content .strength-main-content-container {
    flex-direction: column;
  }
  .strength .strength-content .strength-main-content .strength-main-title {
    font-size: 24px;
    line-height: 34px;
  }
  .strength .strength-content .strength-main-content .strength-intro {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }
  .strength .strength-content .strength-main-content .strength-section {
    padding-left: 0px;
  }
  .strength .strength-content .strength-main-content .strength-section .strength-section-title {
    font-size: 16px;
    line-height: 23px;
  }
  .strength .strength-content .strength-main-content .strength-section .strength-challenge-list .challenge-text {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 21px;
    border-radius: 8px;
  }
  .strength .strength-content .strength-main-content .strength-section .strength-challenge-list .challenge-text-highlight {
    font-size: 14px;
    line-height: 21px;
  }
  .strength .strength-content .strength-main-content .strength-section .strength-service-list .service-text {
    font-size: 14px;
    line-height: 21px;
  }
  .strength .strength-content .strength-main-content .strength-section .strength-service-list .service-text-highlight {
    text-decoration: none;
  }
  .strength .strength-content .strength-main-content .strength-section .strength-service-list .service-text-highlight:hover {
    color: #231815;
  }
  .strength .strength-content .strength-main-content .strength-illustration {
    width: unset;
    position: unset;
  }
  .strength .strength-content .strength-main-content .strength-illustration .common-button {
    margin: 0;
    position: unset;
    display: flex;
    justify-content: center;
  }
  .strength .strength-content .strength-main-content .strength-illustration .common-button .common-button-container {
    width: 262px;
  }
  .strength .strength-content .strength-main-content .strength-illustration .common-button .common-button-text {
    font-size: 14px;
  }
  .strength .strength-content .strength-main-content .strength-illustration .common-button .common-button-icon img {
    margin: 0 !important;
  }
  .strength .strength-content .strength-image-content > img {
    max-width: 229px;
    margin: auto;
  }
  .strength .strength-content .strength-image-content .strength-button-container {
    justify-content: center;
  }
  .strength .strength-content .strength-image-content .strength-button-container .strength-button {
    min-width: 262px;
  }
  .strength .strength-content .strength-nav-tabs.under-tabs {
    margin-bottom: 0 !important;
  }
  .strength .strength-content .strength-main-container {
    padding: 24px 0 !important;
    gap: 24px;
  }
  .strength .strength-content .strength-main-container .strength-main-content {
    padding: 0 24px !important;
    gap: 16px;
  }
  .strength .strength-content .strength-main-container .strength-main-content .strength-tags {
    padding: 24px 0 0 0;
    border-top: 1px solid #E1EAEE;
  }
  .strength .strength-content .strength-main-container .strength-related-content.active {
    gap: 24px;
  }
  .strength .strength-content .strength-main-container .ourwork .inner,
  .strength .strength-content .strength-main-container .magazine .inner {
    padding: 0 0 0 24px !important;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item,
  .strength .strength-content .strength-main-container .ourwork .inner .services-magazine-content .services-case-item-list .case-item,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-case-item-list .case-item,
  .strength .strength-content .strength-main-container .magazine .inner .services-magazine-content .services-case-item-list .case-item {
    width: 284px;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list.slick-initialized .slick-list,
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-magazine-item-list.slick-initialized .slick-list,
  .strength .strength-content .strength-main-container .ourwork .inner .services-magazine-content .services-case-item-list.slick-initialized .slick-list,
  .strength .strength-content .strength-main-container .ourwork .inner .services-magazine-content .services-magazine-item-list.slick-initialized .slick-list,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-case-item-list.slick-initialized .slick-list,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-magazine-item-list.slick-initialized .slick-list,
  .strength .strength-content .strength-main-container .magazine .inner .services-magazine-content .services-case-item-list.slick-initialized .slick-list,
  .strength .strength-content .strength-main-container .magazine .inner .services-magazine-content .services-magazine-item-list.slick-initialized .slick-list {
    margin-left: 1px !important;
    padding: 0 0 24px 0 !important;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-case-item-list .case-item {
    width: 294px !important;
    margin: 0 4px !important;
    padding-bottom: 16px;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0) !important;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-date-text,
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-title-text,
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-tags,
  .strength .strength-content .strength-main-container .ourwork .inner .services-case-content .services-case-item-list .case-item .case-item-link,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-case-item-list .case-item .case-item-date-text,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-case-item-list .case-item .case-item-title-text,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-case-item-list .case-item .case-item-tags,
  .strength .strength-content .strength-main-container .magazine .inner .services-case-content .services-case-item-list .case-item .case-item-link {
    padding: 0 24px !important;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .services-magazine-content .case-item,
  .strength .strength-content .strength-main-container .magazine .inner .services-magazine-content .case-item {
    margin: 0 8px !important;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .case-slider-controls,
  .strength .strength-content .strength-main-container .magazine .inner .case-slider-controls {
    flex-direction: column;
    align-items: end;
    padding-right: 0;
    justify-content: center !important;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .case-slider-controls .case-slider-controls-left,
  .strength .strength-content .strength-main-container .magazine .inner .case-slider-controls .case-slider-controls-left {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 24px;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .case-slider-controls .case-slider-bar,
  .strength .strength-content .strength-main-container .magazine .inner .case-slider-controls .case-slider-bar {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    margin-left: 8px;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .strength-ourwork-title {
    margin-bottom: 16px !important;
    padding-top: 24px;
  }
  .strength .strength-content .strength-main-container .ourwork .inner .strength-ourwork-title .strength-ourwork-title-text {
    font-size: 20px !important;
  }
  .strength .strength-content .strength-main-container .magazine .inner .strength-magazine-title {
    margin-bottom: 24px !important;
    padding-top: 24px;
  }
  .strength .strength-content .strength-main-container .magazine .inner .strength-magazine-title .strength-magazine-title-text {
    font-size: 20px !important;
  }
  .case .inner,
  .case-study .inner {
    padding: 32px 0 32px 24px;
  }
  .case .section-title,
  .case-study .section-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .case .section-title .sub-title,
  .case-study .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .case .section-title .main-title,
  .case-study .section-title .main-title {
    font-size: 46px !important;
    line-height: 55px;
  }
  .case .section-title .main-title-container,
  .case-study .section-title .main-title-container {
    flex-direction: column;
    gap: 24px !important;
    align-items: flex-start !important;
  }
  .case .section-title .main-title-container .main-title-note,
  .case-study .section-title .main-title-container .main-title-note {
    display: block;
    height: auto !important;
    font-size: 14px !important;
  }
  .case .case-content .case-item-list.slick-initialized .slick-list,
  .case-study .case-content .case-item-list.slick-initialized .slick-list {
    padding: 0 !important;
    margin-left: 1px !important;
  }
  .case .case-content .case-slider-controls,
  .case-study .case-content .case-slider-controls {
    flex-direction: column;
    align-items: end;
    padding-right: 24px !important;
  }
  .case .case-content .case-slider-controls .case-slider-controls-left,
  .case-study .case-content .case-slider-controls .case-slider-controls-left {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .case .case-content .case-slider-controls .case-slider-bar,
  .case-study .case-content .case-slider-controls .case-slider-bar {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    margin-left: 8px;
  }
  .case .case-content .case-slider-controls .case-slider-controls-right,
  .case-study .case-content .case-slider-controls .case-slider-controls-right {
    margin-right: 24px;
  }
  .case .case-content .case-item-list,
  .case-study .case-content .case-item-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .case .case-content .case-item-list::-webkit-scrollbar,
  .case-study .case-content .case-item-list::-webkit-scrollbar {
    display: none;
  }
  .case .case-content .case-item-list .case-item,
  .case-study .case-content .case-item-list .case-item {
    flex: 0 0 auto;
    width: 306px;
  }
  .case .services-case-content .case-footer-row,
  .case-study .services-case-content .case-footer-row {
    margin-top: 24px !important;
  }
  .magazine.ranking-magazine .section-title .sub-title {
    font-size: 20px;
    line-height: 28px;
  }
  .magazine .inner {
    padding: 32px 0 32px 24px !important;
  }
  .magazine .services-magazine-content .case-footer-row {
    margin-top: 24px !important;
  }
  .magazine .section-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .magazine .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .magazine .section-title .main-title {
    font-size: 46px !important;
    line-height: 55px;
  }
  .magazine .section-title .main-title-container {
    flex-direction: column;
    gap: 24px !important;
    align-items: flex-start !important;
    padding-right: 0px;
  }
  .magazine .section-title .main-title-container .main-title-note {
    display: block;
    height: auto !important;
    font-size: 14px !important;
  }
  .magazine .magazine-content .case-item-list.slick-initialized .slick-list {
    padding: 0 !important;
    margin-left: 1px !important;
  }
  .magazine .magazine-content .case-slider-controls {
    flex-direction: column;
    align-items: end;
    padding-right: 24px !important;
  }
  .magazine .magazine-content .case-slider-controls .case-slider-controls-left {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .magazine .magazine-content .case-slider-controls .case-slider-bar {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    margin-left: 8px;
  }
  .magazine .magazine-content .case-item-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .magazine .magazine-content .case-item-list::-webkit-scrollbar {
    display: none;
  }
  .magazine .magazine-content .case-item-list .case-item {
    flex: 0 0 auto;
    width: 240px;
  }
  .magazine .magazine-content .case-item-list-archive {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .magazine .magazine-content .case-item-list-archive::-webkit-scrollbar {
    display: none;
  }
  .magazine .magazine-content .case-item-list-archive .case-item {
    flex: 0 0 auto;
    width: 240px;
  }
  .magazine .magazine-content .common-button-container {
    margin-right: 24px;
  }
  .news .inner {
    padding: 60px 24px !important;
  }
  .news .section-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .news .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .news .section-title .main-title {
    font-size: 46px !important;
    line-height: 55px;
  }
  .news .news-item {
    padding: 24px 8px !important;
    flex-direction: column;
    gap: 8px;
  }
  .news .news-item .news-item-title-text {
    font-size: 14px;
    color: #231815;
    transition: color 0.3s ease-in;
  }
  .recruit .inner {
    padding: 32px 24px !important;
    flex-direction: column;
    gap: 24px;
  }
  .recruit .section-title {
    font-size: 14px;
    line-height: 21px;
    min-width: unset !important;
    margin-bottom: 0px !important;
    width: unset !important;
  }
  .recruit .section-title .sub-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .recruit .section-title .note {
    font-size: 14px !important;
    line-height: 21px !important;
  }
  .recruit .section-title .recruit-button-container {
    justify-content: flex-end;
  }
  .recruit .sub-title {
    font-size: 14px !important;
  }
  .recruit .main-title {
    font-size: 46px !important;
    line-height: 55px;
  }
  .recruit .main-title-container {
    flex-direction: column;
    gap: 24px !important;
    align-items: flex-start !important;
  }
  .recruit .main-title-container .main-title-note {
    display: block;
    height: auto !important;
  }
  .recruit .recruit-content {
    flex: unset !important;
    min-width: unset !important;
    width: 100%;
    height: 221px !important;
    background-image: url("/wp-content/themes/prcd/images/img_recruit.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .contact-and-download {
    padding: 24px;
  }
  .contact-and-download .section-contact-and-download-container {
    flex-direction: column;
    gap: 24px;
    box-shadow: none;
  }
  .contact-and-download .section-contact,
  .contact-and-download .section-download {
    padding: 24px;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.0392156863), 0px 6px 6px 0px rgba(0, 0, 0, 0.031372549), 0px 14px 9px 0px rgba(0, 0, 0, 0.0196078431), 0px 25px 10px 0px rgba(0, 0, 0, 0.0117647059), 0px 40px 11px 0px rgba(0, 0, 0, 0);
  }
  .contact-and-download .section-download-title-text,
  .contact-and-download .section-contact-title-text {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .contact-and-download .section-download-content,
  .contact-and-download .section-contact-content {
    flex-direction: column;
    gap: 24px !important;
  }
  .contact-and-download .section-download-button {
    min-width: unset !important;
    width: 218px;
  }
  .contact-and-download .section-contact-button {
    min-width: unset !important;
  }
  .customer .inner {
    padding: 60px 24px;
  }
  .customer .inner.no-items {
    padding: 16px 0;
  }
  .customer .inner.no-items.pr {
    padding-right: 24px;
  }
  .customer .customer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .customer .customer-content img {
    width: 100%;
    max-height: 53px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .customer .customer-content img:hover {
    opacity: 0.5;
  }
  .services-and-reasons .inner {
    padding: 32px 24px !important;
  }
  .services-and-reasons .inner .services-and-reasons-content {
    flex-direction: column;
    gap: 16px;
  }
  .services-and-reasons .inner .services-and-reasons-content .has-subtext {
    height: 57px !important;
  }
  .services-and-reasons .inner .services-and-reasons-content .common-button-text {
    gap: 0 !important;
  }
  .materials .inner {
    padding: 32px 0px 0px 24px !important;
  }
  .materials .inner .common-header-center {
    padding-right: 24px !important;
  }
  .materials .materials-content {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1px 1px 32px 1px !important;
    gap: 24px !important;
  }
  .materials .materials-content::-webkit-scrollbar {
    display: none;
  }
  .materials .materials-content .materials-item {
    flex-shrink: 0;
    max-width: 300px;
  }
  .materials .materials-button {
    margin-top: 8px !important;
    margin-bottom: 32px !important;
  }
  .contact-free-consulting {
    padding: 24px;
  }
  .contact-free-consulting .section-contact-free-consulting-container {
    flex-direction: column;
    gap: 24px;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-free-consulting {
    padding: 24px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-title .section-free-consulting-title-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-title .section-free-consulting-title-text {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content {
    flex-direction: column;
    gap: 24px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content .section-free-consulting-content-text {
    gap: 24px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-free-consulting .section-free-consulting-content .section-free-consulting-content-text .section-free-consulting-content-text-description {
    font-size: 14px !important;
    line-height: 21px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-contact {
    padding: 24px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-title .section-contact-title-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-title .section-contact-title-text {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-content {
    flex-direction: column;
    gap: 24px !important;
  }
  .contact-free-consulting .section-contact-free-consulting-container .section-contact .section-contact-content .section-contact-content-text {
    font-size: 14px !important;
    line-height: 21px !important;
  }
  .csi-contact {
    padding: 0;
  }
  .csi-contact .inner {
    padding: 24px;
  }
  .csi-contact .csi-contact-header-top {
    flex-direction: column !important;
  }
  .csi-contact .csi-contact-icon {
    width: 32px;
    height: 32px;
  }
  .csi-contact .csi-contact-title {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
  }
  .csi-contact .csi-contact-subtitle .csi-contact-class {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .csi-contact .csi-contact-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .csi-contact .csi-contact-card {
    padding: 24px 0px !important;
  }
  .csi-contact .csi-contact-card .csi-contact-card-title {
    font-size: 18px !important;
  }
  .csi-contact .csi-contact-card .csi-contact-card-value {
    font-size: 20px;
    line-height: 27px;
  }
  .csi-contact .csi-contact-card .csi-contact-card-desc {
    font-size: 14px;
  }
  .csi-contact .csi-contact-card .csi-contact-card-icon-top img {
    width: 24px;
    height: 24px;
  }
  .contact-inquiry {
    background-color: #F8FAFB !important;
  }
  .contact-inquiry .inner {
    padding: 24px !important;
  }
  .contact-inquiry .contact-inquiry-container {
    background-color: #ffffff;
    padding: 24px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
  }
  .contact-inquiry .contact-inquiry-header {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-bottom: 24px;
    gap: 12px !important;
  }
  .contact-inquiry .contact-inquiry-header .contact-inquiry-icon {
    width: 24px !important;
    height: 24px !important;
  }
  .contact-inquiry .contact-inquiry-header .contact-inquiry-title {
    font-size: 20px !important;
    line-height: 20px !important;
    margin-bottom: 0 !important;
  }
  .contact-inquiry .contact-inquiry-text {
    font-size: 14px !important;
    text-align: left;
    line-height: 21px;
    font-weight: 400;
    color: #231815;
  }
  .contact-inquiry .contact-inquiry-btn-wrap {
    justify-content: flex-end !important;
  }
  .contact-inquiry .contact-inquiry-btn-wrap .common-button-container {
    min-width: 180px !important;
  }
  .csi-banner {
    display: flex;
    flex-direction: column;
  }
  .csi-banner .inner {
    order: 1;
    position: relative;
    padding: 0;
    background-color: #F3F6F7;
  }
  .csi-banner .banner-container {
    flex-direction: column;
  }
  .csi-banner .banner-content {
    padding: 24px !important;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .csi-banner .banner-content .breadcrumb {
    align-self: flex-start;
  }
  .csi-banner .banner-content .csi-logo-container {
    align-items: center;
    width: 100%;
    gap: 16px !important;
  }
  .csi-banner .banner-content .csi-logo {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }
  .csi-banner .banner-content .csi-logo .csi-logo-img {
    width: 224px;
    height: 99px;
  }
  .csi-banner .banner-content .section-title-container,
  .csi-banner .banner-content .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .csi-banner .banner-content .section-title-container .main-title,
  .csi-banner .banner-content .section-title .main-title {
    font-size: 32px;
    text-align: center;
  }
  .csi-banner .banner-content .section-title-container .sub-title,
  .csi-banner .banner-content .section-title .sub-title {
    font-size: 14px;
  }
  .csi-banner .banner-content .csi-tagline {
    font-size: 16px !important;
    text-align: left;
    line-height: 26px;
  }
  .csi-banner .banner-image {
    order: 2 !important;
    position: relative !important;
    height: auto !important;
    min-height: unset !important;
    width: 100% !important;
    top: unset !important;
    left: unset !important;
    overflow: visible !important;
  }
  .csi-banner .banner-image .banner-layer-1,
  .csi-banner .banner-image .banner-layer-2 {
    display: none !important;
  }
  .csi-banner .banner-image .banner-layer-main {
    position: relative !important;
    width: 100% !important;
    height: 172px !important;
    display: block !important;
    right: unset !important;
  }
  .csi-banner .banner-image::before, .csi-banner .banner-image::after {
    display: none !important;
  }
  .csi-research-theme-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .csi-research-theme-container .csi-research-theme-item {
    padding-bottom: 10px;
  }
  .csi-item .csi-item-tags,
  .csi-item .csi-item-category-links {
    margin-bottom: 0;
  }
  .csi-item .csi-item-link-wrapper {
    margin-bottom: 0px;
  }
  .header-search-box {
    display: none;
  }
  .no-items.pr {
    padding-right: 24px;
  }
  .seminar-content .common-header-center {
    padding-right: 24px;
  }
  .seminar-item-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1px 1px 32px 1px !important;
    gap: 24px !important;
  }
  .seminar-item-list::-webkit-scrollbar {
    display: none;
  }
  .seminar-item-list .seminar-item {
    flex-shrink: 0;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }
  .seminar-button {
    margin-top: 8px !important;
    padding-right: 24px;
  }
  .contents {
    padding: 0;
  }
  .provision-of-solutions-and-services-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    padding: 0;
  }
  .provision-of-solutions-and-services-item .provision-of-solutions-and-services-item-name-text {
    font-size: 16px;
    line-height: 23px;
  }
  .banner-en-container .banner-en-text {
    text-align: left;
    font-size: clamp(22px, 19.6px + 0.6154vw, 24px);
    line-height: clamp(32px, 29.6px + 0.6154vw, 34px);
    padding: 24px;
  }
  .footer-sp-links.footer-sp-links-en {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}/*# sourceMappingURL=styles.css.map */