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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ディスプレイ右サイドの固定エリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sideFixed {
    position: fixed;
    right: 0px;
    top: 250px;
    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;
}
#sideFixed:hover {
    right: 0px;
}
@media screen and (max-width: 1100px) {
  #sideFixed {
    right: -50px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
画像ロールオーバー時のフェード効果
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a img:hover{
    opacity:.7;
}
a img.no_fade:hover{
    opacity:1;
}
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;
}

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

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フロントページのみの表示エリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#frontHeaderSection {
    margin-bottom: 30px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用クラス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.m_btm_large {margin-bottom: 100px;}
.btn a:hover {
    opacity:.8;
}
.only_sp {
    display: none;
}
.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);*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
多数列リスト（構造のみを定義）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 2列リスト */
.col2 {
    margin-left: -4%;
}

.col2 li {
    float: left;
    width: 46%;
    margin-left: 4%;
}

/* 3列リスト */
.col3 {
    margin-left: -1%;
    margin-right: -1%;
}

.col3 li {
    float: left;
    width: 32%;
    margin-left: 1%;
}

/* 4列リスト */
.col4 {
    margin-left: -1%;
}

.col4 li {
    float: left;
    width: 24%;
    margin-left: 1%;
}

/* 5列リスト */
.col5 {
    margin-left: -1%;
}

.col5 li {
    float: left;
    width: 19%;
    margin-left: 1%;
}

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

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

#frontHeaderSection ul.bnrBox {
}

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

#frontHeaderSection ul.bnrBox li .thumb {
    text-align: center;
}

#frontHeaderSection ul.bnrBox li:first-child {
    margin-left: 0;
}

#subArea .bnrBox li {
    margin-top: 15px;
}

#subArea .bnrBox li:first-child {
    margin-top: 0;
}

.home #subArea .bnrBoxWrap {
    display: none;
}

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

#titleArea {
    padding: 5px 0;
}

#titleArea a {
    color: #FFF;
}

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

#headerArea {
    padding: 10px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビの固定
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#gNaviWrap {
    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;
}

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

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


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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー(動画)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
.topMovie{
	margin:15px auto;
	background: #ddd;
	padding:20px;
}
.topMovie iframe{
    height: 250px;
    width: 450px;
}
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
コンテンツエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contentsFrame {
}
#contentsArea {
    /*padding: 30px 0 80px;*/
    padding: 0 0 80px;
}
#contentsArea2 {
    margin-bottom: 30px;
}
#breadNav {
    margin: 10px auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
メインカラム
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#mainArea {
    width: 800px;
}

.columnA #mainArea {
    float: right;
}

.columnB #mainArea {
    float: left;
}

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

#mainArea > * > * > * > .editorArea {
    min-height: 300px;
}

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

.columnA #subArea {
    float: left;
}

.columnB #subArea {
    float: right;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
サイドバー(テーマ別リスト)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
.themeList{
	border-left:solid 1px #cdcdcd;
	border-right:solid 1px #cdcdcd;
	border-bottom:solid 1px #cdcdcd;
	padding: 12px 12px 2px;
}
.themeList li{
	border-top:1px dotted #555;
	padding: 10px 5px 10px 24px;
	background: url(../cyber-child/images/li01.png) no-repeat 0px 10px;
}
.themeList 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; */
}

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

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

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

#footerArea {
    padding: 50px 0;
}

#footerArea .area01 {
    float: left;
}

#footerArea .logo {
    margin-bottom: 30px;
}

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

#footerArea .area03 {
    float: right;
    width: 380px;
}

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

div#footerMiddleSection > aside {
    float: left;
}

div#footerMiddleSection > aside > div {
    padding-left: 20px;
}

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

div#footerMiddleSection ul {
    /*width: 200px;*/
}

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

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

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

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

div#footerMiddleSection li {
    padding-left: 20px;
    text-indent: -18px;
}

div#footerMiddleSection li:before {
    font-family: FontAwesome;
    content: '\f0da';
    font-size: 1.2em;
    margin-right: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(インフォメーション2)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footerFrame2 {
    background: #fff;
}

#footerArea2 {
    padding: 20px 0;
    border-top: 1px solid #ccc;
}

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

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SNS(記事下のFB&TWカスタムシェアボタン)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.snsShare a {
    font-size: 2em;
    line-height: 3em;
}


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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
スライダー（プロモ）全幅タイプ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.slide_single.wide {
    overflow-x:hidden;/* スライド3枚分（3600px）の横スクロールバーが表示されることを防ぐ */
}
.slide_single.wide #promoArea {
    height: 480px;
    width: 1100px;/* スライド1枚分の横幅 */
    margin: 0 auto;
    position: relative;
}
.slide_single.wide #promoArea > div{
    width: 3300px;/* スライド3枚分の横幅 */
    position: absolute;
    left: 50%;
    margin-left: -1650px;
}

.slide_single.wide .bx-wrapper .bx-prev {
	left: 1110px!important;
}
.slide_single.wide .bx-wrapper .bx-next {
	right: 1110px!important;
}


