@media screen and (min-width: 1440px) {
    .section_content.mw1220 {
        width: 1220px;
    }
}
.pro_detail_catch::after {
    content: "HP Poly";
    font-size: 24px;
    font-weight: bold;
}
@media screen and (min-width: 768px) {
.pro_detail_catch::after {
    text-align: right;
    line-height: 28px;
	top: -50px;
}
}


/*=====================================

HP Poly Mission 400 USB シリーズ

======================================*/
.series {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 30px;
	margin-top: 40px;
}
.series_list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.accordion-item:nth-child(n+2) {
	border-top: 1px solid #000;
}
.accordion-title {
	padding: 10px 0;
	font-size: 18px;
	margin-top: 9px;
}
.accordion-content {
	margin-bottom: 10px;
	font-size: 16px;
}

@media screen and (min-width: 1280px) {
.series_list {
	padding-top: 80px;
}
}
/* -----------------------------------------------
   アコーディオン
----------------------------------------------- */
/* 最初はすべて非表示 */
.accordion-content {
  display: none;
}
/* このクラスがついている要素だけ表示 */
.accordion-content.is-open {
  display: block;
}
.accordion-item {
	cursor: pointer;
}
/* 閉じているアコーディオンのタイトルの色 */
.accordion-item:not(:has(.is-open)) .accordion-title {
  color: #999999; /* 閉じている時の色（例：グレー） */
}
/* タイトル全体のレイアウト調整 */
.accordion-title {
  cursor: pointer;
  display: inline-flex; /* テキストの幅に合わせる */
  align-items: center;
  gap: 8px; /* 矢印とテキストの間の隙間 */
}
/* 矢印の共通スタイル（【変更】afterにしてテキストの後に挿入） */
.accordion-title::after { 
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;  /* 矢印の線の太さと色 */
  border-bottom: 2px solid #333; /* 矢印の線の太さと色 */
  transform: rotate(45deg); /* 初期状態：下向き */
  transition: transform 0.3s ease; /* 動きを滑らかにする */
  margin-top: -4px; /* 目の錯覚による上下のズレを微調整 */
}

/* -----------------------------------------------
   開閉状態に応じた矢印の変化
----------------------------------------------- */
/* 開いている時の矢印（上向きに回転） */
.accordion-item:has(.is-open) .accordion-title::after {
  transform: rotate(-135deg); 
  margin-top: 4px; /* 上向き時の上下位置の微調整 */
}
/* 閉じている時の矢印の色（閉じている時のテキスト色と合わせる場合） */
.accordion-item:not(:has(.is-open)) .accordion-title::after {
  border-color: #999999; /* 閉じている時は矢印もグレーにする */
}



/* -----------------------------------------------
   スマホ
----------------------------------------------- */
@media screen and (min-width: 1024px) {
.sp_series {
	display: none;
}
}
@media screen and (max-width: 1023px) {
.series {
	display: none;
}
}

/* ----------------------------------------
  swiper
---------------------------------------- */

.sp_slide .swiper {
  overflow: hidden;
  position: relative;
  padding: 47px 0 40px;
}
.sp_slide .swiper-slide {
  margin-right: 20px;
}
.sp_slide .swiper-slide:last-child {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .sp_slide .swiper {
    padding-right: 30px;
    padding-left: 30px;
  }
  .sp_slide .swiper-slide {
    margin-right: 30px;
  }
}



/* controller -------------------- */

.sp_slide .swiper-controller {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.sp_slide .swiper-button-prev,
.sp_slide .swiper-button-next {
  position: relative;
  cursor: pointer;
  transition: .2s;
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
.sp_slide .swiper-button-prev:hover,
.sp_slide .swiper-button-next:hover {
  background: #000;
}
.sp_slide .swiper-button-prev::before,
.sp_slide .swiper-button-next::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  transition: .2s;
  width: 44px;
  height: 44px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M0,0v30h30V0H0ZM29,29H1V1h28v28Z"/><polygon points="16.09 20.11 16.8 20.82 22.6 15.02 16.75 9.18 16.05 9.89 20.69 14.53 8.03 14.53 8.03 15.53 20.67 15.53 16.09 20.11"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 30px;
}
.sp_slide .swiper-button-prev:hover::before,
.sp_slide .swiper-button-next:hover::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><polygon points="16.09 20.11 16.8 20.82 22.6 15.02 16.75 9.18 16.05 9.89 20.69 14.53 8.03 14.53 8.03 15.53 20.67 15.53 16.09 20.11"/></svg>');
  filter: invert(1);
}
.sp_slide .swiper-button-prev::before,
.sp_slide .swiper-button-prev:hover::before {
  transform: rotate(180deg);
}
.sp_slide .swiper-button-disabled {
  opacity: .3;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .sp_slide .swiper-controller {
    right: 10px;
  }
}



