@charset "utf-8";

/* 表示側＋PC表示時のみ参照するCSS */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル　＞　電話番号リンクへのCSS初期化
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 一部base.css→base-pc.cssに移動 2021-11-22 take */
a[href*="tel:"], a[href*="tel:"]:hover {
    text-decoration: none !important;
    color: inherit !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ビジュアルエディタ　＞　2列（左右を逆にする）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container00.pc_reverse {
    flex-direction:row-reverse;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
PCのみ中央揃えにする
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.align_c_pc {
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
アンカーリンク（ホバー時）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.remove_uline a:hover {
    text-decoration: underline;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用ボタン01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a.basic_btn01+a.basic_btn01 {
    margin-left: 1em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Post Snippets用
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*全幅要素*/
div#body_inner {
    overflow: hidden;
    min-width: 1200px;
}

@media (min-width: 900px) {
    .my_wide {
        margin-left: calc((100vw - 100%) / -2);
        width: 100vw;
    }
}

div#contentsArea {
    overflow: hidden;
}

div.w900 {
    width: 900px;
    margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.br_pc {
    /* flexの子要素としてカウントされた際に備え、brの高さを除去する(2019-05-23) */
    /* 高さを取るとエディター表示用のダミーの見た目がおかしくなるため一旦戻す(2020-03-23) */
    /* height:0; */
}

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

.br_sp:before {
    content: "";
    /* flexの子要素としてカウントされることを防ぐため完全に非表示にする(2019-05-23) */
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ローカルナビ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.child_navi_wrap {
    margin-top: 25px;
}

ul.child_navi {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

ul.child_navi a {
    padding: 10px;
    background: #eee;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}

ul.child_navi li ul.children {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ディスプレイ右サイド　＞　固定エリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#side_fixed_zone {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
画像ロールオーバー時のフェード効果
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
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;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用クラス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body:not(.editor_only) .only_sp {
    display: none;
}

br.only_sp {
    /* この手法はIE未対応のため使用禁止 */
    /*content: "";*/
    /*display: inline;*/
    /*margin-right: -.2em;*/
}

.hdn {
    overflow: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フレームデザイン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.base_width,
.pc_base_width {
    width: 1200px;
	/* base.cssに移動(2021-03-28)mk */
    /* margin: 0 auto; */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー(インフォメーション)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header_frame > .inner {
    padding: 10px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー　＞　グローバルナビの固定（JS連携）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
#header_fixed_zone {
    background-color: #fff;
}

[id="header_fixed_zone"].fix_exe {
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.3);
}
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（上段）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#h_navi_sub {
    display: none;
    background-color: #ddd;
}

#h_navi_sub ul {
    display: flex;
    justify-content: space-between;
}

#h_navi_sub ul li {
    width: 100%;
}

#h_navi_sub a {
    display: block;
    padding: 5px 10px;
    text-align: center;
}

#h_navi_sub a:hover {
    text-decoration: none;
}

#h_navi_sub li[class*='current'] a, #h_navi_sub li a:hover {
    background-color: #eee;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（下段／親のスタイル）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#h_navi_main .inner{
    justify-content:space-between;
    align-items:center;
}

body.pc_hamburger #h_navi_main .inner{
    width: auto;
    min-width: 1200px;
    padding: 0 83px 0 20px;
}

#h_navi_main ul:not(.sub-menu) {
    display: flex;
    justify-content: space-between;
}

#h_navi_main ul:not(.sub-menu) > li {
    position: relative;
    z-index: 1;
    width: auto;
    flex-grow: 1;
    min-width: 150px;
}

#h_navi_main ul:not(.sub-menu) > li.home {
    flex-grow: 0;
    min-width: auto;
}

#h_navi_main ul:not(.sub-menu) > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px 10px;
    font-size: 1.7rem;
    text-align: center;
}

#h_navi_main ul:not(.sub-menu) > li > a:hover {
    text-decoration: none;
}

#h_navi_main ul:not(.sub-menu) > li > a:after {
    content: "";
    display: block;
    width: 30px;
    height: 0;
    position: absolute;
    left: calc(50% - 15px);
    bottom: 0;
    opacity: 0;
    transition: .3s;
}

