/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */


/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
	font-family: 'flexslider-icon';
	src:url('fonts/flexslider-icon.eot');
	src:url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'),
		url('fonts/flexslider-icon.woff') format('woff'),
		url('fonts/flexslider-icon.ttf') format('truetype'),
		url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider { margin: 0 0 60px; background: #fff; border: 0px solid #fff; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 0px; -o-border-radius: 0px; border-radius: 4px; -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2); -o-box-shadow: 0 1px 4px rgba(0,0,0,.2); box-shadow: 0 1px 4px rgba(0,0,0,.2); zoom: 1; }
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport { max-height: 300px; }
.flexslider .slides { zoom: 1; }
.carousel li { margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a  { text-decoration:none; display: block; width: 40px; height: 40px; margin: -20px 0 0; position: absolute; top: 50%; z-index: 10; overflow: hidden; opacity: 0; cursor: pointer; color: rgba(0,0,0,0.8); text-shadow: 1px 1px 0 rgba(255,255,255,0.3); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; }
.flex-direction-nav .flex-prev { left: -50px; }
.flex-direction-nav .flex-next { right: -50px; text-align: right; }
.flexslider:hover .flex-prev { opacity: 0.7; left: 0px; background-color: #fff; padding-left: 10px; padding-top: 1px; padding-bottom: 1px;}
.flexslider:hover .flex-next { opacity: 0.7; right: 0px; background-color: #fff; padding-right: 10px; padding-top: 1px; padding-bottom: 1px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover { opacity: 1; }
.flex-direction-nav .flex-disabled { opacity: 0!important; filter:alpha(opacity=0); cursor: default; }
.flex-direction-nav a:before  { font-family: "flexslider-icon"; font-size: 40px; line-height:1; display: inline-block; content: '\f001'; }
.flex-direction-nav a.flex-next:before  { content: '\f002'; }

/* Pause/Play */
.flex-pauseplay a { display: block; width: 20px; height: 20px; position: absolute; bottom: 5px; left: 10px; opacity: 0.8; z-index: 10; overflow: hidden; cursor: pointer; color: #000; }
.flex-pauseplay a:before  { font-family: "flexslider-icon"; font-size: 20px; display: inline-block; content: '\f004'; }
.flex-pauseplay a:hover  { opacity: 1; }
.flex-pauseplay a.flex-play:before { content: '\f003'; }

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: 10px; text-align: center; z-index: 500;}
.flex-control-nav li {margin: 0 4px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #ccc; background: rgba(100,100,100,0.5); cursor: pointer; text-indent: 9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; -webkit-box-shadow: inset 0 0 3px rgba(255,255,255,1); -moz-box-shadow: inset 0 0 3px rgba(255,255,255,1); -o-box-shadow: inset 0 0 3px rgba(255,255,255,1); box-shadow: inset 0 0 3px rgba(255,255,255,1); }
.flex-control-paging li a:hover { background: #ccc; background: rgba(200,200,200,0.7); }
.flex-control-paging li a.flex-active { background: #D42B1E; background: rgba(212,43,30,1); cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev { opacity: 1; left: 10px;}
  .flex-direction-nav .flex-next { opacity: 1; right: 10px;}
}








.oldContentsInner {
	width: auto;
}

#main_area{
	width: 1050px;
	height: 420px;
	margin: 0 auto;
	overflow: hidden;
	margin-bottom: 40px;
	/*position: relative;*/
}

#slide_01{
	width: 1050px;
	height: 140px;
	overflow: hidden;
}
#slide_02{
	width: 1050px;
	height: 140px;
	overflow: hidden;
}
#slide_03{
	width: 1050px;
	height: 140px;
	overflow: hidden;
}

#slide_01 a, #slide_02 a, #slide_03 a, #slide_01 img, #slide_02 img, #slide_03 img, #slide_01 div{
	float: left;
	vertical-align: bottom;
}



#tooltip{
    margin:0px 0  0  0px;
    width: 1050px;
    height: 140px;
}
#tooltip li{
    width:210px;
    height:140px;
    display:block;
    float:left;
    /*position:relative;*/
}


/*#tooltip li:hover{
	border: 5px solid #BFB380;
	box-sizing: border-box;
}*/

/*#tooltip li a img, #tooltip li a{
  border: 0;
  overflow: hidden;
  float: left;
}
#tooltip li a:hover{
  border: 5px solid #BFB380;
}
#tooltip li a:hover img{
  margin: -5px;
}*/

