@charset "utf-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
イベント一覧を外部システム化したため、通常の子カテを非表示に(2021/11/22)mk
外部化をやめたため、再度表示させる(2022/3/14)mk
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
div#sub_area .widget_categories li.cat-item-8 .children{
    display:none;
}
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.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;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ブログ一覧
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.normal_post ul.post_archive li {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ローカルナビ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.child_navi_wrap {
    width: 1100px;
    margin: 30px auto 0;
    border: 1px solid;
    border-image: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/hr01.jpg) 1 repeat;
}

ul.child_navi {
    border-bottom: none;
    padding: 30px 30px 20px;
    text-align: left;
}

ul.child_navi li {
    padding-bottom: 0;
}

ul.child_navi li {
    padding-left: 35px;
    display: block;
    float: left;
    margin-bottom: 10px;
}

ul.child_navi li:not(:first-child) {
    margin-left: 0;
}

ul.child_navi li:not(:last-child) {
    margin-right: 50px;
}

ul.child_navi li a {
    font-size: 20px;
    font-weight: bold;
}

ul.child_navi li:before {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/check.png) no-repeat 50% / contain;
    top: -1px;
}

ul.child_navi li[class*='current']:before, ul.child_navi li:hover:before {
    background: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/check_active.png) no-repeat 50% / contain;
}

ul.child_navi > li > a:after {
    background-color: #d2ff00;
    height: 20px;
    z-index: -1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トップページのプロモスライダーに限ったカスタマイズ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* コントロール（「次へ」「前へ」）のカスタマイズ */
#promo_area .bx-wrapper .bx-controls-direction a {
    margin-top: -57px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ディスプレイ右サイドの固定エリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#side_fixed_zone {
    right: 0px;
    margin-top: -143px;
}

@media screen and (max-width: 1100px) {
    #side_fixed_zone {
        right: -80px;
    }
}

#side_fixed_zone p {
    margin-bottom: 8px;
    background: #ccc;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

#side_fixed_zone p:nth-child(1) {
    background-color: #D65E78;
}

#side_fixed_zone p:nth-child(2) {
    background-color: #003f62;
}

#side_fixed_zone p:nth-child(3) {
	display: none; /*資料請求削除に伴い非表示 2026-04-07 fuji*/
    background-color:#f1a209;
}

#side_fixed_zone a {
    color: #fff;
    display: block;
    font-size: 12px;
    width: 100%;
    height: 100%;
}

#side_fixed_zone a .s {
    font-size: 10px;
    display: block;
}

#side_fixed_zone a:hover {
    text-decoration: none;
    opacity: .8;
}

#side_fixed_zone .align_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#side_fixed_zone .inner:after {
    content: '';
    background-repeat: no-repeat;
    display: block;
    margin: 2px auto 0;
    transition: all .3s ease;
}

#side_fixed_zone a:hover .inner:after {
    transform: rotateY(180deg);
}

#side_fixed_zone p:is(.mm,.contact) .inner:after {
    background-image: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/icon_mail.png);
    width: 25px;
    height: 19px;
    margin-top: 5px;
}

#side_fixed_zone p:nth-child(3) .inner:after {
    background-image: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/icon_shiryo.png);
    width: 23px;
    height: 33px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー(インフォメーション)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header_frame .logo {
    width: 240px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

#header_frame .logo:hover {
    /*background: rgba(0, 0, 0, .1);*/
}

#header_frame .logo:after {
    content: "";
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, .7);
    transform: rotate(-45deg);
    position: absolute;
    top: -0%;
    left: -180%;
    transition: .5s ease-in-out;
}

#header_frame .logo:hover:after {
    left: 60%;
}

#header_frame td {
    padding: 0;
}

#header_frame td:first-child {
    width: 250px;
}

#header_frame .sns {
	padding-right: 70px;
}

#header_frame .btns {
    margin-top: -10px;
	overflow:hidden;
}

#header_frame .btns > * {
    font-size: 15px;
    background: #ccc;
    padding: 12px 10px 12px 50px;
    /* display: inline-block; */
    display: block;
    /* float: left; */
	/*---2019-08-01修正tky---*/
    float: right;
    border-radius: 0 0 5px 8px;
    margin-left: 2px;
    color: #fff;
    text-align: center;
    position: relative;
}

#header_frame .btns > *:before {
    content: '';
    background-repeat: no-repeat;
    position: absolute;
}

#header_frame .btns > *:hover {
	/* opacity:1; */
}

#header_frame .btns > *:hover:before {
    animation: up_down .3s 0s ease-in-out infinite alternate; 
}

#header_frame .shiryo {
	display: none; /*資料請求削除に伴い非表示 2026-04-07 fuji*/
    background: #f1a209;
}

#header_frame .shiryo:before {
    background-image: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/icon_shiryo.png);
    width: 23px;
    height: 33px;
    left: 15px;
    top: 5px;
}

#header_frame .mail {
    background: #003f62;
}

#header_frame .mail:before {
    background-image: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/icon_mail.png);
    width: 25px;
    height: 19px;
    left: 16px;
    top: 12px;
}

#header_frame .info {
    margin-top: 5px;
}

#header_frame .tel {
    font-family: 'Fjalla One', sans-serif;
    font-size: 28px;
    vertical-align: middle;
    margin-right: 10px;
}

#header_frame .tel:before {
    content: '';
    width: 46px;
    overflow: hidden;
    background: url(https://gift-home.net/wordpress/wp-content/themes/cyber-child/images/freedial.svg) no-repeat 50% / contain;
    height: 27px;
    display: inline-block;
    vertical-align: -2px;
    margin-right: 2px;
}

#header_frame .open {
	font-weight:bold;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
グローバルナビ（下段）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#h_navi_main {
    background: transparent;
}

#h_navi_main ul {
    padding-bottom: 7px;
}

#h_navi_main ul > li {
    border-right: 1px solid #ccc;
}

#h_navi_main ul > li:first-child {
    border-left: 1px solid #ccc;
    min-width: 60px;
    width: 60px;
}

#h_navi_main ul > li > a {
    color: #401505;
    font-weight: bold;
}

/* 親メニューのみ(アクティブ状態)（display:table-cellを使用するためAではなくLIに変化をつける） */
#h_navi_main ul > li[class*='current'], #h_navi_main ul > li:hover {
    background: transparent;
}

#h_navi_main ul > li[class*='current'] > a, 
#h_navi_main ul > li:hover > a {
    color: #000;
}

/* 子メニューのみ(アクティブ状態) */
#h_navi_main ul ul li:hover {
    opacity: 1;
}

#h_navi_main ul > li > a:after {
    content: "";
    background-color: #f1a209;
    width: calc(100% - 20px);
    height: 3px;
    display: block;
    position: absolute;
    bottom: 5px;
    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;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
スライダー（プロモ）全幅タイプ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#promo_frame {
    background:url(images/promo202312.jpg) no-repeat 50%;
	margin-bottom: 30px;
}

#promo_frame.wide #promo_area {
    height: 329px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#f_navi_wrap {
    background: #e2dcce;
}

span.open,
span.holiday {
    margin-left: 1em;
}
div#f_navi_wrap ul:not(.sub-menu) > li {
    margin-right: 30px;
}
div#f_navi_wrap p.copy_link a:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
}
ul.sub-menu {
    list-style-type: disc;
    margin-left: 1.4em;
}
div#f_navi_wrap ul:not(.sub-menu) > li:not(.home) > a:before {
    background: #f1a209;
}
div#f_navi_other > * {
    border-top: 1px solid #bfb6a1;
}
