@charset "UTF-8";
html {
	min-height: 100%;
	background-color: #FFFFFF;
	font-family: 'Noto Sans JP', sans-serif;
	color: #2d2d2d;
	scroll-behavior: smooth;
}
body {
	margin: 0px;
}
h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
/* ==========================================================================
   リンクの色
   ========================================================================== */
a:link {
	color: #2d2d2d;
	text-decoration: none;
}
a:visited {
	color: #2d2d2d;
	text-decoration: none;
}
a:hover {
	color: #6c6c6c;
	text-decoration: none;
}
a:active {
	color: #2d2d2d;
	text-decoration: none;
}
/* ==========================================================================
   画像
   ========================================================================== */
img {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
/* ==========================================================================
   ヘッダー
   ========================================================================== */
#header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #101010;
}
#site {
	width: 30%;
	float: left;
	padding: 3% 3% 2% 3%;
}
/* ==========================================================================
   ナビゲーションメニュー
   ========================================================================== */
.drawer_hidden {
	display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
	width: 11vw;
  	height: 11vw;
	display: flex;
  	justify-content: center;
  	align-items: center;
  	position: relative;
  	z-index: 100;
  	cursor: pointer;
	margin-top: 0.8vw;
	margin-right: 0.8vw;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  	content: '';
  	display: block;
  	height: 2px;
  	width: 6.9vw;
  	border-radius: 2px;
  	background: #FFFFFF;
  	transition: 0.5s;
  	position: absolute;
}
/* 一番上の棒の位置調整 */
.drawer_open span:before {
  	bottom: 2.2vw;
}
/* 一番下の棒の位置調整 */
.drawer_open span:after {
	top: 2.2vw;
}
/* クリックされたら真ん中の線を透明にする */
#drawer_check:checked ~ .drawer_open span {
  	background: rgba(255, 255, 255, 0);
}
/* クリックされたら上下の線を回転 */
#drawer_check:checked ~ .drawer_open span::before {
  	bottom: 0;
  	transform: rotate(45deg);
}
#drawer_check:checked ~ .drawer_open span::after {
  	top: 0;
  	transform: rotate(-45deg);
}
/* クリックされたらメニューを表示 */
#drawer_check:checked ~ .drawer_menu {
	left: 24%;
} 
/* メニューのデザイン*/
.drawer_menu {
  	width: 100%;
  	height: 100%;
  	position: fixed;
  	top: 0;
  	left: 100%;
  	z-index: 99;
  	background: #101010;
  	transition: .5s;
	list-style: none;
}
.drawer_menu {
	text-decoration: none;
}
.drawer_list {
	margin-top: 40px;
}
.drawer_item {
	display: block;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	color: #FFFFFF;
	padding: 16px 8px 0px 16px;
}
.drawer_item ul li a {
	color: #FFFFFF;
}
.drawer_item a {
	color: #FFFFFF;
}
.drawer_subitem {
	display: block;
	list-style: none;
	text-decoration: none;
	font-size: 18px;
	padding: 16px 8px 0px 20px;
}
.menu_icon {
	width: 24px;
	height: 24px;
}
/* PC用ナビ */
.nav_pc {
	display: none;
}
/* ==========================================================================
   スライダー
   ========================================================================== */
.slider {
	width: 100%;
	float: left;
	padding: 0;
	margin-top: 0px;
	box-sizing: border-box;
}
.slider .slick-slide {
	opacity: 0.5;
	transition: 0.5s;
}
.slider .slick-current {
	opacity: 1;
}
.slick-prev {
    left: 16px;
	z-index: 100;
}
.slick-next {
    right: 16px;
	z-index: 100;
}
.slick-prev:before,
.slick-next:before {
    color: #222222;
}
/* ==========================================================================
   レイアウト
   ========================================================================== */
