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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
「font.css」と同一の内容（PCでは後読みによるチラツキを回避するため、点数を犠牲にして後読みを廃止）2020-07-16mk
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

/* ▼サイトの基本となるフォントファミリーの指定 */
@font-face {
	font-family: "my_gothic";
	font-weight: 400;
    /* src:url('font/noto/noto_sans_cjk_r.woff') format('woff'); */
    src:url('font/yu/yu_goth_m.woff') format('woff');
    /* src:url('font/hiragino/hira_kakugo_std_w3.woff') format('woff'); */
	font-display: swap;	
}
@font-face {
	font-family: "my_gothic";
	font-weight: 700;
    /* src:url('font/hiragino/hira_kakugo_std_w6.woff') format('woff'); */
    src:url('font/yu/yu_goth_b.woff') format('woff');
	font-display: swap;
}

@font-face {
    font-family: "my_mincho";
    src:url('./font/hiragino/hira_min_std_w3.woff') format('woff');
	font-display: swap;
}
@font-face {
    font-family: "my_mincho_w4";
    src:url('./font/hiragino/hira_min_std_w4.woff') format('woff');
	font-display: swap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
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: 18px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用クラス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.only_sp {
    display: none;
}

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

.hdn {
    overflow: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー　＞　グローバルナビの固定（JS連携）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header_fixed_zone {
/*---修正追加(2019-10-03)---*/
    background-color: #ccc;
}

[id="header_fixed_zone"].fix_exe {
/*---修正追加(2019-10-21)---*/
    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 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;
}

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

#h_navi_main ul:not(.sub-menu) > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px;
    color: #fff;
    /* font-size: 16px; */
    font-size: 17px;
	text-align: center;
}

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

#h_navi_main ul:not(.sub-menu) > li[class*='current'] > a, #h_navi_main ul:not(.sub-menu) > li > a:hover {
    background-color: #ddd;
}
#h_navi_main ul:not(.sub-menu) > li > a[href*='contact'] {
    background-color: #b6af98 !important;
    color: #fff;
}
#h_navi_main ul:not(.sub-menu) > li > a[href*='contact']::before {
    content: none !important;
}
#h_navi_main ul:not(.sub-menu) > li > a[href*='contact']:hover {
    background-color: #9b937d !important;
    color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（下段／子のスタイル）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#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;
}

#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;
    /* font-size: 12px; */
    /* display: block; */
    /* padding: 10px; */
	
/*---修正追加(2019-10-04)---*/
    /* font-size: 16px; */
    font-size: 17px;
    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 - 70px - 43px - 63px);
    /*---可変対応（タブレット含める）---*/
    height: calc((var(--my_vh) * 100) - 70px - 43px - 63px);
    /*---ノート用（ノートPC高さ - ヘッダー - グロナビ - 一言）---*/
    min-height: calc(648px - 70px - 43px - 63px);
    /*---タブレット縦用（画像原寸高さ）---*/
    max-height: 760px;
    background: url("../cyber-child/images/promo01.jpg?ver=20230616") 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: 18px;
    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;
}

ul.child_navi a:hover,ul.child_navi li.current_page_item a {
    background-color: #565656;
    color: #fff;
    text-decoration: none;
}

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

body:not(.home) #contents_area {
    padding-top: 50px;
    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;
	/* font-size: 14px; */
    /* 2019-09-09 フォントサイズ大きく変更 */
    font-size: 15px;
}

.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;
    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: 14px; */
    font-size: 15px;
    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: 13px; */
    font-size: 14px;
}

#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;
}
