@charset "utf-8";
/*=======================================================================
微調整css
=======================================================================*/
input, select {
	color:#1B120F;
}

img {
	vertical-align:bottom;
}

/*フレックスボックス設定*/
.flex {
	display: flex;
}

/*リンク画像ホバー時　フェード
=====================================*/
a img{
	transition: all 0.3s ease-out;
}
a:hover img{
	opacity: 0.8;
	transition: all 0.3s ease-out;
}
@media screen and (max-width: 780px){
	a img{
		transition:none;
	}
	a:hover img{
		opacity:1;
		transition:none;
	}
}


/*テキスト右寄せ左寄せ
====================================*/
.txt-left {text-align: left;}
.txt-right {text-align: right;}

/*フロート左右
============================================*/
.float-left {float: left;}
.float-right {float: right;}


/*横幅表示切り替え
============================================*/
@media screen and (min-width: 769px){
    .pc-n{display: none!important;}
}
@media screen and (min-width:581px) and ( max-width:768px) {
    .tab-n{display: none!important;}
}
@media screen and (max-width: 580px){
    .sp-n{display: none!important;}
}