@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
/*Screen*/
:root {
  --color-main: #0052ff;
  --color-background: #2f353f;
  --color-border: #d9d9d9;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #7f7f7f;
  --color-gray-light: #f0f0f0;
  --color-gray-tab: #f5f5f5;
  --color-gray-dark: #535353;
  --color-gray-label: #575757;
  --color-black-alpha: rgba(0, 0, 0, 0.3);
  --color-gray-alpha: rgba(127, 127, 127, 0.3);
  --color-red: #ff0000;
  --color-blue: rgba(102, 151, 255, 1);
  --color-footer: #f4f7fa;
  --color-lightblue: #edf4fe;
  --font: 'Inter', 'Noto Sans JP', YuGothic, 'Yu Gothic Medium', 'Yu Gothic',
    'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
    Meiryo, sans-serif;
  --max-width: 960px;
}

/* =============================================================================
Basic style
========================================================================== */
body {
  position: relative;
  overflow-x: hidden;
  word-break: break-all;
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic Medium', 'Yu Gothic',
    'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
    Meiryo, sans-serif;
}

.blue {
  color: #0052ff;
}

.purple {
  color: #b200ff;
}

.num {
  font-family: 'Inter', sans-serif;
}

@media screen and (min-width: 960px) {
  .t-hiddenPc {
    display: none;
  }
}
.t-hiddenSp {
  display: none;
}

@media screen and (min-width: 960px) {
  .t-hiddenSp {
    display: block;
  }
}
.onlySp {
  display: none;
}
@media screen and (max-width: 509px) {
  .onlySp {
    display: block;
  }
}

.loading {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  font-size: 2em;
}

.loading__wave {
  display: flex;
  position: absolute;
  place-content: center;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  width: 60px;
  height: 51px;
}

@keyframes heightAnimation {
  0% {
    height: 30px;
  }
  50% {
    height: 51px;
  }
  100% {
    height: 30px;
  }
}
.loading__waveItem {
  animation: heightAnimation 1s ease-in-out infinite;
  width: 6px;
  height: 51px;
}

.loading__waveItem.-first {
  background-color: #0052ff;
  height: 51px;
}

.loading__waveItem.-second {
  animation-delay: 0.1s;
  background-color: #0052ff;
  height: 51px;
}

.loading__waveItem.-third {
  animation-delay: 0.2s;
  background-color: #0052ff;
  height: 51px;
}

.p-home-heading-lv2 {
  font-feature-settings: 'palt';
}

.p-home-heading-lv2::after {
  display: none;
}

.p-home-lead {
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .p-home-lead {
    margin-top: 15px;
  }
}

