@charset "utf-8";



/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	font-weight: normal;
}
ul {list-style-type: none;}

ul.ul_circle {
	margin-left:20px;
	list-style-type:none;
}

ul.ul_circle li:before {
    content:  '●'; 
	color:#cc7aae;
	margin-left:-20px;
}

ul.ul_circle li {
 margin-left:30px;
 line-height:1.5em;
}


ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;/}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #18235c;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}


.top_bdr {
 	border-top: solid 20px #cc7aae;
	margin-bottom:10px;
}



/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
#container {
	max-width:960px;
	margin: 0px auto;
}

header {
	background: #fff;
}
header .inner {
    text-align: center;
	position: relative;
}
/*ロゴ画像*/
#logo img { margin-bottom:30px; }

/*ロゴ右側のアイコン類*/
header .h-nav {
	position: absolute;
	margin-left: 3%;
	right: 0px;
	top: 10px;	
}
/*ロゴ右側のアイコン類（１個あたり）*/
header .h-nav li {
	float: left;
	margin-left: 10px;	/*アイコン間の余白*/
}
/*ロゴ右側のアイコン類（画像）*/
header .h-nav li img {
	display: block;
	width: 30px;	/*幅*/
	height: 30px;	/*高さ*/
	background: #fff;	/*背景色*/
	border-radius: 4px;	/*角丸のサイズ。50%にすると正円になる。*/
}

header p.h-nav2 {
	display:none;
}




/*文字サイズ変更ボタン（※文字サイズを「小」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	position: absolute;
	right: 3%;	/*ヘッダーブロックに対して右から3%の場所に配置*/
	top: 0px;		/*ヘッダーブロックに対して上から0pxの場所に配置*/
	width: 230px;	/*ブロック幅*/
	height: 50px;	/*大小のボタン画像の高さに合わせる*/
	background: #fff url(../images/fsize_bg.png) no-repeat 15px center;	/*背景色、虫眼鏡の背景画像読み込み*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.15);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.15は透明度15%の事。*/
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
}
/*「文字サイズ」のテキスト*/
#fsize p {
	float: left;
	padding: 0 0 0 50px;
	color: #000;	/*文字色*/
	line-height: 50px;
	font-size: 16px;
}
/*文字サイズボタン１個あたり*/
#fsize ul li {
	float: left;	/*左に回り込み*/
}
#fsize ul a {
	overflow: hidden;
	display: block;
	text-indent: -9999px;
}
/*「小」ボタン設定*/
#fsize ul li#small a {
	background: url(../images/fsize.png) left center;	/*背景画像として「小」を読み込む。これは「オフ」の状態。*/
	height: 50px;	/*ボタン画像の高さ*/
	width: 40px;	/*ボタン画像の幅*/
}
#fsize ul li#small a:hover {
	background: url(../images/fsize_on.png) left center;	/*マウスオン時の背景画像。マウスオン用なので常に「オン」*/
}
/*「大」ボタン設定*/
#fsize ul li#large a {
	background: url(../images/fsize_on.png) right center;	/*背景画像として「大」を読み込む。これは「オン」の状態。*/
	height: 50px;	/*ボタン画像の高さ*/
	width: 50px;	/*ボタン画像の幅*/
}
#fsize ul li#large a:hover {
	background: url(../images/fsize_on.png) right center;	/*マウスオン時の背景画像。マウスオン用なので常に「オン」*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/

#menubar {
	background: #fff;
	/*背景色（古いブラウザ用）*/
	max-width: 960px;
	margin: 0 auto;
}

.top_nav {
	max-width: 100%;
	height: 60px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	z-index: 20;
}

.top_nav li {
	width: 20%;
	position: relative;
	list-style: none;
}

.top_nav li a {
	display: block;
	text-align: center;
	color: #000;
	font-size: 20px;
	line-height: 1.2;
	background: #ffffff;
	text-decoration: none;
	box-sizing: border-box;
}

