@charset "UTF-8";
/*
    Template: loki
    Theme Name: LOKI CHILD
    Theme URI: https://loki-academica.co.jp
    Description: LOKIの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


/*SWELLのパンくずを記事名まで表示させるカスタマイズ*/

.p-breadcrumb__list {
    flex-wrap: wrap; //記事名が長い場合は折り返す
}
.p-breadcrumb__text {
    display: block!important; //記事名の表示
}
.p-breadcrumb__item:last-child span {
    opacity: 1; //記事名を半透明にしない
}

/* サイドバーに枠線をつける 
.c-widget {
border: solid 1px #f0f0f0;
padding: 10px;
}
.p-profileBox {
border: none;
}
.c-searchForm__s {
border: none;
}

*/

/*WordPressの管理バー（ツールバー）を下に表示*/
.logged-in {
    margin-top: -28px;
}
#wpadminbar {
    top: auto;
    bottom: 0;
}
.ab-sub-wrapper {
    top: -220px;
}
@media (max-width: 959px){
	.logged-in {
		margin-top: -46px;
	}
	.logged-in .l-header[data-spfix="1"] {
		top: 0;
	}
}


/*ボタンをふわふわさせる*/
.fuwafuwa {
animation-name:fuwafuwa;
animation-delay:0s;
animation-duration: 2.5s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite; 
}
 
@keyframes fuwafuwa {
0% {
transform: translateY(0);
}
50% {
transform: translateY(5px);
}
100% {
transform: translateY(0);
}
}