@charset "utf-8";

/*****************************************
* 基本設定
******************************************/
html{
	font-family:'M PLUS 1p',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 62.5%;
	font-weight: normal;
	background-color: #fff;
	color: #333;
}
body{
	font-size: 1.3rem;
}
*,*::before,*::after{
	box-sizing: border-box;
}
.clearfix::after{
	display: block;
	content: '';
	clear: both;
}

/*****************************************
* wordpress設定
******************************************/
/**
 * WordpressのネイティブCSS
 */
 .alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
    text-align: center;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft{
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; 
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/*****************************************
* ヘッダー設定
******************************************/
.header{
	width: 100%;
	height: 140px;
	text-align: center;
	background-color: #fff;
	padding: 20px 0 20px;
}
.logo{
	display: block;
	margin: 0 auto 20px;
}
.description{
	font-size: 1.8rem;
}
.color-b a{
	color: #333;
}

.drawer-hamburger{
	width: 3rem;
}
.header button{
	outline: none;
}
.header button:focus{
	text-decoration: none;
	outline: none;
}
ul.drawer-menu li a{
	font-size: 2rem;
	color: #333;
	line-height: 2;
	position: relative;
}
ul.drawer-menu li a:hover{
	text-decoration: none;
}
ul.drawer-menu li a::after{
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #333;
	right: 0;
	/*left: 0;*/
	bottom: 0;
	transition: width ease 0.3s;
}
ul.drawer-menu li a:hover::after{
	width: 100%;
}
.header nav{
	opacity:0.7;
}
/*****************************************
* メインヴィジュアル設定
******************************************/
.mainvisual{
	display: block;
	background-image: url('../images/mainvisual01.png');
	background-position: center center;
	background-size:cover;
	width: 100%;
	height: 500px;
}
.mainvisual p{
	display: none;
}
@media screen and (max-width:768px){
	.mainvisual{
		width: 100%;
		height: 182px;
		background-image: url("../images/mainvisual01-s.png");
		background-size: cover;
	}
}
p.bread a{
	color:#333;
}

/*****************************************
* メインコンテンツ設定
******************************************/
main.container{
	margin-bottom: 50px;
}
.heading-sub{
	margin: 30px auto;
}
.headgin-sub > img{
	display: block;
	margin:0 auto;
}
.top-box{
	/*border: 1px solid #333;*/
	width: 95%;
	overflow: hidden;
	margin:0 auto 20px;
	position: relative;
	border-radius:10px;
	box-shadow: 0 3px 0 #333;
}
a.top{
	display: block;
	position: relative;
}
a.top::before{
	display: block;
	content: 'MORE';
	font-family:'M PLUS 1p';
	text-align: center;
	width: 100px;
	height: 30px;
	line-height: 23px;
	border: 3px solid #fff;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	transform: translate(-50px,-15px);
	font-weight: bold;
}
.top-box > img{
	width: 100%;
	height: auto;
	transition: transform linear 0.3s;
	border-radius: 10px;
}
a.top:hover .top-box > img{
	transform: scale(1.3);
	/*filter: grayscale(100%);*/
}
.top-box > p{
	display: inline-block;
	width: 100%;
	height: 30%;
	line-height: 1.8;
	font-size: 1.6rem;
	background-color: rgba(255,255,255,0.6);
	position: absolute;
	left: 0;
	right: 0;
	bottom:0;
	margin: 0;
	padding: 10px;
	border-radius: 0 0 10px 10px;
	color: #333;
}
@media screen and (max-width:768px){
	.top-box > p {
		line-height: 1.3;
	}
}
.top-box > p time{
	font-size: 1.2rem;
	display: block;
	margin-left: 20px;
}
.top-box > p::before{
	content: '';
	display: inline-block;
	border: 3px solid #333;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	vertical-align: -2px;
	margin-right: 5px;
}

/*****************************************
* フッター設定
******************************************/
.footer{
	width: 100%;
	background-color: #333;
	color: #fff;
	text-align: center;
	height: 30px;
	line-height: 30px;
	font-size: 1.4rem;
}
.totop a{
	display: block;
	width: 45px;
	height: 45px;
	position: fixed;
	right: 30px;
	bottom: 70px;
}
.totop a img{
	width: 45px;
	height: 45px;
	border-radius: 50%;
	opacity: 0.7;
}

/*****************************************
* サイドバー設定
******************************************/
.side-box{
	font-size: 1.6rem;
	color: #333;
	width: 100%;
	height: auto;
	padding: 10px;
	margin-bottom: 20px;
}
.side-box a{
	color: #333;
}
.side-box ul{
	list-style: none;
}

/*****************************************
* シングルポストページ設定
******************************************/
.post-title{
	font-size: 2.5rem;
	line-height: 2;
}
.post-content{
	font-size: 1.7rem;
	line-height: 1.5;
}
.post-contnt a{
	color: #333;
	text-decoration: underline;
}
.heading-arch{
	font-size: 2.5rem;
	line-height: 2;
}
.page-navi{
	color: #333;
}
.page-navi a{
	color: #333;
}

/*****************************************
* ページ設定
******************************************/
.page-content{
	font-size: 1.7rem;
	line-height: 1.5;
}
.page-content a{
	color: #333;
}

label{
	width: 100%;
}
input[type=text],
input[type=email]{
	width: 100%;
	padding: 5px;
	border-radius: 0;
	border: 1px solid #7F7E7E;
}
textarea{
	width: 100%;
	padding: 5px;
	border-radius: 0;
	border: 1px solid #7F7E7E;
}
input,textarea:focus{
	box-shadow: 0 0 3px inset #ccc;
}
input[type=submit]{
	border: none;
	box-shadow: none;
	color: #fff;
	font-size: 2rem;
	
	width: 100%;
	height: 100%;
	cursor: pointer;
}

@media(max-width:768px){
	.wpcf7-form div.btn > p{
		display: flex;
		flex-direction: column;
		align-items: normal;
		justify-content: space-around;
	}
}

/*****************************************
* recaptcha非表示設定
******************************************/
.grecaptcha-badge{
	visibility: hidden!important;
}




