/* pagination -------------------- */

.sp_slide .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.sp_slide .swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  width: 9px;
  height: 9px;
  margin: 0 4px;
  background-color: rgba(0,0,0,.2);
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 20px;
}
.sp_slide .swiper-pagination-bullet-active {
  width: 60px;
  background-color: #000;
}








/*=====================================

主な機能

======================================*/
.model_view {
	background-image: url('/content/dam/jp-ext-hp-com/jp/ja/ec/accessories/business/poly/mission_825/style/images/m_bg_view.png');
	background-repeat: no-repeat;
    background-size: contain;
	height: 158px;
	position: relative;
}
@media screen and (min-width: 375px) {
.model_view {
	height: 189px;
}
}
@media screen and (min-width: 480px) {
.model_view {
	height: 248px;
}
}
@media screen and (min-width: 768px) {
.model_view {
	background-image: url('/content/dam/jp-ext-hp-com/jp/ja/ec/accessories/business/poly/mission_825/style/images/bg_view.png');
	height: 253px;
}
}
@media screen and (min-width: 1024px) {
.model_view {
	background-image: url('/content/dam/jp-ext-hp-com/jp/ja/ec/accessories/business/poly/mission_825/style/images/bg_view.png');
	height: 345px;
}
}
@media screen and (min-width: 1280px) {
.model_view {
	background-image: url('/content/dam/jp-ext-hp-com/jp/ja/ec/accessories/business/poly/mission_825/style/images/bg_view.png');
	height: 435px;
}
}

.manual-spots-wrapper {
	height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.manual-spot {
	background: #fff;
    border-radius: 50%;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, .5);
    color: #000;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    transition: background .3s ease, color .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 32px;
}

.ffspot_-74455556 {
    left: 32.5%;
    top: 93.9%;
}
.ffspot_1594220504 {
    left: 31.6%;
    top: 52.5%;
}
.ffspot_296280855 {
    left: 36.1%;
    top: 86.8%;
}
.ffspot_594772008 {
    left: 13.0%;
    top: 76.2%;
}
.ffspot_1792515763 {
    left: 20.6%;
    top: 85.9%;
}
.ffspot_787259798 {
    left: 38.1%;
    top: 20.7%;
}
.ffspot_55540272 {
    left: 36.7%;
    top: 68.4%;
}
.ffspot_-1776270603 {
    left: 71.7%;
    top: 45.3%;
}
.ffspot_-1302340185 {
    left: 81.3%;
    top: 71.9%;
}
.ffspot_-1479040417 {
    left: 79.0%;
    top: 89.0%;
}
@media (max-width: 719.98px) {
.ffspot_-74455556 {
        left: 26.6%;
        top: 89.9%;
    }
	.ffspot_1594220504 {
        left: 26.7%;
        top: 52.1%;
    }
	    .ffspot_296280855 {
        left: 32.1%;
        top: 77.6%;
    }
	    .ffspot_594772008 {
        left: 5.6%;
        top: 73.5%;
    }
	.ffspot_1792515763 {
        left: 12.4%;
        top: 83.0%;
    }
	    .ffspot_787259798 {
        left: 37.7%;
        top: 12.8%;
    }
	    .ffspot_55540272 {
        left: 33.1%;
        top: 64.1%;
    }
	    .ffspot_-1776270603 {
        left: 78.0%;
        top: 47.2%;
    }
	    .ffspot_-1302340185 {
        left: 93.4%;
        top: 69.1%;
    }
	    .ffspot_-1479040417 {
        left: 90.2%;
        top: 81.9%;
    }
}

.manual-spot.active, .manual-spot:hover {
	background: #165dba;
    color: #fff;
}




/* ----------------------------------------
  swiper
---------------------------------------- */

.poly_slider .p_swiper {
	overflow: visible;
	position: relative;
	padding: 47px 20px 40px;
}
.poly_slider .swiper-slide {
	width: 283px;
	margin-right: 20px;
}
.poly_slider .swiper-slide p {
	font-size: 16px;
	margin-top: 10px;
	font-size: 20px;
}
.poly_slider .swiper-slide p:nth-child(2) {
	font-size: 16px;
	margin-top: 10px;
	padding-left: 16px;
}
.poly_slider .swiper-slide:last-child {
	margin-right: 0;
}

