@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;
}
/* ==========================================================================
   エフェクト
   ========================================================================== */
/*アニメーション要素のスタイル*/
.effect {
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* ==========================================================================
   ヘッダー
   ========================================================================== */
#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: #2d2d2d;
  	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: 30%;
} 
/* メニューのデザイン*/
.drawer_menu {
  	width: 100%;
  	height: 100%;
	position: fixed;
  	top: 0;
  	left: 100%;
  	z-index: 99;
  	background: #FFFFFF;
  	transition: .5s;
	list-style: none;
}
.drawer_menu {
	text-decoration: none;
}
.drawer_list {
	margin-top: 40px;
}
.drawer_item {
	display: block;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	padding: 14px 8px 0px 14px;
}
.drawer_subitem {
	display: block;
	list-style: none;
	text-decoration: none;
	font-size: 16px;
	padding: 14px 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: #2d2d2d;
}
/* ==========================================================================
   レイアウト
   ========================================================================== */
.wrapper_global {
	width: 100%;
	margin-top: 0px;
	margin-bottom: 3.2vw;
	box-sizing: border-box;
}
.wrapper_global: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;
}
/* ==========================================================================
   トップページ
   ========================================================================== */
/* イントロダクション */
.intro {
	width: 100%;
	margin: 0px;
	padding: 2.1vw 0px 8vw;
}
.intro h2 {
	color: #222222;
	font-family: 'Noto Serif JP', serif;
	font-size: 4.8vw;
	font-weight: 600;
	text-align : center;
	line-height: 1.4em;
	padding: 4.2vw 0 0.6vw;
}
.intro p {
	color: #222222;
	font-size: 3.2vw;
	text-align: center;
	line-height: 1.6em;
	padding: 2.1vw;
}
/* 共通 */
.contents {
	width: 100%;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
.heading {
	width: 100%;
	margin: 0px;
	padding: 3.2vw 0;
	box-sizing: border-box;
}
.heading h2 {
	width: 70vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1vw;
}
.heading h3 {
	font-size: 3.2vw;
	text-align: center;
}
.item_color {
	text-align: center;
	font-size: 2.8vw;
	margin-bottom: 2.4vw;
}
.color_icon {
	box-sizing: border-box;
	position: relative;
	top: 0.2vw;
	display: inline-flex;
	width: 2.4vw;
	height: 2.4vw;
	margin-right: 0.4vw;
}
.collection_item .color_icon img{
	border: 0px;
}
.color_right {
	margin-left: 1.6vw;
}
.color_indv {
	margin-top: 4vw;
	margin-bottom: 8vw;
}
/*レコメンド */
.reco {
	width: 96%;
	margin-top: 4.6vw;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.reco:after {
	content: "";
	display: block;
	clear: both;
}
.reco_group {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.reco_item {
	width: 49%;
	float: left;
	padding: 0 0 3.4vw;
	box-sizing: border-box;
}
.reco_item img{
	box-sizing: border-box;
}
.reco_item_left {
	margin-right: 2%;
}
.reco_no {
	font-size: 3.2vw;
	text-align: center;
}
.reco_price {
	font-size: 3.2vw;
	text-align: center;
	padding: 1vw;
}


/* コレクション */
.coll_group {
	margin-top: 3.2vw;
	display: flex;
	flex-wrap: wrap;
	position: relative;

}
.coll_item {
	width: 49%;
	margin-left: 2%;
	margin-bottom: 2.1vw;
	position: relative;
	overflow: hidden;
}
.coll_item img:nth-child(2){
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.coll_item:hover img:nth-child(2){
  opacity: 1;
}
.coll_item img:nth-child(1){
	opacity: 0;
}
.coll_item:nth-child(2n+1) {
	margin-left: 0px;
}
/* カテゴリー */
.wrapper_category {
	width: 100%;
	margin-top: 0px;
	margin-bottom: 3.2vw;
	padding: 2.1vw 0 4vw;
	box-sizing: border-box;
	background-color: #F6F2D9;
}
.wrapper_category:after {
	content: "";
	display: block;
	clear: both;
}
.cate_group_a {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.cate_group_b {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.cate_item {
	position: relative;
	width: 50%;
	float: left;
	padding: 0vw;
	box-sizing: border-box;
}
.cate_name {
	position: absolute;
	left: 1.6vw;
	right: 1.6vw;
	bottom: 4vw;
	font-size: 4vw;
	text-align: center;
}
/* バナー */
.bnr_sale {
	padding-top: 3.2vw;
	padding-bottom: 6.4vw;
}
/* ニュース（抜粋） */
.news_list {
	width: 100%;
	margin-top: 3.2vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3.2vw;
	text-align: center;
}
.news_list li {
	list-style: none;
	font-size: 3.2vw;
	padding: 1.6vw;
}
.news_list li span{
	margin-right: 1vw;
}
/* ボタン */
.btn_area {
	width: 24vw;
	margin-top: 4.8vw;
	margin-left: auto;
	margin-right: auto;
}
/* ==========================================================================
   個別ページ共通
   ========================================================================== */
.maintitle {
	font-size: 7.2vw;
	font-family: 'STIX Two Text', serif;
	margin-top: 8vw;
	margin-bottom: 2.4vw;
}
.subtitle {
	font-size: 5.6vw;
	font-weight: 700;
	margin-bottom: 1vw;
}
.group_title {
	font-size: 4.8vw;
	font-weight: 700;
	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;
}
/* ==========================================================================
   コレクション（個別）
   ========================================================================== */
.collection_bnr {
	position: relative;
}
.collection_textarea {
	position: absolute;
	top: 8vw;
	left: 4vw;
	z-index: 50;
}
.collection_title {
	font-size: 6.4vw;
	font-family: 'STIX Two Text', serif;
}
.collection_ruby {
	font-size: 3.2vw;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
.collection_copy {
	font-size: 3.2vw;
	line-height: 1.6em;
	padding: 2.1vw 0 0;
}
.collection {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.collection_item {
	width: 48%;
	float: left;
	padding: 6.2vw 0 2.1vw;
	box-sizing: border-box;
}
.collection_item img{
	border: 1px solid #888888;
	box-sizing: border-box;
}
.collection_item_left {
	margin-right: 4%;
}
.collection_no {
	font-size: 3.2vw;
	text-align: center;
	padding: 1vw 0 0;
}
.collection_price {
	font-size: 3.2vw;
	text-align: center;
	padding: 1vw;
}
.color_wt {
	color: #FFFFFF;
}
.indv_item_color {
	text-align: center;
	font-size: 2.8vw;
	margin-top: 4vw;
	margin-bottom: 2.4vw;
}
.collection_item .color_icon img{
	border: 0px;
}
.color_right {
	margin-left: 1.6vw;
}
/* ==========================================================================
   ニュース
   ========================================================================== */
.news {
	width: 100%;
	margin-bottom: 7.2vw;
	box-sizing: border-box;
}
.news_text {
	font-size: 4vw;
	line-height: 1.6em;
	margin-bottom: 2.1vw;
}
.news_text span {
	padding-right: 1vw;
}
.news_img {
	margin-bottom: 1vw;
}
.news_year {
	font-size: 5.6vw;
	font-weight: 700;
	padding-top: 2.1vw;
	padding-bottom: 2.1vw;
	margin-bottom: 3.2vw;
}
/* ==========================================================================
   商品ページ
   ========================================================================== */
.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: 4vw;
	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 0.1s ease;
	transition: opacity 0.1s ease;
}
/*ラジオボタンを非表示に＜サムネイルを増やす場合はここも増やす＞*/
#r1,#r2,#r3,#r4,#r5,#r6,#r7,#r8,#r9,#r10,#r11,#r12,#r13 {
	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 {
	opacity: 1;
}
/* ==========================================================================
   カート
   ========================================================================== */
.jj-cart {
	width: 300px;
	margin-top: 2.1vw;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10vw;
	text-align: center;
}
.jj-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;
}
.jj-cart input[type="submit"] {
	background-color: #2d2d2d;
	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_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: #3B487E;
	box-sizing: border-box;
	color: #FFFFFF;
}
.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: 48vw;
	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;
	text-decoration: none;
	color: #FFFFFF;
}
#copyright {
	width: 100%;
	margin-top: 3.2vw;
	text-align: center;
}
#copyright small {
	font-size: 2.4vw;
}
/* ==========================================================================
   PC用
   ========================================================================== */
@media (min-width: 960px) {
/* ヘッダー */
#header {
	justify-content: clear;
	width: 960px;
	height: 80px;
	margin: 0 auto;
}
#site {
	width: 160px;
	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;
	background-color: #FFFFFF;
    text-decoration: none;
    color: #2D2D2D;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	text-align: center;
    padding: 30px 16px;
}
.menu li ul {
    position: absolute;
     top: 80px;
    left: -28px;
	min-width: 180px;
	padding: 0px 16px 16px;
}
.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 #2d2d2d #2d2d2d;
  	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: 0px;
	padding-bottom: 80px;
}
/* イントロ */
.intro {
	padding: 24px 0px 40px;
}
.intro h2 {
	font-size: 38px;
	padding: 24px 0px 8px ;
}
.intro p {
	font-size: 18px;
	padding: 8px;
}
/* コンテンツ*/
.heading {
	padding: 0px;		
}
.heading h2 {
	width: 404px;
	margin-bottom: 8px;
}
.heading h3 {
	font-size: 26px;
}
/* 共通*/
.item_color {
	font-size: 14px;
	margin-bottom: 16px;
}
.color_icon {
	top: 1px;
	width: 12px;
	height: 12px;
	margin-right: 3px;
}
.color_right {
	margin-left: 4px;
}
.indv_item_color {
	font-size: 14px;
	margin-top: 16px;
	margin-bottom: 8px;
}
.indv_item_color .color_icon {
	top: 1px;
	width: 12px;
	height: 12px;
	margin-right: 3px;
}
/* レコメンド */
.reco {
	width: 960px;
	margin-top: 0px;
}
.reco_group {
	width: 474px;
	margin-top: 0px;
	float: left;
}
.reco_left {
	margin-right: 12px;	
}
.reco_item {
	width: 231px;
	float: left;
	padding: 16px 0 8px;
	box-sizing: border-box;
}
.reco_item img{
	box-sizing: border-box;
}
.reco_item_left {
	margin-right: 12px;	
}
.reco_no {
	font-size: 18px;
}
.reco_price {
	font-size: 18px;
	padding: 4px 0;
}
/* コレクション */
.coll_group {
	margin-top: 40px;
}
.coll_item {
	width: 184px;
	margin-left: 8px;
}
.coll_item img:nth-child(1){
	opacity: 1;
}
.coll_item:hover img:nth-child(2){
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.coll_item:nth-child(2n+1) {
	margin-left: 8px;
}
.coll_item:first-child {
	margin-left: 0px;
}
/* カテゴリー */
.wrapper_category {
	margin-top: 0px;
	margin-bottom: 80px;
	padding: 56px 0 40px;
}
.cate_group_a {
	width: 960px;
	margin-top: 8px;
	margin-left: auto;
	margin-right: auto;
}
.cate_group_b {
	width: 720px;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
}
.cate_item {
	width: 240px;
}
.cate_name {
	font-size: 16px;
	left: 8px;
	right: 8px;
	bottom: 24px;
}
/* バナー */
.bnr_sale {
	padding-top: 24px;
	padding-bottom: 36px;
}
/* ニュース（抜粋） */
.news_list {
	margin-top: 24px;
	margin-bottom: 24px;
}
.news_list li {
	font-size: 18px;
	list-style: none;
	padding: 8px;
}
.news_list li span{
	margin-right: 1vw;
}
/* ボタン */
.btn_area {
	width: 120px;
	margin-top: 32px;
}
/* 個別ページ共通 */
.maintitle {
	font-size: 40px;
	margin-top: 40px;
	margin-bottom: 24px;
}
.subtitle {
	font-size: 28px;
	padding-top: 8px;
	padding-bottom: px;
}
.group_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;
	}
/* コレクション（個別） */
.collection_textarea {
	top: 80px;
	left: 40px;
}
.collection_title {
	font-size: 48px;
}
.collection_ruby {
	font-size: 20px;
}
.collection_copy {
	font-size: 16px;
	padding: 16px 0 24px;
}
.collection {
	width: 474px;
	float: left;
}
.collection_left {
	margin-right: 12px;	
	}
.collection_item {
	width: 231px;
	float: left;
	padding: 32px 0 8px;
	box-sizing: border-box;
}
.collection_item_left {
	margin-right: 12px;
}
.collection_no {
	font-size: 16px;
	padding: 8px 0 4px;
}
.collection_price {
	font-size: 16px;
	padding: 0;
}
/* ニュース */
.news {
	width: 100%;
	margin-bottom: 40px;
}
.news_text {
	font-size: 16px;
	margin-bottom: 8px;
}
.news_text span {
	padding-right: 0;
}
.news_img {
	width: 600px;
	margin-bottom: 8px;
}
.news_year {
	font-size: 26px;
	padding-top: 16px;
	padding-bottom: 16px;
	margin-bottom: 24px;
}
/* 商品ページ */
.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 32px;
}
.tax {
	font-size: 22px;
	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;
}
/* カート */
.jj-cart {
	margin-top: 8px;
	margin-left: 28px;
	text-align: left;
}
/* お問い合わせ */
.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;
}
}