.wrapper_global {
	width: 100%;
	margin-top: 0px;
	margin-bottom: 3.2vw;
	box-sizing: border-box;
}
.wrapper_global:after {
	content: "";
	display: block;
	clear: both;
}
.wrapper_header {
	width: 100%;
	margin-top: 0px;
	box-sizing: border-box;
	background-color: #101010;
}
.wrapper_header:after {
	content: "";
	display: block;
	clear: both;
}
.wrapper_main {
	width: 100%;
	margin-bottom: 4.8vw;
	box-sizing: border-box;
}
.wrapper_main:after {
	content: "";
	display: block;
	clear: both;
}
.wrapper_category {
	width: 100%;
	margin: 0px;
	padding: 4vw 0 3.2vw 0;
	box-sizing: border-box;
}
.wrapper_category:after {
	content: "";
	display: block;
	clear: both;
}
.wrapper_page {
	width: 94%;
	margin-top: 4.6vw;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10vw;
	box-sizing: border-box;
}
.wrapper_page:after {
	content: "";
	display: block;
	clear: both;
}
/* ==========================================================================
   トップページ
   ========================================================================== */
/* 動画 */
.video {
	margin-top: 4vw;
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* カテゴリートップ */
.category {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	position: relative;
	color: #FFFFFF;
}
.category a{
	color: #FFFFFF;
}
.category_img {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.category_textarea {
	position: absolute;
	top: 0;
	left: 1vw;
	right: 1vw;
	z-index: 50;
}
.category_deco {
	width: 20%;
	color: #908425;
	margin-top: 4.8vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
.category_heading {
	padding: 0.8vw 0 0 0;
	font-size: 8.8vw;
	text-align: center;
	font-family: 'STIX Two Text', serif;
	color: #908425;
}
.category_maincopy {
	font-size: 3vw;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
}
.category_textarea_bottom {
	position: absolute;
	bottom: 3.2vw;
	left: 1vw;
	right: 1vw;
	z-index: 50;
}
.category_copy {
	font-size: 3vw;
	line-height: 1.8em;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
}
/* アイテム */
.item {
	width: 100%;
	margin-top: 0; 
	box-sizing: border-box;
}
.item_left {
	position: relative;
	width: 50%;
	float: left;
	margin-top: 0;
	margin-bottom: 0;
	box-sizing: border-box;
}
.item_right {
	position: relative;
	width: 50%;
	float: left;
	margin-left: 0;
	margin-bottom: 0;
	box-sizing: border-box;
}
.item_price {
	position: absolute;
	left: 1vw;
	right: 1vw;
	bottom: 2.1vw;
	font-size: 3.6vw;
	font-family: 'Noto Sans JP', sans-serif;
	color: #FFFFFF;
	text-align: center;
	margin-top: 1.6vw;
}
/* 個別設定 */
/* シャイニングクロコダイル */
.color_scroco {
	background-color: #FFFFFF;
}
/* マットクロコダイル */
.color_mcroco {
	background-color: #FFFFFF;
}
/* ホーンバッククロコダイル */
.color_hcroco {
	background-color: #FFFFFF;
}
/* カイマン */
.color_caiman {
	background-color: #FFFFFF;
}
/* パイソン */
.color_python {
	background-color: #FFFFFF;
}
/* オーストリッチ */
.color_ostrich {
	background-color: #FFFFFF;
}
.text_color_ostrich {
	color: #222222;
}
/* バナー */
.bnr_sale {
	margin-top: 6.4vw;
	margin-bottom: 6.4vw;
}
.copy_sale {
	font-size: 3.2vw;
	font-weight: 700;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	margin-top: 1.6vw;
}
/* ==========================================================================
   個別ページ共通
   ========================================================================== */
.maintitle {
	font-size: 7.2vw;
	font-weight: 700;
	font-family: 'STIX Two Text', serif;
	margin-bottom: 2.4vw;
	padding: 1vw 2.1vw 0.6vw;
	border-left: solid 2.1vw #979797;
}
.subtitle {
	font-size: 5.6vw;
	font-weight: 700;
	font-family: 'STIX Two Text', 'Noto Serif JP', serif;
	margin-bottom: 1vw;
}
.section_title{
	font-size: 4.8vw;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	padding-top: 2.1vw;
	padding-bottom: 2.1vw;
	margin-bottom: 3.2vw;
	border-bottom: 1px solid #2d2d2d;
}
.page_text {
	font-size: 3.2vw;
	line-height: 1.6em;
	margin-bottom: 4.8vw;
}
.page_text p {
	margin-bottom: 2.1vw;
}
.text_strong {
	font-size: 115%;
}
.text_bold {
	font-weight: 700;
}
.page_img {
	width: 100%;
	margin-bottom: 2.1vw;
}
/* ==========================================================================
   カテゴリーカタログ
   ========================================================================== */
.catalog {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.catalog_item {
	width: 48%;
	float: left;
	padding: 6.2vw 0 2.1vw;
	box-sizing: border-box;
}
.catalog_item img{
	box-sizing: border-box;
}
.catalog_item_left {
	margin-right: 4%;
}
.catalog_price {
	font-size: 3.2vw;
	padding: 1vw 0;
	text-align: center;
}
.catalog a{
	color: #2d2d2d;
}
/* ==========================================================================
   SALE
   ========================================================================== */
.sale_copy {
	font-size: 5vw;
	font-weight: 700;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	line-height: 1.4em;
	padding: 2.1vw 0 0;
}
.color_red {
	color: #DC0000;
}
.sale {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.sale_item {
	width: 48%;
	float: left;
	padding: 6.2vw 0 2.1vw;
	box-sizing: border-box;
}
.sale_item img{
	border: 1px solid #888888;
	box-sizing: border-box;
}
.sale_item_left {
	margin-right: 4%;
}
.normal_price {
	font-size: 3.2vw;
	text-decoration: line-through;
	padding: 1vw 0;
}
.sale_price {
	font-size: 4.2vw;
	font-weight: 700;
	padding: 0;
}
.sale_off {
	font-size: 2.8vw;
	font-weight: 700;
	padding-top: 0.8vw;
}
/* ==========================================================================
   商品ページ
   ========================================================================== */
.wrapper_item {
	max-width: 600px;
	margin-top: 4.6vw;
	margin-bottom: 4.8vw;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.wrapper_item:after {
	content: "";
	display: block;
	clear: both;
}
.item_name {
	font-size: 4.6vw;
	font-weight: bold;
	padding: 2.1vw 4vw;
	margin-top: 0px;
}
.model_number {
	font-size: 3.2vw;
	padding: 1vw 4vw 4vw;
}
.price {
	font-size: 6vw;
	padding: 4vw;
}
.tax {
	font-size: 3.6vw;
	padding: 0;
}
.item_normal_price {
	font-size: 4vw;
	text-decoration: line-through;
	padding: 4vw 4vw 0;
}
.item_sale_price {
	font-size: 6vw;
	padding: 0 4vw 4vw;
}
.detail {
	font-size: 3.2vw;
	line-height: 1.6em;
	padding: 4vw;
}
.detail ul {
	list-style: none;
	margin-bottom: 3.2vw;
}
/* ==========================================================================
   ギャラリー
   ========================================================================== */
#stage {
	position: relative;
	width: 100%;
	margin: 0 auto 4vw;
	box-sizing: border-box;
}
#thumbs {
	width: 100%;
	margin-top: 2%;
	margin-bottom: 4vw;
	margin-left: 1.5%;
	box-sizing: border-box;
}
#thumbs label img {
	width: 23.5%;
	cursor: pointer;
	border: 1px solid #888888;
	margin-right: 1%;
	margin-bottom: 1%;
	box-sizing: border-box;
	float: left;
}
#thumbs label img:after {
	content: "";
	display: block;
	clear: both;
}
.photo {
	position: absolute;
	left: 0;
	top: 0;
}
.photo img {
	width:100%;
	opacity: 0;
	-webkit-transition: opacity;
	transition: opacity;
}
/*ラジオボタンを非表示に＜サムネイルを増やす場合はここも増やす＞*/
#r1,#r2,#r3,#r4,#r5,#r6,#r7,#r8,#r9,#r10,#r11,#r12,#r13,#r14,#r15,#r16,#r17,#r18,#r19 {
	display: none;
}
/*チェックされたサムネイルに相当する写真だけを表示＜サムネイルを増やす場合はここも増やす＞*/
#r1:checked ~ #photo1 img,#r2:checked ~ #photo2 img,#r3:checked ~ #photo3 img,#r4:checked ~ #photo4 img,#r5:checked ~ #photo5 img,#r6:checked ~ #photo6 img,#r7:checked ~ #photo7 img,#r8:checked ~ #photo8 img,#r9:checked ~ #photo9 img,#r10:checked ~ #photo10 img,#r11:checked ~ #photo11 img,#r12:checked ~ #photo12 img,#r13:checked ~ #photo13 img,#r14:checked ~ #photo14 img,#r15:checked ~ #photo15 img,#r16:checked ~ #photo16 img,#r17:checked ~ #photo17 img,#r18:checked ~ #photo18 img,#r19:checked ~ #photo19 img{
	opacity: 1;
}
/* ==========================================================================
   カート
   ========================================================================== */
