@charset "UTF-8";

/* =============================================================================
   HTML5要素の表示
   ========================================================================== */

/*
 * HTML5未サポートブラウザーでブロックレベル要素として表示する for IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

/*
 * HTML5未サポートブラウザーでインライン要素として表示する for IE6/7/8/9 & FF3
 * 制限事項: IE6では'audio[controls]'へのスタイルは適用されません。
 */

audio[controls],
canvas,
video {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

/* =============================================================================
   基本設定
   ========================================================================== */

/*
 * 1. IE6/7において単位をemでbodyにfont-sizeを設定すると正しいサイズにならない問題を修正
 *    参考: http://clagnut.com/blog/348/#c790
 * 2. コンテンツの高さに関わらず全てのブラウザーでページをセンタリング（スクロールバーを常時表示する）
 * 3. AndroidやiOSにおいてtap highlight colorが親要素を含んでしまう問題を修正（tap highlight colorを消す）
 *    参考: www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. iOSにおいて画面の向きが変わった際のテキストサイズ調整を防ぐ
 *    参考: www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
    font-size: 100%; /* 1 */
    o verflow-y: hidden; /* このサイトではスクロールバーが不要*/ /* 2 */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* 3 */
    -webkit-text-size-adjust: 100%; /* 4 */
    -ms-text-size-adjust: 100%; /* 4 */
}

/*
 * IE6/7におけるmarginの修正
 */

body {
    margin: 0;
}

/*
 * 'textarea'やその他のフォーム要素でのfont-familyの矛盾を修正
 */

body,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/* =============================================================================
   リンク関連
   ========================================================================== */

a {
    color: #00e;
}

a:visited {
    color: #551a8b;
}

/*
 * Chromeにおいてoutlineの表示不具合を修正
 */

a:focus {
    outline: thin dotted;
}

/*
 * 全てのブラウザーにおいてフォーカス時、マウスホバー時の読みやすさを改善
 * 参考: people.opera.com/patrickl/experiments/keyboard/test
 */

a:hover,
a:active {
    outline: 0;
}

/* =============================================================================
   タイポグラフィ関連
   ========================================================================== */

/*
 * IE7/8/9, S5, Chromeにおいてabbr要素がスタイリングされない問題を修正
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * FF3/4, S4/5, Chromeにおいてb,strong要素がboldにならない問題を修正
 */

b,
strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

/*
 * S5, Chromeにおいてdfn要素がイタリック体にならない問題を修正
 */

dfn {
    font-style: italic;
}

/*
 * IE6/7/8/9においてmark要素がスタイリングされない問題を修正
 */

mark {
    background: #ff0;
    color: #000;
}

/*
 * IE6, S5, Chromeにおけるfont-familyの問題を修正
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/*
 * 全てのブラウザーにおいてpre-formatted textの読みやすさを改善
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * 1. IE6/7においてquotesプロパティーがサポートされていない問題を修正
 * 2. S4においてquotesプロパティーがサポートされていない問題を修正
 */

/* 1 */

q {
    quotes: none;
}

/* 2 */

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 75%;
}

/*
 * 全てのブラウザーにおいてsubおよびsup要素がline-heightに影響する問題を防ぐ
 * 参考: gist.github.com/413930
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
   vertical-align: bottom;
}

/* =============================================================================
   リスト関連
   ========================================================================== */

ul,
ol {
    margin: 1em 0;
    padding: 0 0 0 40px;
}

dd {
    margin: 0 0 0 40px;
}

nav ul,
nav ol {
    list-style: none;
}

/* =============================================================================
   埋め込みコンテンツ
   ========================================================================== */

/*
 * 1. IE6/7/8/9において、a要素内側のborderを削除
 * 2. IE7において画像の拡大縮小時の画質を改善
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * IE9においてoverflowの表示問題を修正
 */

svg:not(:root) {
    overflow: hidden;
}

/* =============================================================================
   Figure要素
   ========================================================================== */