.laurel_wrap ul {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 10px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .laurel_wrap ul {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
}

.laurel_wrap li {
  width: fit-content;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (min-width: 960px) {
  .laurel_wrap li {
    width: fit-content;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}

.icon_laurel {
  text-align: center;
  padding-inline: 27px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .icon_laurel {
    padding-inline: 27px;
  }
}
@media screen and (max-width: 509px) {
  .icon_laurel {
    padding-inline: 20px;
  }
}

.icon_laurel::before,
.icon_laurel::after {
  content: '';
  width: 25px;
  height: 100%;
  position: absolute;
  background: url(../../../images/lp/general_a/icon_laurel.svg) no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.icon_laurel::after {
  left: unset;
  right: 0;
  transform: scale(-1, 1);
  background-size: contain;
}

.icon_laurel__text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.2;
  place-content: center;
}
@media screen and (max-width: 509px) {
  .icon_laurel__text {
    font-size: 0.6rem;
  }
}

.icon_laurel__number {
  font-size: 1.25rem;
  font-weight: bold;
  font-feature-settings: 'palt';
  line-height: 1;
  place-content: center;
  position: relative;
  margin-top: 8px;
  margin-inline: 0.4em;
}
@media screen and (max-width: 509px) {
  .icon_laurel__number {
    font-size: 1rem;
  }
}

.icon_laurel__number span {
  font-family: 'Roboto', sans-serif;
  font-size: 2.774375rem;
  font-weight: bold;
  font-feature-settings: 'palt';
  line-height: 1;
}
@media screen and (max-width: 509px) {
  .icon_laurel__number span {
    font-size: 2.25rem;
  }
}
.icon_laurel__number span.-medium {
  font-size: 0.9375rem;
}
.icon_laurel__number span small {
  font-size: 1.899375rem;
  letter-spacing: -0.04em;
  margin-left: -0.14em;
}

.icon_laurel__number span.-kerning {
  letter-spacing: -0.04em;
}

.icon_laurel__number sup {
  font-size: 8px;
  position: absolute;
  top: 1.2em;
  right: 0;
}
@media screen and (min-width: 960px) {
  .icon_laurel__number sup {
    top: 1.7em;
  }
}

.icon_laurel.-white {
  color: #fff;
}

.text_list li {
  position: relative;
  padding-left: 1em;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .text_list li {
    font-size: 1rem;
  }
}

.text_list li::before {
  position: absolute;
  top: 0.53em;
  left: 2px;
  border-radius: 50%;
  background: var(--color-gray);
  width: 6px;
  height: 6px;
  content: '';
}

/*==============================================================================
cta
============================================================================= */
.p-home-cv {
  margin-top: 0;
}

.c-button.-primary.-red {
  background-color: var(--color-red);
  color: #fff;
}

.c-button.-primary.-red small {
  display: inline-block;
  background: #fff;
  color: var(--color-red);
  font-size: 0.875rem;
  line-height: 1;
  padding: 4px 9px 6px;
  margin-right: 10px;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 960px) {
  .c-button.-primary.-red small {
    font-size: 1.125rem;
  }
}

.c-button.-primary::after {
  background-image: url(../../../images/common/icon-arrow-white.svg);
}

@media screen and (min-width: 960px) {
  .c-button.-primary.-red:hover {
    background-color: var(--color-main);
    color: #fff;
  }
  .c-button.-primary.-red:hover small {
    color: var(--color-main);
  }
}

/* 2025年10月 /lp/general_a 追加css */
/*==============================================================================
kv
============================================================================= */
.p-home-kv-b {
  grid-column: 1/-1;
  background: url(../../../images/lp/general_a/kv_sp.webp) center/cover
    no-repeat;
  padding: 38px 25px 38px;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b {
    background: url(../../../images/lp/general_a/kv_pc.webp) center/cover
      no-repeat;
    padding: 56px 25px 55px;
  }
}

.p-home-kv-b_inner {
  display: grid;
  position: relative;
  grid-template-columns: repeat(1, 1fr);
  margin: 0 auto;
  align-items: center;
  gap: 30px;
  max-width: 390px;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_inner {
    grid-template-columns: 1fr 490px;
    gap: 30px;
    max-width: 1200px;
  }
}

.p-home-kv-b_content {
  display: grid;
  grid-template-rows: repeat(3, -webkit-max-content);
  grid-template-rows: repeat(3, max-content);
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 28px;
}

.p-home-kv-b_cat_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_cat_list {
    justify-content: left;
    gap: 8px;
  }
}
.p-home-kv-b_cat_list li {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  padding: 6px 6px 7px;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_cat_list li {
    padding: 4px 10px;
  }
}
.p-home-kv-b_cat_list li span {
  color: #fff;
  font-size: 0.6875rem;
  line-height: 1;
  display: block;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_cat_list li span {
    font-size: 0.9375rem;
    display: inline-block;
  }
}

.p-home-kv-b_lead {
  font-size: 1.8125rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_lead {
    font-size: 2.25rem;
    text-align: left;
  }
}
@media screen and (min-width: 1049px) {
  .p-home-kv-b_lead {
    font-size: 2.875rem;
  }
}

.p-home-kv-b_lead span {
  display: inline-block;
}

.p-home-kv-b_lead-02 {
  background: #1e2025;
  border: 1px solid #fff;
  padding: 2px 8px 6px 10px;
  margin-top: 6px;
  margin-right: 7px;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_lead-02 {
    border: 1.5px solid #fff;
    padding: 3px 16px 8px 12px;
    margin-top: 9px;
    margin-right: 8px;
  }
}

.p-home-kv-b_lead-03 {
  background: #08287f;
  border: 1px solid #fff;
  padding: 2px 10px 6px 10px;
  margin-top: 8px;
  margin-right: 7px;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_lead-03 {
    border: 1.5px solid #fff;
    padding: 3px 16px 8px 12px;
    margin-top: 11px;
    margin-right: 8px;
  }
}

.p-home-kv-b_text {
  font-size: 0.75rem;
  font-weight: bold;
  text-align: left;
  margin-top: -17px;
  font-feature-settings: 'palt';
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_text {
    font-size: 0.875rem;
    margin-top: -16px;
    font-feature-settings: unset;
  }
}
@media screen and (min-width: 1049px) {
  .p-home-kv-b_text {
    font-size: 1rem;
  }
}

.p-NewbizKv_icon-wrap {
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .p-NewbizKv_icon-wrap {
    margin-inline: 0;
  }
}

.p-NewbizKv_icon-wrap .matching .icon_laurel__number {
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .p-NewbizKv_icon-wrap .matching .icon_laurel__number {
    margin-inline: 0.5em 1em;
  }
}
@media screen and (min-width: 960px) {
  .p-NewbizKv_icon-wrap .matching .icon_laurel__number .icon_laurel__text {
    margin-left: 0.5em;
  }
}
.p-NewbizKv_icon-wrap .matching .icon_laurel__number .-kerning {
  letter-spacing: -0.1em;
  margin-inline: -0.2em 0.1em;
}
@media screen and (min-width: 960px) {
  .p-NewbizKv_icon-wrap .matching .icon_laurel__number .-kerning {
    letter-spacing: -0.1em;
    margin-inline: -0.2em 0.1em;
  }
}

.p-home-kv-b_notes {
  color: #fff;
  font-size: 0.6rem;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_notes {
    font-size: 0.6rem;
  }
}

.p-home-kv-b_form {
  padding-top: 0;
}

.p-home-kv-b_form_head {
  display: block;
  border-radius: 4px 4px 0 0;
  background-color: #08287f;
}

.p-home-kv-b_form_title {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  font-size: 0.875rem;
  padding: 5px 0 7px;
}
@media screen and (min-width: 960px) {
  .p-home-kv-b_form_title {
    font-size: 0.875rem;
    padding: 5px 24px 7px;
  }
}

.p-home-kv-b_form_content {
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  padding: 12px;
}
.p-home-kv-b_form_content .mktoForm {
  padding: 0;
  width: 100% !important;
}
.p-home-kv-b_form_content .mktoForm * {
  font-family: 'Inter', 'Noto Sans JP', YuGothic, 'Yu Gothic Medium',
    'Yu Gothic', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
    'Hiragino Sans', Meiryo, sans-serif;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow {
  width: 100%;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow:not(:first-of-type) {
  margin-top: 10px;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow:first-of-type {
  display: flex;
  justify-content: space-between;
  float: none;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow:first-of-type .mktoFormCol {
  width: 48%;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow:first-of-type .mktoClear {
  display: none;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow .mktoFormCol {
  margin-bottom: 0 !important;
  width: 100%;
  min-height: initial;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow .mktoFieldWrap {
  margin-bottom: 0 !important;
  width: 100%;
  min-height: initial;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow .mktoFieldWrap label {
  margin-bottom: 5px;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow .mktoCheckboxList {
  display: flex;
  align-items: center;
  padding-left: 13px;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow .mktoCheckboxList label {
  margin-bottom: 0;
  margin-left: 7px;
}
.p-home-kv-b_form_content .mktoForm .mktoFormRow .mktoHtmlText.mktoHasWidth {
  margin-top: -10px !important;
}
.p-home-kv-b_form_content
  .mktoForm
  .mktoFormRow
  .mktoLogicalField.mktoCheckboxList.mktoHasWidth.mktoRequired {
  font-weight: bold;
}
.p-home-kv-b_form_content .mktoForm .mktoButtonRow {
  margin-top: 10px;
  width: 100%;
}
.p-home-kv-b_form_content .mktoForm .mktoButtonRow .mktoButtonWrap {
  display: block;
  margin-right: auto !important;
  margin-left: auto !important;
  width: 100%;
  max-width: 358px;
}
.p-home-kv-b_form_content .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
  display: block;
  position: relative;
  transition: 0.3s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  background-image: none !important;
  background-color: #0052ff;
  padding: 19px 10px 15px !important;
  width: 100% !important;
  color: #fff;
  font-weight: bold !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  font-family: 'Inter', 'Noto Sans JP', YuGothic, 'Yu Gothic Medium',
    'Yu Gothic', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
    'Hiragino Sans', Meiryo, sans-serif !important;
  text-align: center !important;
  text-shadow: none !important;
}
.p-home-kv-b_form_content
  .mktoForm
  .mktoButtonRow
  .mktoButtonWrap
  .mktoButton:hover {
  background-color: #000;
  color: #fff;
}
.p-home-kv-b_form_content
  .mktoForm
  .mktoButtonRow
  .mktoButtonWrap
  .mktoButton::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(/assets/images/common/icon-arrow-white.svg);
  width: 7px;
  height: 13px;
  content: '';
}
.p-home-kv-b_form_content .mktoForm label#Lblirai {
  width: 100% !important;
  font-weight: 400 !important;
}
.p-home-kv-b_form_content .mktoForm label#Lblirai span {
  font-weight: 400;
  font-size: 0.875rem !important;
  text-decoration: none !important;
}
.p-home-kv-b_form_content .mktoForm label#Lblirai a {
  color: #0052ff;
  text-decoration: underline;
}
.p-home-kv-b_form_content .mktoForm label#Lblirai a:hover {
  text-decoration: none;
}
.p-home-kv-b_form_content
  .mktoForm
  .mktoFieldWrap.mktoRequiredField
  label#Lblirai
  span {
  font-size: 10px !important;
  line-height: 1.3;
}
.p-home-kv-b_form_content .mktoForm .mktoHtmlText.mktoHasWidth {
  width: 100% !important;
}
.p-home-kv-b_form_content .mktoForm .mktoHtmlText.mktoHasWidth > div {
  text-align: left !important;
}
.p-home-kv-b_form_content .mktoForm .mktoAsterix {
  float: left !important;
  padding-right: 5px !important;
  padding-left: 0 !important;
}
.p-home-kv-b_form_content .mktoForm .mktoOffset {
  display: none !important;
}
.p-home-kv-b_form_content
  .mktoForm
  input:not([type='radio']):not([type='checkbox']),
.p-home-kv-b_form_content
  .mktoForm
  select:not([type='radio']):not([type='checkbox']) {
  border: 1px solid #d9d9d9;
  background-color: #f0f0f0;
  padding: 0 10px;
  width: 100% !important;
  height: 32px;
  color: #000;
  font-size: 1rem;
}
.p-home-kv-b_form_content .mktoForm textarea {
  border: 1px solid #d9d9d9;
  background-color: #f0f0f0;
  padding: 10px !important;
  width: 100%;
  height: 250px !important;
  font-size: 1rem;
}

/*==============================================================================
company logo
============================================================================= */
.c-company-logo {
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .c-company-logo {
    margin-top: 50px;
  }
}

.c-company-logo .p-home-heading-lv2 {
  font-size: 1.25rem;
  margin-top: 0;
}
@media screen and (min-width: 960px) {
  .c-company-logo .p-home-heading-lv2 {
    font-size: 2rem;
  }
}
.c-company-logo .p-home-heading-lv2 sup {
  font-size: 0.875rem;
}
@media screen and (min-width: 960px) {
  .c-company-logo .p-home-heading-lv2 sup {
    font-size: 0.6875rem;
    position: relative;
    top: -1.8em;
    margin-inline: -0.3em -0.1em;
  }
}
.c-company-logo .p-home-heading-lv2 small {
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  display: block;
  margin-top: 9px;
}
@media screen and (min-width: 960px) {
  .c-company-logo .p-home-heading-lv2 small {
    font-size: 0.6rem;
    margin-top: 9px;
  }
}

.c-company-logo_inner {
  margin-top: 34px;
}
@media screen and (min-width: 960px) {
  .c-company-logo_inner {
    margin-top: 34px;
  }
}

/*==============================================================================
problem
============================================================================= */
.p-home-problem .p-home-heading-lv2 {
  margin-top: 74px;
}
@media screen and (min-width: 960px) {
  .p-home-problem .p-home-heading-lv2 {
    margin-top: 74px;
  }
}

.p-home-problem_list_wrap {
  background: #f3f3f3;
  padding: 0 20px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .p-home-problem_list_wrap {
    padding: 30px 0;
    margin-top: 41px;
  }
}

.p-home-problem_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 960px) {
  .p-home-problem_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-home-problem_list_item:not(:first-of-type) .p-home-problem_list_item_inner {
  border-top: 1px solid #d4d4d4;
}
@media screen and (min-width: 960px) {
  .p-home-problem_list_item:not(:first-of-type)
    .p-home-problem_list_item_inner {
    border-top: none;
    border-left: 1px solid #d4d4d4;
  }
}

.p-home-problem_list_item .text_list {
  padding-left: 0.3em;
  margin-top: 21px;
}
@media screen and (min-width: 960px) {
  .p-home-problem_list_item .text_list {
    padding-left: 0;
    margin-top: 21px;
  }
}

.p-home-problem_list_item .text_list li {
  line-height: 1.6;
}

.p-home-problem_list_item .text_list li::before {
  top: 0.6em;
  width: 7px;
  height: 7px;
}

.p-home-problem_list_item .text_list li + li {
  margin-top: 13px;
}

.p-home-problem_list_item_inner {
  padding: 30px 0;
}
@media screen and (min-width: 960px) {
  .p-home-problem_list_item_inner {
    padding: 0 30px;
  }
}

.p-home-problem_list_item_title {
  background: #fff;
  width: fit-content;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1;
  font-feature-settings: 'palt';
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
}
@media screen and (min-width: 960px) {
  .p-home-problem_list_item_title {
    grid-template-columns: 24px 1fr;
    font-size: 1.375rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1069px) {
  .p-home-problem_list_item_title {
    white-space: wrap;
  }
}

.p-home-problem_list_item_title span {
  width: 20px;
  height: 20px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-home-problem_list_item_title span {
    width: 24px;
    height: 24px;
  }
}
.p-home-problem_list_item_title span::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 0;
  width: 100%;
  height: 100%;
  background: #4a4a4a;
  border-radius: 50%;
  z-index: 0;
}
.p-home-problem_list_item_title span::after {
  content: '✕';
  display: block;
  color: #fff;
  font-size: 0.65rem;
  line-height: 1;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-home-problem_list_item_title span::after {
    font-size: 0.733125rem;
    top: 5.5px;
  }
}

.p-home-problem_solution_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: rgba(177, 225, 255, 0.2);
  margin-top: 32px;
  position: relative;
}
.p-home-problem_solution_wrap::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: -36px;
  width: 3px;
  height: 47px;
  background-image: radial-gradient(
    circle,
    var(--color-blue) 3px,
    transparent 1px
  );
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 3px 11px;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-home-problem_solution_wrap::before {
    height: 77px;
  }
}
.p-home-problem_solution_wrap::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 5px;
  height: 13.8564064606px;
  width: 18px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--color-blue);
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-home-problem_solution_wrap::after {
    top: 35px;
  }
}

.p-home-problem_solution_inner::before {
  content: '';
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    180deg,
    #ffffff 16.36%,
    rgba(255, 255, 255, 0.6) 34.18%,
    rgba(255, 255, 255, 0) 85.2%
  );
}

.p-home-problem_solution_wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media screen and (min-width: 960px) {
  .p-home-problem_solution_wrap img {
    width: 100%;
    height: 270px;
  }
}

.p-home-problem_solution_text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 960px) {
  .p-home-problem_solution_text {
    font-size: 1.5rem;
  }
}
.p-home-problem_solution_text span {
  display: block;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 960px) {
  .p-home-problem_solution_text span {
    padding-bottom: 0.8125rem;
  }
}
.p-home-problem_solution_text strong {
  display: inline-block;
  color: #fff;
  font-size: 1.8125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  background: var(--color-main);
  padding: 5px 8px 6px;
}
@media screen and (min-width: 960px) {
  .p-home-problem_solution_text strong {
    font-size: 2.875rem;
  }
}

