@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho');

html{
	width:100%;
	font-size:62.5%;
	height: 100%;
	font-family: 'Sawarabi Mincho', sans-serif;
}

@media screen and (max-width: 680px) {
	html{
		font-size:50%;
	}
}

body{
	background:#FFF;
	color:#333;
	width:100%;
	line-height:1.7;
	font-size:1.6rem;
	height: 100%;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;zs
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

ul,li{
	list-style: none;
}

img{
	border:none;
}

a{
	color:#000;
	text-decoration: none;
}

.title{
	text-align: center;
	font-weight: bold;
	font-size: 2.4rem;
	padding-bottom: 6rem;
}

.sup{
	font-size:1.3rem;
}

.sp{
	display: none;
}

@media screen and (max-width: 680px) {
	.pc{
		display: none;
	}

	.sp{
		display: block;
	}
}

.col2{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

.col2 > .left-col{
	width: calc(100% - 220px);
}

.col2 > .right-col{
	width: 180px;
	border-left: 1px solid #CCC;
	padding-left: 40px;
}

.col2 > .right-col ul{
	font-size: 1.4rem;
}

.col2 > .right-col a{
	text-decoration: underline;
}

@media screen and (max-width: 680px) {
	.col2{
		display: block;
	}
	.col2 > .left-col{
		width: 100%;
	}

	.col2 > .right-col{
		width: 100%;
		border-left: none;
		padding:2rem;
		background-color: #f5f5f5;
	}
}

.archive-link{
	margin-bottom: 3rem;
}

.mb2{
	margin-bottom: 2rem;
}

.tx-center{
	text-align: center;
}

/**/
.front .contents{
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	background:rgba(255,255,255,0.8);
}

.contents.dummy{
	background: none;
	z-index: 1;
	height: 100vh;
}

.container{
	max-width:1000px;
	margin: 0 auto;
	width: 100%;
}

.contents > .container{
	padding: 3rem 2rem;
}

.logo{
	position: absolute;
	top:2rem;
	left: 2rem;
	z-index: 1;
}

.front .logo{
	position: fixed;
}

.logo img{
	max-width: 150px;
}

.slide div{
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center;
}

#home{
	position: fixed;
	width: 100%;
	z-index: 2;
	height: 100vh;
}

#news ul{
	margin:0 auto 4rem;
	max-width:600px;
}

#news li{
	position: relative;
	padding-left:10rem;
}

#news li span{
	position: absolute;
	top:0;
	left:0;
}

#concept{
	text-align: center;
}
#concept h1{
	font-size: 2.4rem;
	margin-bottom: 1rem;
}
#concept h2{
	font-size: 1.8rem;
	margin-bottom: 3rem;
}
#concept p{
	line-height: 2;
}

#about{
	text-align: center;
}

#about dl{
	margin-bottom: 5rem;
}

#about dt{
	font-weight: bold;
	margin-bottom:1rem;
}

#about dl.bland dt{
	text-decoration:underline;
	font-size:2rem;
}

#about dt span{
	font-size: 1.4rem;
	display: block;
}

#about dd{
	font-size: 1.4rem;
}

#about dd strong{
	font-size: 1.8rem;
	display: block;
}

@media screen and (max-width: 680px) {
	#about dd span{
		display: inline-block;
	}

}

#about .ic-insta{
	width: 100px;
	height: auto;
}

.form-area{
	max-width: 600px;
	margin:0 auto;
	text-align: center;
}

.form-area > div{
	margin-bottom: 2rem;
}

.wpcf7-not-valid-tip,
.screen-reader-response,
.wpcf7-response-output,
.wpcf7-validation-errors{
	color: #ff0000;
	text-align: center;
	display: block;
	font-size: 1.2rem;
}

.screen-reader-response{
	margin-bottom: 1rem;
}

.screen-reader-response > ul{
	display: none;
}



.form-area input[type="text"],
.form-area input[type="email"],
.form-area textarea{
	border:none;
	background:#f5f5f5;
	padding: 1rem;
	font-size: 1.6rem;
	width: 100%;
	font-family: 'Sawarabi Mincho', sans-serif;
}