#tooltip li div a{ text-decoration: none;}
#tooltip li div a:hover{ text-decoration: none; margin: 0px; padding: 0px; border: 0px;}



#tooltip li > div {
    width: 250px;
    min-height: 20px;
    position: absolute;
    bottom:-5px;
    margin-left: 10px;
    padding: 3px;
    color: #fff;
    visibility:hidden;
    opacity: 0;
    background: #BFB380;
    font-size:0.75em;


    /*-moz-box-shadow: 0 0 8px gray; 
    -webkit-box-shadow: 0 0 8px gray; 
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#272229', Direction=135, Strength=3); */
    /*box-shadow: 0 0 8px gray; */
    
  　-moz-transition: all 0.5s ease-in-out; 
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out; 
    transition: all 0.5s ease-in-out;
}

#tooltip li > div p{
	font-size: 0.5em;
}

.x_name{ padding-bottom: 10px;}
.x_staff{ float: right; margin-top: 20px;}

#tooltip li > div:after {
    content:"\25B8"; 
    display:block;
    font-size:3em;
    height:0;
    line-height:0;
    position:absolute;
    color:#BFB380;
    bottom:-3px;
    left:-20px;
    text-align:center;
    -moz-transform:rotate(90deg);
    -webkit-transform:rotate(90deg);
    width:100%;
    /*text-shadow: 3px 0 2px #ccc;*/
}
#tooltip li:hover > div {
    visibility:visible;
    opacity: 0.9;
    bottom: 80px;
    color: #fff;
    position: absolute;

    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out; 
    -o-transition: all 0.5s ease-in-out; 
    transition: all 0.5s ease-in-out;
}




div.tip_text {  
    width: 210px;
    position: absolute;
    left: -9999px;
    padding: 5px;
    font-size:0.75em;
    text-align: left;
    line-height: 1.4em;
    z-index: 30000;
	border: 1px solid #b8a663;
	background: url(/images/special/xmas2014/xmas_top/bg_tooltip.png) repeat;
}  

div.tip_text .ttl {
	padding: 5px 10px;
	color: #b8a663;
}

div.tip_text p{
    color: #555;
    padding: 5px 10px;
}  

div.tip_text p span{
    font-size: 0.95em;
	float: right;
}


#women_contents_area{
	width: 1020px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 50px;
}


.women_cotents_unitL{
	width: 490px;
	height: 490px;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 20px;
	float: left;
}

.women_cotents_unitL .inner{
	width: 490px;
	height: 490px;
	overflow: hidden;
	color: #FFF;
	font-family: Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.women_cotents_unitL .inner:hover{ opacity: 0.9;}
.women_unit01{ background: url(/images/special/xmas2014/xmas_women/img01_back.jpg) left top no-repeat;}
.women_unit22{ background: url(/images/special/xmas2014/xmas_women/img22_back.jpg) left top no-repeat;}
.women_unit30{ background: url(/images/special/xmas2014/xmas_women/img30_back.jpg) left top no-repeat;}
.women_unit44{ background: url(/images/special/xmas2014/xmas_women/img44_back.jpg) left top no-repeat;}
.women_unit59{ background: url(/images/special/xmas2014/xmas_women/img59_back.jpg) left top no-repeat;}

.women_cotents_unitL .inner h3{
	font-size: 27px;
	text-align: center;
	margin-top: 145px;
}
.women_cotents_unitL .inner p{
    width: 285px;
	font-size: 13px;
	text-align: left;
	margin: 0 auto;
	margin-top: 25px;
	line-height: 1.5em;
}
.women_cotents_unitL .inner .text_center{ text-align: center;}
.women_cotents_unitL a:hover{ text-decoration: none;}



.women_cotents_unitM{
	width: 490px;
	height: 235px;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 20px;
	float: left;
	background-color: #ddd;
}

.women_cotents_unitS{
	width: 235px;
	height: 235px;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 20px;
	float: left;
}




#xmas_top_contents{
	width: 1005px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 70px;
}

.mainMsg {
	margin-top: 15px;
	color: #222;
	font-size: 88%;
	font-weight: bold;
	line-height: 24px; }

.ranking_unit{
	width: 200px;
	height: auto;
	float: left;
	border-right: 1px dotted #000;
}
.cam_line{
	width: 500px;
	height: auto;
	float: left;
	border-right: 1px dotted #000;
}