#h_navi_main ul:not(.sub-menu) > li[class*='current'] > a:after, #h_navi_main ul:not(.sub-menu) > li > a:hover:after {
    height: 5px;
    opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（下段／子のスタイル）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#h_navi_main ul.sub-menu {
    /* background-color: #ccc; */
    /* min-width: 100%; */
    display: none;
    /*---修正追加(2019-10-04)---*/
    position: absolute;
    white-space: nowrap;
    min-width: 230px;
    text-align: center;
    background-color: rgba(0, 0, 0, .8);
    padding: 10px 20px;
    top: 95px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

#h_navi_main ul:not(.sub-menu) > li:hover ul.sub-menu {
    display: block;
}

body.pc_hamburger #h_navi_main ul:not(.sub-menu) > li:hover ul.sub-menu {
    display: none;
}

#h_navi_main ul.sub-menu:before {
    content: "";
    border-width: 15px 15px 12px;
    border-color: transparent;
    border-style: solid;
    border-bottom-color: rgba(0, 0, 0, .8);
    position: absolute;
    top: -27px;
    left: calc(50% - 12px);
    z-index: 10;
}

#h_navi_main ul.sub-menu a {
    color: #fff;
    /* display: block; */
    /* padding: 10px; */
    /*---修正追加(2019-10-04)---*/
    font-size: 1.7rem;
    font-weight: bold;
    display: block;
    padding: 17px;
    position: relative;
}

#h_navi_main ul.sub-menu a:hover {
    text-decoration: none;
    /* background-color: #ddd; */
    /*---修正追加(2019-10-04)---*/
    opacity: .8;
}

#h_navi_main ul.sub-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

/* ドロップダウンする子ナビを母体から離した際の架け橋 */
#h_navi_main ul:not(.sub-menu) > li:hover:not(:first-child):after {
    content: '';
    width: 100%;
    height: 300%;
    position: absolute;
    left: 0;
    top: 100%;
    /* background: red; */
    z-index: -1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トップページ　＞　プロモ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#promo_frame {
    /*---（画面高さ - グロナビ - 一言）jsが効かない時用---*/
    height: calc(100vh - 63px - 63px);
    /*---可変対応（タブレット含める）---*/
    height: calc((var(--my_vh) * 100) - 63px - 63px);
    /*---ノート用（ノートPC高さ - グロナビ - 一言）---*/
    min-height: calc(648px - 63px - 63px);
    /*---タブレット縦用（画像原寸高さ）---*/
    max-height: 740px;
    background: url("../../cyber-child/images/promo01.jpg?var=20251105") no-repeat center/cover;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
固定ページ　＞　ローカルナビ(2019-10-31追加tky)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.child_navi {
    border-radius: 10px;
    overflow: hidden;
    justify-content: center;
}

ul.child_navi li {
    flex-grow: 1;
}

ul.child_navi a {
    padding: 16px 5px;
    background: #eeeeee;
    min-width: 100px;
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.child_navi li:not(:last-child) {
    border-right: 1px solid #fff;
}

/*---クラス追加(2021-08-11tky)---*/
/*　▼不都合が出た為停止(2021-09-01tky)
[class*='voice'] ul.child_navi a[href*='voice'],
[class*='works'] ul.child_navi a[href*='works'],
[class*='case'] ul.child_navi a[href*='case'],
[class*='event'] ul.child_navi a[href*='event'],
*/

/*---孫ページにもカレント表現つける(2021-09-01)mf---*/
ul.child_navi a:hover,
ul.child_navi li[class*='current'] a {
    background-color: #565656;
    color: #fff;
    text-decoration: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
コンテンツエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contents_frame {
}

body:not(.home) #contents_area {
    /*padding-top: 50px; 2020-11-26 take*/
    padding-top: 70px;
    margin-bottom: 75px;
}

.one_column.width_auto #contents_area {
    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; */
    /*---幅変更(2019-10-03)---*/
    width: 980px;
}

.one_column.wide_type #main_area,
.one_column.post-type-archive-works #main_area {
    width: 1200px;
}

