.w190 {
  width: 190px;
}

.w200 {
  width: 200px;
}

.w170 {
  width: 170px;
}

.w180 {
  width: 180px;
}

.w179 {
  width: 179px;
}

.w392 {
  width: 392px;
}

@media (max-width: 1300px) {
  .w190,
  .w200,
  .w180,
  .w179,
  .w392 {
    width: auto;
  }
}

.twoColumnPageSideBtn {
  display: none;
}

.caseStudyFeaturedLink {
  background-color: #ffffff;
  box-shadow: var(--shadow30-mini);
  position: relative;
  display: flex;
  outline: 1px solid transparent;
  transition: all 0.3s ease;
}

/*
.caseStudyFeaturedLink:hover,
.caseStudyFeaturedLink:focus-visible {
  box-shadow: var(--shadow30-mid);
  outline: 1px solid var(--blue40);
}

.caseStudyFeaturedLink:hover .caseStudyFeaturedTitle,
.caseStudyFeaturedLink:focus-visible .caseStudyFeaturedTitle,
.caseStudyFeaturedLink:hover .caseStudyFeaturedLead,
.caseStudyFeaturedLink:focus-visible .caseStudyFeaturedLead,
.caseStudyItem a:hover .caseStudyItemTitle,
.caseStudyItem a:focus-visible .caseStudyItemTitle {
  color: var(--blue40);
}
*/

/*
.caseStudyFeaturedLink:has(.caseStudyFeaturedTitle:hover),
.caseStudyFeaturedLink:has(.caseStudyFeaturedImage:hover) {
    box-shadow: var(--shadow30-mid);
    outline: 1px solid var(--blue40);
    border: 1px solid var(--blue40);
    outline-offset: 0;
}
*/




.caseStudyFeaturedLink {
    position: relative;
    transition: all 0.3s ease;
}