.boder_off{ border-right: none;}

.list_top{
	position: relative;
	width: 190px;
	height: 85px;
	padding: 0 5px;
	text-align: center;

}

.list_top_inner {
	border-top: 1px dotted #000;
	border-bottom: 1px dotted #000;
}

.list_top .tree {
	position: relative;
	top: -12px; }

.list_top .ranking {
	position: relative;
	top: 12px; }

.item_unit{
	width: 190px;
	height: 260px;
	padding: 10px 5px 0;
	overflow: hidden;
	text-align: center;
}

.item_unit_inner {
	height: 259px;
	border-bottom: 1px dotted #000;
}

.item_unit .text_area{
	width: 150px;
	color: #555;
	text-align: left;
	margin-top: 7px;
	margin-left: 25px;
}
.item_unit .text_area h3{
    overflow: hidden;
    font-size: 69%;
    line-height: 15px;
    max-height: 60px;
    padding-bottom: 0;
    background: none;
    margin-bottom: 6px;
}

.item_unit .text_area .fee{
    color: #555;
    font-size: 82%;
    line-height: 15px;
    padding-top: 10px;
    background: url(https://www.zutto.live/images/common/bg_grid_line.jpg) no-repeat 0 0;
}
.item_unit .text_area .fee span{
    font-size: 77%;
}




.link_btn{
	width: 170px;
	height: 40px;
	overflow: hidden;
	margin: 0 auto;
}

.list_last div{ margin-top: 10px;}


.btn_men{ background: url(/images/special/xmas2014/xmas_top/men_top_b.jpg) center center no-repeat;}
.btn_men2{ background: url(/images/special/xmas2014/xmas_top/men_top_b2.jpg) center center no-repeat;}
.btn_men:hover, .btn_men2:hover{ background: url(/images/special/xmas2014/xmas_top/men_top_a.jpg) center center no-repeat;}

.btn_women{ background: url(/images/special/xmas2014/xmas_top/women_top_b.jpg) center center no-repeat;}
.btn_women2{ background: url(/images/special/xmas2014/xmas_top/women_top_b2.jpg) center center no-repeat;}
.btn_women:hover, .btn_women2:hover{ background: url(/images/special/xmas2014/xmas_top/women_top_a.jpg) center center no-repeat;}

.btn_kids{ background: url(/images/special/xmas2014/xmas_top/kids_top_b.jpg) center center no-repeat;}
.btn_kids2{ background: url(/images/special/xmas2014/xmas_top/kids_top_b2.jpg) center center no-repeat;}
.btn_kids:hover, .btn_kids2:hover{ background: url(/images/special/xmas2014/xmas_top/kids_top_a.jpg) center center no-repeat;}

.btn_friends{ background: url(/images/special/xmas2014/xmas_top/friends_top_b.jpg) center center no-repeat;}
.btn_friends2{ background: url(/images/special/xmas2014/xmas_top/friends_top_b2.jpg) center center no-repeat;}
.btn_friends:hover, .btn_friends2:hover{ background: url(/images/special/xmas2014/xmas_top/friends_top_a.jpg) center center no-repeat;}

.btn_family{ background: url(/images/special/xmas2014/xmas_top/family_top_b.jpg) center center no-repeat;}
.btn_family2{ background: url(/images/special/xmas2014/xmas_top/family_top_b2.jpg) center center no-repeat;}
.btn_family:hover, .btn_family2:hover{ background: url(/images/special/xmas2014/xmas_top/family_top_a.jpg) center center no-repeat;}



#campaign_area{
	width: 1002px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 50px;
}


.cam_unit{
	width: 500px;
	height: 520px;
	overflow: hidden;
	text-align: center;
}

.cam_unit .title_area{
	width: 460px;
	height: 56px;
	overflow: hidden;
	text-align: left;
	margin: 0 auto;
	margin-top: 14px;
}

.cam_unit .title_area h3{
	color: #B8A663;
	font-size: 19px;
	line-height: 1.3em;
}

.cam_img_space{ margin-top: 30px;}

.cam_unit .text_area{
	width: 460px;
	height: 60px;
	overflow: hidden;
	text-align: left;
	margin: 0 auto;
	font-size: 13px;
	color: #555;
	font-family: "ヒラギノ角ゴ Pro W3";
	padding-top: 15px;
}