/*
 * IE6/7/8/9, S5, O11におけるmarginの問題を修正
 */

figure {
    margin: 0;
}

/* =============================================================================
   フォーム関連
   ========================================================================== */

/*
 * IE6/7におけるmarginの問題を修正
 */

form {
    margin: 0;
}

/*
 * 矛盾のないmarginおよびpaddingの設定
 */

fieldset {
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. IE6/7/8/9において色が継承されない問題を修正
 * 2. IE6/7において揃いがおかしい問題を修正
 */

legend {
    border: 0; /* 1 */
    *margin-left: -7px; /* 2 */
}

/*
 * 1. 全てのブラウザーにおいてfont-sizeが継承されない問題を修正
 * 2. IE6/7, F3/4, S5, Chromeにおけるmarginの差異を修正
 * 3. 全てのブラウザーにおいて外観と一貫性を改善
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/*
 * 1. FF3/4のUA stylesheetにおいてline-heightが!importantになっている点について修正
 * 2. IE6/7においてインナースペースの表示問題を修正
 */

button,
input {
    line-height: normal; /* 1 */
    *overflow: visible;  /* 2 */
}

/*
 * 1. image-typeが'input'とその他についてユーザビリティと一貫性を改善
 * 2. iOSにおいてクリック可能な'input'にスタイルが適用できない問題を修正
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
}

/*
 * IE8/9においてbox-sizingプロパティがcontent-boxになっている点を修正
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
}

/*
 * 1. S5, Chromeにおいてappearanceプロパティがsearchfieldになっている点を修正
 * 2. S5, Chromeにおいてbox-sizingプロパティがborder-box担っている点を修正 (将来的なことを踏まえて-mozも含める)
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * S5, Chrome on OSXにおけるpaddingの表示問題を修正
 */

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * FF3/4におけるpadding及びborderの表示問題を修正
 * 参考: www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. IE6/7/8/9におけるデフォルト表示のスクロールバーを削除
 * 2. 全てのブラウザーにおいて読みやすさと揃えを改善
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* =============================================================================
   テーブル関連
   ========================================================================== */

/*
 * テーブルのセル間のほとんどのスペースを削除
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* =============================================================================
   フロートクリア
   ========================================================================== */

/*
 * Clearfix
 */

.clearfix:after{
  content:".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  font-size: 0.1em;/*added for FF*/
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}


/*===========================================
■リンクデザイン
===========================================*/
a:link {
  color: #0088CC;
  text-decoration: underline;
}
a:visited {
  color: #0088CC;
  text-decoration: underline;
}
a:active {
  color: #FF0000;
  text-decoration: none;
}
a:hover {
  color: #FF0000;
  text-decoration: none;
}
a {
  overflow: hidden;
  outline: none;
}
a.pdf {
  padding-right: 36px;
  background: url('img/pdf.gif') right center no-repeat;
}
/*===========================================
■レイアウト&基本デザイン
===========================================*/
/*- body -*/
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #000;
  background-color: #000;
  font: 14px "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}
#wrapper {
  padding: 0;
  margin: 0 auto;
  position: relative;
}
#bg {
  position: absolute;
  z-index: -100;
  top: 0;
  overflow: hidden;
  height: 100%;
  width:100%;
  height: 100%;
}
#bg .slide_element {
  position: absolute;
}
#sidebar {
  width: 300px;
  height: 700px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: rgba(0,0,0,0);
}
#header {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 100;
}
#nav {
  width: 300px;
  height: 100%;
  background-color: #000;
  background-color: rgba(0,0,0,0.8);
  #background-color: #000;
  position: absolute;
}
#nav ul {
  width: 245px;
  padding: 200px 25px 0 30px;
  margin: 0;
}
#nav ul li {
  margin: 0 0 6px 0;
}
#nav a {
  display: block;
  color: #FFF;
  background: url(img/arw_w.png) 5px center no-repeat;
  /* padding-left: 15px; */
  padding: 3px 0 3px 15px;
  text-decoration: none;
  line-height: 110%;
}
#nav a:hover {
  text-decoration: underline;
}
#menu_btn {
  position: absolute;
  display: block;
  width: 90px;
  height: 100%;
  margin-left: -90px;
  background: url(img/menu_btn.gif) left center no-repeat;
  opacity: 0.8;
  z-index: -50;
}
#content {
  /*display: none;*/
  width: 360px;
  position: absolute;
  right: 0;
  padding: 0 0 0 30px;
  background-color: #FFF;
  background-color: rgba(256,256,256,0.9);
  #background-color: #FFF;
  overflow: auto;
}
#content #main {
  padding: 20px 0;
  width: 325px;
}
body.wide #content {
  width: 560px;
}
body.wide #content #main {
  width: 525px;
}
#content #main .sub_section {
  padding-top: 20px;
}
.tel_note {
  font-size: 12px;
}
#snav {
  /*display: none;*/
  position: absolute;
  right: 377px;
  text-align: right;
  z-index: 10;
  overflow: hidden;
  margin: 0;
}
body.wide #snav {
  right: 577px;
}
#snav li {
  list-style: none;
  position: relative;
  padding-right: 17px;
}
#snav li a {
  color: #FFF;
  text-shadow:
  1px 1px 1px #333,
  -1px 1px 1px #333,
  1px -1px 1px #333,
  -1px -1px 1px #333;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  #background-color: #000000; /* IE7以下 */
}
#snav li a:hover {
  color: #DDD;
}