.rd-cart {
	width: 300px;
	margin-top: 2.1vw;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10vw;
	text-align: center;
}
.rd-cart input[type="text"] {
	width: 40px;
	height: 50px;
	font-size: 110%;
	text-align: center;
	border: 1px solid #888888;
	border-radius: 2px;
    appearance: none;
	box-sizing: border-box;
}
.rd-cart input[type="submit"] {
	background-color: #101010;
	color: #FFFFFF;
	width: 240px;
	height: 50px;
	margin-top: 8px;
	margin-left: 8px;
	border-radius: 25px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	outline: none;
    padding: 0;
    appearance: none;
	box-sizing: border-box;
}
/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact_text {
	font-size: 4.8vw;
	line-height: 1.6em;
	margin-bottom: 4.2vw;
}
.cat_contact {
	font-size: 3.6vw;
	margin-bottom: 1vw;
}
/* ==========================================================================
   フッター
   ========================================================================== */
#footer {
	width: 100%;
	margin-bottom: 0px;
	padding-bottom: 2.4vw; 
	background-color: #101010;
	box-sizing: border-box;
}
.footer_wrap {
	width: 100%;
	margin-bottom: 6.4vw;
	padding: 0px;
	box-sizing: border-box;
	float: left;
}
.footer_wrap:after {
	content: "";
	display: block;
	clear: both;
}
.footer_logo {
	width: 33vw;
	margin-top: 10vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10vw;
}
.footer_nav {
	width: 90vw;
	margin-left: auto;
	margin-right: auto;
}
.footer_nav ul li {
	width: 60vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3.2vw;
	list-style: none;
	font-size: 3.2vw;
	text-align: center;
	border-left: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
}
.footer_nav ul li a {
	display: block;
	color: #FFFFFF;
	text-decoration: none;
}
#copyright {
	width: 100%;
	margin-top: 3.2vw;
	text-align: center;
	color: #FFFFFF;
}
#copyright small {
	font-size: 2.4vw;
}
/* ==========================================================================
   PC用
   ========================================================================== */