.cam_unit .btn_area, .sp_unit_2 .btn_area{
	width: 450px;
	height: 30px;
	overflow: hidden;
	text-align: right;
	margin: 0 auto;
}

.cam_btn{
    width: 128px;
    height: 30px;
    overflow: hidden;
    float: right;
    background: url(/images/special/xmas2014/xmas_top/btn_cam_b.jpg) center center no-repeat;
}

.cam_btn2{
    width: 210px;
    height: 30px;
    overflow: hidden;
    float: right;
    background: url(/images/special/xmas2014/xmas_top/btn_comingsoon.jpg) center center no-repeat;
}

.sp_unit_2 .sp_btn_area2{
	margin-top: 5px;
}

.cam_btn:hover{ background: url(/images/special/xmas2014/xmas_top/btn_cam_a.jpg) center center no-repeat;}

.cam_back01{ background: url(/images/special/xmas2014/xmas_top/campaign01.jpg) left top no-repeat;}
.cam_back02{ background: url(/images/special/xmas2014/xmas_top/campaign02.jpg) left top no-repeat;}
.cam_back03{ background: url(/images/special/xmas2014/xmas_top/campaign03.jpg) left top no-repeat;}
.cam_back04{ background: url(/images/special/xmas2014/xmas_top/campaign04.jpg) left top no-repeat;}


.sp_unit_1{
	width: 500px;
	height: 260px;
	overflow: hidden;
}

.sp_unit_1 .title_area{
	width: 460px;
	height: 47px;
	overflow: hidden;
	text-align: left;
	margin: 0 auto;
	margin-top: 20px;
}

.sp_unit_1 .title_area h3{
	color: #B8A663;
	font-size: 19px;
	line-height: 1.3em;
}




.sp_unit_2{
	width: 500px;
	height: 520px;
	overflow: hidden;
	text-align: center;
}
.sp_unit_1 img{ margin-top: 13px; float: left;}
.sp_unit_2 img{ margin-top: 30px;}

.sp_back01{ background: url(/images/special/xmas2014/xmas_top/sp_back01.jpg) left top no-repeat;}
.sp_back02{ background: url(/images/special/xmas2014/xmas_top/sp_back02.jpg) left top no-repeat;}
.sp_back03{ background: url(/images/special/xmas2014/xmas_top/sp_back03.jpg) left top no-repeat;}

.sp_btn_area{
	width: 208px;
	height: 190px;
	overflow: hidden;
	float: right;
	margin: 0 auto;
	margin-right: 20px;
}


.sp_btn_area2{
	width: 210px;
	height: 30px;
	overflow: hidden;
	float: right;
	text-align: right;
	margin: 5px auto 0;
}

.sp_back03 .sp_btn_area2{
	margin-right: 15px;
}

.sp_btn_area .text_area{
	width: auto;
	height: 115px;
	overflow: hidden;
	padding-top: 20px;
	font-size: 13px;
	color: #555;
	line-height: 1.5em;
}


.sp_unit_2 .title_area{
	width: 460px;
	height: 56px;
	overflow: hidden;
	text-align: left;
	margin: 0 auto;
	margin-top: 14px;
}

.sp_unit_2 .title_area h3{
	color: #B8A663;
	font-size: 19px;
	line-height: 1.3em;
}

.sp_unit_2 .text_area{
	width: auto;
	height: 65px;
	overflow: hidden;
	padding: 0px 20px 0px 20px;
	font-size: 13px;
	text-align: left;
	color: #555;
	line-height: 1.5em;
}




/*
 * ボトムナビ
 */