.top_nav li li a {
	font-size: 14px;
	line-height: 4.28;
	/* メニュー縦サイズ */
}


.menu_en {
	font-size: 14px;
}

.top_nav>li:hover>a {
	/*layer-1*/
	background: ;
	color: #cc7aae;
}

.top_nav>li li:hover>a {
	/*layer-2*/
	color: ;
	background: #edd6f2;
}

.top_nav li ul {
	top: 60px;
	left: calc(((193px - 168px) / 2) * -1);
	position: absolute;
}

.top_nav li ul li {
	overflow: hidden;
	height: 0;
}

.top_nav li ul li a {
	border-top: 1px solid #eee;
}

.top_nav li:hover>ul>li {
	overflow: visible;
	height: 60px;
	width: 193px;
	z-index: 2;
}


/*マウスオン時と、現在表示中メニュー*/
#menubar li.current a {
	background: #fff;
	/*背景色*/
	color: #000;
	/*文字色*/
}

/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}

/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}



/*パンくずナビ
---------------------------------------------------------------------------*/
#pan {
	margin-bottom: 15px;
}
#pan li {
	display: inline;
}
#pan li a {
	background: url(../images/arrow1.png) no-repeat right center;	/*矢印画像の読み込み*/
	padding-right: 20px;
	margin-right: 10px;
}

/*コンテンツ（メイン、サブブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	margin: 0 auto;
	overflow: hidden;
	margin: 15px 3% 30px;	/*上、左右、下へのボックス内の余白*/
	z-index: 1;
}
/*トップページでのコンテンツ*/
#top #contents {
	margin-top: 30px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 72%;		/*ボックス幅*/
}

#main_home {
	float: none;
	width: 100%;		/*ボックス幅*/
}

/*メインコンテンツのh2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;	/*上下、左右への余白*/
	background: none;	/*背景画像の読み込みとグラデーション*/
	color:;	/*文字色*/
}
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセントラインの幅、線種、色*/
	padding-left: 10px;
}
/*メインコンテンツのh3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 0px 20px;	/*上下、左右への余白*/
	background: #cc7aae;	
	border-top-left-radius:30px;
	border-bottom-left-radius:30px;
	color: #fff;	/*文字色*/
}

}
/*メインコンテンツの段落タグ*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: 0px;
}


/*product_info table*/
.product_info  {
	margin:20px;
}


.product_info td {
	font-size:14px;
	/* border:solid 1px #ddd; */
	margin:0px;
	padding:0px;
	line-height:1.6em;
}


/*info.htmlに置いているボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定（共通）*/
.list {
	background: #fff;	/*背景色*/
	position: relative;
	overflow: hidden;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、広げる幅、0,0,0は黒で0.2は透明度20%の事。*/
	margin: 0 20px 20px;	/*ボックスの外に空けるスペース。上、左右、下の順。*/
	padding: 20px;	/*ボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*ボックスにリンク指定をした場合の設定*/
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	margin: -20px;	/*上の.listのpaddingをリセットするために設定*/
	padding: 20px;	/*ボックス内の余白*/
}
/*マウスオン時のボックス*/
.list a:hover {
	background: #fef8bf;	/*背景色*/
}
/*画像の設定*/
.list img.img {
	float: left;	/*画像を左に回り込み*/
	width: 25%;		/*画像の幅*/
}
/*h4見出しタグの設定*/
.list h4 {
	color: #18235c;	/*文字色*/
	font-size: 140%;	/*文字サイズ*/
	margin-left: 27%;	/*上の画像のwidthの数字より少しだけ大きくする。下の.list pと数字を揃える。*/
}
/*pタグの設定*/
.list p {
	padding: 0 !important;
	margin-left: 27%;	/*上の画像のwidthの数字より少しだけ大きくする。上の.list h4と数字を揃える。*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#sub {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	color: #fff;		/*文字色*/
	background: #cc7aae;	/*背景色*/
	padding: 10px 15px;	/*上下、左右へのボックス内の余白*/
	line-height:1;
}
/*navの直後にnavとh2が続いた場合と、navタグの直後にh2が続いた場合に、h2の上のラインを消す設定*/
#sub nav + nav h2,
#sub nav + h2 {
	border-top: none;
}
/*subコンテンツ内のpタグ設定*/
#sub p {
	padding: 15px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
		margin-bottom: 30px;
}
/*h2タグの直後にsubmenuが入った場合にsubmenuの上のラインを消す設定*/
#sub h2 + ul.submenu {
	border-top: none;
}