/*==============================================================================
platform
============================================================================= */
.p-home-platform {
  padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .p-home-platform {
    padding-bottom: 90px;
  }
}

.p-home-platform .p-home-heading-lv2 sup {
  color: var(--color-gray);
  font-size: 0.6rem;
  position: relative;
  top: -1.5em;
  margin-inline: -0.3em;
}
@media screen and (min-width: 960px) {
  .p-home-platform .p-home-heading-lv2 sup {
    top: -2.5em;
  }
}

.p-home-platform_img {
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .p-home-platform_img {
    margin-top: 60px;
  }
}
.p-home-platform_img img {
  transform: scale(1.1);
}
@media screen and (min-width: 960px) {
  .p-home-platform_img img {
    transform: scale(1.2);
  }
}

/*==============================================================================
reason
============================================================================= */
.p-home-reason {
  padding-top: 42px;
  margin-top: 0;
}
@media screen and (min-width: 960px) {
  .p-home-reason {
    padding-top: 76px;
    margin-top: 0;
  }
}

.p-home-reason_items {
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_items {
    margin-top: 53px;
  }
}

.p-home-reason_item {
  background: var(--color-white);
  padding: 21px 18px 29px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 20px;
    padding: 50px 60px 50px;
  }
}

@media screen and (min-width: 960px) {
  .p-home-reason_item.--bottom_full {
    grid-template-columns: 1fr 1fr;
  }
}