.xmaxNavWrapper ul {
	overflow: hidden;
	width: 1000px;
	margin: 0 auto 65px;
	border-left: 1px solid #efefef; }

.xmaxNavWrapper li {
	float: left;
	width: 199px;
	border-right: 1px solid #efefef; }

.xmaxNavWrapper li a {
	display: block;
	width: 199px;
	height: 130px;
	background: url(/images/special/xmas2014/main/bg_nav.jpg) no-repeat; }

.xmaxNavWrapper li a span {
	display: none; }

.xmaxNavWrapper .xmaxNav1 a { background-position: 0 0; }
.xmaxNavWrapper .xmaxNav2 a { background-position: -200px 0; }
.xmaxNavWrapper .xmaxNav3 a { background-position: -400px 0; }
.xmaxNavWrapper .xmaxNav4 a { background-position: -600px 0; }
.xmaxNavWrapper .xmaxNav5 a { background-position: -800px 0; }
.xmaxNavWrapper .xmaxNavTop a { background-position: -1000px 0; }

.xmaxNavWrapper .xmaxNav1 a:hover { background-position: 0 -160px; }
.xmaxNavWrapper .xmaxNav2 a:hover { background-position: -200px -160px; }
.xmaxNavWrapper .xmaxNav3 a:hover { background-position: -400px -160px; }
.xmaxNavWrapper .xmaxNav4 a:hover { background-position: -600px -160px; }
.xmaxNavWrapper .xmaxNav5 a:hover { background-position: -800px -160px; }
.xmaxNavWrapper .xmaxNavTop a:hover { background-position: -1000px -160px; }




#mondaine_main{
	width: 1200px;
	height: 500px;
	margin: 0 auto;
}
#mondaine_main img{ float: left;}
#mondaine_main a:hover{ opacity: 0.7;}


.mondaine_phil_01{
	width: 550px;
	height: 720px;
	overflow: hidden;
	float: left;
}

.mondaine_phil_02{
	width: 650px;
	height: 720px;
	overflow: hidden;
	float: left;
}
.mondaine_phil_03{
	width: 550px;
	height: 334px;
	overflow: hidden;
	float: left;
}

.mondaine_phil_04{
	width: 650px;
	height: 334px;
	overflow: hidden;
	float: left;
}
.mondaine_phil_04 h3{
    margin-top: 55px;
    margin-left: 30px;
	font-size: 30px;
	line-height: 1.3em;
}
.mondaine_phil_04 p{
    width: 600px;
    margin-top: 43px;
    margin-left: 30px;
	font-size: 14px;
	line-height: 1.8em;
}


.mondaine_phil_05{
	width: 1200px;
	height: 431px;
	overflow: hidden;
	float: left;
	background: url(/images/brand/brand_detail/218/pre_xmas.jpg) left top no-repeat;
	color: #fff;
	font-size: 20px;
}
.mondaine_phil_05 p{
	margin-top: 270px;
	margin-left: 480px;
	line-height: 1.7em;
}


.mondaine_item_area{
	width: 1200px;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	margin-bottom: 0px;
}

.mondaine_item05{
	background: url(/images/brand/brand_detail/218/item05.jpg) left top no-repeat;
	font-size: 85%;
	color: #555;
	line-height: 1.7em;
	text-align: center;
}
.mondaine_item05 p{ margin-top: 120px;}

.mondaine_item07{
	background: url(/images/brand/brand_detail/218/item07.jpg) left top no-repeat;
	font-size: 85%;
	color: #555;
	line-height: 1.7em;
	text-align: center;
}
.mondaine_item07 p{ margin-top: 225px;}

.mondaine_item13{
	background: url(/images/brand/brand_detail/218/item13.jpg) left top no-repeat;
	font-size: 85%;
	color: #555;
	line-height: 1.7em;
	text-align: center;
}
.mondaine_item13 p{ margin-top: 85px;}

.mondaine_item17{
	background: url(/images/brand/brand_detail/218/item17.jpg) left top no-repeat;
	font-size: 85%;
	color: #555;
	line-height: 1.7em;
	text-align: center;
}
.mondaine_item17 p{ margin-top: 225px;}








.phil_unitL{
	width: 600px;
	height: 486px;
	float: left;
	overflow: hidden;
}
.phil_unitM_1{
	width: 600px;
	height: 243px;
	float: left;
	overflow: hidden;
}
.phil_unitM_2{
	width: 300px;
	height: 486px;
	float: left;
	overflow: hidden;
}
.phil_unitS{
	width: 300px;
	height: 243px;
	float: left;
	overflow: hidden;
}

.item01:hover img, .item02:hover img, .item03:hover img, .item04:hover img, .item06:hover img, .item08:hover img, .item09:hover img, .item10:hover img, .item11:hover img, .item12:hover img, .item14:hover img, .item15:hover img, .item16:hover img, .item18:hover img, .item19:hover img{ display: none;}
.item01:hover{ background: url(/images/brand/brand_detail/218/item01_a.jpg) left top no-repeat;}
.item02:hover{ background: url(/images/brand/brand_detail/218/item02_a.jpg) left top no-repeat;}
.item03:hover{ background: url(/images/brand/brand_detail/218/item03_a.jpg) left top no-repeat;}
.item04:hover{ background: url(/images/brand/brand_detail/218/item04_a.jpg) left top no-repeat;}
.item06:hover{ background: url(/images/brand/brand_detail/218/item06_a.jpg) left top no-repeat;}
.item08:hover{ background: url(/images/brand/brand_detail/218/item08_a.jpg) left top no-repeat;}
.item09:hover{ background: url(/images/brand/brand_detail/218/item09_a.jpg) left top no-repeat;}
.item10:hover{ background: url(/images/brand/brand_detail/218/item10_a.jpg) left top no-repeat;}
.item11:hover{ background: url(/images/brand/brand_detail/218/item11_a.jpg) left top no-repeat;}
.item12:hover{ background: url(/images/brand/brand_detail/218/item12_a.jpg) left top no-repeat;}
.item14:hover{ background: url(/images/brand/brand_detail/218/item14_a.jpg) left top no-repeat;}
.item15:hover{ background: url(/images/brand/brand_detail/218/item15_a.jpg) left top no-repeat;}
.item16:hover{ background: url(/images/brand/brand_detail/218/item16_a.jpg) left top no-repeat;}
.item18:hover{ background: url(/images/brand/brand_detail/218/item18_a.jpg) left top no-repeat;}
.item19:hover{ background: url(/images/brand/brand_detail/218/item19_a.jpg) left top no-repeat;}



.mondaine_galleryL{
	width: 600px;
	height: 370px;
	overflow: hidden;
	float: left;
}
.mondaine_galleryS{
	width: 300px;
	height: 370px;
	overflow: hidden;
	float: left;
}

.gallery01:hover img, .gallery02:hover img, .gallery03:hover img, .gallery04:hover img, .gallery05:hover img, .gallery06:hover img{ display: none;}
.gallery01:hover{ background: url(/images/brand/brand_detail/218/gallery01_a.jpg) left top no-repeat;}
.gallery02:hover{ background: url(/images/brand/brand_detail/218/gallery02_a.jpg) left top no-repeat;}
.gallery03:hover{ background: url(/images/brand/brand_detail/218/gallery03_a.jpg) left top no-repeat;}
.gallery04:hover{ background: url(/images/brand/brand_detail/218/gallery04_a.jpg) left top no-repeat;}
.gallery05:hover{ background: url(/images/brand/brand_detail/218/gallery05_a.jpg) left top no-repeat;}
.gallery06:hover{ background: url(/images/brand/brand_detail/218/gallery06_a.jpg) left top no-repeat;}



#feature_mondaine{
	width:1200px;
	margin:0 auto;
	padding-top:0px;
	padding-bottom:125px;
	background: url(/images/brand/brand_detail/218/feature.jpg) left top no-repeat;
	overflow: hidden;
	height:1416px;
	position: relative;
}
#feature_mondaine p{ position: absolute; line-height: 1.6em;}
#feature_mondaine .text1{
    top: 320px;
    left: 705px;
    width: 410px;
}
#feature_mondaine .text2{
    top: 460px;
    left: 705px;
    width: 410px;
}
#feature_mondaine .text3{
    top: 540px;
    left: 705px;
    width: 410px;
}
#feature_mondaine .text4{
    top: 595px;
    left: 705px;
    width: 410px;
}

