@charset "utf-8"; /*
表示側＋PC表示時のみ参照するCSS
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.br_pc:before {
	content: "\A";
	white-space: pre; /* ← あわせてこれを指定しないと改行しない場合があるらしい */
}
.br_sp:before {
	content: "";
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ローカルナビ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.family_navi li ul.children {
    display: none;
}

ul.family_navi {
    overflow: hidden;
    width: 1100px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid #d5d5d5;
    padding: 25px 0 20px;
}

ul.family_navi li {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-bottom: 7px;
}

ul.family_navi li:not(:first-child) {
    margin-left: 50px;
}

ul.family_navi li a {
    font-family: "Noto Sans Japanese";
    font-size: 16px;
    font-weight: normal;
    position: relative;
}

ul.family_navi li[class*='current'] a, 
ul.family_navi li a:hover {
    text-decoration: none;
}

ul.family_navi li:before {
    content: '\f105';
    font-family: FontAwesome;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 3px;
    left: 0;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #cecece;
}

ul.family_navi li[class*='current']:before, 
ul.family_navi li:hover:before {
    background: #676767;
}

ul.family_navi > li > a:after {
    content: "";
    background-color: #3c2a22;
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 0px;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transition: .16s ease-in-out;
    -webkit-transition: .16s ease-in-out;
    -moz-transition: .16s ease-in-out;
    -ms-transition: .16s ease-in-out;
    -o-transition: .16s ease-in-out;
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
}

ul.family_navi > li[class*='current'] > a:after, 
ul.family_navi > li:hover > a:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ディスプレイ右サイドの固定エリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#side_fixed {
    position: fixed;
    right: -18px;
    top: 50%;
    margin-top: -200px;
    z-index: 100;
    -webkit-transition: right 0.2s linear;
    -ms-transition: right 0.2s linear;
    -moz-transition: right 0.2s linear;
    transition: right 0.2s linear;
}
#side_fixed:hover {
    right: 0px;
}
#side_fixed img:hover {
    opacity:1;
}
@media screen and (max-width: 1100px) {
  #side_fixed {
    right: -69px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
画像ロールオーバー時のフェード効果 & 電話番号リンクへのCSS初期化
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a img:hover{
    opacity:.7;
}
a img.no_fade:hover,
a[href*="tel:"] img:hover{
    opacity:1;
}
a[href*="tel:"],
a[href*="tel:"]:hover {
    cursor: default;
    text-decoration: none;
    color: inherit !important;
}

a img{
    box-shadow: #000 0 0 0;/* CSSアニメーションで画像を透過させた際に1pxズレるバグを解消するおまじない */
    -webkit-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿系リスト（キューブタイプ）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.post_list.cubic {
    padding-left:50px;
    padding-right:50px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー下エリア（トップのみ）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#front_header_section {
    /*width: 1100px;*/
    /*margin: 0 auto 40px;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
LPのフォントサイズ拡大(1カラムの場合は通常サイズにしたいため再検討)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lp .font_m {
    font-size: 18px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用クラス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.m_btm_large {margin-bottom: 100px;}
.btn a:hover {
    opacity:.8;
}
.only_sp {
    display: none;
}
br.only_sp {/* この手法はIE未対応のため使用禁止 */
    /*content: "";*/
    /*display: inline;*/
    /*margin-right: -.2em;*/
}
.hdn {
    overflow:hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

/* リンクエリアの拡張 */
.biggerlink .item:hover, .biggerlink li:hover {
    /*background-color: #f1f1f1;*/
    /*background-color: rgba(0,0,0,.1);*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フレームデザイン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.base_wrap {
    width: 1100px;
    margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ウィジェット(バナーBOX)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#front_header_section .bnr_box {
}

#front_header_section ul.bnr_box {
}

#front_header_section ul.bnr_box li {
    float: left;
    margin-left: 10px;
    width: 320px;
    box-sizing: border-box;
}

#front_header_section ul.bnr_box li .thumb {
    text-align: center;
}

#front_header_section ul.bnr_box li:first-child {
    margin-left: 0;
}

#sub_area .bnr_box li {
    margin-top: 15px;
}

#sub_area .bnr_box li:first-child {
    margin-top: 0;
}

.home #sub_area .bnr_box_wrap {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー(サイトタイトル)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#title_frame {
    /*display: none;*/
}

#title_area {
    padding: 5px 0;
}

#title_area a {
    color: #FFF;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー(インフォメーション)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header_frame {
    background: #fff;
}

#header_area {
    padding: 10px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビの固定
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header_fixed_area {
    background: #fff;
    width: 100%;
    z-index: 100;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（上下段共通＆親子共通のスタイル）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.gnavi {
    text-align: center;
}

ul.gnavi li {
}

ul.gnavi a {
    display: block;
    padding: 10px;
}

ul.gnavi li:hover a {
    text-decoration: none;
}
/* HOMEマーク */

ul.gnavi img[src*="home.png"] {
    /*margin-right: 5px;*/
    vertical-align: -3px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（上下段共通＆親のみのスタイル）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.gnavi {
    display: table;
    width: 100%;
}

ul.gnavi > li {
    display: table-cell;
    vertical-align: middle;
}
/* 子メニューを持つ親メニュー */
ul.gnavi > li > a.arrow {cursor:pointer;}
ul.gnavi > li > a.arrow:after {margin-left:2px;content:'▼';}
ul.gnavi > li > a.arrow.top:after {content:'▲';}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（上下段共通＆子のみのスタイル）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.gnavi > li {
    position: relative;
    z-index: 1;
}

ul.gnavi ul {
    display: none;
    position: absolute;
    width: 100%;
    background: #ccc;
    white-space: nowrap;
    min-width: 100%;
    width: auto;
    text-align: left;
}

ul.gnavi ul a {
    color: #fff;
    font-size: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（上段）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#gnavi_frame {
    background: #ddd;
}
#gnavi_frame a {
    color: #000;
    padding-top: 8px;
    padding-bottom: 6px;
    font-size: 13px;
}
/* アクティブ状態（display:table-cellを使用するためAではなくLIに変化をつける） */
#gnavi_frame li[class*='current'] a,
#gnavi_frame li:hover a {
    background: #eee;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（下段）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#gnavi_frame2 {
    /*border-bottom: 1px solid #fff;*/
    background: #ccc;
}
/* 親メニューのみ */
#gnavi_frame2 ul.gnavi > li {
    min-width: 90px;
}
#gnavi_frame2 ul.gnavi > li > a {
    padding-top: 14px;
    padding-bottom: 14px;
    color: #fff;
    font-size: 16px;
}
/* 親メニューのみ(アクティブ状態)（display:table-cellを使用するためAではなくLIに変化をつける） */
#gnavi_frame2 ul.gnavi > li[class*='current'],
#gnavi_frame2 ul.gnavi > li:hover {
    background:#ddd;
}
#gnavi_frame2 ul.gnavi > li[class*='current'] > a,
#gnavi_frame2 ul.gnavi > li:hover > a {
    color: #fff;
}
/* 子メニューのみ(アクティブ状態) */
#gnavi_frame2 ul.gnavi ul li:hover {
    opacity:.7;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー(プロモ)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#promo_frame {
    margin-bottom: 30px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー(動画)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
