@charset "UTF-8";
/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #000;
  --font-base:"Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ========================================
mixin
======================================== */
.c-pageInLink {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .c-pageInLink {
    margin-top: 60px;
  }
}
.c-pageInLink__desc {
  max-width: 723px;
  margin: 0 auto 52px;
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-pageInLink__desc {
    margin-bottom: 32px;
  }
}
.c-pageInLink__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 19px;
}
@media screen and (max-width: 767px) {
  .c-pageInLink__list {
    justify-content: space-between;
    gap: 0 0;
  }
}
.c-pageInLink__list > li {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-pageInLink__list > li {
    width: 48.8%;
  }
}
.c-pageInLink__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 233px;
  height: 40px;
  padding: 0 35px;
  border: 1px solid #000;
  border-radius: 20px;
  background: #fff;
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pageInLink__list a {
    gap: 0 15px;
    padding: 0 10px;
    min-width: 0;
  }
}
.c-pageInLink__list a::after {
  content: "";
  display: block;
  width: 12px;
  height: 17px;
  background: url(../assets/img/common/pagein_link_arrow.svg) center/auto no-repeat;
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-pageInLink__list a::after {
    position: static;
    transform: translateY(1px);
  }
}
@media (hover: hover) {
  .c-pageInLink__list a {
    transition: background-color 0.3s, color 0.3s;
  }
  .c-pageInLink__list a:hover {
    background-color: #000;
    color: #fff;
  }
  .c-pageInLink__list a:hover::after {
    background-image: url(../assets/img/common/pagein_link_arrow-white.svg);
  }
}

.c-textImg {
  display: flex;
  gap: 25px 0 !important;
  margin-top: 120px;
  padding-top: 120px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .c-textImg {
    flex-direction: column-reverse;
    margin-top: 70px;
    padding-top: 70px;
  }
}
.c-textImg + .c-textImg {
  border-top: 0;
  padding-top: 0;
  margin-top: 60px;
}
.c-textImg > *:nth-child(1) {
  flex: none !important;
  margin-right: 30px;
  width: 42.4107142857%;
}
@media screen and (max-width: 767px) {
  .c-textImg > *:nth-child(1) {
    width: 100%;
    margin-right: 0;
  }
}
.c-textImg > *:nth-child(1) hgroup {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-textImg > *:nth-child(1) hgroup {
    margin-bottom: 25px;
  }
}
.c-textImg > *:nth-child(1) p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-textImg > *:nth-child(1) p {
    margin-top: 20px;
  }
}
.c-textImg > *:nth-child(1) .wp-block-button__link {
  margin-top: 20px;
  width: 180px;
  padding: 10px 0;
}
.c-textImg > *:nth-child(2) {
  height: 494px;
  margin-right: calc(50% - 50vw);
  position: relative;
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .c-textImg > *:nth-child(2) {
    flex: none !important;
    width: 100%;
    height: 64vw;
    margin-right: 0;
  }
}
.c-textImg > *:nth-child(2) figure {
  height: 100%;
}
.c-textImg > *:nth-child(2) figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-textImg .-border {
  position: relative;
}
.c-textImg .-border::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #DEDEDE;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

