@charset "UTF-8";
html {
	scroll-behavior: smooth;
}
.pad_anchor {
	margin-top: -120px;
	padding-top: 120px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	.dsp_sp { display: none; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.dsp_hp { display: none; }
}
/**/
#product {
	width: 100%;
	max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px 120px;
}
#product * {
	box-sizing: border-box;
}
#product a {
	transition: all 0.3s ease-in-out;
}
#product h2 {
	margin-bottom: 80px;
	text-align: center;
}
#product h2 img {
	width: 500px;
}
@media only screen and (max-width: 820px) {  /* タブレット以下 */
	#product h2 {
		margin-bottom: 50px;
	}
	#product h2 img {
		width: 400px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#product {
		padding: 20px 20px 80px;
	}
	#product h2 {
		margin-bottom: 30px;
	}
	#product h2 img {
		width: 200px;
	}
}
/*--------------------------------------------------
  リンク
--------------------------------------------------*/
#product_link {
	margin-bottom: 120px;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
#product_link li {
	width: calc(25% - (20px * 3 / 4));
}
#product_link li a {
	height: 100%;
	padding: 5px 15px;
	border-left: 3px double #000;
	color: #000;
	font-size: 90%;
	font-weight: bold;
	line-height: 1.4;
	/* 縦方向中央揃え */
	display: flex;
	justify-content: center;
	flex-direction: column;
}
#product_link li a:hover {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
#product_link li a b {
	display: block;
	font-size: 80%;
	font-weight: bold;
}
@media only screen and (max-width: 1100px) {  /* タブレット以下 */
	#product_link li {
		width: calc((100% / 3) - (20px * 3 / 4));
	}
}
@media only screen and (max-width: 900px) {  /* タブレット以下 */
	#product_link li {
		width: calc(50% - (20px * 3 / 4));
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#product_link {
		gap: 15px;
		margin-bottom: 80px;
	}
	#product_link li {
		width: calc(50% - (15px * 3 / 4));
	}
}
/*--------------------------------------------------
  詳細リスト
--------------------------------------------------*/
#product_list {
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	column-gap: 80px;
	row-gap: 100px;
}
#product_list a {
	height: 100%;
	color: #000;
	transition: all 0.3s ease-in-out;
	/* 縦方向中央揃え */
	display: flex;
	flex-direction: column;
}
#product_list a:hover {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
#product_list .box {
	width: calc((100% / 3) - (80px * 2 / 3));
}
#product_list .photo {
	width: 90%;
	margin: 0 auto 15px;
}
#product_list .photo figure {
	aspect-ratio: 4 / 5;
}
#product_list .photo img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: none;
}
#product_list h3 {
	margin-top: auto;
	font-size: 130%;
	font-weight: 900;
	line-height: 1.3;
}
#product_list h3 span {
	display: inline-block;
	margin-bottom: 5px;
	padding: 1px 6px;
	background: #e60012;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
}
#product_list h3 b {
	display: block;
	font-size: 75%;
	font-weight: 900;
}
#product_list .ico {
	margin-bottom: 8px;
}
#product_list .ico img {
	width: 50px;
}
@media only screen and (max-width: 900px) {  /* タブレット以下 */
	#product_list {
		column-gap: 60px;
		row-gap: 80px;
	}
	#product_list .box {
		width: calc(50% - 30px);
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#product_list {
		column-gap: 40px;
		row-gap: 60px;
	}
	#product_list .box {
		width: calc(50% - 20px);
	}
	#product_list .photo {
		aspect-ratio: 3 / 2;
	}
	#product_list .ico img {
		width: 40px;
	}
}
/*--------------------------------------------------
  ポップアップ詳細
--------------------------------------------------*/
.products_box {
	display: none;
}
.mfp-content .products_box {
	display: block;
}
/**/
.products_detail {
	overflow: auto;
	position: relative;
	width: 90%;
	max-width: 1100px;
	max-height: 90vh;
	margin: auto;
	padding: 50px;
	background-color: #fff !important;
	border: 1px solid #000;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.products_detail.bug .txt {
	position: relative;
}
.products_detail.bug .txt::before {
	position: absolute;
	top: -10px;
	right: 0;
	width: 90px;
	height: 90px;
	background: url(../img/products-bug.png) no-repeat right top / contain;
	content: "";
}
.products_detail .photo {
	width: 39%;
}
.products_detail .photo_in {
	position: relative;
	padding: 0 40px;
	margin-bottom: 15px;
}
.products_detail .txt {
	width: 57%;
}
.products_detail h3 {
	margin-bottom: 15px;
	font-size: 190%;
	font-weight: bold;
	line-height: 1.3;
}
.products_detail h3 span:not(.fs) {
	display: inline-block;
	margin-bottom: 5px;
	padding: 1px 10px;
	background: #000;
	color: #fff;
	font-size: 60%;
	font-weight: bold;
}
.products_detail h3 b {
	display: block;
	font-size: 70%;
	font-weight: bold;
}
.products_detail h3 .fs {
	font-size: 70%;
	font-weight: bold;
}
.products_detail .ico {
	margin: 20px 0;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.products_detail .ico li {
	width: 80px;
}
.products_detail .price {
	margin-bottom: 30px;
	font-weight: bold;
}
.products_detail .price b {
	display: inline-block;
	margin-right: 2px;
	font-size: 220%;
	font-weight: 900;
	line-height: 1;
}
.products_detail .price .size {
	display: inline-block;
	width: 2em;
	font-weight: bold;
}
.products_detail .price:has(p) {
	width: 100%;
	max-width: 500px;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 10px;
}
.products_detail .price p {
	font-weight: bold;
}
.products_detail .note dl {
	margin-bottom: 5px;
	color: #727171;
	font-size: 90%;
	line-height: 1.5;
	/* フレックス */
	display: flex;
	align-items: flex-start;
	column-gap: 10px;
}
.products_detail .note dt {
	width: 5em;
	background: #dae000;
	border: 1px solid #727171;
	border-radius: 999px;
	font-size: 90%;
	font-weight: bold;
	text-align: center;
}
.products_detail .note dd {
	width: calc(100% - 5em - 10px);
	font-weight: bold;
}
.products_detail .note dd span {
	display: inline-block;
	padding: 0 5px;
	background: #727171;
	border-radius: 5px;
	color: #fff;
	font-weight: bold;
}
.products_detail .feature {
	position: relative;
	margin-top: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #727171;
	z-index: 10;
}
.products_detail .feature dt {
	width: 4.5em;
	margin-bottom: 15px;
	padding: 2px 0;
	background: #727171;
	color: #fff;
	font-size: 90%;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
}
.products_detail .feature dt::before {
	position: absolute;
	top: 0.8em;
	left: 0;
	width: 100%;
	height: 1px;
	background: #727171;
	content: "";
	z-index: -1;
}
.products_detail .feature dd ul {
	height: 82px;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	column-gap: 2%;
	row-gap: 5px;
}
.products_detail .feature dd li {
	width: 32%;
	/* フレックス */
	display: flex;
	align-items: center;
	column-gap: 5px;
}
.products_detail .feature dd li span {
	display: inline-block;
	color: #727171;
	font-size: 70%;
	font-weight: bold;
	line-height: 1.4;
}
.products_detail .feature dd img {
	width: 24px;
}
@media only screen and (max-width: 820px) {  /* タブレット以下 */
	.products_detail {
		padding: 30px;
	}
	.products_detail.bug .txt::before {
		top: 0;
		width: 60px;
		height: 60px;
	}
	.products_detail::before {
		width: 30px;
		height: 30px;
	}
	.products_detail .photo {
		width: 100%;
		margin-bottom: 20px;
	}
	.products_detail .txt {
		width: 100%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.products_detail {
		padding: 20px;
	}
	.products_detail h3 {
		margin-bottom: 10px;
		font-size: 160%;
	}
	.products_detail.bug .txt::before {
		width: 55px;
		height: 55px;
	}
	.products_detail .ico {
		margin: 15px 0;
		gap: 6px;
	}
	.products_detail .ico li {
		width: calc(20% - (6px * 4 / 5));
	}
	.products_detail .price {
		margin-bottom: 20px;
	}
	.products_detail .price b {
		font-size: 190%;
	}
	.products_detail .price:has(p) {
		column-gap: 30px;
	}
	.products_detail .feature dd li {
		width: auto;
	}
}
/**/
.products_detail .slide_photo {
	aspect-ratio: 4 / 5;
	text-align: center;
}
.products_detail .slide_photo img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: none;
}
.products_detail .swiper-thumbs .swiper-wrapper {
	flex-wrap: wrap;
	gap: 10px;
}
.products_detail .swiper-thumbs .swiper-slide {
	margin: 0 !important;
}
.products_detail .slide_thumbnail {
	opacity: 0.4;
	aspect-ratio: 4 / 5;
}
.products_detail .slide_thumbnail img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: none;
}
.products_detail .swiper-slide-thumb-active {
	opacity: 1;
}
.products_detail .swiper-button-prev,
.products_detail .swiper-button-next {
	color: #727171 !important;
}
.products_detail .swiper-button-prev::after,
.products_detail .swiper-button-next::after {
	font-size: 30px;
}
.products_detail .swiper-button-prev,
.products_detail .swiper-rtl .swiper-button-next {
	left: var(--swiper-navigation-sides-offset, 0px);
}
.products_detail .swiper-button-next, 
.products_detail .swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, 0);
}
@media only screen and (max-width: 820px) {  /* タブレット以下 */
	.products_detail .slide_photo,
	.products_detail .slide_thumbnail {
		aspect-ratio: 1 / 1;
	}
	.products_detail .swiper-button-prev::after,
	.products_detail .swiper-button-next::after {
		font-size: 20px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.products_detail .swiper-thumbs .swiper-wrapper {
		gap: 9px;
	}
}
/**/
.mfp-bg {
	background: #fff;
}
.mfp-close-btn-in .mfp-close {
	top: -22px !important;
	right: calc(((100vw - 1100px) / 2) - 22px);
	background: #727171;
	border-radius: 50%;
	color: #fff !important;
	font-size: 40px;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}
.mfp-close-btn-in .mfp-close:hover {
	background: #A09F9F;
}
@media only screen and (max-width: 820px) {  /* タブレット以下 */
	.mfp-close-btn-in .mfp-close {
		right: 0;
	}
}