/* nav dot */
#snav li a .dot {
  display:block;
  position:absolute;
  top: 10px;
  right: 0;
  height:8px;
  width:8px;
  border-radius:8px;
  border:1px solid transparent;
}
#snav li.current a .dot {
  background:transparent;
  border:1px solid #666;
}

/* inner dot */
#snav li a .dot:after {
  position:absolute;
  display:block;
  content:'';
  height:6px;
  width:6px;
  top:1px;
  left:1px;
  border-radius:4px;
  background:#666;
  -webkit-transform:scale(.9);
     -moz-transform:scale(.9);
          transform:scale(.9);
}
#snav li.current a .dot:after {
  background:transparent;
}
#snav li a:hover .dot:after {
  -webkit-transform:scale(1.2);
     -moz-transform:scale(1.2);
          transform:scale(1.2);
}

#copyright {
  position: absolute;
  right: 0px;
  bottom: 0px;
  margin: 0;
  padding: 0 8px 0 5px;
  text-shadow:
  1px 1px 1px #333,
  -1px 1px 1px #333,
  1px -1px 1px #333,
  -1px -1px 1px #333;
  z-index: 100;
  color: #FFF;
  font-size: 12px;
  opacity: 0.8;
  background-color: #000;
  background-color: rgba(0,0,0,0.5);

}

/*===========================================
■バナー
===========================================*/

#bn {
  position: absolute;
  left: 35px;
  bottom: 15px;
  margin: 0;
  padding: 0;
}
#bn li {
  list-style: none;
  background-color: #FFF;
  margin-top: 5px;
}
#bn li a {
  box-shadow:rgba(0, 0, 0, 0.298039) 1px 1px 8px 1px;
  -webkit-box-shadow:rgba(0, 0, 0, 0.298039) 1px 1px 8px 1px;
  -moz-box-shadow:rgba(0, 0, 0, 0.298039) 1px 1px 8px 1px;
}
#bn li a:hover {
  opacity: 0.7;
}