.top_movie{
	margin:15px auto;
	background: #ddd;
	padding:20px;
}
.top_movie iframe{
    height: 250px;
    width: 450px;
}
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
コンテンツエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contents_frame {
}
#contents_area {
    padding: 0 0 50px;
}
body:not(.home) #contents_area {
    padding-top: 50px;
}
body #contents_area2 {
    margin-bottom: 50px;
}
.one_column.width_auto #contents_area2{
    width: auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
メインカラム
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main_area {
    /*width: 800px;*/
    width: 780px;
}
.column_a #main_area {
    float: right;
}
.column_b #main_area {
    float: left;
}
.one_column #main_area {
    float:none;
	margin-left:auto;
	margin-right:auto;
	width:900px;
}
.one_column.wide_type #main_area,
.one_column.post-type-archive-bukken #main_area,
.one_column.post-type-archive-works #main_area {
    width: 1100px;
}
.one_column.width_auto #main_area {
	width:auto;
}

#main_area .article_inner {
    /* border: 1px solid #ddd; */
    /* padding: 49px; */
    /*padding: 50px;*/
    background: #fff;
    /*overflow: hidden;*/
}
.home.one_column #main_area .article_inner {
    border: none;
    padding: 0;
}
.home.one_column .sns_btns {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

#main_area > * > * > * > .editor_area {
    min-height: 300px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
メインカラム(お客様の声)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
*.voice_wrap {
    margin: 0 0 15px;
}
*.voice_wrap .left{
    width: 230px;
}
*.voice_wrap .right{
    width: 450px;
}
*.voice_wrap th{
    width: 90px;
}
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
サイドバー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sub_area {
    width: 280px;
}

.column_a #sub_area {
    float: left;
}