.form-area textarea{
	height: 20rem;
}

.btn{
	text-align: center;
}

.form-area button,
.form-area input[type="submit"],
.btn a{
	width: 200px;
	border:none;
	background-color: #946B4A;
	border-radius: 100px;
	padding: 0.5rem 1rem;
	font-size: 1.4rem;
	color: #FFF;
	display: inline-block;
}

header{
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 5;
}

footer{
	background-color:rgba(255,255,255,0.8);
	text-align: center;
	font-size: 1.2rem;
	position: relative;
	z-index: 2;
	padding: 2rem 0;
}

.navi{
	background:#f5f5f5;
	position: fixed;
	right:-200px;
	top:0;
	height: 100%;
	width: 200px;
}

.navi.active{
	right: 0;
}

.navi li{
	padding: 2rem 2rem;
}

.navi ul.sub-menu li{
	padding:0;
	margin:1rem 0 0 1rem;
}

.navi ul.sub-menu li:before{
	content:"-";
	margin-right: 0.5rem;
	display: inline-block;
}

.btn-navi{
	text-align: right;
	display: inline-block;
	position: fixed;
	z-index: 2;
	right: 20px;
	top: 20px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 40px;
  height: 30px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #946B4A;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 13px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}

.main{
	margin: 15rem 0 10rem;
}

.main section{
	margin-bottom: 8rem;
}

.main h1{
	font-size:2.4rem;
	margin-bottom: 3rem;
}

.main .page-title{
	text-align:center;
	font-size:2.4rem;
}

.main .page-title span{
	font-size: 1.4rem;
	display: block;
}

.category,
.data{
	display: inline-block;
	vertical-align: middle;
	margin-right: 1.5rem;
}

.category a{
}

.post{
	margin-bottom: 3rem;
	position: relative;
}

.post p + p{
	margin-top: 1rem;
}

.post img.size-full{
	width: 100%;
	height: auto;
}

.list-custom{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.list-custom > li{
	width: calc(33.3% - 10px);
	position: relative;
	margin-bottom: 10px;
}

.list-custom:after{
	content:"";
	width: calc(33.3% - 10px);
	display: block;
}

.list-custom > li a{
	display: none;
}

.list-custom > li a:first-child{
	display: block;
}

.list-custom > li img{
	width: 100% !important;
	max-width: 100% !important;
	height: auto;
}

.list-custom > li div{
	align-items: center;
	height: 100%;
	position: absolute;
	display: none;
	text-align: center;
  width: 100%;
  left:0;
	top: 0;
}

.list-custom > li strong{
	display: block;
	width: 100%;
}

.list-custom > li strong span{
	font-weight: normal;
	font-size:1.4rem;
	display: block;
	margin-top: 1rem;
}

@media screen and (max-width: 680px) {
	.list-custom > li strong span{
		display: none;
	}
}

.list-custom > li:hover img{
	opacity: 0.5;
}

.list-custom > li:hover div{
	display: flex;
}

body:not(.front) .wpcf7-validates-as-required{
	background-color:#f2eee7 !important ;
}

.wp-pagenavi {
	clear: both;
	text-align:center;
}
.wp-pagenavi a, .wp-pagenavi span {
	color: #999;
	background-color: #FFF;
	border: solid 1px #e0e0d2;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
.wp-pagenavi a:hover{
    color:#FFF;
    background-color:#999;
    border-color:#999;
    }
.wp-pagenavi span.current{
	color: #FFF;
	background-color: #946b4a;
	border-color: #946b4a;
	font-weight: bold;
}

.movie{
	margin-bottom: 4rem;
}

.post .movie{
	margin: 2rem 0;
}

@media screen and (max-width:800px) {
	.post .movie {
	     position: relative;
	     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	     height: 0;
	     overflow: hidden;
	}

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

@media screen and (max-width: 680px) {
.movie {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}

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

.grecaptcha-badge{
	z-index: 1000;
}