/*iPad以上の端末から見た時（2カラムの時）*/
@media only screen and (min-width: 768px){
.l-footer .bottomFooter {
	padding: 30px 0; /*フッターエリアの余白*/
}
.l-footer .bottomFooter__navi {
	margin-bottom: 10px; /*フッターメニューとコピーライトの間のマージン*/
}
}

/*iPad未満の端末から見た時（フッター固定メニュー表示時）*/
@media only screen and (max-width: 767px){
.l-footer .bottomFooter {
	padding: 25px 0 45px; /*フッターエリアの余白*/
}
.l-footer .bottomFooter__navi {
	margin-bottom: 10px; /*フッターメニューとコピーライトの間のマージン*/
}
}

/* 番号なしリストスタイルの設定、黒丸● */

.content ul li::before{
   content:"・";
	transform: scale(2);
	padding-bottom: 0.1em;
}
.content ul li{
   padding-left: 1em;
}

/* 番号付きリストのズレを修正 */
.content ol>li:before {
	margin-top: 5px;
	width: 20px;
	height: 20px;
	line-height: 1.6rem;
}
.content ol li{
padding-left: 1.5em;
}

/* 見出しにかぶるリストを修正 */
.content ol, .content ul {
    margin-top: 3.5rem;
}

/* ボックス01 */
.content .box1 {
	padding: 1em 1em;
	margin-top: 2em;
	margin-bottom: 2em;
	background : #FDFDFD;/*背景色*/
	border: 1px solid #e7e7e7;
	font-size: 16px;
}
.box1 p {
    margin: 0; 
    padding: 0;
}
/* ボックス02 */
.content .box2 {
	padding: 1em 1em;
	margin-top : 2em;
	margin-bottom: 2em;
	border: 1px solid  #B0C4DE;
	background-color: #f8f9ff;
	font-size: 16px;
}
.box2 p {
    margin: 0; 
    padding: 0;
}

/* ボックス03 */
.content .box3 {
    position: relative;
    margin: 2em 0;
    padding: 1em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
	font-size: 16px;
}
.box3 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 17px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box3 p {
    margin: 0; 
    padding: 0;
}

/* 行間スペース */
.content > p, .content > ol, .content > ul, .content > .ep-box {
line-height: 1.9em;
margin: 40px 0px 0px 0px;
}

/*段落フォントカラー*/
p {
	font-size: 16px;
	color: #333333;
}

/* マーカー色 */
.marker01 {
	background: linear-gradient(transparent 0%, #b7dbff 0%);
    font-weight: bold;
}

.marker02 {
	background: linear-gradient(transparent 0%, #ffb7ff 0%);
    font-weight: bold;
}

/* お知らせのスクロールを停止する */
.infoHead__text {
	animation: initial;
	padding-left: 0;
	display: block;
	text-align: center;
}

/* チェックマークの位置を微調整 */
.ckmk {
	width: 17px;
	height: 17px;
	margin: 0 2px 6px 0;
}

/* 水平線の位置調整 */
.content .under {
	margin-top: 40px;
	margin-bottom: 40px;
}

/* 景品表示法 */
.widget, .widget-main, .u-shadow, .widget_block {
	padding: 1em 1em;
	margin-top: -32px;
	margin-bottom: 2em;
	box-shadow: none;
	background : #FAFAFA;/*背景色*/
}

/* 見出し下の空白調整 */
h2 {
	margin-bottom: -16px;
}
h3 {
	margin-bottom: -32px;
}
h4 {
	margin-bottom: -40px;
}

/*カードレイアウトの本文抜粋をなしにする*/
#viewCard:checked~.archive .archive__contents .phrase {display: none;}

/* --YouTubeサイズ調整-- */
.video {
position: relative;
height: 0;
padding: 30px 0 56.25%;
overflow: hidden;
}

.video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* TOPページのアイキャッチ画像上に表示されるカテゴリをスマホで非表示にする */
@media only screen and (max-width: 500px){
.eyecatch__cat {
display: none;
}
} 

/* 文字を小さくして右揃えにする */
.fontmin{
font-size: 11px;
text-align: right;
}