.column_b #sub_area {
    float: right;
}
.one_column #sub_area {
    display:none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
サイドバー(テーマ別リスト)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
.theme_list{
	border-left:solid 1px #cdcdcd;
	border-right:solid 1px #cdcdcd;
	border-bottom:solid 1px #cdcdcd;
	padding: 12px 12px 2px;
}
.theme_list li{
	border-top:1px dotted #555;
	padding: 10px 5px 10px 24px;
	background: url(../cyber-child/images/li01.png) no-repeat 0px 10px;
}
.theme_list li:first-child{
	border-top:none;
	padding: 0px 5px 10px 24px;
	background: url(../cyber-child/images/li01.png) no-repeat 0px 0px;
}
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
    /* margin-top: 50px; */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(メールマガジン)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#mm_frame {
    background: #bcdff6;
    padding: 20px 0;
}

div#mm_frame .mm_wrap {
    display: table;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
}

div#mm_frame .mm_wrap > * {
    display: table-cell;
    vertical-align: middle;
    padding-right: 20px;
}

div#mm_frame .mm_wrap .form input[type="text"] {
    width: 200px;
    border: 0;
    margin-right: 10px;
    border-radius: 0;
}

div#mm_frame .mm_wrap .form input[type="submit"] {
    background: #09f;
    color: #fff;
    padding: 10px 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(サービス一覧)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
#service_area {
    margin: 20px auto;
}
#service_area ul {
    margin: 10px -10px 20px;
}
#service_area li {
    margin: 0 10px;
    width: 230px;
    float:left;
}
#service_area .title {
    margin: 10px 0 5px;
    font-size: 15px;
    font-weight: bold;
}
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(SNS)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
#social_area {
    padding: 15px 0;
}
#social_area > * {
	float: left;
	margin-left: 10px;
	width:320px;
}
#social_area > *:first-child {
	margin-left: 0;
}
#social_area iframe {
	width: 100%!important;
    background: #fff;
}
#social_area .gp > * {
    width: 100%!important;
}
#social_area .tag_cloud {
    border: solid 1px #ccc;
    padding: 10px;
    width: 238px;
    height: 258px;
    overflow:hidden;
    background: #fff;
    display: none;
}
#social_area .tag_cloud .header{
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: -10px -10px 10px;
}
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(ナビ)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
#f_menu_area a{
	color: #333;
}
#f_menu_frame {
    background: #ecedf6;
}
#f_menu_area {
    text-align:center;
    padding: 15px 0 10px;
}
#f_menu_area ul{
    display: inline-block;
}
#f_menu_area li{
    float: left;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #C5AB74;
}
#f_menu_area li:first-child{
	border-left:0;
	padding-left:0;
	margin-left:0;
}
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(下エリア)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#footer_bottom_section {
    margin: 0;
    font-size: 12px;
    text-align:left;
    color: #585858;
    border-top: 1px solid #cdcdcd;
    padding-top: 15px;
}
div#footer_bottom_section td{
	vertical-align:top;
	padding-top:15px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(インフォメーション)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer_area a {
    color: #000;
}

#footer_frame {
    background: #fff;
    /* margin-top: 100px; */
}