.p-home-reason_item + .p-home-reason_item {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_item + .p-home-reason_item {
    margin-top: 30px;
  }
}

.p-home-reason_head {
  max-width: none;
}
@media screen and (min-width: 960px) {
  .p-home-reason_head {
    max-width: 536px;
  }
}

.p-home-reason_title {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: baseline;
  font-weight: bold;
  font-size: 1.2625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: 'palt';
}
@media screen and (min-width: 960px) {
  .p-home-reason_title {
    grid-template-columns: 45px 1fr;
    font-size: 1.5rem;
    line-height: 1;
    font-feature-settings: unset;
  }
}

.p-home-reason_title .num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.41em;
  transform: translateY(1px);
  white-space: nowrap;
  color: var(--color-main);
  margin-right: 7px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_title .num {
    font-size: 2.25rem;
    transform: translateY(3px);
    margin-left: 0;
    margin-right: 7px;
  }
}

.p-home-reason_text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 19px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_text {
    font-size: 1rem;
    margin-top: 22px;
  }
}

.p-home-reason_item .text_list {
  margin-top: 24px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_item .text_list {
    margin-top: 26px;
  }
}

.p-home-reason_item .text_list > li {
  position: relative;
  padding-left: 1em;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .p-home-reason_item .text_list > li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .p-home-reason_item .text_list > li sup {
    font-size: 0.678125rem;
  }
}