/*===========================================
■共通部分
===========================================*/
h1 {
  margin: 0;
  padding: 0;
  width: 231px;
  height: 130px;
}
h1 a {
  display: block;
  margin: 0;
  padding: 0;
  /* width: 231px;
  height: 130px;
  background: url(img/logo.png) 0 0 no-repeat;
  text-indent: -9999px; */
}
h1 a:hover {
  opacity: 0.9;
}
h2 {
  clear: both;
  margin: 25px 0 25px 0;
  padding: 0;
  line-height: 120%!important;
}
h2 span {
  font-size: 14px!important;
  line-height: 110%!important;
}
h2.serif {
  font: normal normal 300 21px/33px "小塚明朝 Pro EL","Hiragino Mincho Pro","ヒラギノ明朝 Pro W3","Kozuka Mincho Pro",Georgia,Century,"Times New Roman",Times,"ＭＳ 明朝",serif;
  font-weight: bold;
}
h3 {
  clear: both;
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid #000;
  line-height: 120%;
}
h4 {
  clear: both;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 8px;
  border-left: 2px solid #333;
  line-height: 120%;
  padding: 2px 0 0 4px;
}
h5 {
  clear: both;
  font-weight: normal;
  font-size: 14px;
  margin: 5px 0 6px;
  b order-left: 1px solid #666;
  line-height: 120%;
  padding: 3px 0 2px 0;
}
h6 {
  clear: both;
  font-weight: normal;
  font-size: 14px;
  margin: 5px 0 4px;
  b order-left: 1px solid #CCC;
  line-height: 120%;
  padding: 3px 0 2px 0;
}
p {
  line-height: 150%;
  margin: 0 0 7px;
}
ol {
  padding: 0 0 0 2em;
}
ol li {
  margin-bottom: 8px;
}
em, strong {
  font-weight: bold;
}
em.line, strong.line {
  text-decoration: underline;
}
em.italic, strong.italic {
  font-style: italic;
}

#content #main ul {
  padding: 0;
  margin: 0 0 10px;
}
#content #main ul li {
  list-style-type: none;
  padding-left: 13px;
  margin: 0 0 3px 3px;
  background: url(img/list_arrow.png) 0 5px no-repeat
}
#content #main dl dd {
  margin: 0 0 3px 7px;
}
dl.dl dt {
  f ont-size: 12px;
  f ont-weight: bold;
  margin: 10px 0;
  border-bottom: 1px dotted #000;
}
dl.dl dd {
  margin: 5px 0 5px 10px;
  line-height: 150%;
}

