﻿@charset "UTF-8";

/* ============= Start Menu =================*/
.menu_head{
	width: 100%;
	margin:auto;
	min-width: 1100px;
}
.main_navigation:after{
	clear:both;
	content:"";
	display:block;
}
.main_navigation ul{
	list-style:none;
	padding: 0;
	position:relative;
	text-align: center;
	z-index: 1;
	margin: auto;
}

.main_navigation ul li{
	display:inline-block;
	text-align:center;
	position:relative;
	box-sizing:border-box;
}

.main_navigation ul li a{
	text-decoration:none;
	display:block;
	color: #343434;
	padding: 5px 27px;
	font-size: 15px;
}

.main_navigation ul li a:hover{
	color: #ffffff;
	background: #6c422a;
}

@media screen and (max-width: 480px) {
	.main_navigation{
		width: auto;
		min-width:inherit;
		margin: auto;
	}
 .main_navigation ul{
	list-style:none;
	border-bottom:0px;
	padding:0px;
	position:relative;
	width: auto;
}
.main_navigation ul li{
	display:block;
	text-align:center;
	width:100%;
	padding: 0;
	position:relative;
	box-sizing:border-box;
	border-bottom:1px solid #fff;
	margin-left:0px;
}

.main_navigation ul li a{
	text-decoration:none;
	display:block;
	/* color: #ffffff; */
	border-radius: 0;
	padding: 8px 0;
}
.main_navigation ul li a:before{
	display:none;
}
.main_navigation ul li:after{
	content:none;
}
}    
/* ============= End Menu =================*/


