@charset "UTF-8";
html {
	min-height: 100%;
	background-color: #2B2111;
	font-family: 'Noto Sans JP', sans-serif;
	color: #FFFFFF;
	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: #FFFFFF;
	text-decoration: none;
}
a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
a:active {
	color: #FFFFFF;
	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%;
}
#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:link {
	color: #FFFFFF;
	text-decoration: none;
}
.drawer_item a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.drawer_item a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
.drawer_item a:active {
	color: #FFFFFF;
	text-decoration: none;
}
.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;
}
.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_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;
}
.back {
	width: 100%;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	color: #2b2b2b;
	float: left;
}
.back a:link {
	color: #2b2b2b;
}
a:visited {
	color: #2b2b2b;
}
a:hover {
	color: #2b2b2b;
}
a:active {
	color: #2b2b2b;
}
.back:after {
	content: "";
	display: block;
	clear: both;
}
/* ==========================================================================
   トップページ
   ========================================================================== */
/* 共通 */
.heading {
	width: 100%;
	margin: 0px;
	padding: 3.2vw 0 1vw 0;
	box-sizing: border-box;
}
.heading h2 {
	width: 98%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1vw;
}
.heading h3 {
	width: 98%;
	margin-top: 3.2vw;
	margin-left: auto;
	margin-right: auto;
	font-size: 5.2vw;
	font-weight: 700;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
}
.ruby {
	width: 98%;
	margin-top: 1vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3.2vw;
	font-size: 4vw;
	font-weight: 700;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
}
/* 動画 */
.video {
	width: 100%;
}
/* 3つの信頼 */
.feature {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4vw;
	box-sizing: border-box;
	position: relative;
	color: #FFFFFF;
	font-family: 'Noto Serif JP', serif;
}
.feature_img {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.feature_textarea {
	position: absolute;
	top: 4vw;
	left: 4vw;
	z-index: 50;
}
.feature_point {
	color: #A78833;
	font-size: 4.8vw;
	font-family: 'STIX Two Text', serif;
	padding: 0 1vw;
}
.feature_heading {
	font-size: 14vw;
}
.feature_maincopy {
	font-size: 4.8vw;
	line-height: 1.2em;
	padding: 1vw;
}
.feature_textarea_bottom {
	position: absolute;
	bottom: 4vw;
	left: 4vw;
	z-index: 50;
}
.feature_copy {
	width: 42vw;
	font-size: 3.2vw;
	line-height: 1.6em;
	padding: 1vw;
}
.feature_textarea_rev {
	position: absolute;
	top: 4vw;
	right: 4vw;
	z-index: 50;
	text-align: right;
}
.feature_textarea_bottom_rev {
	position: absolute;
	bottom: 4vw;
	right: 4vw;
	z-index: 50;
	text-align: right;
}
/* こだわり五撰 メイン */
.recommend {
	width: 100%;
	margin-bottom: 4.8vw;
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
}
.recommend:after {
	content: "";
	display: block;
	clear: both;
}
.recommend_main {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	position: relative;
}
.recommend_img {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	outline: 0.3vw solid rgb(167, 136, 51);
	outline-offset: -2.1vw;
}
.recommend_textarea {
	position: absolute;
	top: 10vw;
	left: 8vw;
	right: 8vw;
	z-index: 50;
}
.recommend_heading {
	font-size: 5.8vw;
	font-family: 'STIX Two Text', serif;
	color: #A78833;
}
.recommend_ruby {
	font-size: 4vw;
	font-weight: 700;
	color: #A78833;
	padding-top: 1vw;
}
.recommend_maincopy {
	font-size: 3.2vw;
	line-height: 1.6em;
	color: #FFFFFF;
	padding-top: 4vw;
}
/* こだわり五撰 サブ */
.recommend_sub {
	width: 100%;
	margin-top: 2.4vw; 
	box-sizing: border-box;
}
.recommend_sub_left {
	width: 49%;
	float: left;
	margin-bottom: 2.4vw;
	box-sizing: border-box;
	position: relative;
}
.recommend_sub_right {
	width: 49%;
	float: left;
	margin-left: 2%;
	margin-bottom: 2.4vw;
	box-sizing: border-box;
	position: relative;
}
.recommend_sub_img {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	outline: 0.3vw solid rgb(167, 136, 51);
	outline-offset: -2.1vw;
}
.recommend_sub_textarea {
	position: absolute;
	top: 4vw;
	left: 4vw;
	right: 4vw;
	z-index: 50;
}
.recommend_sub_heading {
	font-size: 5vw;
	font-family: 'STIX Two Text', serif;
	color: #A78833;
}
.recommend_sub_ruby {
	font-size: 3.2vw;
	font-weight: 700;
	color: #A78833;
	padding-top: 1vw;
}
.recommend_sub_maincopy {
	font-size: 3vw;
	line-height: 1.4em;
	color: #FFFFFF;
	padding-top: 1.4vw;
}
/* ワインディングマシーン */
.winder {
	width: 96%;
	margin-top: 2.4vw; 
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
}
.winder_left {
	width: 100%;
	float: left;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 2.4vw;
}
.winder_right {
	width: 100%;
	float: left;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 2.4vw;
}
.winder_img {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.winder_textarea {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	background: rgba(0,0,0,0.7);
}
.winder_heading {
	font-size: 8vw;
	color: #FFFFFF;
	font-family: 'STIX Two Text', serif;
	padding: 2.8vw 0 0 3.2vw;
}
.winder_ruby {
	font-size: 4vw;
	font-weight: 700;
	color: #FFFFFF;
	padding: 0 0 3.2vw 3.2vw;
}
/* 収納ケース */
.case {
	width: 96%;
	margin-top: 4.6vw;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.case:after {
	content: "";
	display: block;
	clear: both;
}
.case_group {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.case_item {
	width: 49%;
	float: left;
	padding: 0 0 3.4vw;
	box-sizing: border-box;
}
.case_item img{
	box-sizing: border-box;
}
.case_item_left {
	margin-right: 2%;
}
.case_price {
	font-size: 3.2vw;
	padding: 1vw;
}
/* 新作 */
.new {
	width: 100%;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
/* ==========================================================================
   カタログ
   ========================================================================== */
.catalog_wrapper {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}
.catalog {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.catalog_item {
	width: 49%;
	float: left;
	padding: 6.2vw 0 2.1vw;
	box-sizing: border-box;
}
.catalog_item img{
	box-sizing: border-box;
}
.catalog_item_left {
	margin-right: 2%;
}
.catalog_price {
	font-size: 3.2vw;
	padding: 1vw 0;
	text-align: center;
}
.catalog a{
	color: #2d2d2d;
}
/* ==========================================================================
   個別ページ共通
   ========================================================================== */
.maintitle {
	font-size: 7.2vw;
	font-weight: 700;
	font-family: 'STIX Two Text', serif;
	margin-bottom: 2.4vw;
}
.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;
}
/* ==========================================================================
   商品ページ
   ========================================================================== */
.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 {
	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 {
	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;
	float: left;
}
.footer_wrap {
	width: 100%;
	margin-top: 0;
	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: #2B2111;
    color: #FFFFFF;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	text-align: center;
    padding: 30px 16px;
}
.menu li ul {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
}
.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_page {
	width: 960px;
	margin-top: 40px;
	padding-bottom: 80px;
}
/* 共通 */
.heading {
	padding: 24px 0 0;
}
.heading h2 {
	width: 860px;
	margin-bottom: 16px;
}
.heading h3 {
	width: 860px;
	margin-top: 40px;
	font-size: 40px;
}
.ruby {
	width: 860px;
	margin-top: 8px;
	margin-bottom: 24px;
	font-size: 32px;
}
/* 3つの信頼 */
.feature {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}
.feature_textarea {
	top: 40px;
	left: 40px;
}
.feature_point {
	font-size: 34px;
	padding: 0 8px;
}
.feature_heading {
	font-size: 114px;
}
.feature_maincopy {
	font-size: 42px;
	padding: 8px 4px;
}
.feature_textarea_bottom {
	bottom: 40px;
	left: 40px;
}
.feature_copy {
	font-size: 18px;
	padding: 8px;
}
.feature_textarea_rev {
	top: 40px;
	right: 40px;
}
.feature_textarea_bottom_rev {
	bottom: 40px;
	right: 40px;
}
/* こだわり五撰 メイン */
.recommend {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
}
.recommend_main {
	width: 800px;
}
.recommend_img {
	outline: 2px solid rgb(167, 136, 51);
	outline-offset: -16px;
}
.recommend_textarea {
	top: 64px;
	left: 48px;
	right: 48px;
}
.recommend_heading {
	font-size: 42px;
}
.recommend_ruby {
	font-size: 24px;
	padding-top: 8px;
}
.recommend_maincopy {
	font-size: 18px;
	padding-top: 32px;
}
/* こだわり五撰 サブ */
.recommend_sub {
	width: 800px;
	margin-top: 16px;
	margin-left: auto;
	margin-right: auto;
}
.recommend_sub_left {
	width: 392px;
	margin-bottom: 16px;
}
.recommend_sub_right {
	width: 392px;
	margin-left: 16px;
	margin-bottom: 16px;
}
.recommend_sub_img {
	outline: 2px solid rgb(167, 136, 51);
	outline-offset: -16px;
}
.recommend_sub_textarea {
	top: 40px;
	left: 40px;
	right: 40px;
}
.recommend_sub_heading {
	font-size: 32px;
}
.recommend_sub_ruby {
	font-size: 18px;
	padding-top: 8px;
}
.recommend_sub_maincopy {
	font-size: 16px;
	padding-top: 12px;
}
/* ワインディングマシーン */
.winder {
	width: 960px;
	margin-top: 40px; 
}
.winder_left {
	width: 472px;
	margin-bottom: 16px;
}
.winder_right {
	width: 472px;
	margin-left: 16px;
	margin-bottom: 16px;
}
.winder_heading {
	font-size: 38px;
	padding: 16px 0 0 16px;
}
.winder_ruby {
	font-size: 20px;
	padding: 0 0 16px 16px;
}
/* 収納ケース */
.case {
	width: 960px;
	margin-top: 40px;
}
.case_group {
	width: 474px;
	float: left;
}
.case_left {
	margin-right: 12px;	
}
.case_item {
	width: 231px;
	float: left;
	padding: 32px 0 8px;
	box-sizing: border-box;
}
.case_item img{
	box-sizing: border-box;
}
.case_item_left {
	margin-right: 12px;	
}
.case_price {
	font-size: 18px;
	padding: 8px 0;
}
/* アイテム */
.catalog_wrapper {
	width: 960px;
	margin-top: 40px;
}
.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 img{
	box-sizing: border-box;
}
.catalog_item_left {
	margin-right: 12px;	
}
.catalog_price {
	text-align: center;
	font-size: 18px;
	padding: 8px 0;
}
/* 個別ページ共通 */
.maintitle {
	font-size: 36px;
	margin-bottom: 24px;
}
.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;
	}
/* 商品ページ */
.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 0;
}
.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 {
	margin-top: 0px;
	padding-top: 0px;
	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;
}
}
