
@import url("slick.css");

/* ロゴのフェードイン */
.fadeOut {
    background: #FFF;
    position: fixed;
    display:flex;
    justify-content: center;
    align-items: center;
  top: -20px;
    height: 120vh;
    width: 100vw;
    z-index: 9000;
}
.fadeOut p {
    display: none;
    z-index: 9999;
    width: 280px;
}



/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%; 
    left: 1%;
}
 
.slider img {
    border: 1px solid #154261;
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}
 
 /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
 
.slider .slick-slide {
    margin:0 10px;
}
 
 /*矢印の設定*/
 
 /*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}
 
 .slick-prev {/*戻る矢印の位置と形状*/
    left: -1%;
    transform: rotate(-135deg);
}
 
.slick-next {/*次へ矢印の位置と形状*/
    right: -3%;
    transform: rotate(45deg);
}
 
 /*ドットナビゲーションの設定*/
 
.slick-dots {
    text-align:center;
    margin:20px 0 0 0;
}
 
.slick-dots li {
    display:inline-block;
    margin:0 5px;
}
 
.slick-dots button {
    color: transparent;
    outline: none;
    width:16px;/*ドットボタンのサイズ*/
    height:16px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    border: none;
    background:#154261;/*ドットボタンの色*/
}
 
.slick-dots .slick-active button{
    background:#57A897;/*ドットボタンの現在地表示の色*/
}

.news-list{
    list-style: none outside;
    width: 95%;
    height: 60vh;
    overflow-y: scroll;
	background: #eee;
	border-radius: 10px;
	
}
.item{
    border-bottom: 5px solid #999999;
    max-width: 90%;
}

.item > a{
	text-decoration:none;
}