.p-home-reason_item .text_list > li + li {
  margin-top: 4px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_item .text_list > li + li {
    margin-top: 5px;
  }
}

.p-home-reason_item .text_list > li::before {
  top: 0.53em;
  left: 2px;
  width: 6px;
  height: 6px;
}

.p-home-reason_item .laurel_wrap {
  margin-top: 24px;
}

.p-home-reason_notes {
  color: var(--color-gray);
  margin-top: 10px;
  font-size: 0.678125rem;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .p-home-reason_notes {
    font-size: 0.678125rem;
    margin-top: 14px;
  }
}

.p-home-reason_item .p-home-industry-logo {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 460px;
  margin-top: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .p-home-reason_item .p-home-industry-logo {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 534px;
    max-width: none;
    margin-top: 0;
    margin-left: auto;
    margin-right: -22px;
    transform: translateX(13px);
  }
}

.p-home-reason_img {
  width: 100%;
  max-width: none;
  margin: 30px auto;
  text-align: center;
  background: #d4e2ff;
}
@media screen and (min-width: 960px) {
  .p-home-reason_img {
    max-width: 425px;
    margin: 7px auto 0;
    transform: translateX(20px);
  }
}

.p-home-reason_img figure {
  padding: 22px 10px 22px 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .p-home-reason_img figure {
    padding: 30px 19px 30px 44px;
  }
}
.p-home-reason_img figure img {
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .p-home-reason_img figure img {
    width: 360px;
  }
}