/* ベース状態：枠は透明にしておく */
.caseStudyFeaturedLink::before {
    content: '';
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 と同じ */
    border: 2px solid var(--blue40);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

/* タイトル or 画像に hover している間だけ枠を表示 */
.caseStudyFeaturedLink:has(.caseStudyFeaturedTitle:hover)::before,
.caseStudyFeaturedLink:has(.caseStudyFeaturedImage:hover)::before {
    opacity: 1;
}

.caseStudyFeaturedLink:has(.caseStudyFeaturedTitle:hover),
.caseStudyFeaturedLink:has(.caseStudyFeaturedImage:hover) {
    outline-offset: 0;
    box-shadow: var(--shadow30-mid);
}

.caseStudyFeaturedLink:has(.caseStudyFeaturedImage:hover) .caseStudyFeaturedTitle {
    color: var(--blue40);
}

.caseStudyFeaturedLink:has(.caseStudyFeaturedTitle:hover) .caseStudyFeaturedText p,
.caseStudyFeaturedLink:has(.caseStudyFeaturedImage:hover) .caseStudyFeaturedText p {
    color: var(--blue40);
}

a.caseStudyFeaturedTitle:hover {
    color: var(--blue40);
}

.caseStudyFeaturedText {
    padding: 56px 22px 16px 56px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.col_pat01 .caseStudyFeaturedText {
    box-shadow: 0 -4px 0 0 #c8e27d inset;
}

.col_pat02 .caseStudyFeaturedText {
    box-shadow: 0 -4px 0 0 #026ef2 inset;
}

.col_pat03 .caseStudyFeaturedText {
    box-shadow: 0 -4px 0 0 #7f55c2 inset;
}

.col_pat04 .caseStudyFeaturedText {
    box-shadow: 0 -4px 0 0 #fdae15 inset;
}

.col_pat05 .caseStudyFeaturedText {
    box-shadow: 0 -4px 0 0 #2cb54a inset;
}

.caseStudyFeaturedTitle {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.caseStudyFeaturedLead {
    margin-top: 35px;
    margin-right: 40px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.caseStudyTagList,
.tagListLink {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.caseStudyTagList li a,
.tagListLink li a {
  display: inline-block;
  padding: 3px 12px;
  border: 1px solid var(--blue10);
  border-radius: 999px;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.4rem;
  color: var(--blue30);
  background-color: #fff;
}

.caseStudyTagList li a:hover,
.tagListLink li a:hover,
.tagListLink li a:focus-visible {
  opacity: 1;
  background-color: var(--blue00);
  box-shadow: var(--shadow15-small);
}


.caseStudyFeaturedDate {
  margin-top: auto;
  margin-left: auto;
}

.caseStudyFeaturedDate time {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cloud40);
}

.caseStudyFeaturedImage {
    width: 100%;
    display: block;
/*    overflow: hidden;*/
}

.caseStudyFeaturedImage img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
    aspect-ratio: 582 / 327;
    transition: transform 0.4s ease;
/*    transform: scale(1);*/
}

/*
.caseStudyFeaturedImage:hover img {
    transform: scale(1.1);
}
*/

.caseStudyList {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.caseStudyItem > div {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #ffffff;
    padding: 18px 12px 10px 12px;
    position: relative;
    outline: 1px solid transparent;
}

.caseStudyItem--blue > div {
  box-shadow: 0 -4px 0 0 #0014c9 inset, var(--shadow30-small);
}

.col_pat01.caseStudyItem > div {
    box-shadow: 0 -4px 0 0 #c8e27d inset, var(--shadow30-small);
}

.col_pat02.caseStudyItem > div {
    box-shadow: 0 -4px 0 0 #026ef2 inset, var(--shadow30-small);
}

.col_pat03.caseStudyItem > div {
    box-shadow: 0 -4px 0 0 #7f55c2 inset, var(--shadow30-small);
}

.col_pat04.caseStudyItem > div {
    box-shadow: 0 -4px 0 0 #fdae15 inset, var(--shadow30-small);
}

.col_pat05.caseStudyItem > div {
    box-shadow: 0 -4px 0 0 #2cb54a inset, var(--shadow30-small);
}



/*
.caseStudyItem > div:hover,
.caseStudyItem > div:focus-visible {
  box-shadow: 0 -4px 0 0 #c8e27d inset, var(--shadow30-mid);
  outline: 1px solid var(--blue40);
}

.caseStudyItem--blue > div:hover,
.caseStudyItem--blue > div:focus-visible {
  box-shadow: 0 -4px 0 0 #0014c9 inset, var(--shadow30-mid);
  outline: 1px solid var(--blue40);
}
*/

/*
.caseStudyItem > div:hover .caseStudyItemTitle,
.caseStudyItem > div:focus-visible .caseStudyItemTitle {
  color: var(--blue40);
}
*/

.caseStudyItemTitle:hover {
    color: var(--blue40);
}

/*
.caseStudyItem:has(.caseStudyItemImage:hover),
.caseStudyItem:has(.caseStudyItemTitle:hover){
    box-shadow: var(--shadow30-mid);
    outline: 1px solid var(--blue40);
    border: 1px solid var(--blue40);
    outline-offset: 0;
}
*/




.caseStudyItem {
    position: relative;
    transition: all 0.3s ease;
}

.caseStudyItem:has(.caseStudyItemImage:hover),
.caseStudyItem:has(.caseStudyItemTitle:hover) {
    outline-offset: 0;
    box-shadow: var(--shadow30-mid);
}

/* ベース状態：枠は透明にしておく */
.caseStudyItem::before {
  content: '';
  position: absolute;
  inset: -2px; /* 枠線ぶん外へはみ出させる */
  border: 2px solid var(--blue40);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

/* タイトル or 画像に hover している間だけ枠を表示 */
.caseStudyItem:has(.caseStudyItemImage:hover)::before,
.caseStudyItem:has(.caseStudyItemTitle:hover)::before {
    opacity: 1;
}













.caseStudyItem:has(.caseStudyItemImage:hover) .caseStudyItemTitle {
    color: var(--blue40);
}

.caseStudyItemImageWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.caseStudyItemTitle {
    width: calc(100% - 96px - 14px);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.caseStudyItemImage {
  max-width: 96px;
  box-shadow: var(--shadow15-small);
}

.caseStudyItemImage img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 96 / 54;
  object-fit: cover;
}

/* 検索 */

.searchFilter {
  margin-top: 80px;
  border: 1px solid var(--blue40);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.searchFilterInner {
    display: flex;
    flex-direction: column;
}

.searchFilterHead {
  padding: 48px 52px 20px;
  background-color: var(--blue00);
  display: flex;
  gap: 36px;
}

.searchFilterKeyword {
  display: flex;
  width: 100%;
}

.searchFilterKeyword input {
  padding: 13px 32px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.9px;
  border: 1px solid var(--cloud30);
  background-color: #fff;
  border-radius: 5px 0 0 5px;
  max-width: 590px;
  width: 100%;
}

.searchFilterKeyword input::placeholder {
  color: var(--cloud40);
}

.searchFilterKeyword button {
  display: flex;
  align-items: center;
  padding: 13px 26px;
  background-color: var(--accent20);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  border-radius: 0 5px 5px 0;
  max-width: 150px;
  width: 100%;
  text-align: left;
}

.searchFilterKeyword button img {
  width: 24px;
  margin-left: 16px;
  display: inline-block;
  margin-top: 5px;
}

.lineupItemBtnWrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 324px;
  margin: 0 auto;
}

.searchFilterHead .textBtnClose {
  padding: 16px 9px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
  width: 100%;
  justify-content: center;
  position: relative;
}

.searchFilterHead .textBtnClose::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(/assets/img/common/ic_add_circle.svg) no-repeat center center / cover;
  transition: background 0.3s ease;
}

.searchFilterHead .textBtnClose.is-active::after {
  background: url(/assets/img/common/ic_close_circle.svg) no-repeat center center / cover;
}

.textBtnClose.is-active {
  background-color: #fff;
  color: var(--blue40);
  box-shadow: var(--shadow30-mid);
}

.searchFilterSection {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15) inset;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.searchFilter--result .searchFilterSection {
  max-height: initial;
  overflow: visible;
  box-shadow: none;
  background-color: var(--blue00);
  padding: 0 48px;
}

.searchFilterSection.is-active {
  max-height: 2000px;
}

.searchFilterSection > * {
  padding: 32px 65px 0;
}

.searchFilter--result .searchFilterSection > * {
  padding: 12px 0 16px;
}

.searchFilterGroup {
  display: flex;
  padding-bottom: 16px;
}

.searchFilterGroup:not(:first-child) {
  padding-top: 16px;
  border-top: 1px solid var(--blue10);
}

.searchFilterLabel {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
  width: 144px;
  flex-shrink: 0;
}

.searchFilterOptionsWrap,
.searchFilterOptions,
.searchFilterOptionsInner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.searchFilterOptions label {
  cursor: pointer;
}

.radio:disabled {
  border-color: var(--cloud30);
  background-color: var(--cloud10);
  cursor: default;
}

.radio:disabled + .checkboxLabel {
  color: var(--cloud30);
  cursor: default;
}

.checkboxLabel {
  cursor: pointer;
  margin-left: 10px;
  font-weight: 500;
}

.searchFilterButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 12px auto 32px;
  gap: 16px;
  padding: 0 24px;
  border-left: 1px solid var(--cloud30);
  border-right: 1px solid var(--cloud30);
}

.searchFilterButtons.no_border {
    border: none;
}

.searchFilterButtonsText {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}

.searchFilterButtonsText span {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--blue40);
}

.searchFilterButtons button {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
  color: var(--blue40);
  cursor: pointer;
  width: 215px;
  padding: 14px 0;
  border: 1px solid var(--blue40);
  border-radius: 6px;
  box-shadow: var(--shadow15-small);
  transition: all 0.3s ease;
  background-color: #fff;
}

.searchFilterButtons button:hover,
.searchFilterButtons button:focus-visible {
  box-shadow: var(--shadow30-mid);
}

.searchFilterKeywords {
  padding: 32px 66px 40px;
  padding-top: 24px;
  background-color: var(--blue00);
}

.searchFilterKeywords .caseStudyTagList {
  gap: 12px 6px;
}

.searchFilterKeywordsTitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 12px;
}

.searchFilterKeywordList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.searchFilterKeywordList li {
  display: inline-block;
  background-color: #f2f6fb;
  color: #0078b7;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
}

ul.robotdlListBtn--solution li {
  min-width: 169px;
}

.caseCardWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.caseCard {
  width: 100%;
}

.caseCard {
    outline: 1px solid transparent;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
    outline: 1px solid transparent;
}


.caseCard a:hover .caseCardText,
.caseCard a:focus-visible .caseCardText {
    color: var(--blue40);
}


.caseCard:has(.caseCardImg:hover),
.caseCard:has(.caseCardText:hover) {
    box-shadow: var(--shadow30-mid);
    outline: 1px solid var(--blue40);
}

.caseCard:has(.caseCardImg:focus-visible),
.caseCard:has(.caseCardText:focus-visible){
    box-shadow: var(--shadow30-mid);
    outline: 1px solid var(--blue40);
}

.caseCard:has(.caseCardImg:hover) .caseCardText,
.caseCard:has(.caseCardImg:focus-visible) .caseCardText{
  color: var(--blue40);
}

/* （任意）テキスト側 hover/focus でも青にしたいなら */
.caseCard:has(.caseCardText:hover) .caseCardText,
.caseCard:has(.caseCardText:focus-visible) .caseCardText{
  color: var(--blue40);
}


.caseCard img {
    position: relative;
    width: 100%;
    aspect-ratio: 376 / 212;
    object-fit: cover;
}

.caseCardContentWrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.caseCardContent {
    padding: 14px 30px 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
}

.col_pat01 .caseCardContent {
    box-shadow: 0 -4px 0 0 #c8e27d inset, var(--shadow30-small);
}

.caseCard--blue .caseCardContent,
.col_pat02 .caseCardContent {
    box-shadow: 0 -4px 0 0 #026ef2 inset, var(--shadow30-small);
}

/* .caseCard--orange .caseCardContent,
.col_pat03 .caseCardContent {
    box-shadow: 0 -4px 0 0 #fcdc94 inset, 0 3px 3px 0 rgba(0, 0, 0, 0.3);
} */

.col_pat03 .caseCardContent {
    box-shadow: 0 -4px 0 0 #7f55c2 inset, var(--shadow30-small);
}

.col_pat04 .caseCardContent {
    box-shadow: 0 -4px 0 0 #fdae15 inset, var(--shadow30-small);
}

.col_pat05 .caseCardContent {
    box-shadow: 0 -4px 0 0 #2cb54a inset, var(--shadow30-small);
}

.caseCardText {
    display: block;
    margin-bottom: 12px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.9px;
    transition: all 0.3s ease;
}

.caseCard .caseStudyTagList {
    margin-top: auto;
}

.caseCard .caseStudyFeaturedDate time {
    color: #000;
}

.caseCard a:hover .caseCardCompany,
.caseCard a:focus-visible .caseCardCompany {
    color: var(--blue40);
}

.caseCardCompany {
  margin-top: auto;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.lineupItemBtnWrap--caseStudy .textBtnClose::after {
  background: none;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #fff;
  transform: rotate(45deg);
  margin-left: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}

.lineupItemBtnWrap--caseStudy .textBtnClose:hover::after,
.lineupItemBtnWrap--caseStudy .textBtnClose:focus-visible::after {
  background: none;
}

.textBtnClose:hover::after,
.textBtnClose:focus-visible::after {
  border-color: var(--blue40);
}

.textBtnClose:hover::after,
.textBtnClose:focus-visible::after {
  background: url(/assets/img/common/ic_add_circle_blue.svg) no-repeat center center / cover;
}

.introSection {
  padding: 80px 0 60px;
  background: radial-gradient(429.46% 50.92% at 50.92% 62.23%, #fdfdfd 0%, #e2ebee 100%);
}

.eventBanner {
  background: url(/assets/img/solution/intro-mv.png) no-repeat center center / cover;
  color: #fff;
  padding: 54px 0 90px;
  position: relative;
  overflow: hidden;
}

.eventBanner .inner {
  position: relative;
}

.eventBannerTextWrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3%;
}

.eventBannerCatch {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.4px;
  color: #fff;
}

.eventBannerDesc {
  margin-top: 18px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.eventBannerBgText {
  position: absolute;
  right: 0;
  max-width: 47.7rem;
  top: -52px;
}

.twoColumnPageSideSearch {
  display: none;
}

.contactCta {
  background-color: var(--cloud10);
  text-align: center;
  padding: 32px 0;
}

.contactCtaTitle {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.contactCtaButton {
  display: block;
  background-color: var(--hot00);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.9px;
  border-radius: 6px;
  padding: 18px 0;
  box-shadow: var(--shadow15-small);
  transition: all 0.3s ease;
  position: relative;
  margin: 12px auto 0;
  max-width: 788px;
  width: 100%;
}

.contactCtaButton::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
}

.contactCtaButton:hover,
.contactCtaButton:focus-visible {
  box-shadow: var(--shadow30-mid);
  color: #000;
}

/*----------------
記事
------------------*/

.caseWrapper {
  max-width: 996px;
  margin: 0 auto;
}

.caseLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.caseLabel span {
  display: inline-block;
  background-color: var(--accent40);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.7px;
  padding: 1px 10px;
}

.caseLabel.caseLabel--green span {
  background-color: var(--fine00);
  color: #000;
}

.caseLabel time {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cloud40);
}

.caseWrapper h2 {
  margin-top: 14px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.4px;
  margin-bottom: 0;
}

.caseWrapper h2::before {
  display: none;
}

.caseWrapperH3 {
  margin-top: 80px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--blue40);
}

.caseWrapperText {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.caseWrapperTextbold {
  margin-top: 18px;
  font-weight: 500;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
}

.caseWrapper .caseImg {
  max-width: 582px;
  width: 100%;
  margin: 40px auto 0;
}

.caseWrapper .caseImgLarge {
  max-width: 100%;
  width: 100%;
  margin: 40px auto 0;
}

.caseWrapperList {
  margin-top: 24px;
  border-radius: 5px;
  border: 6px solid var(--blue40);
  background-color: var(--blue00);
  padding: 25px 35px;
}

.caseWrapperList li {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.9px;
  padding-left: 18px;
  position: relative;
}

.caseWrapperList li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #000;
  border-radius: 50%;
}

.caseWrapperVoice {
  display: flex;
  gap: 33px;
  margin-top: 24px;
}

.caseWrapperVoiceInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.caseWrapperVoiceImage {
  max-width: 139px;
  width: 100%;
  height: auto;
  aspect-ratio: 139 / 139;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

.caseWrapperVoiceText {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.caseWrapper .caseWrapperVoiceDetailText {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.recommendHeading {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
  padding-bottom: 7px;
}

.recommendHeading span {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.4px;
  color: var(--blue40);
}

.caseWrapper .lineupItemWrap .lineupItemCont {
  padding: 0 30px 20px 30px;
  margin-top: 0;
}

.caseWrapper .lineupItemWrap .lineupItemCont .mass p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.ratingWrapper {
  border: 1px solid #ddd;
  padding: 24px 0;
  background-color: #ffffff;
}

.ratingQuestion {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.9px;
  text-align: center;
}

.ratingRow {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ratingLabel {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 16px;
  color: var(--cloud40);
}

.ratingList {
  display: flex;
  gap: 8px;
}

.ratingItem {
  width: 40px;
  height: 40px;
  background-color: var(--blue10);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.9px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ratingItem:hover {
  opacity: 0.7;
}

.labelingContainer {
  margin-top: 46px;
}

.labelingContainerInner {
  display: flex;
  gap: 36px;
}

.labelingHeader {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.labelingHeaderText {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.9px;
  padding-left: 24px;
}

.labelingHeaderText::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 73px;
  background-color: var(--fine00);
  top: 0;
  left: 0;
}

.labelingImageBox {
  max-width: 376px;
  width: 100%;
}

.labelingImageBox img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 376 / 212;
  object-fit: cover;
}

.labelingProblemBox {
  margin-top: 36px;
  padding: 29px 65px 38px;
  background-color: #f5f5f5;
  border: 3px solid var(--cloud40);
  border-radius: 5px;
}

.labelingProblemTitle {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.labelingProblemList {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.labelingSolutionBox {
  margin-top: 76px;
}

.labelingSolutionHeader {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.labelingSolutionHeader::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--blue40);
  bottom: -5px;
  left: 0;
}

.labelingSolutionIcon {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  background-color: var(--blue40);
  color: #fff;
  padding: 4px 16px 4px 5px;
  border-radius: 3px;
  padding-left: 35px;
}

.labelingSolutionIcon::before {
  position: absolute;
  content: "";
  background: url(/assets/img/solution/wb_incandescent.svg) no-repeat center center / cover;
  width: 26px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
}

.labelingSolutionTitle {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.4px;
  color: var(--blue40);
}

.labelingIllustration {
  margin: 24px auto 0;
  max-width: 800px;
  width: 100%;
}

.labelingIllustration img {
  aspect-ratio: 800 / 293;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.labelingNote {
  margin-top: 64px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.contentWrapBg {
  position: relative;
  background: var(--fine20);
  padding: 32px;
}

.contentWrap {
  position: relative;
  max-width: 1896px;
  padding: 66px 20px 40px;
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff;
  border-radius: 32px;
}

.contentWrap::before {
  position: absolute;
  content: "";
  background: url(/assets/img/solution/content-bg.png) no-repeat center center / cover;
  width: 93%;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1751 / 340;
}

.contentWrap::after {
  position: absolute;
  content: "";
  z-index: 0;
  background-color: #A8D5BE;
  width: 100%;
  height: 226px;
  bottom: 0;
  left: 0;
  border-radius: 0 0 32px 32px;
}

.contentWrapCard {
  position: relative;
  z-index: 1;
}

.contentHead {
  display: flex;
  justify-content: space-between;
}

.contentWrapImg {
  position: relative;
  float: right;
  max-width: 294px;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 294 / 154;
  margin-left: 20px;
  margin-top: -48px;
}

/* @media (max-width: 900px) {
  .contentWrapImg {
    max-width: 194px;
  }
} */

.searchFilterOptions label,
.searchFilterOptionsInner label {
    display: flex;
    align-items: center;
}

.searchFilterOptions label .radio,
.searchFilterOptionsInner label .radio {
    transform: none;
    top: 0;
}


/*------------------
5-4列均等 検索絞り込みエリア
--------------------*/

@media screen and (min-width:768px) {
    .searchFilterOptionsInner,
    .searchFilterOptionsWrap,
    .searchFilterOptions {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }
    .searchFilterOptionsInner > label,
    .searchFilterOptionsWrap > label,
    .searchFilterOptions > label {
        flex: 0 0 calc((100% - 12px * 3) / 4);
        width: calc((100% - 12px * 3) / 4);
        max-width: calc((100% - 12px * 3) / 4);
        box-sizing: border-box;
        align-items: flex-start;
    }
    .searchFilterOptionsInner > label.is-double,
    .searchFilterOptionsWrap > label.is-double,
    .searchFilterOptions > label.is-double {
        flex-basis: calc(((100% - 12px * 3) / 4) * 2 + 12px);
        width: calc(((100% - 12px * 3) / 4) * 2 + 12px);
        max-width: calc(((100% - 12px * 3) / 4) * 2 + 12px);
    }
    .searchFilterOptionsInner > label input,
    .searchFilterOptionsWrap > label input,
    .searchFilterOptions > label input {
        margin-top: 4px;
    }
}

@media screen and (min-width:1110px) {
    .searchFilterOptionsInner,
    .searchFilterOptionsWrap,
    .searchFilterOptions {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }
    .searchFilterOptionsInner > label,
    .searchFilterOptionsWrap > label,
    .searchFilterOptions > label {
        flex: 0 0 calc((100% - 12px * 4) / 5);
        width: calc((100% - 12px * 4) / 5);
        max-width: calc((100% - 12px * 4) / 5);
        box-sizing: border-box;
        align-items: flex-start;
    }
    .searchFilterOptionsInner > label.is-double,
    .searchFilterOptionsWrap > label.is-double,
    .searchFilterOptions > label.is-double {
        flex-basis: calc(((100% - 12px * 4) / 5) * 2 + 12px);
        width: calc(((100% - 12px * 4) / 5) * 2 + 12px);
        max-width: calc(((100% - 12px * 4) / 5) * 2 + 12px);
    }
}