/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;	/*メニュー内の余白*/
	padding: 5px 0;
}
/*マウスオン時*/
#sub ul.submenu li a:hover {
	opacity: 0.5;
}


/*subブロック内のアイコン類
---------------------------------------------------------------------------*/
#sub .h-nav {
	overflow: hidden;
}
/*アイコン類（１個あたり）*/
#sub .h-nav li {
	width: 29%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 2% 20px;	/*上、左右、下へのアイコンの外にとるスペース*/
}
/*アイコン類（画像）*/
/*#sub .h-nav li img {
	border-radius: 10px;	/*角丸のサイズ*/
/*}*

/*PAGE TOP(↑)設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	margin-right: 3%;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #595757;	/*背景色*/
	border-radius: 50% 50% 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background: #999;	/*背景色*/
	color: #FFF;		/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	margin: 30px auto;
	background: #595757;	/*背景色*/
	color: #fff;			/*文字色*/
	height:100%;	/* min-heightに対応していないブラウザ用 */
	min-height: 100%; /* 最小の高さ */
	height: auto; /* 要素を超えた分の背景が伸びないブラウザ用 */
	width:100%;
}

#sns-icon { display:none; }

.footer_menu{
	background: #595757;	
	max-width:960px;
	margin:10px auto;
}

.info{
	float:left;
	margin:30px 0 30px 5%;
	width:35%;
	/* border:solid 1px #009900;*/
	font-size:12px;
}

address{
	font-style:normal;
}

.nav2{
	float:left;
	width:20%;
	margin:30px 0;
	/* border:solid 1px #009900; */
	font-size:12px;
}

	
.clearfix:after{
	content: "";
	clear: both;
	display: block;
}

footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #ccc;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 15px;
	margin-bottom: 30px;

}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	/* border:solid 1px #000; */
	padding-left: 8em;
	padding-bottom:1em;
}

/*テーブル ta1
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 96%;
	margin: 0 2% 20px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;		/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {width: 100%;}
/*テーブル内でリストタグを使った場合の設定*/
.ta1 ul.disc {padding-bottom: 0;}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: text-top
}

/*お問い合わせページの緊急連絡先(TEL)用のボックス
---------------------------------------------------------------------------*/
.tel {
	border: 5px solid #ffc257;	/*枠線の幅、線種、色*/
	padding: 20px !important;	/*枠内の余白*/
	background: #FFF1B9 url(../images/icon_tel.png) no-repeat 96% center;	/*背景色、背景画像の読み込み、左から96%、天地中央に配置。*/
	margin-bottom: 20px;	/*ボックス下に空けるスペース*/
}


/*お問い合わせページの注意書き
---------------------------------------------------------------------------*/
.contact_h2
{
	border-left:solid 5px #CC7DB1;
	padding-left:10px;
	margin:0px 0px 30px 0px;
	color:#CC7DB1;
	font-weight:normal;
}

.contact_h2 h2 {
	font-size: 26px;
	font-weight:900;
	margin:0 !important;
	padding-left:0 !important;
}

.contact_h2 p {
	font-size:20px;
	line-height:1.2em;
}


.privacy_policy {
	margin-top:30px;
}

.privacy_policy li {
	margin-left:30px;
	font-size: 16px;
}

.privacy_policy li p{
	margin-left:33px;
	line-height:1.2em;
}

/* Product Name
---------------------------------------------------------------------------*/

