@charset "UTF-8";
/* ===================================
共通
=================================== */
.sp_br {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp_br {
    display: inline;
  }
}

.pc_br {
  display: inline;
}
@media screen and (max-width: 599px) {
  .pc_br {
    display: none;
  }
}

.sec {
  position: relative;
  margin-top: 100px;
  padding: 0 20px;
}
@media screen and (max-width: 1100px) {
  .sec {
    margin-top: 0px;
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.sec .sec_inner {
  max-width: 90%;
  width: 90%;
  margin: auto;
}

.t_sec_ttl_wrap {
  position: relative;
  width: fit-content;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .t_sec_ttl_wrap {
    margin-bottom: 40px;
  }
}
.t_sec_ttl_wrap .t_sec_ttl_en {
  position: relative;
  left: 0;
  color: #E9E4DA;
  font-size: 160px;
  font-weight: 500;
  line-height: 1em;
}
.t_sec_ttl_wrap .t_sec_ttl_ja {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: max-content;
  white-space: nowrap;
  color: #333;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
.t_sec_ttl_wrap.center {
  margin: auto;
  margin-bottom: 30px;
}
.t_sec_ttl_wrap.center .t_sec_ttl_en {
  left: 0;
}
.t_sec_ttl_wrap.center .t_sec_ttl_ja {
  left: 50%;
  transform: translateX(-50%);
}
.t_sec_ttl_wrap.black .t_sec_ttl_en {
  color: #444;
}
.t_sec_ttl_wrap.black .t_sec_ttl_ja {
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .t_sec_ttl_wrap .t_sec_ttl_en {
    font-size: 120px;
  }
  .t_sec_ttl_wrap .t_sec_ttl_ja {
    left: 0;
    bottom: 35px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .t_sec_ttl_wrap {
    width: 100%;
  }
  .t_sec_ttl_wrap .t_sec_ttl_en {
    font-size: 68px;
    text-align: center;
  }
  .t_sec_ttl_wrap .t_sec_ttl_ja {
    bottom: 12px;
    width: 100%;
    text-align: center;
    font-size: 32px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 340px) {
  .t_sec_ttl_wrap {
    width: 100%;
  }
  .t_sec_ttl_wrap .t_sec_ttl_en {
    font-size: 50px;
  }
  .t_sec_ttl_wrap .t_sec_ttl_ja {
    font-size: 18px;
  }
}

.link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 300px;
  padding: 15px 20px;
  margin-top: 60px;
  border: 1px solid #333;
  border-radius: 100px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .link_btn {
    margin: auto;
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .link_btn {
    max-width: 100%;
  }
}
.link_btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: #333;
  transition: 0.3s;
}
@media (hover: hover) {
  .link_btn:hover {
    background-color: #333;
    color: #fff;
  }
  .link_btn:hover::after {
    background-color: #fff;
  }
}
.link_btn.black {
  border: 1px solid #fff;
  color: #fff;
}
.link_btn.black::after {
  background-color: #fff;
}
@media (hover: hover) {
  .link_btn.black:hover {
    background-color: #fff;
    color: #333;
  }
  .link_btn.black:hover::after {
    background-color: #333;
  }
}
.link_btn.center {
  margin: auto;
  margin-top: 60px;
}

/* ===================================
ファーストビュー
=================================== */
.sec_fv {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 800px 400px;
  align-items: start;
  justify-content: space-between;
  height: 100vh;
  min-height: 100vh;
  padding: 145px 50px 63px 30px;
  gap: 40px;
}
.fv_bg_slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  z-index: 0;
}
.fv_bg_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fv_bg_slide.is-active {
  clip-path: inset(0 0 0 0);
}
.fv_bg_slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv_overlay {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0) 65%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .fv_overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0) 65%);
  }
}
@media screen and (max-width: 1000px) {
  .sec_fv {
    grid-template-columns: 1fr;
    padding-top: 140px;
    padding-left: 50px;
  }
  .sec_fv .fv_cta_list {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .sec_fv {
    padding-inline: 20px;
    padding-top: 120px;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
  }
  .sec_fv .fv_cta_list {
    max-width: 400px;
  }
}

.fv_contents {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv_contents {
    width: 100%;
  }
}
.fv_contents_inner {
  max-width: 100%;
  width: 100%;
  margin-inline: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .fv_contents_inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.fv_contents .fv_txt_wrap {
  flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 1000px) {
  .fv_contents .fv_txt_wrap {
    flex: none;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fv_contents_inner {
    width: 100%;
    justify-content: space-between;
  }
}
.fv_contents .fv_txt_wrap {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .fv_contents .fv_txt_wrap {
    width: 100%;
  }
}
.fv_topicList {
  flex-shrink: 1;
  min-width: 0;
  margin-right: 160px;
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 170px));
  align-items: center;
  gap: clamp(16px, 2vw, 36px);
}
@media screen and (max-width: 1000px) {
  .fv_topicList {
    margin-right: 0;
    grid-template-columns: repeat(3, 130px);
    gap: 36px;
  }
}
@media screen and (max-width: 400px) {
  .fv_topicList {
    grid-template-columns: repeat(3, 90px);
    gap: 24px;
  }
}
.fv_topicList_item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  z-index: 0;
}
.fv_topicList_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 145%;
  height: 145%;
  transform: translate(-50%, -50%);
  background-image: url(../img/top/01_fv_badge_laurel_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -2;
  pointer-events: none;
}
.fv_topicList_item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(251, 247, 238, 0.5);
  aspect-ratio: 1/1;
  box-sizing: border-box;
  z-index: -1;
}
.fv_topicList_item .fv_topicList_container {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.fv_topicList_item .fv_topicList_container p:nth-child(3) {
  margin-top: 1px;
}
@media screen and (max-width: 1000px) {
  .fv_topicList_item .fv_topicList_container {
    font-size: 0.75rem;
    gap: 2px;
  }
}
@media screen and (max-width: 400px) {
  .fv_topicList_item .fv_topicList_container {
    font-size: 0.5625rem;
    gap: 1px;
  }
}
.fv_topicList_item .fv_topicList_container_largeSize {
  text-align: center;
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1000px) {
  .fv_topicList_item .fv_topicList_container_largeSize {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 400px) {
  .fv_topicList_item .fv_topicList_container_largeSize {
    font-size: 1.125rem;
  }
}
.fv_topicList_item .fv_topicList_container_middleSize {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1000px) {
  .fv_topicList_item .fv_topicList_container_middleSize {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 400px) {
  .fv_topicList_item .fv_topicList_container_middleSize {
    font-size: 0.8125rem;
  }
}
.fv_contents .fv_txtContainer {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 20px;
  color: #fff;
  text-align: center;
}
.fv_contents .fv_txtContainer .fv_txtContainer_copy {
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .fv_contents .fv_txtContainer .fv_txtContainer_copy {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .fv_contents .fv_txtContainer .fv_txtContainer_copy {
    font-size: 1.5rem;
    letter-spacing: 0.0266666667em;
    text-align: center;
    white-space: normal;
  }
}
.fv_contents .fv_txtContainer .fv_txtContainer_copy .spBr {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_contents .fv_txtContainer .fv_txtContainer_copy .spBr {
    display: block;
  }
}
.fv_contents .fv_txtContainer .fv_txtContainer_txt {
  color: #fff;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .fv_contents .fv_txtContainer .fv_txtContainer_txt {
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-align: center;
  }
}
.fv_contents .fv_txtContainer .fv_txtContainer_txt .fvBr {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv_contents .fv_txtContainer .fv_txtContainer_txt .fvBr {
    display: block;
  }
}

.bl_fv_formWrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .bl_fv_formWrapper {
    max-width: 100%;
  }
}

/* ===================================
CTAエリア
=================================== */
.fv_cta_wrap {
  display: flex;
  gap: 10px;
}
.fv_cta_wrap.pc_box {
  display: block;
}
.fv_cta_wrap.sp_box {
  display: none;
  gap: 20px;
  background-color: #333;
  margin-top: 0;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap.sp_box {
    display: flex;
  }
}
@media screen and (max-width: 599px) {
  .fv_cta_wrap.sp_box {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap {
    flex-direction: column;
  }
}
.fv_cta_wrap .tel_btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 13px 23px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: 0.3s;
}
.fv_cta_wrap .tel_btn a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon-tel_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (hover: hover) {
  .fv_cta_wrap .tel_btn a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap .tel_btn a {
    justify-content: center;
  }
}
.fv_cta_wrap .fv_cta_list {
  display: grid;
  grid-template-columns: auto auto;
  align-items: stretch;
  width: fit-content;
  margin-inline: auto;
  gap: 10px;
}
.fv_cta_wrap .fv_cta_list li {
  height: 100%;
}
.fv_cta_wrap .downloadBtn {
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap .fv_cta_list {
    justify-content: center;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap .fv_cta_list li {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .fv_cta_wrap .fv_cta_list li {
    width: 100%;
  }
}
.fv_cta_wrap .fv_cta_list li a {
  display: block;
  min-width: 220px;
  padding: 13px px 15px;
  border-radius: 200px;
  border: 1px solid #E03837;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.fv_cta_wrap .fv_cta_list li.contact {
  width: auto;
}
.fv_cta_wrap .fv_cta_list li.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #E03837;
  color: #fff;
  transition: 0.3s;
  height: 100%;
}
.fv_cta_wrap .fv_cta_list li.contact a::before {
  content: "";
  display: block;
  background-image: url(../img/common/icon-mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
}
@media (hover: hover) {
  .fv_cta_wrap .fv_cta_list li.contact a:hover {
    background-color: #fff;
    color: #E03837;
  }
  .fv_cta_wrap .fv_cta_list li.contact a:hover::before {
    background-image: url(../img/common/icon-mail_hover.svg);
  }
}
.fv_cta_wrap .fv_cta_list li.contact.big a {
  width: auto;
  padding: 20px 30px 21px;
  font-size: 30px;
  min-width: 260px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap .fv_cta_list li a {
    min-width: 0;
    padding: 13px 18px 15px;
    font-size: 16px;
  }
  .fv_cta_wrap .fv_cta_list li.contact.big a {
    padding: 16px 24px 17px;
    font-size: 20px;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap .fv_cta_list li.contact.big a {
    margin-inline: auto;
  }
}
.fv_cta_wrap .fv_cta_list li.contact.big a::before {
  width: 34px;
  height: 34px;
}
.fv_cta_wrap .downloadBtn {
  padding-inline: 44px;
}
.fv_cta_wrap .downloadBtn_subtxt {
  font-size: 1.25rem;
  white-space: nowrap;
}
.fv_cta_wrap .downloadBtn_maintxt {
  font-size: 1.875rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv_cta_wrap .downloadBtn_subtxt {
    font-size: 0.875rem;
  }
  .fv_cta_wrap .downloadBtn_maintxt {
    font-size: 1.25rem;
  }
}
.fv_cta_wrap .fv_cta_list li.request a {
  display: flex;
  justify-content: center;
  gap: 8px;
  background-color: #fff;
  color: #E03837;
  transition: 0.3s;
}
.fv_cta_wrap .fv_cta_list li.request a::before {
  content: "";
  display: block;
  background-image: url(../img/common/ion_document.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
}
@media (hover: hover) {
  .fv_cta_wrap .fv_cta_list li.request a:hover {
    background-color: #E03837;
    color: #fff;
  }
  .fv_cta_wrap .fv_cta_list li.request a:hover::before {
    background-image: url(../img/common/ion_document_hover.svg);
  }
}

/* ===================================
ロゴスライダー
=================================== */
.logo_slider_wrap {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  /* border-bottom: 1px solid #333; */
  background-color: #FBF7EE;
  z-index: 0;
}
.logo_slider_wrap .logo_slider_01 .swiper-wrapper,
.logo_slider_wrap .logo_slider_02 .swiper-wrapper,
.voice_case_slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* ===================================
ボディコピー
=================================== */
.sec_b_copy {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background-color: #FBF7EE;
  padding: 0 20px;
}
.sec_b_copy_person {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 26%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.sec_b_copy_person.left {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, black 55%, transparent 100%);
  mask-image: linear-gradient(to right, black 55%, transparent 100%);
}
.sec_b_copy_person.right {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, black 55%, transparent 100%);
  mask-image: linear-gradient(to left, black 55%, transparent 100%);
}
@media screen and (max-width: 1024px) {
  .sec_b_copy_person {
    display: none;
  }
}
.sec_b_copy .tb_br {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_b_copy .tb_br {
    display: inline;
  }
}
.sec_b_copy .sec_b_copy_inner {
  position: relative;
  z-index: 1;
  display: grid;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sec_b_copy .sec_b_copy_inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.sec_b_copy .sec_b_copy_inner .bg_ttl,
.sec_b_copy .sec_b_copy_inner .bl_aboutTxtContainer {
  grid-column: 1;
  grid-row: 1;
}
.sec_b_copy .sec_b_copy_inner .bl_aboutTxtContainer {
  align-self: center;
}
@media screen and (max-width: 767px) {
  .sec_b_copy .sec_b_copy_inner .bl_aboutTxtContainer {
    align-self: start;
    margin-top: 70px;
  }
}
.sec_b_copy .sec_b_copy_inner .bg_ttl {
  position: relative;
  align-self: start;
  width: 100%;
  text-align: center;
  color: #E9E4DA;
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  z-index: 0;
}
@media screen and (max-width: 1065px) {
  .sec_b_copy .sec_b_copy_inner .bg_ttl {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .sec_b_copy .sec_b_copy_inner .bg_ttl {
    text-align: right;
    font-size: 60px;
  }
}
@media screen and (max-width: 400px) {
  .sec_b_copy .sec_b_copy_inner .bg_ttl {
    font-size: 50px;
  }
}
.sec_b_copy .sec_b_copy_inner .body_copy_txt {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
}

.bl_aboutTxtContainer {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 20px;
  z-index: 1;
}
.bl_aboutTxtContainer .bl_aboutTxtContainer_copy {
  color: #333;
  text-align: center;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .bl_aboutTxtContainer .bl_aboutTxtContainer_copy {
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.bl_aboutTxtContainer .bl_aboutTxtContainer_copy .spbr {
  display: none;
}
@media screen and (max-width: 1024px) {
  .bl_aboutTxtContainer .bl_aboutTxtContainer_copy .spbr {
    display: block;
  }
}
.bl_aboutTxtContainer .bl_aboutTxtContainer_copy .min-spbr {
  display: none;
}
@media screen and (max-width: 365px) {
  .bl_aboutTxtContainer .bl_aboutTxtContainer_copy .min-spbr {
    display: block;
  }
}
.bl_aboutTxtContainer .bl_aboutList {
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 767px) {
  .bl_aboutTxtContainer .bl_aboutList {
    gap: 10px;
  }
}
.bl_aboutTxtContainer .bl_aboutList_item {
  color: #333;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 220%;
  letter-spacing: 0.04em;
}
.bl_aboutTxtContainer .bl_aboutList_item .txt_red {
  color: #E03837;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .bl_aboutTxtContainer .bl_aboutList_item {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

/* ===================================
FEATURES キャニングの特徴
=================================== */
.sec_features {
  position: relative;
  background-color: #FBF7EE;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .sec_features {
    padding-top: 24px;
  }
}

.features_flex {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 20px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .features_flex {
    align-items: center;
    padding-bottom: 0;
  }
}
.features_flex .features_flex_left {
  flex-shrink: 0;
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .features_flex .features_flex_left {
    max-width: 100%;
  }
}
.features_flex .features_flex_left .features_img {
  overflow: hidden;
  aspect-ratio: 335/200;
  margin-bottom: 40px;
}
.features_flex .features_flex_left .features_img img {
  object-fit: cover;
  width: 100%;
  position: relative;
  top: -50px;
}
.features_flex .pc_only {
  display: block;
}
@media screen and (max-width: 1023px) {
  .features_flex .pc_only {
    display: none;
  }
}
.features_flex .sp_only {
  display: none;
}
@media screen and (max-width: 1023px) {
  .features_flex .sp_only {
    display: block;
  }
}

.bl_featuresTtlContainer .t_sec_ttl_wrap {
  position: relative;
  width: 100%;
  padding-top: 86px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .bl_featuresTtlContainer .t_sec_ttl_wrap {
    padding-top: 72px;
  }
}
@media screen and (max-width: 767px) {
  .bl_featuresTtlContainer .t_sec_ttl_wrap {
    padding-top: 30px;
  }
}
.bl_featuresTtlContainer .t_sec_ttl_wrap .t_sec_ttl_ja {
  position: relative;
  margin-inline: auto;
  width: fit-content;
  bottom: 15px;
  padding-bottom: 42px;
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  .bl_featuresTtlContainer .t_sec_ttl_wrap .t_sec_ttl_ja {
    padding-bottom: 0;
    font-size: 28px;
    width: fit-content;
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  .bl_featuresTtlContainer .t_sec_ttl_wrap .t_sec_ttl_en {
    font-size: 56px;
  }
  .bl_featuresTtlContainer .t_sec_ttl_wrap .t_sec_ttl_ja {
    bottom: 13px;
    font-size: 22px;
    white-space: nowrap;
  }
}
.bl_featuresTtlContainer .t_sec_ttl_wrap .t_sec_ttl_en {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
}
.bl_featuresTtlContainer .bl_featuresTtlContainer_txt {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .bl_featuresTtlContainer .bl_featuresTtlContainer_txt {
    font-size: 1rem;
    margin-bottom: 45px;
    text-align: left;
  }
}

.features_p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2em;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}
@media screen and (max-width: 1100px) {
  .features_p {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .features_p {
    line-height: 2;
  }
}

.bl_pointList {
  display: flex;
  flex-flow: column;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .bl_pointList {
    gap: 45px;
  }
}
.bl_pointList_item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .bl_pointList_item {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
  }
}
.bl_pointList .bl_pointTxtContainer_ttl {
  display: grid;
  grid-template-columns: 72px auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.bl_pointList .el_pointTxtContainer_ttl_txt {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 1300px) {
  .bl_pointList .el_pointTxtContainer_ttl_txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .bl_pointList .el_pointTxtContainer_ttl_txt {
    font-size: 1.125rem;
    white-space: normal;
  }
}
@media screen and (max-width: 599px) {
  .bl_pointList .el_pointTxtContainer_ttl_txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .bl_pointList .el_pointTxtContainer_ttl_txt br {
    display: none;
  }
}
.bl_pointList .el_pointTxtContainer_txt {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .bl_pointList .el_pointTxtContainer_txt {
    font-size: 1rem;
  }
}
.bl_pointList .el_pointTxtContainer_txt_red {
  color: #E03837;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .bl_pointList .el_pointTxtContainer_txt_red {
    font-size: 1rem;
  }
}
.bl_pointList .el_pointTxtContainer_ttl_txt .marker {
  display: inline-block;
  background-image: linear-gradient(transparent 60%, #FFE066 60%);
  padding: 0 2px;
  font-size: 1.3em;
  line-height: 1;
}
.bl_pointTxtContainer .link_btn {
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  min-width: 400px;
  max-width: none;
  white-space: nowrap;
  font-size: 18px;
}
@media screen and (max-width: 599px) {
  .bl_pointTxtContainer .link_btn {
    min-width: 0;
    width: 100%;
    white-space: normal;
    font-size: 14px;
  }
}

.point_number {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #333;
  padding: 11px;
}
.point_number .point {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
}
.point_number .number {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
}

.step_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
.step_text .step_text_bold {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .step_text {
    font-size: 16px;
    line-height: 1.5em;
  }
  .step_text .step_text_bold {
    font-size: 18px;
    line-height: 1.5em;
  }
  .step_text br {
    display: none;
  }
}

/* ===================================
SERVICE　サービス
=================================== */
.sec_service {
  color: #fff;
  background-color: #333;
  margin-top: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .sec_service {
    padding-block: 60px;
    margin-top: 0;
  }
}

.service_center_p {
  margin-top: 24px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.2em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .service_center_p {
    font-size: 0.9375rem;
    line-height: 1.8em;
  }
}

.bl_stepListContainer {
  margin-bottom: 60px;
}
.bl_stepListContainer .bl_stepList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}
@media screen and (max-width: 767px) {
  .bl_stepListContainer .bl_stepList {
    grid-template-columns: repeat(1, 1fr);
    gap: 43px;
  }
}
.bl_stepListContainer .bl_stepList_item {
  display: grid;
  grid-template-columns: auto 37px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .bl_stepListContainer .bl_stepList_item {
    grid-template-columns: 1fr;
  }
}
.bl_stepListContainer .bl_stepList_item .bl_stepList_item_arrow {
  translate: -1px 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .bl_stepListContainer .bl_stepList_item .bl_stepList_item_arrow {
    translate: 0 -1px;
  }
}
.bl_stepListContainer .bl_stepList .bl_stepList_contents {
  display: flex;
  flex-flow: column;
  gap: 10px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 16px;
  padding-bottom: 20px;
  background-color: #444;
  border-left: 1px solid #fff;
  border-block: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .bl_stepListContainer .bl_stepList .bl_stepList_contents {
    border-inline: 1px solid #fff;
    border-top: 1px solid #fff;
    border-bottom: none;
  }
}
.bl_stepListContainer .bl_stepList .bl_stepList_contents_ttl {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.bl_stepListContainer .bl_stepList .bl_stepList_contents_ttl .bl_stepList_contents_ttl_sub {
  text-transform: uppercase;
  margin-inline: auto;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.bl_stepListContainer .bl_stepList .bl_stepList_contents_ttl .bl_stepList_contents_ttl_main {
  color: #FFFFFF;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper {
  display: flex;
  flex-flow: column;
  gap: 8px;
  background-color: #FFFFFF;
  padding: 16px;
  height: 100%;
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper .bl_stepTxtWrapper_ttl {
  color: #E03837;
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper .bl_stepTxtWrapper_txtWrapper {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper .bl_stepTxtWrapper_txtWrapper .el_stepTxtWrapper_txtWrapper_txt {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper .bl_stepTxtWrapper_txtWrapper .el_stepTxtWrapper_txtWrapper_cautionTxt {
  color: var(--black, #333);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper .bl_stepTxtWrapper_txtWrapper .el_stepTxtWrapper_txtWrapper_link {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.18, 0.07, 0.34, 1.01);
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper .bl_stepTxtWrapper_txtWrapper .el_stepTxtWrapper_txtWrapper_link:hover {
  opacity: 0.5;
  transition: all 0.3s cubic-bezier(0.18, 0.07, 0.34, 1.01);
}
.bl_stepListContainer .bl_stepList .bl_stepTxtWrapper .bl_stepTxtWrapper_txtWrapper .el_stepTxtWrapper_txtWrapper_bold {
  font-weight: 700;
}

.ly_serviceLargeList {
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.ly_serviceLargeList .bl_serviceLargeList_item {
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.ly_serviceLargeList .bl_serviceLargeList_item_ttl {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.ly_serviceLargeList .bl_serviceLargeList_item_ttl .el_serviceLargeList_item_ttl_main {
  position: relative;
  color: #FFFFFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-left: 26px;
}
.ly_serviceLargeList .bl_serviceLargeList_item_ttl .el_serviceLargeList_item_ttl_main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  aspect-ratio: 1/1;
  width: 10px;
  background-color: #E03837;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .ly_serviceLargeList .bl_serviceLargeList_item_ttl .el_serviceLargeList_item_ttl_main {
    font-size: 1.375rem;
    letter-spacing: 0.04em;
  }
}
.ly_serviceLargeList .bl_serviceLargeList_item_ttl .el_serviceLargeList_item_ttl_sub {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .ly_serviceLargeList .bl_serviceLargeList_item_ttl .el_serviceLargeList_item_ttl_sub {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.bl_serviceSmallList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .bl_serviceSmallList {
    grid-template-columns: 1fr;
  }
}
.bl_serviceSmallList_item {
  display: contents;
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_inner {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 8;
  gap: 30px;
  border: 1px solid #fff;
  padding-inline: 40px;
  padding-bottom: 40px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .bl_serviceSmallList_item .bl_serviceSmallList_item_inner {
    padding: 20px;
  }
}
.bl_serviceSmallList_item_recommend {
  text-align: center;
}
.bl_serviceSmallList_item_recommend_ttl {
  color: #F5BC29;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.bl_serviceSmallList_item_recommend_txt {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.bl_serviceSmallList_item_tagWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  gap: 10px;
}
.bl_serviceSmallList_item_tagWrap .bl_audienceTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 6px 18px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .bl_serviceSmallList_item_tagWrap .bl_audienceTag {
    min-width: 0;
    flex: 1 1 auto;
    max-width: 130px;
    padding: 6px 10px;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
.bl_serviceSmallList_item_tagWrap .bl_audienceTag.corp {
  background-color: #2F5FA8;
}
.bl_serviceSmallList_item_tagWrap .bl_audienceTag.exec {
  background-color: #2D6B3C;
}
.bl_serviceSmallList_item_tagWrap .bl_audienceTag.personal {
  background-color: #4A90D9;
}
.bl_serviceSmallList_item_tagWrap .bl_audienceTag.hr {
  background-color: #1F3A6E;
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmallList_item_ttl_en {
  text-align: center;
  font-family: "Kanit", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 4px;
}
@media screen and (max-width: 600px) {
  .bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmallList_item_ttl_en {
    font-size: 1rem;
  }
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmall_ttl_communication {
  color: #F5BC29;
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmall_ttl_LeadershipDevelopment {
  color: #F87740;
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmall_ttl_CanningUK {
  color: #B560F9;
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmall_ttl_savilleAssessment {
  color: #F5BC29;
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmallList_item_ttl_ja {
  color: #FFF;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.6;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmallList_item_ttl_ja {
    text-align: center;
    font-size: 1.25rem;
  }
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmallList_item_ttl_ja .spbr {
  display: none;
}
@media screen and (max-width: 600px) {
  .bl_serviceSmallList_item .bl_serviceSmallList_item_ttl .el_serviceSmallList_item_ttl_ja .spbr {
    display: block;
  }
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_img {
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}
.bl_serviceSmallList_item .bl_serviceSmallList_item_txt {
  color: #FFFFFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.bl_serviceSmallList_item .link_btn {
  max-width: 300px;
  width: 100%;
  margin-top: 0;
  margin-inline: auto;
}

.bl_tagList {
  display: contents;
}
.bl_tagList_item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: flex-start;
  gap: 8px;
}
.bl_tagList_item .bl_tagList_item_ttl {
  color: #FFF;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.bl_tagList_item .bl_tagList_item_langttl {
  padding-top: 3px;
}
.bl_tagList_item .bl_tagSmallList {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bl_tagList_item .bl_tagSmallList .bl_tagSmallList_break {
  flex-basis: 100%;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}
.bl_tagList_item .bl_tagSmallList .bl_tagSmallList_item {
  color: #fff;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  padding-top: 2px;
  padding-bottom: 4px;
  padding-inline: 8px;
  border: 2px solid #fff;
}

.service_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 60px 0;
  border-bottom: 1px solid #666;
}
@media screen and (max-width: 1100px) {
  .service_box {
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .service_box {
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .service_box {
    flex-direction: column-reverse;
  }
  .service_box:nth-of-type(2n) {
    flex-direction: column;
  }
}
.service_box:last-of-type {
  border-bottom: none;
}
.service_box .service_img_wrap {
  max-width: 540px;
}
@media screen and (max-width: 1100px) {
  .service_box .service_img_wrap {
    flex-shrink: 0;
    max-width: 400px;
    width: 100%;
    aspect-ratio: 4/3;
  }
  .service_box .service_img_wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .service_box .service_img_wrap {
    max-width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .service_box .service_img_wrap {
    max-width: 100%;
  }
}
.service_box .service_txt_wrap {
  flex-shrink: 0;
  width: 620px;
}
@media screen and (max-width: 1100px) {
  .service_box .service_txt_wrap {
    flex-shrink: unset;
    width: auto;
  }
}
.service_box .service_txt_wrap .service_span_en {
  display: block;
  margin-bottom: 11px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.service_box .service_txt_wrap .service_span_en.en01 {
  color: #F5BC29;
}
.service_box .service_txt_wrap .service_span_en.en02 {
  color: #25BC6B;
}
.service_box .service_txt_wrap .service_span_en.en03 {
  color: #F87740;
}
.service_box .service_txt_wrap .service_span_en.en04 {
  color: #2F7FF6;
}
.service_box .service_txt_wrap .service_span_en.en05 {
  color: #B560F9;
}
@media screen and (max-width: 599px) {
  .service_box .service_txt_wrap .service_span_en {
    font-size: 16px;
  }
}
.service_box .service_txt_wrap h3 {
  margin-bottom: 47px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1100px) {
  .service_box .service_txt_wrap h3 {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .service_box .service_txt_wrap h3 {
    font-size: 24px;
  }
}
.service_box .service_txt_wrap .service_p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1100px) {
  .service_box .service_txt_wrap .service_p br {
    display: none;
  }
}
.service_box .service_txt_wrap .link_btn {
  margin-top: 47px;
}
@media screen and (max-width: 1100px) {
  .service_box .service_txt_wrap .link_btn {
    margin-top: 30px;
  }
}

.sec_column {
  position: relative;
  padding: 0 20px 60px;
  background-color: #FBF7EE;
  z-index: 0;
}
@media screen and (max-width: 1100px) {
  .sec_column {
    padding: 60px 20px 80px;
  }
}
.sec_column .link_btn {
  margin-top: 80px;
}
@media screen and (max-width: 1100px) {
  .sec_column .link_btn {
    margin-top: 50px;
  }
}

.column_a_list {
  max-width: 100%;
  margin: auto;
  margin-top: 60px;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 1100px) {
  .column_a_list {
    gap: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .column_a_list {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .column_a_list {
    gap: 20px;
    flex-direction: column;
  }
}
.column_a_list li {
  width: calc(33.3333333333% - 24px);
}
@media screen and (max-width: 1100px) {
  .column_a_list li {
    width: calc(33.3333333333% - 14px);
  }
}
@media screen and (max-width: 1023px) {
  .column_a_list li {
    width: calc(33.3333333333% - 7px);
  }
}
@media screen and (max-width: 767px) {
  .column_a_list li {
    width: 100%;
  }
}
.column_a_list li a {
  display: block;
  height: 100%;
  background-color: #333;
  padding: 20px 24px 30px;
  transition: 0.3s;
}
.column_a_list li a .column_a_img {
  margin-bottom: 25px;
  aspect-ratio: 3/2;
  align-items: center;
  display: flex;
  background-color: #fff;
  width: 100%;
  transition: 0.3s;
}
.column_a_list li a .column_a_img img {
  object-fit: cover;
  width: 100%;
}
.column_a_list li a .column_a_ttl {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .column_a_list li a:hover {
    opacity: 0.6;
  }
}

.sec_news {
  position: relative;
  background-color: #FBF7EE;
  margin-top: 60px;
  padding: 0 20px 20px;
}
@media screen and (max-width: 1100px) {
  .sec_news {
    margin-top: 0;
    padding: 60px 20px 0px;
  }
}
.sec_news .news_wrapper {
  display: flex;
  max-width: 100%;
  margin: auto;
  gap: 200px;
}
@media screen and (max-width: 1100px) {
  .sec_news .news_wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec_news .news_wrapper {
    gap: 0;
    flex-direction: column;
  }
}
.sec_news .news_wrapper .pc_only {
  display: flex;
}
@media screen and (max-width: 767px) {
  .sec_news .news_wrapper .pc_only {
    display: none;
  }
}
.sec_news .news_wrapper .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_news .news_wrapper .sp_only {
    display: flex;
  }
}

.news_right {
  width: 100%;
}

.news_list li {
  border-bottom: 1px solid #D8D5CF;
  padding: 0;
}
.news_list li a {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 31px 0;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .news_list li a {
    gap: 10px;
    flex-direction: column;
    padding: 20px 0;
  }
}
.news_list li a .news_date {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4em;
}
.news_list li a .news_ttl {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .news_list li a:hover {
    color: #E03837;
  }
}

.sec_about {
  position: relative;
  background-image: url(../img/top/about_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 20px;
}
.sec_about::before {
  content: "";
  background-color: rgba(10, 10, 10, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec_about .sec_about_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90%;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .sec_about .sec_about_inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about_flex_left .about_ttl {
  color: #fff;
  font-size: 160px;
  font-weight: 500;
  line-height: 1;
}
.about_flex_left .about_span {
  color: #fff;
  position: absolute;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.96px;
  margin: -74px 0 0px 0px;
}
@media screen and (max-width: 1100px) {
  .about_flex_left .about_ttl {
    font-size: 120px;
  }
  .about_flex_left .about_span {
    font-size: 20px;
    margin: -53px 0 0px 0px;
  }
}
@media screen and (max-width: 767px) {
  .about_flex_left {
    width: 100%;
  }
  .about_flex_left .about_ttl {
    font-size: 68px;
    text-align: center;
  }
  .about_flex_left .about_span {
    left: 0;
    width: 100%;
    margin: -33px 0 0;
    text-align: center;
    font-size: 22px;
  }
}

.btn_flex {
  position: relative;
  display: flex;
  gap: 0 20px;
  max-width: 620px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .btn_flex {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .btn_flex {
    flex-direction: column;
    gap: 20px;
  }
}
.btn_flex .link_btn {
  width: 100%;
  margin-top: 0;
  background-color: #fff;
  border: 1px solid #fff;
}
@media (hover: hover) {
  .btn_flex .link_btn:hover {
    background-color: #333;
    color: #fff;
  }
  .btn_flex .link_btn:hover::after {
    background-color: #fff;
  }
}

.sec_form {
  margin: 0 auto;
  width: 1240px;
  margin: 0 auto;
  margin-top: 120px;
  padding: 40px 0px;
  background-color: #fff;
  box-shadow: 4px 4px 10px 0px #DDD4C0;
}

.btn_999 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px;
  display: block;
  text-align: center;
  width: 440px;
  margin: 0 auto;
  padding: 20px 30px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  background-color: #E03837;
  gap: 0 8px;
  transition: 0.3s;
}
.btn_999::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #E03837;
  transform: translateX(-100%);
  transition: 0.3s;
  z-index: -1;
}
@media (hover: hover) {
  .btn_999:hover {
    color: #fff;
  }
  .btn_999:hover::before {
    transform: translateX(0);
  }
  .btn_999:hover::after {
    transform: translateX(0);
    background-color: #fff;
  }
}

.btn_999 img {
  width: 28px;
}

.form_text01 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.96px;
  text-align: center;
}

.form_text02 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.phone_img {
  width: 28px;
}

.phone_wrap {
  width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  padding: 9px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.phone_wrap a {
  color: #333;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
}

.mail_phone_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.bg_cream {
  background-color: #FBF7EE;
}

.sec_case {
  position: relative;
  background-color: #FBF7EE;
  background-attachment: fixed;
  margin-bottom: 100px;
  padding-inline: 40px;
}
.sec_case .link_btn {
  margin-top: 40px;
}
@media screen and (max-width: 1100px) {
  .sec_case .link_btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .sec_case {
    margin-bottom: 0px;
  }
}

.case-slide {
  position: relative;
}
.case-slide .case-slide-item {
  display: block;
  width: 100%;
  border: 1px solid #333;
  background-color: #fff;
  height: 100%;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .case-slide .case-slide-item:hover {
    opacity: 0.5;
    transition: all 0.3s ease;
  }
}
.case-slide .swiper-slide {
  height: 100%;
}
.case-slide .swiper-pagination {
  position: relative !important;
  top: auto;
  bottom: auto;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.case-slide .swiper-pagination-bullet {
  opacity: 1;
  width: 6px;
  height: 100%;
  aspect-ratio: 1/1;
  margin-right: 16px;
  background-color: transparent;
  border: 1px solid #333;
}
.case-slide .swiper-pagination-bullet-active {
  width: 14px;
  background-color: #333;
}
.case-slide .swiper-button-next,
.case-slide .swiper-button-prev {
  border-radius: 100%;
  width: 60px !important;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 600px) {
  .case-slide .swiper-button-next,
  .case-slide .swiper-button-prev {
    width: 40px !important;
  }
}
.case-slide .swiper-button-next {
  right: -15px;
}
@media screen and (max-width: 600px) {
  .case-slide .swiper-button-next {
    right: -10px;
  }
}
.case-slide .swiper-button-prev {
  left: -15px;
}
@media screen and (max-width: 600px) {
  .case-slide .swiper-button-prev {
    left: -10px;
  }
}
.case-slide .swiper-button-next:after,
.case-slide .swiper-button-prev:after {
  font-family: sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.case-slide .swiper-button-next:after {
  content: "\276F";
}
.case-slide .swiper-button-prev:after {
  content: "\276E";
}
.case-slide .l_c_img img {
  width: 100%;
  aspect-ratio: 388/146;
  object-fit: cover;
}
.case-slide .company-logo {
  aspect-ratio: 348/60;
  min-height: 60px;
  object-fit: contain;
}
.case-slide .l_c_txt_wrap {
  display: flex;
  flex-flow: column;
  gap: 33px;
  padding: 20px;
}
.case-slide .l_c_company {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.case-slide .l_c_ttl {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.c_name {
  padding: 0 24px 30px 24px;
}

.service_flex_right3 h3 {
  letter-spacing: 1.2px;
}

.c_cta_area {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 100px;
  padding: 0 20px;
  z-index: 0;
}
@media screen and (max-width: 1100px) {
  .c_cta_area {
    margin-bottom: 0;
  }
}
.c_cta_area .c_cta_area_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
  gap: 40px;
  max-width: 90%;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 1100px) {
  .c_cta_area .c_cta_area_inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .c_cta_area .c_cta_area_inner {
    padding: 30px 0;
  }
}
.c_cta_area .c_cta_area_inner .c_cta_txt {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .c_cta_area .c_cta_area_inner .c_cta_txt {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .c_cta_area .c_cta_area_inner .c_cta_txt {
    font-size: 18px;
    letter-spacing: 0;
    text-align: left;
  }
}
.c_cta_area .c_cta_area_inner .c_cta_btn_list {
  max-width: 920px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  margin-inline: auto;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .c_cta_area .c_cta_area_inner .c_cta_btn_list {
    grid-template-columns: 1fr;
  }
}
.c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn {
  flex-shrink: 0;
  max-width: 440px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn {
    max-width: 100%;
  }
}
.c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn .contactBtn {
  width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 20px 25px;
  background-color: #E03837;
  border: 1px solid #E03837;
  border-radius: 200px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: 0.3s;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn .contactBtn {
    width: 100%;
  }
}
.c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn .contactBtn::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/common/icon-mail.svg);
  width: 28px;
  height: 28px;
}
@media (hover: hover) {
  .c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn .contactBtn:hover {
    background-color: #fff;
    color: #E03837;
  }
  .c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn .contactBtn:hover::before {
    background-image: url(../img/common/icon-mail_hover.svg);
  }
}
@media screen and (max-width: 767px) {
  .c_cta_area .c_cta_area_inner .c_cta_btn_list .contact_btn .contactBtn {
    font-size: 20px;
  }
}

.downloadBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-flow: column;
  border-radius: 100px;
  padding-inline: 24px;
  padding-top: 14px;
  padding-bottom: 16px;
  border: 1px solid #E03837;
  background-color: #fff;
}
.downloadBtn .downloadBtn_subtxt {
  width: fit-content;
  margin-inline: auto;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: 10px;
  color: #E03837;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.downloadBtn .downloadBtn_maintxt {
  transition: all 0.3s ease;
  color: var(--red, #E03837);
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.0266666667em;
}
@media screen and (max-width: 767px) {
  .downloadBtn .downloadBtn_maintxt {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .downloadBtn:hover {
    background-color: #E03837;
    transition: all 0.3s ease;
  }
  .downloadBtn:hover .downloadBtn_subtxt {
    color: #fff;
    transition: all 0.3s ease;
  }
  .downloadBtn:hover .downloadBtn_maintxt {
    color: #fff;
    transition: all 0.3s ease;
  }
}

.faq_sec {
  position: relative;
  background-color: #FBF7EE;
  padding-bottom: 100px;
  border-bottom: 1px solid;
  padding-inline: 20px;
  z-index: 0;
  padding-top: 60px;
}
.faq_sec .t_sec_ttl_wrap {
  margin-bottom: 40px;
}
.faq_sec .t_sec_ttl_ja {
  width: 100%;
  text-align: center;
}

/* ===================================
リニューアル追加分：FVスライダー（導入事例）
=================================== */
.sec_case_fv {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec_case_fv {
    margin-top: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .sec_case_fv .link_btn {
    margin-top: 16px;
  }
}
.sec_case_fv .sec_inner {
  max-width: 90%;
  width: 90%;
}
.sec_case_fv .case-slide-item-big,
.sec_voice .case-slide-item-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  border: 1px solid #000;
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec_case_fv .case-slide-item-big,
  .sec_voice .case-slide-item-big {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .sec_voice .swiper-slide {
    height: auto;
  }
  .sec_voice .case-slide-item-big {
    height: 100%;
    box-sizing: border-box;
    align-content: start;
  }
}
.sec_case_fv .case-slide-item-big_img,
.sec_voice .case-slide-item-big_img {
  height: 100%;
}
.sec_case_fv .case-slide-item-big_img img,
.sec_voice .case-slide-item-big_img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .sec_case_fv .case-slide-item-big_img,
  .sec_voice .case-slide-item-big_img {
    height: auto;
  }
  .sec_case_fv .case-slide-item-big_img img,
  .sec_voice .case-slide-item-big_img img {
    height: auto;
  }
}
.sec_case_fv .case-slide-item-big_txt,
.sec_voice .case-slide-item-big_txt {
  display: flex;
  flex-flow: column;
  gap: 16px;
  padding: 0;
}
.sec_case_fv .case-slide-item-big_company,
.sec_voice .case-slide-item-big_company {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sec_case_fv .case-slide-item-big_headline,
.sec_voice .case-slide-item-big_headline {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
.sec_case_fv .case-slide-item-big_desc,
.sec_voice .case-slide-item-big_desc {
  color: #E5E5E5;
  font-size: 2.0rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec_case_fv .case-slide-item-big_txt,
  .sec_voice .case-slide-item-big_txt {
    gap: 10px;
  }
  .sec_case_fv .case-slide-item-big_company,
  .sec_voice .case-slide-item-big_company {
    font-size: 1rem;
  }
  .sec_case_fv .case-slide-item-big_headline,
  .sec_voice .case-slide-item-big_headline {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .sec_case_fv .case-slide-item-big_desc,
  .sec_voice .case-slide-item-big_desc {
    display: none;
  }
}

/* ===================================
リニューアル追加分：目的別に探す
=================================== */
.sec_purpose {
  margin-top: 100px;
}
@media screen and (max-width: 1100px) {
  .sec_purpose {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec_purpose {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.sec_purpose .purpose_ttl {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sec_purpose .purpose_lead {
  margin-top: 12px;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.purpose_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .purpose_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .purpose_list_item:first-child {
    grid-column: 1 / span 2;
  }
  .purpose_list_item:first-child a {
    aspect-ratio: 16/9;
  }
}
.purpose_list_item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  transition: 0.3s;
}
.purpose_list_item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .purpose_list_item a:hover img {
    transform: scale(1.08);
  }
}

/* ===================================
リニューアル追加分：こんなお悩みはありませんか
=================================== */
.sec_worry {
  position: relative;
  margin-top: 100px;
  background-image: url(../img/top/04_problem_bg_main_01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 20px;
}
@media screen and (max-width: 1100px) {
  .sec_worry {
    margin-top: 60px;
    padding: 90px 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec_worry {
    margin-top: 30px;
  }
}
.sec_worry_inner {
  width:70%;
  max-width: 70%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .sec_worry_inner {
    width: 100%;
    max-width: 100%;
  }
}
.sec_worry_ttl {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec_worry_ttl {
    font-size: 1.375rem;
  }
}
.worry_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
}
@media screen and (max-width: 767px) {
  .worry_list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.worry_list_item {
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-left: 36px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .worry_list_item {
    font-size: 0.9375rem;
    white-space: normal;
  }
}
.worry_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 22px;
  height: 22px;
  background-color: #E03837;
  border-radius: 4px;
}
.worry_list_item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ===================================
リニューアル追加分：人材アセスメント／プラン決定までの流れ
=================================== */
.sec_assessment {
  margin-top: 0;
  padding-top: 0;
  display: flow-root;
}
.sec_assessment .bl_serviceSmallList_single {
  grid-template-columns: repeat(2, 1fr);
}
.plan_flow_ttl {
  margin-top: 0;
  padding-top: 60px;
  margin-bottom:30px;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1100px) {
  .plan_flow_ttl {
    margin-top: 60px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .plan_flow_ttl {
    margin-top: 0;
    padding-top: 16px;
  }
}

/* ===================================
リニューアル追加分：お客様の声
=================================== */
.sec_voice {
  background-color: #FBF7EE;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .sec_voice {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .sec_voice {
    padding-bottom: 24px;
  }
  .sec_voice .link_btn {
    margin-top: 16px;
  }
}
.voice_lead {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .voice_lead {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .voice_lead_num {
    font-size: 1rem;
  }
  .voice_lead_percent {
    font-size: 0.875rem;
  }
}
.voice_lead_num {
  color: #E03837;
  font-size: 2.5rem;
  margin-left: 4px;
}
.voice_lead_percent {
  color: #E03837;
  font-size: 2rem;
}
.voice_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .voice_grid {
    grid-template-columns: 1fr;
  }
}
.voice_grid_item a {
  display: block;
  height: 100%;
  border: 1px solid #333;
  background-color: #fff;
  transition: 0.3s;
}
@media (hover: hover) {
  .voice_grid_item a:hover {
    opacity: 0.6;
  }
}
.voice_grid_item_img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.voice_grid_item_txt {
  padding: 20px;
}
.voice_grid_item_company {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.voice_grid_item_desc {
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.voice_case_slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 24px;
}
.voice_case_slider_item img {
  width: 100%;
  aspect-ratio: 8/3;
  object-fit: cover;
}

/* ===================================
リニューアル追加分：追従型CTA（まずは無料相談してみる）
=================================== */
.fv_floating_cta {
  position: fixed;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 300;
  display: block;
  width: 460px;
  max-width: 100vw;
  transition: 0.3s;
}
.fv_floating_cta img {
  display: block;
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  .fv_floating_cta:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1000px) {
  .fv_floating_cta {
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 60vw;
  }
}
@media screen and (max-width: 400px) {
  .fv_floating_cta {
    width: 240px;
    max-width: 55vw;
  }
}