#feature_mondaine .text5{
    top: 992px;
    left: 40px;
    width: 530px;
    font-size: 90%;
}
#feature_mondaine .text6{
    top: 1112px;
    left: 40px;
    width: 530px;
    font-size: 90%;
}




#klippan_main{
    width: 100%;
	height: 700px;
	margin: 0 auto;
	background: url(/images/brand/brand_detail/98/main.jpg) center top no-repeat;
	position: relative;
}

#klippan_main .btn_area{
	width: 260px;
	height: 260px;
	position: absolute;
	top:70px;
	right: 100px;
}

#klippan_contents{
	width:100%;
	height: 3716px;
	margin:0 auto;
	text-align:center;
	padding-top:25px;
	padding-bottom:25px;
	position: relative;
	background: url(/images/brand/brand_detail/98/contents.jpg) center top no-repeat;
}

#klippan_contents .btn_screen{
	width: 123px;
	height: 160px;
	overflow: hidden;
	position: absolute;
	background-color: #fff;
	opacity: 0;
}
#klippan_contents .btn_screen:hover{ opacity: 0.4;}

#klippan_contents .link01{ top:300px; right: 325px;}
#klippan_contents .link02{ top:300px; right: 185px;}
#klippan_contents .link03{ top:300px; right: 45px;}