body
{
	color: #333;
	font-family:verdana,"ヒラギノ丸ゴ ProN W4","Hiragino Maru Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	line-height: 2.5em;
	font-size: 16px;
	background: #ffffff;/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}
*
{
	margin:0;
	padding: 0;
}
a
{
	color: #ff966a;
	text-decoration: none;
}
a:hover
{
	/* color: #FF952D; */
	text-decoration: underline;
}
p
{
	padding: 0;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 30px;
	margin: 0;
}
.Tittle_in_header
{
	clear: both;
	margin: auto;
	padding: 0;
	padding-bottom: 5px;
	width: 100%;
	background: #f4b499;
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
	box-shadow: 0 0 1px;
}
.Tittle_in_header:after
{
	content: "";
	display: block;
	clear: both;
}
.BODY_top
{
	width: 1100px;
	margin: auto;
	padding-top: 15px;
}
.BODY_top:after
{
	content: "";
	display: block;
	clear: both;
}
.web_title{
	width: 100%;
	min-width: 1100px;
	position: relative;
	margin-bottom: 5px;
	border-bottom: 1px solid #ffffff;
	/* background: #ffffff; */
}

h1
{
	color: #f5f5f5;
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	margin: 0;
	padding: 10px 0;
}
h3{
	padding-left: 18px;
	margin-top: 20px;
	font-size: 16px;
	color: #414141;
	/* background: #f7f7f7; */
	overflow: hidden !Important;
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
}

h2 {
    padding: 2px;
    color: #46484a;
    text-align: center;
    margin: 0;
    background-color: #ffede6;
    box-shadow: 0 2px 3px #222;
    margin-bottom: 10px;
    border: 2px solid #f4b499;
    border-radius: 5px;
    font-size: 16px;
}

/* ============== start main_render  ==================*/

.main_render{
	width:1100px;
	margin:auto;
	clear: both;
}

.site_image{
	width: 100%;
	margin:0;
	float: left;
}
.site_image img{
	width: 100%;
	margin: auto;
	margin-bottom: -11px;
}

.navi_bar{
	width: 20%;
	float: right;
	padding: 10px;
	border: 5px solid #ffffff;
	box-shadow: 0 0 10px inset;
	background: #ffffff;
}
.site_image:after,
.navi_bar:after,
.main_render:after
{
	content:"";
	display:block;
	clear:both;
}

.inner_navi {
    /* box-shadow: 0 0 1px; */
    overflow: hidden;
}
.inner_navi ul{
    margin:0px;
    padding:0px;
    list-style:none;

}
.inner_navi ul li{
    /* display: inline-block; */
    /* margin-right: -5px; */
}
.inner_navi ul li a{
    display:block;
    padding: 3.7px 20px;
    text-decoration:none;
    color: #323232;
    position:relative;
    /* text-align: center; */
    border-bottom: 1px solid #fff;
    font-size: 12px;
    margin: auto;
    transition: all 0.2s linear;
    text-indent: 10px;
}
.inner_navi ul li a:before{
	content: "✖";
	position:absolute;
	left: 0px;
	color: #272727;
}
.inner_navi ul li a:hover{
    /* background-color: rgb(255, 255, 255); */
    color: #49d6fe;
    transition: all 0.3s linear;
    letter-spacing: 1px;
} 
@media screen and  (max-width: 480px){
    .inner_navi{
        min-width: 100%;
    }
    .inner_navi ul li{
    	display:block;    	
    }
    .inner_navi ul li a{
    	display: block;
    	text-align: left;
    	color: #272727;
    }
    .inner_navi ul li a:hover{
    	background: #ffffff;
    }
    .inner_navi ul li a:after{
    	display:none;
    	width:0;
    	height:0;
    	border:none;
    }
}
/* ============== End navi_bar  ==================*/


/* ============== Start Menu Side Bar ==================*/

.nav_section {
    margin-bottom: 20px;
}
.nav_section ul{
    margin:0px;
    padding:0px;
    list-style:none;
}
.nav_section ul li{
    display:block;
}
.nav_section ul li a{
    display:block;
    text-decoration:none;
    padding: 5px;
    position:relative;
    background-color: rgba(255, 255, 255, 0.66);
    margin-bottom: 1px;
    color: #3a3a3a;
    border: 1px solid #ffffff;
    box-shadow: 0 0 1px;
    text-align: center;
}

.nav_section ul li a:hover{
	background: #f5b542;
	color: #383838;
}

@media   screen and (max-width: 480px){
   
.nav_section ul{
    margin:0px;
    padding:0px;
    list-style:none;
}
.nav_section ul li{
    display:block;
    text-align:center;
}
.nav_section ul li a{
    display:block;
    text-decoration:none;
    position:relative;
}

}
/* ============== End Menu Side Bar ==================*/

.content_section img
{
	width: 48%;
	float: right;
	margin-right: 15px;
	margin-top: 14px;
	margin-left: 20px;
	padding: 0;
	box-shadow: 0 0 1px #B3B3B3;
}
.list_article_post_sub .content_section img{
	width:40%;
	margin-top: 5px;
}

.image_format_01
{
	width: 40%;
	float: left;
	margin-right: 15px;
	margin-top: 10px;
	margin-left: 20px;
	padding: 5px;
	box-shadow: 0 0 1px #363636;
	background: #efefef;
	border: 2px solid #ffffff;
}
.image_format_02
{
	width: 95%;
	margin: auto;
	padding: 10px;
	border-bottom: 1px solid #ddd;
	background: #ffffff;
	border-top: 1px solid #c4c4c4;
	border-bottom: 1px solid #9f9f9f;
}
.image_format_03
{
	width: 99%;
	margin: auto;
	padding: 1px;
	background: #ffffff;
	border-bottom: 2px solid #ddd;
}
.image_format_01:after,.image_format_02:after,.image_format_03:after
{
	content:"";
	display:block;
	clear:both;
}


.list_article_post_main
{
	width: 72.3%;
	float: right;
	margin: 0;
	padding: 0;
}
.list_article_post_main:after
{
content: "";
display: block;
clear: both;
}

.list_article_post_sub{
	/* width: 76.3%; */
	float: left;
	margin: 0;
}
.list_article_post_sub:after
{
content: "";
display: block;
clear: both;
}

.list_article_post_right
{
	width: 25%;
	float: left;
	margin: 0;
}
.list_article_post_right:after
{
content: "";
display: block;
clear: both;
}


.link_resource
{
	margin: 0;
	padding: 0;
	clear: both;
	background: #FFFFFF;
	margin-bottom: 20px;
	padding-bottom: 15px;
	box-shadow: 0 0 1px #474747;
	border-radius: 6px 6px 0 0;
}
.link_resource:after
{
	content: "";
	display: block;
	clear: both;
}

.block_item_01
{
	margin: 0;
	padding: 0;
	padding-bottom: 15px;
	margin-bottom: 20px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 0 2px #474747;
	border-radius: 6px 6px 0 0;
}
.block_item_01:after
{
	content: "";
	display: block;
	clear: both;
}
.block_item_02 h2{
	text-align:center;
	text-indent:0;
}
.block_item_02
{
	width: 48.8%;
	margin: 0;
	padding-bottom: 15px;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	box-shadow: 0 0 1px #424242;
	position:relative;
	background: #ffffff;
}

.block_item_02:after
{
	content: "";
	display: block;
	clear: both;
}


.block_item_02:nth-child(even)
{
	margin-right: 0px;
}


.block_item_03
{
	width: 100%;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	padding-bottom: 15px;
	box-shadow: 0 0 2px;
	border-radius: 6px 6px 0 0;
}

.block_item_03:after
{
	content: "";
	display: block;
	clear: both;
}

.main_frame
{
	padding: 0;
	margin: 0;
}
.main_frame:after
{
	content: "";
	display: block;
	clear: both;
}
.content_section{
	padding-bottom:20px;
	background: #FFFFFF;
	margin-bottom:20px;
	box-shadow: 0 0 1px #474747;
	border-radius: 6px 6px 0 0;
}
.link_resource ul
{
	list-style: none;
	padding-top: 0;
}
.link_resource li
{
	padding-left: 20px;
	padding-right: 20px;
	line-height: 38px;
}

.link_resource li h3{
	padding:0;
	text-indent: 0px;
	margin-top: 5px;
}

p.readable_more a
{
	float: right;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	margin: 0px;
	padding: 0px 12px;
	background: #ca7855;
	margin-top: 15px;
}

p.readable_more a:hover
{
	text-decoration: none;
	color: #FFFFFF;
	border-color: #fff;
	background: #f4b499;
}
.end_block_footer
{
	padding-top: 20px;
	padding-bottom: 20px;
	color: #000;
	margin: auto;
	width: 100%;
	height: auto;
	min-width: 1100px;
	text-align: center;
	word-wrap: break-word;
	background: #f4b499;
	border-top: 1px solid #fff;
	box-shadow: 0 0px 1px #000000;
}
.end_block_footer:after{
	content:"";
	display:block;
	clear:both;
}
.end_block_footer a
{
	color: #FFFFFF;
	text-decoration: none;
}
.end_block_footer a:hover
{
	color: #FFFFFF;
	text-decoration: underline;
}


.end_block_footer_nav ul{
	margin:0;
	padding: 20px 0;
	display:flex;
	justify-content:center;
	margin-bottom: 20px;
}
.end_block_footer_nav ul li {
	list-style:none;
	
}
.end_block_footer_nav ul li a{
	padding:10px;
	position: relative;
	font-size: 13px;
	/* color: #fff; */
}

.end_block_footer_nav ul li a:before{
	content: "➠";
	top: 0px;
	margin-right: 10px;
}

.end_block_footer_nav ul li a:hover{
	/* text-decoration: none; */
	/* background: rgba(255, 255, 255, 0.2); */
	/* color: #FF912F; */
}


.social
{
	width: 1100px;
	text-align: center;
	margin: auto;
	display:flex;
	justify-content: flex-start;
	padding: 0;
}
.pocket-btn
{
	margin-top: 1px;
	margin-right:-3px;
}

@media screen and (max-width: 480px){
.Tittle_in_header{
	width: 100%;
	min-width:inherit;
	padding:0;
	margin:0;
	border-radius:0;
	border:none;
	box-shadow:none;
	overflow: hidden;
}
h2{
	text-align:center;
	text-indent:0;
}
.list_article_post_right h2
{
	/* margin-bottom:15px; */
}
p{
	padding:0;
}
h3{
	padding: 0px 5px;
}
.BODY_top
{
	width: auto;
	min-width: inherit;
	padding-top: 0px;
	margin: 0px;
}
.web_title{
	width: auto;
	min-width: inherit;
	margin: 0;
}
h1
{
	font-size: 14px;
}

.main_render{
	width: auto;
	min-width:inherit;
}

.site_image,.navi_bar{
	width: auto;
	float:none;
	margin: 1px;
	padding:0;
}
.site_image img{
	width: 93%;
	margin: 10px auto;
	display: block;
}

/* ========= start menu ============*/	

/* ========= end menu ============*/


.list_article_post_main,.list_article_post_sub
{
	width: auto;
	margin: 0;
	padding: 0;
	border-radius: 0;
	float: none;
}


.list_article_post_right
{
	width: auto;
	margin: 0;
	padding: 0;
	border-radius: 0;
	float: none;
}

.content_section,
.block_item_01,
.block_item_02,
.block_item_02:nth-child(even),
.block_item_03,
.link_resource,
.nav_section

{
	float: none;
	width: auto;
	padding: 20px;
	margin: 15px;
	margin-bottom: 20px;
	/* padding-top: 0; */
}
.nav_section{
	padding:0;
}

.link_resource li{
	margin:0;
	padding:0;
}
.main_frame
{
	width: 100%;
	margin: auto;
	clear: both;
}
.list_article_post_sub .content_section img,
.content_section img,
.image_format_01,
.image_format_02,
.image_format_03
{
	width: 100%;
	margin: auto;
	padding: 0;
	float: none;
	box-shadow: none;
	border: 0;
}

.link_resource{
	margin-bottom:20px;
}

.end_block_footer
{
	width: 100%;
	min-width: inherit;
	/* padding-top: 0; */
}
.end_block_footer p{
	padding:0 20px;
}
.end_block_footer_nav ul{
	display:block;
	background-size: 100%;
	padding: 0;
}
.end_block_footer_nav ul li a{
	padding:10px;
	display:block;
	/* color: #555; */
}
.end_block_footer_nav ul li a:hover{
	text-decoration:none;
	color: #404040;
	background: rgb(255, 255, 255);
}
.end_block_footer_nav ul li a:before{
	content:"";
	display:none;
}
.social{
	width:100%;
	justify-content:center;
	margin-top: 10px;
	padding: 0;
}
}/*end-mobile*/