.pname  {
 border:solid 0px #000 !important; 
 font-family: 'YuMincho','Yu Mincho',serif !important;
 margin-bottom:30px;
}

.pname h3 {
 font-weight:bold;
/* font-size:50px !important; */
 font-size:2.4em !important;
 margin-top : 0px  !important;
 margin-bottom : 0px !important;
 line-height:1em;
 color: #666 !important;
 background:none !important;
 border:none !important;
}

.pname p {
 font-weight:700;
/* font-size:25px !important;*/
 font-size:1.4em !important;
 line-height:1.25em;
 margin-top : 0px;
 margin-left:20px;
 color: #666 !important;
}

 .pname2 {
 border:solid 0px #666 !important; 
  min-height:165px; 
 font-family:  'YuMincho','Yu Mincho',serif !important;
 margin-top:50px;
 margin-bottom:1.4;
 margin-right:30px;
 background:url(../images/common_photos/new.png) no-repeat right top !important; 
}

.pname2 h3 {
 font-weight:bold;
 font-size:2.5em !important;
 margin-top : 20px  !important;
 margin-bottom : 0px !important;
 line-height:1.0;
 color: #666 !important;
 background:none !important;
 border:none !important;
}

.pname2 p {
 font-weight:700;
 font-size:1.4em !important;
 line-height:1.4;
 margin-top : 0px;
 margin-left:20px;
 color: #666 !important;
}

.pname3 { font-size:0.6em; }

/*Q＆A
---------------------------------------------------------------------------*/

.question {
	cursor: pointer;
	color: #333;
	border-radius:10px ;
	background-color:#fce0c1 !important; 
	padding:3px 10px ;
	line-height:1.5em;
}

.question:hover {
        text-decoration: underline;
}
.ans {
	display: none;
	color: ;
	padding:7px 10px ;
	line-height:1.5em;
}

.ans_t{
	color:#e60012;
	font-weight:bold;
	margin-top:20px;
}

.a_detail {
	margin:10px 30px;
	/* border: solid 1px #ff0000; */
}


/*Bluetooth
---------------------------------------------------------------------------*/

.blth {
 border:solid 1px #fff !important; 
}

.blth h2 {
 font-weight:bold;
 font-size:20px;
 margin-top : 80px;

 line-height:1.6em; 
 color:#333 !important;
 border:solid 3px #cc7aae !important; 
 border-radius:0px !important; 

}

.blth h3 {
 margin:10px 0px 0px 0px;
 line-height:1.6em; 
 color:#e60012 !important;
 background-color:#fff !important ;
 border:none; 
 border-radius:20px !important; 
}

.blth p { 
 margin-left:40px;
 line-height:1.6em;
font-size:16px;
 color:#333;
}

/*その他
---------------------------------------------------------------------------*/


.lh12 { line-height:1.2em; }
.lh15 { line-height:1.5em; }

.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb40 {margin-bottom: 40px;}
.mb100 {margin-bottom:100px;}

.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}

.ml20 {margin-left: 20px;}
.ml30 {margin-left: 30px;}

.m5 {margin:5px;}
.m10 {margin:10px;}