/* 
共通メインタイトル ※CSS上書き
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media (min-width: 768px) {
  .c-title.-xlarge .c-title__categories {
    font-size: 4.32rem;
  }
  .c-title.-xlarge .c-title__substitution {
    margin-top: -3px;
  }
}
@media (max-width: 767px) {
  .c-title.-xlarge .c-title__categories {
    font-size: 2.8rem;
  }
  .c-title.-xlarge .c-title__substitution {
    font-size: 0.8rem;
  }
}
/* 
SP時のサブメニュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-SpSubMenu {
  width: 100%;
  height: calc(100% - 60px);
  padding: 0 30px;
  background: #000;
  color: #fff;
  position: fixed;
  top: 60px;
  left: 100%;
  z-index: 10;
  transform: translateX(0);
  transition: transform 0.3s;
}
.p-SpSubMenu.is-show {
  transform: translateX(-100%);
}
.p-SpSubMenu__back {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url(../assets/img/common/sp_submenu-arrow.svg) left center/auto no-repeat;
  width: 62px;
  height: 40px;
  font-size: 14px;
  position: absolute;
  top: -48px;
  left: 30px;
}
.p-SpSubMenu__list {
  height: 100%;
  padding: 15px 0 30px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-SpSubMenu__list::-webkit-scrollbar {
  display: none;
}
.p-SpSubMenu__list li + li {
  margin-top: 11px;
}
.p-SpSubMenu__list a {
  display: block;
  font-size: 16px;
  padding: 10px 0 10px 32px;
  position: relative;
}
.p-SpSubMenu__list a::before, .p-SpSubMenu__list a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-SpSubMenu__list a::before {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}
.p-SpSubMenu__list a::after {
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #000;
  border-right: 0;
  left: 6px;
}

body:has(.p-SpSubMenu.is-show) .p-nav__contents {
  background: #000;
  transition: background-color 0.3s;
}

/* 
ブロックrecommend ※CSS上書き
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-entry__recommend.alignfull .wp-block-group__inner-container {
  max-width: 1280px;
}

.p-entry__recommend .c-title {
  margin-left: 0;
}

@media (max-width: 768px) {
  .p-entry-card-list {
    margin-left: 0;
  }
  .p-entry-card-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-entry-card-list::-webkit-scrollbar {
    display: none;
  }
  .p-entry__recommend .c-card__view-detail {
    margin-top: 7px;
  }
}
/* 
採用情報ページ ※CSS上書き
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media (hover: hover) {
  .p-recruit .wp-block-button__link:not(.has-background) {
    transition: background-color 0.3s, color 0.3s;
  }
  .p-recruit .wp-block-button__link:not(.has-background):hover {
    background-color: #000;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .p-recruit {
    padding-top: 35px;
  }
  .p-recruit .p-recruit__interview {
    padding-top: 61px;
  }
}
@media (max-width: 768px) {
  .p-recruit .p-recruit__interview-carousel {
    margin-top: 40px;
  }
  .p-recruit .p-recruit__interview .c-title {
    margin-bottom: 40px;
  }
  .p-recruit .p-recruit__interview-carousel-body {
    padding-left: 0;
    padding-right: 0;
  }
  .p-recruit .p-recruit__interview-button {
    margin-top: 35px;
  }
  .p-recruit .p-recruit__interview-button div,
  .p-recruit .p-recruit__interview-button .wp-block-button__link {
    max-width: 100%;
  }
  .p-recruit .p-recruit__job-offers {
    margin-bottom: 70px;
    padding-top: 56px;
    padding-bottom: 65px;
  }
  .p-recruit .p-recruit__job-offers-toggle-btn,
  .p-recruit .p-recruit__job-offers-link {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .p-recruit-footer__inner {
    padding-top: 78px;
    padding-bottom: 85px;
  }
}
/* 
採用情報ページ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-recruit-mv {
  position: relative;
  margin-bottom: 120px;
}

.p-recruit-mv .splide {
  width: 100vw;
  margin-top: -86px;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}

.p-recruit-mv .splide__slide {
  padding-bottom: 70px;
  position: relative;
}

.p-recruit-mv__text-box {
  width: 491px;
  min-height: 218px;
  padding: 58px 50px 50px;
  background: #000;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.p-recruit-mv__text-box a {
  display: block;
  transition: opacity 0.3s;
}

.p-recruit-mv__text-box a:hover {
  opacity: 0.8;
}

.p-recruit-mv__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0 19px;
  margin-bottom: 15px;
  font-size: 0.875rem;
}

.p-recruit-mv__head p:nth-child(1) {
  font-size: 0.9285714286em;
  font-weight: 700;
}

.p-recruit-mv__cont-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.p-recruit-mv__image {
  width: max(100% - 364px, 901px);
  margin-left: auto;
}

.p-recruit-mv__image > div {
  padding-top: 56.8257491676%;
  position: relative;
  overflow: hidden;
}

.p-recruit-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p-recruit-mv__image a:hover img {
  transform: scale(1.06);
  transition-duration: 300ms;
}

.p-recruit-mv .splide__arrows {
  position: relative;
}

.p-recruit-mv .splide__arrow--prev,
.p-recruit-mv .splide__arrow--next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -66px;
  width: 44px;
  height: 44px;
  opacity: 0.5;
  font-size: 2.125rem;
}

.p-recruit-mv .splide__arrow--prev {
  right: 84px;
}

.p-recruit-mv .splide__arrow--next {
  right: 40px;
}

@media (max-width: 1200px) {
  .p-recruit-mv .splide {
    margin-top: 40px;
  }
  .p-recruit-mv .splide__slide {
    padding-bottom: 160px;
  }
  .p-recruit-mv .splide__arrow--prev,
  .p-recruit-mv .splide__arrow--next {
    top: -156px;
  }
}
@media (max-width: 767px) {
  .p-recruit {
    padding-top: 32px;
  }
  .p-recruit-mv {
    margin-bottom: 90px;
  }
  .p-recruit-mv .splide {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-right: 0;
  }
  .p-recruit-mv .splide__slide {
    padding-bottom: 0;
  }
  .p-recruit-mv__image {
    width: 100%;
  }
  .p-recruit-mv__image > div {
    padding-top: 61.3333333333%;
  }
  .p-recruit-mv__text-box {
    width: 100%;
    min-height: 163px;
    padding: 35px calc(18px + 0.75rem) 32px;
    position: static;
  }
  .p-recruit-mv__head {
    gap: 0 14px;
    margin-bottom: 11px;
    font-size: 0.875rem;
  }
  .p-recruit-mv__head p:nth-child(1) {
    font-size: inherit;
  }
  .p-recruit-mv__cont-title {
    font-size: 1.375rem;
    line-height: 1.6;
  }
  .p-recruit-mv .splide__arrows {
    position: static;
  }
  .p-recruit-mv .splide__arrow--prev,
  .p-recruit-mv .splide__arrow--next {
    top: 29vw;
    z-index: 2;
    opacity: 1;
  }
  .p-recruit-mv .splide__arrow--prev {
    left: 0;
    right: 0;
  }
  .p-recruit-mv .splide__arrow--next {
    right: 0;
  }
  .p-recruit-mv .splide__arrows i::before {
    color: #fff;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  }
  .p-special .c-title.-xlarge .c-title__categories {
    font-size: 1.75rem;
  }
  .p-special .c-title.-xlarge .c-title__substitution {
    font-size: 0.75rem;
  }
}
/* 
スペシャルコンテンツ：一覧ページ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-special {
  overflow-x: hidden;
  padding-top: 43px;
}

.p-special .c-card-list {
  margin-top: 55px;
}

.p-special .c-title__substitution {
  margin-top: 5px;
}

.p-special .c-card__body {
  padding: 22px 0 0;
}

.p-special__subttl {
  margin-bottom: 18px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .p-special {
    padding-top: 20px;
  }
  .p-special .c-card-list {
    margin-top: 42px;
    gap: 20px 0;
  }
  .p-special .c-card__body {
    padding-top: 20px;
  }
}
/* ブロック「Multiple Posts」で一覧を出力した時のサブタイトル */
.p-special-card__subtitle {
  margin-bottom: 9px;
  font-size: 0.75rem;
}