@media screen and (min-width: 768px) {
.poly_slider .p_swiper {
	padding-right: 30px;
	padding-left: 30px;
}
.poly_slider .swiper-slide {
	width: 429px;
	margin-right: 30px;
}
}

@media screen and (min-width: 1280px) {
.poly_slider .p_swiper {
	padding: 47px 0 0;
}
.poly_slider .swiper-slide {
	width: 283px;
}
}


/* controller -------------------- */

.poly_slider .swiper-controller {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.poly_slider .swiper-button-prev,
.poly_slider .swiper-button-next {
  position: relative;
  cursor: pointer;
  transition: .2s;
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
.poly_slider .swiper-button-prev:hover,
.poly_slider .swiper-button-next:hover {
  background: #000;
}
.poly_slider .swiper-button-prev::before,
.poly_slider .swiper-button-next::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  transition: .2s;
  width: 44px;
  height: 44px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M0,0v30h30V0H0ZM29,29H1V1h28v28Z"/><polygon points="16.09 20.11 16.8 20.82 22.6 15.02 16.75 9.18 16.05 9.89 20.69 14.53 8.03 14.53 8.03 15.53 20.67 15.53 16.09 20.11"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 30px;
}
.poly_slider .swiper-button-prev:hover::before,
.poly_slider .swiper-button-next:hover::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><polygon points="16.09 20.11 16.8 20.82 22.6 15.02 16.75 9.18 16.05 9.89 20.69 14.53 8.03 14.53 8.03 15.53 20.67 15.53 16.09 20.11"/></svg>');
  filter: invert(1);
}
.poly_slider .swiper-button-prev::before,
.poly_slider .swiper-button-prev:hover::before {
  transform: rotate(180deg);
}
.poly_slider .swiper-button-disabled {
  opacity: .3;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .poly_slider .swiper-controller {
    right: 10px;
  }
}

@media screen and (min-width: 1280px) {
  .poly_slider .swiper-controller {
    right: -20px;
  }
}


/* pagination -------------------- */

.poly_slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.poly_slider .swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  width: 9px;
  height: 9px;
  margin: 0 4px;
  background-color: rgba(0,0,0,.2);
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 20px;
}
.poly_slider .swiper-pagination-bullet-active {
  width: 60px;
  background-color: #000;
}


@media screen and (min-width: 1024px) {
.poly_slider .swiper-wrapper {
	padding-bottom: 30px;
}
}
@media screen and (min-width: 1280px) {
.poly_slider .swiper-wrapper {
	padding-bottom: 60px;
}
}
/*
@media screen and (min-width: 1280px) {
  .poly_slider .swiper-pagination {
    display: none;
  }
}
*/


/* スライダー非活性時 -------------------- */

/*
.poly_slider .swiper:not(.swiper-initialized) .swiper-controller {
  display: none;
}
.poly_slider .swiper:not(.swiper-initialized) .swiper-wrapper {
  margin: 0;
}
*/





/* 1. 通常時（active以外）の色設定 */
.manual-spot {
    background-color: #e0e0e0; /* active以外の背景色（薄いグレー） */
    color: #666666;            /* active以外の文字色（グレー） */
    
    /* 以下はピンを丸く綺麗に見せるための参考共通設定 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease; /* 色変化を滑らかにする設定 */
}

/* 2. active（選択中）の時の色設定 */
.manual-spot.is-active {
    background-color: #0076d6; /* active時の背景色（例：鮮やかな青） */
    color: #ffffff;            /* active時の文字色（白） */
}


/* 1. 基本はすべてのスライドを薄くしておく */
.p_swiper .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

/* 2. 【修正】独自のアクティブクラス（is-active-slide）がついたスライドを100%にする */
.p_swiper .swiper-slide.is-active-slide {
    opacity: 1 !important; /* 他のSwiper仕様に上書きされないよう一応記述 */
}





/*=====================================

スペック

======================================*/
.p_spec {
	width: 100%;
}
@media screen and (min-width: 1280px) {
.p_spec {
	width: 1000px;
}
}







.button.critical.accessories-btn {
	padding: .5em 1.2em;
    font-size: 16px;
}



.accordion-item:last-child .accordion-title {
	gap: 2px;
}
.accordion-title sup {
	font-size: 60%;
    bottom: 3ex;
}

.poly_slider sup {
	font-size: 60%;
    bottom: 2ex;
}