@charset "utf-8";
/*
Template Name: スマートフォン用スタイルシート
*/

@media screen and (max-width: 480px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ●style.css 画面の横幅が480px以下 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
body {
        height: 480px;
        margin: 0;
        padding: 0;
}
p {
        font-size: 14px;
        line-height: 1.6;
}
	
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 文字サイズ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#main .entry-content h2, #main .entry-content-i h2, #main .entry-content-s h2,
.entry-content, .entry-title, .entry-content-i .entry-title {
    font-size: 1.2em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ヘッダー */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	
#header-in {
	width: 96%;
	padding: 0 2% 10px;
    margin: 0;
}
#loader{
    top: 40%;
    left: 36%;
}
.caption-head {
	width: 90%;
    height: auto;
    margin: 0 auto;
    top: 22%;
    left: 0;
    right: 0;
    bottom: 0;
}
.caption-head p.on-head-title {
    font-size: 18px;
	margin-top: 10px;
}
	
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ハンバーガーメニュー*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	
#top-navi-bg{
	display: none;
}
#naviall{ display: none;}
#dro_navi {
	display: block;
	position: absolute;
	top: 15px;
    right: 15px;
	z-index: 100;
}
#nav-dr { 
	display: block;
}
.nav-unsh { display:none;}
#nav-op { 
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}
#nav-op span, #nav-op span:before, #nav-op span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-op span:before {
    bottom: -8px;
}
#nav-op span:after {
    bottom: -16px;
}
#nav-cl {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
#nav-con {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: #FCFCFC;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}
#nav-in:checked ~ #nav-cl {
    display: block;
    opacity: .5;
}
#nav-in:checked ~ #nav-con {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#nav-con ul, #nav-con ul.children {
    width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
    text-align: left;
	list-style-type: none;
	box-sizing: border-box;
}
#nav-con ul li, #nav_clo{
	width: 100%;
	height: auto;
	line-height: 60px;
	padding: 0 16px 0 20px;
	float: left; 
	background: url(img/navi_line.png) bottom repeat;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
}
#nav_clo{
	padding: 0;
	font-weight: bold;
	background: #EFEFEF;
	border: 3px #FFFFFF solid;
}
#nav_clo label{
	float: right;
	margin: 20px 10px auto auto;
}
#nav_clo span{
	transform: translateY(7px) rotate(-45deg);
}
#nav_clo span:before {
	opacity: 0;
}
#nav_clo span:after{
	transform: translateY(-16px) rotate(90deg);
}
#nav-con ul li:last-child{	
	border-bottom: 1px #EFEFEF solid;
}
#nav-con ul li .fa, #nav-con ul li .fas,
#nav-con ul li .fal, #nav-con ul li .fab{
	margin-right: 8px;
}
#nav-con ul li ul li{
	width: 100%;
	margin: 0 0 0 0;
	padding: 0 0 0 20px;
	box-sizing: border-box;
}
#nav-con ul li ul li:last-child{	
	border-bottom: none;
}
#nav-con ul li a{
	display: block;
	color: #333333;
    text-decoration: none;
}
#nav-con ul li a:hover{
	color: #FF8800;
    text-decoration: none;
    transition: 0.4s ease-in-out;
}
	
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* パンくずリスト */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.breadcrumbs {
    margin: 5px 10px 10px;
    padding: 0;
}
	
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* コンテイナー */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	
#main-box{
	width: 100%;
	margin: 0;
}
#container2r, #container2l,
#container1, #containerk2r,
#containerk2l, #containerk1, #containerk1{
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	border: none;
	box-shadow: none;
	clear:both;
}
#main-background{
	width: 100%;
	padding: 0;
	margin-left: 0;
	margin-right: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* カテゴリー・タグ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	
#container2l #cate_des, #container2r #cate_des, 
#containerk2l #cate_des, #containerk2r #cate_des, 
#containerk1 #cate_des, #containerk1 #main, #containerk1 #cate_des {
    width: 100%;
    margin-top: 3px;
    margin-right: 3px;
	padding: 20px 10px;
	margin-bottom: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* メイン */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#container2l #cate_main, #container2r #cate_main,