/* 
スペシャルコンテンツ：詳細ページ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-special-single {
  padding-bottom: 148px;
  overflow-x: hidden;
}

.p-special-single-mv {
  position: relative;
}

.p-special-single-mv__image {
  padding-top: 43.125%;
  position: relative;
}

.p-special-single-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-special-single-mv__text-box {
  width: 560px;
  padding: 42px 56px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.p-special-single-mv__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-bottom: 22px;
  font-size: 16px;
}

.p-special-single-mv__head p:nth-child(1) {
  font-weight: 700;
}

.p-special-single-mv__cont-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.p-special-single .c-tag {
  margin-top: 16px;
}

.p-special-single .c-tag__text {
  border-color: #fff;
  font-size: 0.7rem;
}

.p-special-single .c-tag__text[href]:hover {
  background-color: #fff;
  color: #000;
}

.p-special-single--post-container {
  max-width: 730px;
  margin: 128px auto 0;
}

.p-special-single--post-container > .wp-block-image {
  margin-bottom: 80px;
}

.p-special-single--post-container p {
  line-height: 1.875;
}

.p-special-single--post-container .alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-special-single .wp-block-image {
  margin-top: 72px;
}

.p-special-single .p-entry__recommend {
  margin-top: 120px;
}

@media (max-width: 1200px) {
  .p-special-single-mv__text-box {
    position: static;
  }
}
@media (max-width: 767px) {
  .p-special-single {
    padding-bottom: 100px;
  }
  .p-special-single-mv__image {
    padding-top: 0;
    height: 375px;
  }
  .p-special-single-mv__text-box {
    width: 100%;
    min-height: 0;
    padding: 43px calc(18px + 0.75rem) 39px;
  }
  .p-special-single-mv__head {
    gap: 8px 12px;
    margin-bottom: 23px;
    font-size: 1rem;
  }
  .p-special-single-mv__cont-title {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .p-special-single--post-container {
    margin-top: 40px;
  }
  .p-special-single--post-container > .wp-block-image {
    margin-bottom: 44px;
  }
  .p-special-single .wp-block-image {
    margin-top: 48px;
  }
  .p-special-single .p-entry__recommend {
    margin-top: 48px;
  }
  .p-special-single .p-entry__recommend .c-title {
    margin-left: 0;
  }
  .p-special-single .p-entry-card-list {
    margin-top: 48px;
  }
}
/* 
ブロック：吹き出し
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.wp-block-original-balloon {
  display: flex;
  gap: 0 24px;
  margin-bottom: 40px;
}

.wp-block-original-balloon__iconbox {
  width: 60px;
}

.wp-block-original-balloon__icon {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.wp-block-original-balloon__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.wp-block-original-balloon__name {
  font-size: 0.875rem;
  text-align: center;
}

.wp-block-original-balloon__text {
  flex: 1;
  margin-top: -5px;
}

@media (max-width: 767px) {
  .wp-block-original-balloon {
    gap: 0 20px;
  }
  .wp-block-original-balloon__iconbox {
    width: 54px;
  }
  .wp-block-original-balloon__text {
    font-size: 0.9375rem;
  }
}
/* 
ブロック：スペシャルコンテンツ用タイトル
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.wp-block-original-special-hgroup {
  margin-bottom: 40px;
}

.wp-block-original-special-hgroup__subtitle {
  margin-bottom: 2px;
  font-size: 0.875rem;
  font-weight: 700;
}

.wp-block-original-special-hgroup__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

@media (max-width: 767px) {
  .wp-block-original-special-hgroup {
    margin-bottom: 36px;
  }
}
/* 
ブロック：スペシャルコンテンツ用メンバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.wp-block-original-special-member {
  width: 100vw;
  margin: 120px calc(50% - 50vw);
}

.wp-block-original-special-member__sectitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.wp-block-original-special-member__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 3.75%;
  max-width: 1280px;
  margin: 48px auto 0;
}

.wp-block-original-special-member__list > li {
  width: 22.1875%;
}

.wp-block-original-special-member__list > li:nth-child(n+5):last-child {
  margin-right: auto;
}

.wp-block-original-special-member__image {
  margin-bottom: 13px;
  padding-top: 66.5492957746%;
  position: relative;
}

.wp-block-original-special-member__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.wp-block-original-special-member__list {
  font-size: 0.875rem;
  line-height: 1.875;
}

.wp-block-original-special-member__list p {
  margin-top: 10px;
}

.wp-block-original-special-member__name {
  font-size: 1.125rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .wp-block-original-special-member {
    width: 100%;
    margin: 48px auto;
  }
  .wp-block-original-special-member__sectitle {
    font-size: 1.375rem;
  }
  .wp-block-original-special-member__list {
    justify-content: flex-start;
    gap: 30px 8%;
    margin-top: 34px;
    font-size: 0.75rem;
  }
  .wp-block-original-special-member__list > li {
    width: 46%;
  }
  .wp-block-original-special-member__list p {
    margin-top: 12px;
  }
  .wp-block-original-special-member__image {
    margin-bottom: 15px;
  }
  p.wp-block-original-special-member__name {
    font-size: 1rem;
    line-height: 1.6;
  }
}
/* 
リッチテキストブロックのマーカー機能
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.text-marker-yellow {
  background: linear-gradient(to top, #FCFCBD 90%, transparent 90%);
}

/* 
検索
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (min-width: 768px) {
  .p-product-search_contaner {
    display: grid;
    justify-content: space-between;
    grid-template-columns: min(31.5322580645%, 391px) min(58.064516129%, 720px);
    grid-template-rows: auto 1fr auto auto;
    gap: 0;
    width: calc(100vw - 1.75rem);
    max-width: 1240px;
    margin-left: clamp((1240px + 1.75rem - 1120px) / 2 * -1, (100vw - 1120px) / 2 * -1, 0px);
    margin-bottom: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .p-product-search__search-group {
    grid-column: 1/2;
    grid-row: 1/2;
    padding-top: 129px;
    position: relative;
    z-index: 2;
  }
  .p-product-search__search-group::after {
    display: none;
  }
  .p-product-search__search-group hgroup {
    margin-bottom: 30px;
  }
  .p-product-search__search-group .p-product-search__input-group {
    flex-direction: column;
    gap: 10px 0;
  }
  .p-product-search__search-group .p-product-search__search-item .c-input-radio__label:before {
    width: 22px;
    height: 22px;
  }
  .p-product-search__search-group .p-product-search__search-item .c-input-radio__label:after {
    width: 12px;
    height: 12px;
    top: 4px;
    left: 5px;
  }
  .p-product-search__search-group .p-product-search__search-item .c-input-radio__label {
    padding-left: 2.3rem;
  }
  .p-product-search__search-group .p-product-search__search-item .p-product-search__input-group-item:first-child {
    margin-right: 0;
  }
  .p-product-search__search-group .p-product-search__search-item .p-product-search-note label {
    display: flex;
    align-items: center;
    gap: 0 10px;
  }
  .p-product-search__search-group .p-product-search__search-item .p-product-search-note input {
    width: 22px;
    height: 22px;
  }
  .p-product-search__search-group .p-product-search__search-item .p-product-search__textarea-group-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 10px;
  }
  .p-product-search__search-group .p-product-search__search-item .p-product-search__textarea-group-btn button {
    margin-top: 0 !important;
  }
  .p-product-search__search-group .p-product-search__search-item:not(:last-child) {
    background: none;
    padding-bottom: 0;
    margin-bottom: 124px;
  }
  .p-product-search__search-group .p-product-search__textarea-group {
    flex-direction: column;
  }
  .p-product-search__search-group .p-product-search__textarea-group-item:first-child {
    margin-right: 0;
    width: 100%;
  }
  .p-product-search__search-group .p-product-search__textarea-group-item .c-input-text__input {
    width: 100%;
    height: 148px;
    margin-right: 0;
  }
  .p-product-search__search-group .p-product-search-note br {
    display: none;
  }
  .p-product-search__search-group .p-product-search__textarea-group-btn {
    margin-top: 20px;
  }
  .p-product-search__brand-search {
    padding: 0;
  }
  .p-product-search__brand-search::after {
    display: none;
  }
  .p-product-search__categories-search {
    grid-column: 1/2;
    display: block;
    margin-top: 124px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  .p-product-search__categories-search hgroup {
    margin-bottom: 10px;
  }
  .p-product-search__categories-search .p-product-search__categories-list {
    margin: 0;
    gap: 22px 4.347826087%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1140px) {
  .p-product-search__categories-search .p-product-search__categories-list {
    gap: 22px 3.5%;
  }
}
@media screen and (min-width: 768px) {
  .p-product-search__categories-search .p-product-search__categories-item {
    margin: 0;
    width: 21.7391304348%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1140px) {
  .p-product-search__categories-search .p-product-search__categories-item {
    width: 31%;
  }
}
@media screen and (min-width: 768px) {
  .p-product-search__categories-search .p-product-search__categories-name {
    font-size: 12px;
    line-height: 1.2;
  }
  .p-product-search__categories-search .p-product-search__categories-img {
    margin-bottom: 10px;
    background-color: #fff;
  }
  .p-product-search__categories-search .p-product-search__categories-search-body {
    padding-top: 16px;
  }
  .p-product-search__categories-search .p-product-search__categories-search-item + .p-product-search__categories-search-item {
    margin-top: 66px;
  }
  .p-product-search__brand-search {
    grid-column: 2/3;
    grid-row: 1/3;
    background: none;
    margin-bottom: 0;
    padding: 135px 0 100px;
    position: relative;
    z-index: 1;
  }
  .p-product-search__brand-search::before, .p-product-search__brand-search::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
  }
  .p-product-search__brand-search::before {
    background: #F0F0F0;
    right: calc(100% + min(5.0393700787vw, 64px));
    z-index: -1;
  }
  .p-product-search__brand-search::after {
    background: #E9E9E9;
    right: auto;
    left: -129px;
    z-index: -2;
    bottom: auto;
    transform: none;
  }
  .p-product-search__product-highlights {
    grid-column: 1/3;
    margin-top: 120px;
  }
  .p-product-search__catalogues {
    grid-column: 1/3;
  }
  .p-product-search__catalogues .p-product-search__catalog-download {
    padding: 162px 0 150px;
  }
  .p-product-search__catalogues .p-product-search__catalog-download::after {
    width: 110vw;
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (max-width: 767px) {
  .p-product-search .c-title.-xlarge .c-title__categories {
    font-size: 2.5rem;
  }
  .p-product-search .c-sticky .c-sticky__item:nth-of-type(2) {
    width: 100%;
  }
  .p-product-search_contaner {
    display: flex;
    flex-direction: column;
  }
  .p-product-search_contaner .c-sticky {
    order: -2;
  }
  .p-product-search_contaner .p-product-search__brand-search {
    order: -1;
    margin-bottom: 0;
  }
  .p-product-search_contaner .p-product-search__categories-search {
    margin-bottom: 120px;
  }
  .p-product-search__search-group hgroup {
    margin-bottom: 20px;
  }
}
/* 
ショウルーム
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-showroom {
  padding-bottom: 80px;
  overflow: hidden;
}
.p-showroom .p-access__gallery {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-showroom .p-access__gallery {
    margin-top: 70px;
  }
}
.p-showroom .p-access__gallery + .p-access__gallery {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-showroom .p-access__gallery + .p-access__gallery {
    margin-top: 70px;
  }
}

/* 
法人のお客様
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-forcorporate {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-forcorporate {
    padding-top: 42px;
  }
}
.p-forcorporate .l-main__wrapper {
  max-width: calc(990px + 1.75rem);
  position: relative;
}
.p-forcorporate__header {
  position: absolute;
  left: 0.875rem;
  position: absolute;
  top: 89px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-forcorporate__header {
    position: static;
    max-width: 300px;
  }
  .p-forcorporate__header .c-title__categories {
    line-height: 1.1111111111 !important;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-forcorporate__header .c-title__categories {
    position: relative;
  }
  .p-forcorporate__header .c-title__categories::before {
    content: "For Professional";
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-clip-path: polygon(190px 0%, 100% 0%, 100% 100%, 190px 100%);
            clip-path: polygon(190px 0%, 100% 0%, 100% 100%, 190px 100%);
  }
}
.p-forcorporate .p-forcorporate__title-img {
  width: 100vw;
  height: 450px;
  margin: 0 calc(50% - 50vw) 0 190px;
  padding-right: calc(50vw - 32.6%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-forcorporate .p-forcorporate__title-img {
    display: flex;
    height: 268px;
    margin: 63px calc(50% - 50vw) 0;
    padding-right: 0;
  }
}
.p-forcorporate .p-forcorporate__title-img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-forcorporate .p-forcorporate__title-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-forcorporate .p-forcorporate__title-img .simpleParallax img {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-forcorporate .wp-block-yamagiwacojp-featured-image {
    aspect-ratio: 375/265;
  }
  .p-forcorporate .wp-block-yamagiwacojp-featured-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-forcorporate__propertyType {
  margin-top: 63px;
  padding: 65px 0 94px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-forcorporate__propertyType {
    margin-top: 68px;
    padding-bottom: 77px;
  }
  .p-forcorporate__propertyType .c-title__categories {
    font-size: 32px !important;
  }
  .p-forcorporate__propertyType .c-title__substitution {
    font-size: 14px !important;
  }
}
.p-forcorporate__propertyType::before {
  content: "";
  display: block;
  width: 110vw;
  height: 100%;
  background: #FAFAFA;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.p-forcorporate__propertyTypeList {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 3px;
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .p-forcorporate__propertyTypeList {
    margin-top: 43px;
  }
}
.p-forcorporate__propertyTypeList > li {
  width: calc((100% - 6px) / 3);
}
@media screen and (max-width: 767px) {
  .p-forcorporate__propertyTypeList > li {
    width: 100%;
  }
}
.p-forcorporate__propertyTypeList__imgBox {
  position: relative;
  aspect-ratio: 328/236;
}
@media screen and (max-width: 767px) {
  .p-forcorporate__propertyTypeList__imgBox {
    aspect-ratio: 314/100;
  }
}
.p-forcorporate__propertyTypeList__imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-forcorporate__propertyTypeList__imgTtl {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
}
.p-forcorporate__propertyTypeList__imgTtl span {
  display: block;
  text-align: center;
  line-height: 1;
}
.p-forcorporate__propertyTypeList__imgTtl ._enTtk {
  font-size: 30px;
  font-weight: 600;
}
.p-forcorporate__propertyTypeList__imgTtl ._jpTtl {
  margin-top: 15px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-forcorporate__propertyTypeList__imgTtl ._jpTtl {
    margin-top: 5px;
  }
}
.p-forcorporate__propertyTypeList__desc {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-forcorporate__propertyTypeList__desc {
    margin-top: 9px;
  }
}
.p-forcorporate__propertyTypeList__link {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-forcorporate__propertyTypeList__link {
    margin-bottom: 9px;
  }
}
.p-forcorporate .p-case__search {
  padding: 0;
  margin-top: 86px;
}
@media screen and (max-width: 767px) {
  .p-forcorporate #case .c-title__categories {
    font-size: 32px !important;
  }
  .p-forcorporate #case .c-title__substitution {
    margin-top: 10px !important;
    font-size: 14px !important;
  }
}

/* 
トップページ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 767px) {
  .p-front-page .c-title.-medium .c-title__categories {
    font-size: 1.85rem;
  }
}

.p-front-page__postContainer {
  width: 90.2777777778%;
  margin: 171px auto 173px;
}
@media screen and (max-width: 767px) {
  .p-front-page__postContainer {
    margin: 68px auto;
    width: 83.7333333333vw;
  }
}
.p-front-page__postContainer hgroup {
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .p-front-page__postContainer hgroup {
    margin-bottom: 37px;
  }
}
.p-front-page__postContainer .wp-block-group__inner-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front-page__postContainer .wp-block-group__inner-container {
    display: block;
  }
}
.p-front-page__postContainer .p-front-page__structure {
  padding: 0;
}
@media screen and (max-width: 1140px) {
  .p-front-page__postContainer .p-front-page__button {
    text-align: left;
    margin-top: 30px;
  }
}
.p-front-page__postContainer .p-front-page__button .c-button {
  min-width: 180px;
  padding: 12px 0;
  font-size: 14px;
  position: absolute;
  top: 12px;
  right: 0;
}
@media screen and (max-width: 1140px) {
  .p-front-page__postContainer .p-front-page__button .c-button {
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-front-page__postContainer .p-front-page__button .c-button {
    min-width: 154px;
  }
}
.p-front-page__postContainer .p-front-page__button .c-button::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #000;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  transition: 0.4s;
}
.p-front-page__postContainer .p-front-page__button .c-button:hover::after {
  border-left-color: #fff;
}

.p-front-page__product-highlights {
  width: 39.5833333333vw;
  position: relative;
  z-index: 1;
  transform: translateX(-5.2%);
}
@media screen and (max-width: 767px) {
  .p-front-page__product-highlights {
    width: 100%;
    margin-top: 66px;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .p-front-page__product-highlights__slide {
    width: 76vw;
  }
}
.p-front-page__product-highlights .splide__track {
  overflow: visible;
  position: relative;
  z-index: 2;
}
.p-front-page__product-highlights .splide__track::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 2;
}
.p-front-page__product-highlights .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  top: 12.2vw;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-front-page__product-highlights .splide__arrow {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    top: 26.6666666667vw;
  }
}
.p-front-page__product-highlights .splide__arrow--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.p-front-page__product-highlights .splide__arrow--next {
  right: 0;
  transform: translate(50%, -50%);
}
.p-front-page__product-highlights .splide__arrow picture {
  display: inline;
}
.p-front-page__product-highlights .splide__arrow img {
  width: 2.1527777778vw;
  height: auto;
  vertical-align: middle;
  transform: translateY(-40%);
}
@media screen and (max-width: 767px) {
  .p-front-page__product-highlights .splide__arrow img {
    width: 5.8666666667vw;
  }
}
.p-front-page__product-highlights__imgBox {
  aspect-ratio: 570/353;
}
.p-front-page__product-highlights__imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-page__product-highlights__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin-top: 13px;
}
.p-front-page__product-highlights__cat > * {
  display: block;
  padding: 5px 14px;
  border: 1px solid #000;
  font-size: 10px;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-front-page__product-highlights__cat > * {
    padding: 4px 8px;
  }
}
.p-front-page__product-highlights__ttl {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-front-page__product-highlights__ttl {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-front-page__product-highlights .p-front-page__button {
    margin-top: 10px;
  }
}

.p-front-page__business {
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-front-page__business {
    padding-top: 59px;
  }
}
.p-front-page__business hgroup {
  text-align: center;
}

.p-front-page__businessList {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 1px;
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .p-front-page__businessList {
    margin-top: 47px;
  }
}
.p-front-page__businessList > * {
  width: calc((100% - 2px) / 3);
}
@media screen and (max-width: 767px) {
  .p-front-page__businessList > * {
    width: 100%;
  }
}
.p-front-page__businessList a {
  display: block;
  aspect-ratio: 480/484;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-front-page__businessList a {
    aspect-ratio: 375/165;
  }
}
@media (hover: hover) {
  .p-front-page__businessList a:hover .p-front-page__businessList__bg {
    transform: scale(1.06);
  }
}
.p-front-page__businessList a:after {
  content: "";
  display: block;
  width: 31px;
  height: 8px;
  background: url(../assets/img/flont-page/bussiness-arrow.svg) center/auto no-repeat;
  position: absolute;
  right: 21px;
  bottom: 21px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-front-page__businessList a:after {
    right: 19px;
    bottom: 20px;
  }
}
.p-front-page__businessList__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.p-front-page__businessList__ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1rem;
  width: 100%;
  padding: 0 3rem 0 1.4rem;
  color: #fff;
  position: absolute;
  bottom: 1rem;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-front-page__businessList__ttl {
    padding: 0 3.6rem 0 0.9rem;
    bottom: 0.7rem;
  }
}
.p-front-page__businessList__ttl ._enTtl {
  font-size: 24px;
  font-weight: 600;
}
.p-front-page__businessList__ttl ._jpTtl {
  margin-top: 5px;
  font-size: 13px;
}

.p-front-page__Links {
  display: flex;
  flex-wrap: wrap;
}
.p-front-page__Links > * {
  display: block;
  aspect-ratio: 720/357;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front-page__Links > * {
    width: 100%;
    aspect-ratio: 375/150;
  }
}
.p-front-page__Links a {
  overflow: hidden;
}
.p-front-page__Links a:hover .p-front-page__Links__bg {
  transform: scale(1.06);
}
.p-front-page__Links__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.p-front-page__Links__ttl {
  width: 100%;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
}
.p-front-page__Links__ttl > * {
  display: block;
  line-height: 1;
}
.p-front-page__Links__ttl ._enTtl {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-front-page__Links__ttl ._enTtl {
    font-size: 27px;
  }
}
.p-front-page__Links__ttl ._jpTtl {
  margin-top: 5px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-front-page__Links__ttl ._jpTtl {
    margin-top: 7px;
    font-size: 12px;
  }
}

.p-footer {
  background-color: #111;
  color: #fff;
  position: relative;
}
.p-footer__topto {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-footer__topto {
    bottom: auto;
    top: 0;
  }
}
.p-footer__inner {
  display: flex;
  gap: 0 81px;
  width: calc(100% - 1.75rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 0 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    display: block;
    width: 84vw;
    padding: 26px 0 55px;
  }
}
.p-footer__logo {
  width: 125px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 97px;
    margin: 0 auto;
  }
}
.p-footer__logo svg {
  width: 100%;
}
.p-footer__nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  max-width: 928px;
  font-size: 14px;
  padding-top: 7px;
}
@media screen and (max-width: 1140px) {
  .p-footer__nav {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    justify-content: space-between;
    gap: 25px 0;
    padding-top: 25px;
  }
}
.p-footer__nav > * {
  width: 160px;
}
@media screen and (max-width: 1140px) {
  .p-footer__nav > * {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav > * {
    width: 40%;
  }
}
.p-footer__nav a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 0;
  line-height: 1.2;
  font-weight: 600;
}
.p-footer__nav__subMenu {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-footer__nav__subMenu {
    margin-top: 10px;
  }
}
.p-footer__nav__subMenu a {
  padding: 4px 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__nav__subMenu a + a {
    margin-top: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav__subMenu.-spCol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .p-footer__nav__subMenu.-spCol > * {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav__cont {
    width: 40%;
  }
  .p-footer__nav__cont:has(.-spCol) {
    width: 100%;
  }
}
.p-footer__nav__box {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav__box {
    display: contents;
  }
  .p-footer__nav__box.-spShow {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
  }
  .p-footer__nav__box.-spShow > * {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav__spBox {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav__spBox {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
    width: 40%;
  }
  .p-footer__nav__spBox > * {
    width: 100%;
  }
}
.p-footer .p-footer__nav__sns {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  font-family: Roboto, sans-serif;
  padding-top: 14px;
  font-weight: 600;
}
@media screen and (max-width: 1140px) {
  .p-footer .p-footer__nav__sns {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    gap: 0 10px;
  }
}
.p-footer .p-footer__nav__sns ._ttl {
  margin-bottom: 10px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns ._ttl {
    display: none;
  }
}
.p-footer .p-footer__nav__sns a {
  display: flex;
  align-items: center;
  padding: 5px 0 5px 32px;
  font-size: 12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns a {
    padding: 5px;
  }
}
.p-footer .p-footer__nav__sns a + a {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns a + a {
    margin-top: 0;
  }
}
.p-footer .p-footer__nav__sns i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns i {
    position: static;
    transform: none;
  }
}
.p-footer .p-footer__nav__sns ._facebook i::before {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns ._facebook i::before {
    font-size: 30px;
  }
}
.p-footer .p-footer__nav__sns ._instagram i::before {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns ._instagram i::before {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__nav__sns ._x i::before {
    display: block;
    transform: scale(1.4);
  }
}
.p-footer__copyright {
  display: block;
  opacity: 0.5;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: 17px;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    position: static;
    text-align: center;
    margin-top: 40px;
  }
}

.p-product-search__catalog-download-carousel .c-fragment-carousel__prev,
.p-product-search__catalog-download-carousel .c-fragment-carousel__next {
  display: block;
  left: 50%;
  right: auto;
  top: auto;
  bottom: -90px;
}
@media screen and (max-width: 767px) {
  .p-product-search__catalog-download-carousel .c-fragment-carousel__prev,
  .p-product-search__catalog-download-carousel .c-fragment-carousel__next {
    display: none;
  }
}
.p-product-search__catalog-download-carousel .c-fragment-carousel__prev {
  transform: translateX(calc(-50% - 9.1666666667vw));
}
.p-product-search__catalog-download-carousel .c-fragment-carousel__next {
  transform: translateX(calc(50% - 9.1666666667vw));
}
.p-product-search__catalog-download-carousel + .p-product-search__catalog-download-carousel .c-fragment-carousel__prev,
.p-product-search__catalog-download-carousel + .p-product-search__catalog-download-carousel .c-fragment-carousel__next {
  display: none;
}/*# sourceMappingURL=additional.css.map */