.p-home-reason_img figcaption {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-home-reason_img figcaption {
    font-size: 1.125rem;
  }
}
.p-home-reason_img figcaption em {
  font-size: 1.125rem;
  font-style: normal;
}
@media screen and (min-width: 960px) {
  .p-home-reason_img figcaption em {
    font-size: 1.5rem;
  }
}

.p-home-reason_img.--full {
  margin-right: 0;
  margin-left: 0;
}

.p-home-service_lineup {
  grid-column: 1/-1;
  margin-top: 42px;
}

.p-home-service_lineup_title {
  background: #242424;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0;
}

.p-home-service_lineup_items {
  width: 100%;
}
.p-home-service_lineup_flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 510px) {
  .p-home-service_lineup_flex {
    flex-direction: row;
    gap: 30px;
  }
}
@media screen and (min-width: 960px) {
  .p-home-service_lineup_flex {
    flex-direction: row;
  }
}

.p-home-service_lineup_item {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 510px) {
  .p-home-service_lineup_item {
    width: calc(50% - 15px);
  }
}

.p-home-service_lineup_item_title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 9px 0;
  background: #ededed;
  border-radius: 3px;
}

.p-home-service_lineup_item_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0 20px;
}
@media screen and (min-width: 960px) {
  .p-home-service_lineup_item_inner {
    flex-direction: row;
    gap: 0 20px;
  }
}
.p-home-service_lineup_item_inner dl {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 0 17px;
}
@media screen and (min-width: 960px) {
  .p-home-service_lineup_item_inner dl {
    width: calc(50% - 10px);
    padding: 25px 0 17px;
  }
}
.p-home-service_lineup_item_inner dt {
  font-size: 0.875rem;
}
.p-home-service_lineup_item_inner img {
  max-height: 39px;
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .p-home-service_lineup_item_inner img {
    max-height: 39px;
    margin-top: 10px;
  }
}