.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: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
サイドバー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sub_area {
    width: 300px;
    /* 2019-09-09 フォントサイズ大きく変更 */
    font-size: 1.5rem;
}

.column_a #sub_area {
    float: left;
}

.column_b #sub_area {
    float: right;
}

.one_column #sub_area {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター(ナビ)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#f_navi_wrap {
    background: #ededed;
    padding: 30px 0;
}

div#f_navi_wrap a:hover {
    text-decoration: none;
}

div#f_navi_wrap .navi_a {
    overflow: hidden;
}

div#f_navi_wrap .navi_a ul:not(.sub-menu) {
    overflow: hidden;
    /* font-family: "Noto Sans Japanese"; */
    display: flex;
    /* justify-content: space-between; */
    /* padding-left: 30px; */
    /*padding-left: 40px; (2020-09-08-take) */
    padding-left: 70px;
    position: relative;
    flex-wrap: wrap;
}

div#f_navi_wrap .navi_a ul:not(.sub-menu) > li {
    /* float: left; */
    /* margin-right: 30px; */
    margin-right: 50px;
    /* margin-bottom: 20px; */
}

div#f_navi_wrap .navi_a ul:not(.sub-menu) > li.home {
    position: absolute;
    left: 0;
}

div#f_navi_wrap .navi_a ul:not(.sub-menu) > li:not(.home) {
    /* margin-left: 20px; */
}

div#f_navi_wrap .navi_a ul:not(.sub-menu) > li > a {
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
}

/*
div#f_navi_wrap .navi_a ul:not(.sub-menu) > li:not(.home) > a:before {
    content: '';
    width: 10px;
    height: 2px;
    background: #333;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -2px;
}
*/
div#f_navi_wrap ul.sub-menu ul.sub-menu {
    display: none;
}

div#f_navi_wrap ul.sub-menu {
    /* list-style-type: disc; */
    list-style-type: none;
    margin-left: 1.4em;
}

div#f_navi_wrap ul.sub-menu li:first-child {
    margin-top: 10px;
}

div#f_navi_wrap ul.sub-menu li {
    margin-top: 8px;
}

div#f_navi_wrap ul.sub-menu li a {
    font-size: 1.4rem;
}

#f_navi_sub {
    margin-top: 15px;
}

div#f_navi_other > * {
    /* margin-top: 40px; */
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
}

div#f_navi_other ul {
    float: left;
    margin-top: 10px;
}

div#f_navi_other ul li {
    display: inline-block;
}

div#f_navi_other ul li:not(:last-child) {
    padding-right: 10px;
    border-right: 1px solid;
    margin-right: 10px;
}

#f_navi_other p.copy_link {
    float: left;
    margin-top: 10px;
}

#f_navi_other .footer_search {
    float: right;
}

#f_navi_other form#searchform input[type="text"] {
    border: 1px solid #ddd;
    margin: 0;
    width: 300px;
    background: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター　＞　コピーライトのエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#copy_area {
    padding: 15px 0;
    text-align: center;
}

div#copy_area, div#copy_area a {
    color: #fff;
}

/*div#copy_area .by {
    margin-left: 1em;
}*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
JQプラグイン　＞　Bxslider　＞　トップページのプロモスライダーに限ったカスタマイズ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#promo_area .bxslider > li {
    transition: all 1s;
    opacity: 0.3;
}

#promo_area .bxslider > li.active {
    opacity: 1;
}

/* コントロール（「次へ」「前へ」）のカスタマイズ */
#promo_area .bx-wrapper .bx-prev {
    left: 50%;
    margin-left: -590px;
}

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

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

#promo_frame.wide {
    overflow-x: hidden;
    /* スライド3枚分（3600px）の横スクロールバーが表示されることを防ぐ */
}

#promo_frame.wide #promo_area {
    height: 478px;
    width: 1200px;
    /* スライド1枚分の横幅 */
    margin: 0 auto;
    position: relative;
}

#promo_frame.wide #promo_area > div {
    width: 3600px;
    /* スライド3枚分の横幅 */
    position: absolute;
    left: 50%;
    margin-left: -1800px;
}