#containerk2l #cate_main, #containerk2r #cate_main,
#container2l #main, #container2r #main,
#containerk2l #main, #containerk2r #main{
	width: 98%;
	margin: 0 1%;
	padding: 0 10px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#main-background #cate_main {
    width: 100%;
    margin-left: 0;
	margin-right: 0;
    padding: 0;
    overflow: hidden;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 記事の一覧(TOP) */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#toppagemain .entry-content {
    width: 98%;
	margin-top: 20px;
	max-height: 330px;
}
	
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* アイキャッチ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.eye-catch-img {
	position: relative;
	width: 40%;
	margin: 0;
	clear:both;
}
.eye-catch-img img{
	width: 100%;
	margin: 0;
	clear:both;
}
#toppagemain .title_area_bottom {
    width: 55%;
    margin: 0;
    float: left;
}
@media screen and (max-width: 420px) {
.eye-catch-img {
	width: 80%;
	margin: 0 0 5px;
}
#toppagemain .title_area_bottom {
    width: 100%;
    margin: 0;
    clear:both;
}
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 続きを読む設定 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#toppagemain .link-next {
	margin: 220px 0 30px;
}
@media screen and (max-width: 440px) {
#toppagemain .link-next {
	margin: 120px 0 30px;
}
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* サイドメニュー　*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#side-left, #side-right {
	width: 98%;
	padding: 30px 10px;
	margin: 20px 1%;
	clear:both;
	box-sizing: border-box;
}	

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 最近の投稿 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#new-content {
    margin: 0 -30px;
    padding: 10px 30px;
    clear: both;
}
#new-content li {
    line-height: 136%;
	height: 75px;
    margin: 0 0 7px;
}
ul#eye_news li p,
#new-content ul#eye_news li p {
	max-height: 60px;
}
#side-left ul#eye_news .sub_new_img img, 
#side-left #new-content ul#eye_news .sub_new_img img, 
#side-right ul#eye_news .sub_new_img img, 
#side-right #new-content ul#eye_news .sub_new_img img {
	margin-top: 0;
}
ul#eye_news li p, #new-content ul#eye_news li p {
	max-height: 60px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* メルマガバナー */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#main .mail_signup{
	margin: 0 0 10px;
	padding: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 検索フォーム・検索ボタン */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#main #s, #main #s:focus{
	margin-top: 30px;
	width: 100%;
}
#main #searchsubmit {
	margin-top: 5px;
	margin-bottom: 30px;
	width: 100%;
}
@media screen and (max-width: 600px){
#footer_box_matome ul#eye_news .sf_daca,
#footer_box_matome ul#eye_news li .sub_date,
#footer_box_matome #eye_news p {
        width: 67%;
}
}
	
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* メルマガ・レビュー・キラー設定 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#mail_magazine .ybox_btn button.mailbtn {
	font-size:  0.7em;
	line-height: 5;
}
#mail_magazine .opt-in p {
	font-size: 0.8em;
    margin: 0 20px;
}
.opt_blue {
	padding: 20px 20px 0;
}
#mail_magazine h3 {
    font-size: 1.2em;
    padding: 10px 0 13px 30px;
}
#mail_magazine .ybox_btn button.mailbtn, #main .ybox_btn button.mailbtn {
	 width: 100%;
    margin: 20px 0 10px;
	height: 3em;
	font-size: 0.7em;
	line-height: 3em;
}
#about-privacy {
	width: 90%;
    margin: 10px 5% 0;
}
#main .entry-content h3, #main .entry-content-i h3, #main .entry-content-s h3 {
    font-size: 1em;
    margin: 0 0 10px;
}

	
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* フッターウィジェットエリア */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#footer_box_matome {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}
#footer_box_matome .mini_box,
#footer_box_matome .mini_box_center {
	width: 100%;
	padding: 0 10px;
	margin: 10px 0;
	clear: both;
    box-sizing: border-box;
}
}

@media screen and (max-width: 224px) {
	#wp-calendar{
	display: none;
}
}
@media screen and (max-width: 400px){
	/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 新ランキングA */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
.raa-title{
    padding: 15px 0 0 10px;
    font-size: 0.8em;
} 
}

/*--------------------------------------------------------------------------
このCSSファイルの無断配布及び商用販売を固く禁じます。
Copyright 株式会社Mithril All rights Reserved.
https://www.mithril-web.com/
--------------------------------------------------------------------------*/