@media (min-width: 960px) {
/* ヘッダー */
#header {
	justify-content: clear;
	width: 960px;
	height: 80px;
	margin: 0 auto;
}
#site {
	width: 200px;
	float: left;
	padding: 24px 0px 0px;
}
/* ナビゲーションメニュー */
.drawer {
	display: none;
}
.nav_pc {
	display: block;
	}
.nav_pc ul {
    list-style-type: none;
    padding: 0;
}
.menu {
    display: flex;
    justify-content: flex-end;
}
.menu li {
	height: 80px;
    position: relative;
    z-index: 1;
}
.menu a {
    display: block;
    text-decoration: none;
    background-color: #101010;
    color: #FFFFFF;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	text-align: center;
    padding: 30px 16px;
}
.menu li ul {
    position: absolute;
    top: 80%;
    left: -50%;
    width: 180%;
}
.menu li ul li {
    visibility: hidden;
    overflow: hidden;
    height: 0;
    transition-duration: 0.2s;
}
.menu li:hover > ul > li {
    visibility: visible;
    overflow: visible;
    height: 56px;
}
.menu #gnav_last {
    padding: 0px 0px 30px 16px;
}
.menu_icon {
	width: 20px;
	height: 20px;
}
.arrow {
	display: inline-block;
	margin:0px 0px 4px 12px;
	width: 6px;
  	height: 6px;
 	border: 1px solid;
 	border-color:  transparent transparent #FFFFFF #FFFFFF;
  	transform: rotate(-45deg);
}
/* レイアウト用 */
.wrapper_global {
	margin-bottom: 88px;
}
.wrapper_main {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
}
.wrapper_category {
	padding-top: 32px;
	padding-bottom: 80px;
}
.wrapper_page {
	width: 960px;
	margin-top: 40px;
	padding-bottom: 80px;
}
.video {
	width: 960px;
	height: 540px;
	margin-top: 64px;
    padding: 0;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* カテゴリー */
.category {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}
.category_img {
	width: 960px;
}
.category_deco {
	width: 160px;
	margin-top: 80px;
}
.category_heading {
	padding: 8px 0 0 0;
	font-size: 79px;
}
.category_maincopy {
	font-size: 28px;
}
.category_textarea_bottom {
	bottom: 40px;
}
.category_copy {
	font-size: 24px;
}
/* アイテム */
.item {
	width: 960px;
}
.item_left {
	width: 480px;
}
.item_right {
	width: 480px;
}
.item_price {
	left: 8px;
	right: 8px;
	bottom: 16px;
	font-size: 21px;
}
/* バナー */
.bnr_sale {
	margin-top: 80px;
	margin-bottom: 80px;
}
.copy_sale {
	font-size: 32px;
	margin-top: 24px;
}
/* バナー */
.bnr_sale {
	padding-top: 24px;
	padding-bottom: 36px;
}
/* 個別ページ共通 */
.maintitle {
	font-size: 40px;
	margin-bottom: 24px;
	padding: 0.1em 0.5em;
	border-left: solid 8px #979797;
}
.subtitle {
	font-size: 28px;
	padding-top: 8px;
	padding-bottom: px;
}
.section_title{
	font-size: 26px;
	padding-top: 16px;
	padding-bottom: 8px;
}
.page_text {
	font-size: 16px;
	margin-bottom: 36px;
}
.page_text p {
	margin-bottom: 8px;
	}
.page_img {
	margin-bottom: 16px;
}
.br_sp {
		display: none;
	}
/* カテゴリーカタログ */
.catalog {
	width: 474px;
	float: left;
}
.catalog_left {
	margin-right: 12px;	
	}
.catalog_item {
	width: 231px;
	float: left;
	padding: 32px 0 8px;
	box-sizing: border-box;
}
.catalog_item_left {
	margin-right: 12px;
}
.catalog_price {
	font-size: 18px;
	padding: 8px 0px;
}
/* SALE */
.sale_copy {
	font-size: 34px;
	padding: 32px 0 0;
}
.sale {
	width: 474px;
	float: left;
}
.sale_left {
	margin-right: 12px;	
	}
.sale_item {
	width: 231px;
	float: left;
	padding: 32px 0 8px;
	box-sizing: border-box;
}
.sale_item_left {
	margin-right: 12px;
}
.normal_price {
	font-size: 18px;
	padding: 6px 0;
}
.sale_price {
	font-size: 22px;
	font-weight: 700;
	padding: 0;
}
.sale_off {
	font-size: 16px;
}
/* 商品ページ */
.wrapper_item {
	width: 480px;
	margin-top: 40px;
	margin-bottom: 16px;
	margin-left: 0px;
	margin-right: 0px;
	float: left;
}
.wrapper_item:after {
	content: "";
	display: block;
	clear: both;
}
.item_name {
	font-size: 22px;
	font-weight: bold;
	padding: 0px 32px;
}
.model_number {
	font-size: 16px;
	padding: 16px 32px 16px;
}
.price {
	font-size: 28px;
	padding: 16px 0px 16px 32px;
}
.tax {
	font-size: 20px;
	padding: 0;
}
.item_normal_price {
	font-size: 22px;
	padding: 16px 32px 8px;
}
.item_sale_price {
	font-size: 28px;
	padding: 0 32px 16px;
}
.detail {
	font-size: 16px;
	line-height: 1.6em;
	padding: 16px 32px;
}
.detail ul {
	list-style: none;
	margin-bottom: 16px;
}
/* カート */
.rd-cart {
	margin-top: 8px;
	margin-left: 28px;
	text-align: left;
}
/* CONTACT */
.contact_text {
	font-size: 20px;
	margin-bottom: 24px;
}
.cat_contact {
	font-size: 20px;
	margin-bottom: 4px;
}
/* フッター */
#footer {
	padding-bottom: 24px; 
}
.footer_wrap {
	margin-bottom: 16px;
}
.footer_logo {
	width: 184px;
	margin-top: 80px;
	margin-bottom: 64px;
}
.footer_nav {
	width: 480px;
}
.footer_nav ul li {
	width: 33%;
	float: left;
	list-style: none;
	font-size: 13px;
}
.footer_nav ul li+ li {
	border-left: 0;
	border-right: 1px solid #FFFFFF;
}
#copyright {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
}
#copyright small {
	font-size: 11px;
}
}



.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC用: 4列 */
  gap: 10px; /* 項目間の間隔 */
}

@media (max-width: 768px) { /* 768px以下の幅の場合 */
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* スマホ用: 2列 */
  }
}










