@charset "UTF-8";
/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Copyright (c) Best Bridge LLC. All Rights Reserved.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Original source code and design structure.
Unauthorized reproduction prohibited.

閲覧・学習目的での参照は問題ありませんが、
本コードおよびデザイン構造の全部または一部を、
無断で複製・流用・再配布することを禁止します。

本コードは制作履歴・公開履歴・電子署名等により
権利保全を行っています。

本コード特有の
設計思想／構造設計／命名規則／記述順／レイアウト構成
には識別性があります。

一般的CSSとは異なる独自設計のため、
類似構造や類似記述は、
コード圧縮／難読化／改行変更／変数化後でも、
構造的特徴および設計パターンから
識別・照合可能です。

無断流用・模倣・構造複製が確認された場合、
利用停止要請・権利侵害通知・法的措置を含む
対応を行う場合があります。
*/

/*============================================
#top_newspick
============================================*/
#top_newspick{
position:relative;
/*--*/
display:block;
width:100%;
height:auto;
margin:0;
border:0;
padding:0;
}

/*============================================
#top_newspick>ul
============================================*/
#top_newspick>ul{
position:relative;
/*--*/
display:flex;
width:90%;
max-width:800px;
margin:0 auto 10px auto;
border-top:solid 3px #FC9;
border-right:solid 3px #FC9;
border-bottom:solid 3px #FC9;
border-left:solid 3px #FC9;
border-radius:7px;
padding:0;
/*--*/
flex-direction:row;/*方向*/
flex-wrap:wrap;/*改行*/
justify-content:space-between;/*横揃え*/
align-items:stretch;/*縦揃え*/
}

/*==左==*/
#top_newspick>ul>li:nth-of-type(odd){
position:relative;
/*--*/
display:flex;
flex-basis:28%;
height:auto;
margin:0;
border:0;
border-radius:5px 0 0 5px;
padding:10px;
background-color:#F29200;
/*--*/
justify-content:center;
align-items: center;
line-height:1.4;
font-size:0.9rem;
font-weight:normal;
color:#FFF;
}

@media screen and (max-width: 500px){
#top_newspick>ul>li:nth-of-type(odd){
flex-basis:100%;
border-radius:5px 5px 0 0;
padding:10px 5px;
}
}

/*==右==*/
#top_newspick>ul>li:nth-of-type(even){
position:relative;
/*--*/
display:block;
flex-basis:72%;
height:auto;
margin:0;
border-radius:0 5px 5px 0;
padding:10px;
background-color:#FFF
}

@media screen and (max-width: 500px){
#top_newspick>ul>li:nth-of-type(even){
flex-basis:100%;
border-radius:0 0 5px 5px;
}
}

#top_newspick>ul>li:nth-of-type(even)>p{
position:relative;
/*--*/
display:block;
width:100%;
height:auto;
margin:0;
border:0;
padding:5px;
background-color:#FFF;
/*--*/
text-align:left;
line-height:1.2;
font-size:0.9rem;
font-weight:normal;
color:#333;
}

#top_newspick>ul>li:nth-of-type(even)>p>a{
color:#F90;
border-bottom:solid 2px #F90;
}