/*===========================================
■トップページ
===========================================*/
#index #topics dt {
  color: #333;
  font-weight: bold;
}
#index #topics dd {
  margin: 0 0 10px 3px;
  line-height: 130%;
}
#index #topics dd .topics_link {
  font-size: 12px;
}
/*===========================================
■レパートリー
===========================================*/
.repertpry_list {
  margin: 0;
  padding: 0;
}
.repertpry_list li {
  font-weight: bold;
  list-style: none;
  margin: 0!important;
  padding: 0!important;
  background-image: none!important;
}
.repertpry_list li ul{
  padding: 0;
  margin: 0;
  font-weight: normal;
}
.repertpry_list li ul li{
  font-weight: normal;
  margin-left: 0.5em!important;
  padding: 0;
}
/*===========================================
■ザイラーピアノデュオの歩み
===========================================*/
dl#history dt {
  width: 5em;
  clear: both;
  float: left;
  margin: 0 0 10px;
}
dl#history dd {
  width: 440px;
  float: left;
  margin: 0 0 10px 10px;
}
/*===========================================
■批評
===========================================*/
p.by {
  font-size: 12px;
  margin: -7px 0 25px 0;
  text-align: right;
}
/*===========================================
■コンサート
===========================================*/
table.concerts_date {
  margin: 5px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
table.concerts_date th,
table.concerts_date td {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  font-weight: normal;
  text-align: center;
  padding: 5px 10px;
  background-color: #FFF;
  background-color: rgba(255,255,255,0.5);
}
/*===========================================
■CD書籍
===========================================*/
#cd_book #content #main .block {
  margin-top: 20px;
}
#cd_book #content #main .body {
  width: 285px;
  float: right;
}
#cd_book #content #main .body .title {
  margin: 3px 0 10px;
  padding: 0 0 0 5px;
}
#cd_book #content #main .body p {
  text-indent: 0;
  margin-left: 7px;
}
#cd_book #content #main .body .price {
  font-size: 14px;
}
#cd_book #content #main .body .index {
  font-size: 12px;
}
#cd_book #content #main img {
  width: 230px;
  float: left;
  box-shadow:rgba(0, 0, 0, 0.298039) 1px 1px 8px 1px;
  -webkit-box-shadow:rgba(0, 0, 0, 0.298039) 1px 1px 8px 1px;
  -moz-box-shadow:rgba(0, 0, 0, 0.298039) 1px 1px 8px 1px;
}
/* ▼交互にフロート方向を変える場合（CSS3対応ブラウザのみ）

#cd_book #content #main .block:nth-child(even) .body {
  width: 290px;
  float: left;
}
#cd_book #content #main .block:nth-child(even) img {
  width: 230px;
  float: right;
}
*/
.audiojs {
  width: 280px!important;
  height:20px!important;
  position: relative;
}
.audiojs .play-pause,
.audiojs .scrubber,
.audiojs .time,
.audiojs .error-message {
  padding: 0!important;
  height:20px!important;
  line-height:20px!important;
  position: absolute;
}
.audiojs .play-pause .play,
.audiojs .play-pause .pause,
.audiojs .play-pause .loading,
.audiojs .play-pause .error {
  padding: 0!important;
  margin: 0!important;
}
.audiojs .time {
  display: none;
}
.audiojs .scrubber {
  top: 7px!important;
  left: 30px!important;
  width: 245px;
  height: 3px!important;
  margin: 0!important;
  padding: 0!important;

}
.audiojs .play-pause .play,
.audiojs .play-pause .pause,
.audiojs .play-pause .loading,
.audiojs .play-pause .error {
  padding: 0!important;
  margin: 0!important;
}
.audiojs .play-pause .play,
.audiojs .play-pause .pause,
.audiojs .play-pause .loading,
.audiojs .play-pause .error {
  padding: 0!important;
  margin: 0!important;
}
.audiojs .play-pause .play {
  background-position:-2px -5px!important;
}
.audiojs .play-pause .pause {
  background-position:-2px -95px!important;
}
.audiojs .play-pause .loading {
  background-position:-2px -35px!important;
}
.audiojs .play-pause .error {
  background-position:-2px -65px!important;
}

/*===========================================
■ザイラーファミリー
===========================================*/
img.fl {
  float: left;
  margin: 0 7px 5px 0;
  border: 2px solid #FFF;
}

/*===========================================
■お問い合わせ
===========================================*/
#contactform dd {
  margin: 3px 0 10px;
}
#contactform .inputA,
#contactform .inputB,
#contactform .inputMini,
#contactform textarea {
  padding: 5px;
  font-size: 16px;
}
#contactform .inputA {
  width: 400px;
}
#contactform .inputB {
  width: 170px;
}
#contactform .inputMini {
  width: 30px;
}
#contactform select {
  padding: 3px 5px;
  font-weight: bold;
}
#contactform dt .note {
  font-size: 11px;
}
#contactform dt .required {
  color: red;
}
#contactform label.error {
  font-size: 11px;
  color: red;
  margin-left: 3px;
}
#contactform p.sbmt {
  width: 140px;
  float: left;
  margin-right: 20px;
}
#contactform .sbmt_btn {
  width: 140px;
  height: 30px;
  border: none;
  background: url(img/sbmt_btn.gif) 0px 0px no-repeat;
  text-indent: -9999px;
  cursor:pointer;
  margin-bottom: 30px;
}
#contactform .sbmt_btn:hover {
  background-position: 0 -30px;
}


/* スライドショーのインデックス */