.p-home-service_lineup_flex .p-home-service_lineup_flex {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 960px) {
  .p-home-service_lineup_flex .p-home-service_lineup_flex {
    flex-direction: row;
    gap: 30px;
  }
}
.p-home-service_lineup_flex
  .p-home-service_lineup_flex
  .p-home-service_lineup_item {
  width: 100%;
}
.p-home-service_lineup_flex
  .p-home-service_lineup_flex
  .p-home-service_lineup_item
  dl {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .p-home-reason_item:has(.p-home-reason_img-logo) {
    align-items: center;
  }
}
.p-home-reason_item:has(.p-home-reason_img-logo) .p-home-reason_notes {
  margin-top: 22px;
}

.p-home-reason_img-logo {
  width: 100%;
  max-width: 600px;
  padding: 40px 0 0;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .p-home-reason_img-logo {
    max-width: 494px;
    padding: 0;
    margin-inline: auto 0;
    transform: translateX(13px);
  }
}

.p-home-reason_item .icon_laurel__number sup {
  font-size: 0.678125em;
  color: var(--color-gray);
  position: absolute;
  top: 0.6em;
  right: -0.3em;
}

/*==============================================================================
case
============================================================================= */
.p-case {
  padding-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .p-case {
    padding-bottom: 124px;
  }
}

.p-case-list {
  position: relative;
  overflow: hidden;
  transition: height 0.5s ease;
  gap: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-case-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 45px;
  }
}

.p-case-card {
  width: 100%;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-case-card {
    width: 100%;
    max-width: none;
  }
}

.p-case-card__body {
  padding: 16px 15px 30px;
}
@media screen and (min-width: 960px) {
  .p-case-card__body {
    padding: 16px 15px 37px;
  }
}

.p-case-card__label {
  font-size: 1.125rem;
  min-height: unset;
}
@media screen and (min-width: 960px) {
  .p-case-card__label {
    font-size: 1.25rem;
  }
}

.p-case-card__title {
  font-size: 1rem;
  margin-top: 14px;
}
@media screen and (min-width: 960px) {
  .p-case-card__title {
    font-size: 1.125rem;
    margin-top: 24px;
  }
}

.more-button_wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  display: flex;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 90%,
    #fff 100%
  );
  backdrop-filter: blur(5px);
}
@media screen and (min-width: 960px) {
  .more-button_wrap {
    height: 164px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 40%,
      rgba(255, 255, 255, 0.9) 80%,
      #fff 100%
    );
  }
}

.js-more-button {
  display: block;
  color: var(--color-main);
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1;
  border: 1px solid var(--color-main);
  background: var(--color-white);
  padding: 16px 10px;
  width: 400px;
  margin: auto;
  text-align: center;
  position: relative;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 960px) {
  .js-more-button {
    font-size: 1.375rem;
    padding: 28px 10px;
  }
}
.js-more-button::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  display: inline-block;
  background: no-repeat 0 0;
  background-size: contain;
  background-image: url(../../../images/common/icon-arrow-blue.svg);
}
.js-more-button:hover {
  background: rgba(244, 247, 250, 0.7);
} /*# sourceMappingURL=general_a.css.map */