#klippan_contents .link04{ top:840px; left: 75px;}
#klippan_contents .link05{ top:840px; left: 215px;}
#klippan_contents .link06{ top:840px; left: 355px;}

#klippan_contents .link07{ top:1380px; right: 325px;}
#klippan_contents .link08{ top:1380px; right: 185px;}
#klippan_contents .link09{ top:1380px; right: 45px;}

#klippan_contents .link10{ top:1920px; left: 75px;}
#klippan_contents .link11{ top:1920px; left: 225px;}

#klippan_contents .link12{ top:2460px; right: 325px;}
#klippan_contents .link13{ top:2460px; right: 177px;}

#klippan_contents .link14{ top:3050px; left: 75px;}
#klippan_contents .link15{ top:3050px; left: 215px;}

#klippan_contents .link16{ top:3287px; left: 0px;}

#klippan_contents p{ position: absolute; color: #fff;}
#klippan_contents .present_text01{
	top: 3530px;
	left: 35px;
	line-height: 2.3em;
	font-size: 85%;
}

#klippan_contents .present_text02{
    width: 270px;
	top: 3590px;
	left: 370px;
	line-height: 1.5em;
	font-size: 70%;
	text-align: left;
}

#klippan_contents .present_text03{
    width: 270px;
	top: 3590px;
	left: 690px;
	line-height: 1.5em;
	font-size: 70%;
	text-align: left;
}




.wash_text{
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 15px;
	font-size: 13px;
	color: #555;
}


.hoto_area_border{
	padding-top: 50px;
	border-top: 1px #c8c8c8 solid;
	padding-bottom: 50px;
	border-bottom: 1px #c8c8c8 solid;
	margin-bottom: 30px;
}
.hoto_area_border2{
	padding-bottom: 50px;
	border-bottom: 1px #c8c8c8 solid;
	margin-bottom: 30px;
}







/* ---------------------------------------------------------
■KLIPPANお手入れ
--------------------------------------------------------- */
.howToWash {
	overflow: hidden;
	zoom: 1;
	padding-top: 45px; }

.howToWash h4 {
	float: left;
	width: 255px; }
	
	
.howToWash .image_carousel { 
	overflow: hidden;
	zoom: 1;
	*float: left;
	width: 745px; }
	
.howToWash .image_carousel ul { 
	width: 745px !important; }
	
.howToWash .image_carousel ul li {
	overflow: hidden;
	zoom: 1;
	width: auto; }
	
.howToWash .image_carousel .left {
	float: left; 
	width: 360px;
	padding-left: 60px; }
	
.howToWash .image_carousel .right {
	float: right; 
	width: 200px;
	padding: 30px 0 20px; }	
	
.howToWash .image_carousel .page {
	font-size: 262%; /*
	line-height: 35px;*/  }
	
.howToWash .image_carousel .page span {
	padding-left: 3px;
	color: #555555;
	font-size: 42%;/*
	/padding-top: -50px; 
	line-height: 52px;*/
	vertical-align: baseline;  }
	
		

/*
 * carousel
 */

.image_carousel2 {
	position: relative; 
	overflow: hidden;
	zoom: 1; }

a.prev, a.next {
	width: 25px;
	height: 50px;
	display: block;
	z-index: 10; }

a.prev {
	background: url(/images/brand/brand_detail/98/img_prev.jpg) no-repeat 0 0 ;
	position: absolute;
	top: 65px;
	left: 0; }

a.next {
	background: url(/images/brand/brand_detail/98/img_next.jpg) no-repeat 0 0 ;
	width: 25px;
	height: 50px;
	display: block;
	position: absolute;
	top: 65px;
	left: 455px; }
	
a.prev:hover,
a.next:hover { 
	background-position: 0 -50px; }
	
a.prev.disabled, a.next.disabled {
	cursor: default; }

a.prev span, a.next span {
	display: none; }
	
.clearfix {
	float: none;
	clear: both; }


/*#foo2 img {
	/width: 970px;
	/height: 290px; }*/








/*
 * 下部のリスト
 */
.oneColumnWrapper {
width: 970px;
margin: 0 auto;
padding-top: 55px;
}












.clearfix {
  min-height: 1px;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
}