#bg_index {
  width: 100%;
  position: absolute;
  bottom: 20px;
  z-index: 300;
}
#bg_index ul#index_mark {
  position: relative;
  left: 50%;
  float: left;
  margin: 7px auto;
  list-style: none;
  padding: 0;
}
#bg_index ul#index_mark li {
  display: block;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  background-color: #FFF;
  margin:0 5px;
  border-radius:7px;
  -moz-border-radius:7px;
  -webkit-border-radius: 7px;
  float: left;
  position: relative;
  left: -50%;
  -moz-box-shadow: 0 0 5px #000;
  -webkit-box-shadow: 0 0 5px #000;
  box-shadow: 0 0 5px #000;
}
#bg_index ul#index_mark li.hover {
  opacity: 0.8;
}
#bg_index ul#index_mark li.current {
  background-color: #FFF;
  -moz-box-shadow: 0 0 8px #000;
  -webkit-box-shadow: 0 0 8px #000;
  box-shadow: 0 0 8px #000;
}

/*
#bg_index ul#index_alt {
  position: relative;
  l eft: 50%;
  f loat: left;
  width: 100%;
  list-style: none;
}
#bg_index ul#index_alt li {
  position: absolute;
  top: -3em;
  l eft: -50%;
  w idth: 100%;
  background-color: #FFF;
}
*/

/*
#node-441 .kds_prv_btn,
#node-441 .kds_nxt_btn {
  width: 30px;
  height: 46px;
  position: absolute;
  top: 152px;
  background-image: url(img/slider_btn.png);
  text-indent: -9999px;
}
#node-441 .kds_prv_btn {
  left: -30px;
  background-position: 0 0;
}
#node-441 .kds_prv_btn.hover {
  background-position: 0 -46px;
}
#node-441 .kds_nxt_btn {
  right: -30px;
  background-position: -30px 0;
}
#node-441 .kds_nxt_btn.hover {
  background-position: -30px -46px;
}
*/

/*===========================================
■言語切り替え
===========================================*/
/* 右上バージョン */
#lang_switch {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  /*border-left: 1px solid #000;
  border-bottom: 1px solid #000;*/
  margin: 0;
  padding: 0;
}
#lang_switch li {
  list-style-type: none;
  float: left;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  z-index: 100;
}
#lang_switch .txt {
  text-shadow:
  1px 1px 1px #333,
  -1px 1px 1px #333,
  1px -1px 1px #333,
  -1px -1px 1px #333;
  color: #FFF;
  font-size: 12px;
  text-decoration: none;
  display: block;
  padding: 0 7px 0 15px;
  background: url(img/lang_mark_arw.png) 2px 2px no-repeat;
  background-color: #000;
  background-color: rgba(0,0,0,1);
  opacity: 0.8;
}
#lang_switch li.current .txt {
  color: #FFF;
  text-decoration: none;
  background: url(img/lang_mark_maru.png) 2px 2px no-repeat;
  background-color: #999;
  background-color: rgba(50,50,50,0.5);
}
#lang_switch li a:hover {
  opacity: 1;
}
/* ロゴ下バージョン */
#jn_switch {
  position: absolute;
  z-index: 999;
  top: 165px;
  left: 34px;
  margin: 0;
  padding: 0;
  /*border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;*/
  border: 1px solid #CCC;
}
#jn_switch li {
  list-style-type: none;
  float: left;
  b order-left: 1px solid #000;
  b order-bottom: 1px solid #000;
  z -index: 100;
}
#jn_switch .txt {
  text-indent: -9999px;
  display: block;
  width: 99px;
  height: 19px;
}
#jn_switch .jp .txt {
  background: url(img/jnswitch_j.png) 0px -19px no-repeat;
}
#jn_switch .en .txt {
  background: url(img/jnswitch_e.png) 0px -19px no-repeat;
}
#jn_switch .jp a.txt,
#jn_switch .en a.txt {
  background-position: 0px 0px;
}
#jn_switch a.txt:hover {
  background-position: 0px -38px;
}