.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #e60012; !important;}
.color2 {color: #666666; line-height:1.6em;}
.color3 {color: #cc7aae;}
.color4 {color: #fff;}
.color5 {color: #00cfc4;}

.pr {font-size: 10px;}

.wl {width: 96%;}
.ws {width: 50%;}
.w30p {width: 30%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fr {float: right;margin-left: 1%;margin-bottom: 15px;}
.frt {float: right;margin-left: 1%;margin-top: 15px;}
.fl {float: left;margin-right: 1%;margin-bottom: 15px;}

.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}
.dn {display: none;}
.p0 {padding: 0 !important;}
.frame1 {box-shadow: 2px 2px 5px rgba(0,0,0,0.3);border: 5px solid #fff;}
.frame2 {border-bottom:solid 2px #999;} /*about.html*/
.frame3 {
	color: #005EAD;
	border: 3px solid #005EAD;
	border-radius:10px ;
	font-size:15px;
}/*注意　青*/

.frame4 {
	color: #D42D25;
	border: 3px solid #D42D25;
	border-radius:10px ;
	font-size:15px;
}/*注意　赤*/

.frame5 {
	color: #fff;
	background:#cc7db1;
	border: 3px solid #cc7db1;
	border-radius:10px ;
	font-size:20px;
}/*パープル*/

.frame51 {
	color: #fff;
	background:#cc7db1;
	border: 8px solid #cc7db1;
	border-radius:20px ;
	font-size:20px;
	padding:0 20px;
}/*パープル*/

.frame5 a { color:#fff; }


.bg_blue { background-color:#005EAD; }
.bg_red { background-color:#D42D25; }

.banner { padding: 0px !important;margin-bottom: 20px;}
.barbie_new { position:relative; }

.scale { background:#ffffff; transition: all 0.2s; }
.scale :hover { opacity:0.7; }

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	border-bottom: 0px solid #999;
}
/*ロゴ右側のアイコン類1*/
header .h-nav {
	display:none;
}

/*ロゴ右側のアイコン類2（１個あたり）*/
header p.h-nav2  {
	display:inline;
}
/*ロゴ右側のアイコン類2（画像）*/
header p.h-nav2 img {
	width: 30px;	/*幅*/
	margin:0px 5px;
}


/*文字サイズ変更ボタン（※文字サイズを「小」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	right: 13%;	/*ヘッダーブロックに対して右から13%の場所に配置*/
	top: 24px;	/*ヘッダーブロックに対して上から24pxの場所に配置*/
	width: 180px;	/*ブロック幅*/
	border-radius: 10px;	/*角丸のサイズ*/
}
#fsize span {
	display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
	#menubar-s {
		display: block;
		/*小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える*/
		background: #cc7aae;
		/*背景色*/
		overflow: hidden;
	}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;
	width: 50%;		/*幅*/
}
#menubar-s li a {
	text-decoration: none;
	display: block;
	text-align: center;
	line-height: 50px;		/*行間（高さ）*/
	color: #fff;	/*文字色*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	border-right: 1px solid #fff;	/*右の線の幅、線種、色*/
}
/*偶数番目のメニュー*/
#menubar-s li:nth-child(even) a {
	border-right: none;	/*右の線を消す*/
}
/*大きな端末用(画面幅801px以上)メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定 （800px以下で表示）
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	z-index: 4;
	position: absolute;
	top: 25px;		/*上から25pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #cc7aae;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;			/*バー同士の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#18235c, #12193e);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#18235c, #12193e);
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}
.banner {width: 50%;}

}


/*画面幅620px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:620px){

/*文字サイズ変更ボタン（※文字サイズを「小」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: none;	/*非表示にする*/
}


/*Product Name
---------------------------------------------------------------------------*/

 .pname2 {
 border:solid 0px #000 !important; 
 font-family: 'YuMincho','Yu Mincho','游明朝体',serif !important;
 margin-right:0px;
 background:none !important;
}

.pname3 { font-size:0.6em; }


iframe { width:100%; }


}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 16px;	/*文字サイズ*/
	line-height: 1.4;		/*行間*/
}


/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	width: 200px;	/*画像幅*/
	top: 36px;	/*上から36pxの場所に配置*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 90px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}




/*フッター
---------------------------------------------------------------------------*/

.info {
	float:none;
	width:90%;
	text-align:center;
	padding: 30px 0 0 0;
}


.nav2 {
	float:left;
	width:33%;
	text-align:center;
	padding:0;
}





/*その他
---------------------------------------------------------------------------*/
iframe { width:100%; }

.ws,.wl {width: 95%;}
.fr,.fl {float: none;margin: 0;margin-bottom: 10px;width: 100%;}
.sh {display: block;}
.pc {display: none;}
.banner {width: 100%;}
.barbie_new { position:relative; }
}