#footer_area {
    padding: 50px 0 30px;
}

#footer_area .area01 {
    float: left;
}

#footer_area .logo {
    /*margin-bottom: 20px;*/
}

#footer_area .area02 {
    float: left;
    margin-left: 50px;
}

#footer_area .area03 {
    float: right;
    width: 380px;
}
#footer_area form#searchform input[type="text"] {
    background: #fff;
    border:1px solid #d4d4d4;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(ナビ)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#footer_middle_section {
    overflow: hidden;
}

div#footer_middle_section > aside {
    float: left;
}

div#footer_middle_section > aside > div {
    padding-top: 10px;
    padding-left: 20px;
}

div#footer_middle_section .textwidget {
    padding-left: 5px;
    margin-top:10px;
}

div#footer_middle_section ul {
    /*width: 200px;*/
}
div#footer_middle_section ul li:before{
    content: "\f0da";
    font-family: FontAwesome;
    font-size: 1.2em;
    line-height: 1;
    margin-right: 5px;
}

div#footer_middle_section #nav_menu-2 {
    border-left: 1px solid #ccc;
}

div#footer_middle_section #nav_menu-3 {
    border-left: 1px solid #ccc;
}
div#footer_middle_section #nav_menu-3 ul{
}
div#footer_middle_section #nav_menu-3 li{
	display:inline-block;
	margin-right:1em;
}

div#footer_middle_section p.home:before {
    content: url(../cyber-child/images/home.png);
    vertical-align: -2px;
    margin-right: 6px;
    margin-left: -20px;
    display: inline-block;
}

div#footer_middle_section p.home {
    margin-bottom: 10px;
}

div#footer_middle_section p.line:after {
    content: '';
    margin-left: 10px;
    display: inline-block;
    height: 1px;
    width: 50px;
    background: #ccc;
    vertical-align: middle;
}

div#footer_middle_section li {
	margin-bottom:8px;
}
div#footer_middle_section ul ul {
	margin-top:8px;
}
div#footer_middle_section ul ul ul {
	display:none;
}

div#footer_middle_section li li:before {
    content: '-';
    margin-right: 10px;
    color:#333;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(インフォメーション2)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer_area2 {
    padding: 30px 0;
    text-align:center;
    font-size:14px;
}
#footer_area2 .logo{
    margin-bottom:20px;
}
#footer_area2 .logo img{
    width:200px;
}
#footer_area2 .addr{
    margin-bottom:10px;
}
#footer_area2 .copy{
    margin-bottom:20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(コピーライト)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#copy_area {
    padding: 20px 0;
}

#copy_area, #copy_area a {
    color: #ffffff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(トップへ戻る)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.to_page_top {
    /*font-size: 14px;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トップページのプロモスライダーに限ったカスタマイズ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#promo_area .bx-wrapper .bx-prev {
	left: 50%;
	margin-left: -500px;
}

#promo_area .bx-wrapper .bx-next {
	right: 50%;
	margin-right: -500px;
}

/* ページャー位置の調整 */
#promo_area .bx-wrapper .bx-pager {
	bottom: 10px!important;
}
#promo_area .bxslider > li{
    transition: all 1s;
    opacity: 0.3;
}
#promo_area .bxslider > li.active{
    opacity:1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
スライダー（プロモ）全幅タイプ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* bxslider本体のCSSが画像をブロック要素化しているが故の調整 */
#promo_area .bx-wrapper img {
	height:100%;/* この記述が無いと画像の高さが確保されない(iPad)。但し、デバイス毎に高さが変動するスマホサイトではこの記述方法は禁止 */
}

#promo_frame.wide {
    overflow-x:hidden;/* スライド3枚分（3600px）の横スクロールバーが表示されることを防ぐ */
}
#promo_frame.wide #promo_area {
    height: 518px;
    width: 1300px;/* スライド1枚分の横幅 */
    margin: 0 auto;
    position: relative;
}
#promo_frame.wide #promo_area > div{
    width: 3900px;/* スライド3枚分の横幅 */
    position: absolute;
    left: 50%;
    margin-left: -1950px;
}


