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

/*
animation -- 固有名 -- 動作時間 -- ease -- 開始遅延 -- 繰り返し -- 正反
ex) animation: anime1 2s ease 0s infinite alternate;
*/

.wait {
	opacity: 0;
}

.play.fadeIn {
	animation: fadeIn 0.75s ease 0s 1 normal;
	-webkit-animation: fadeIn 0.75s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.play.slideLeft {
	animation: slideLeft 0.75s ease 0s 1 normal;
	-webkit-animation: slideLeft 0.75s ease 0s 1 normal;
}

@keyframes slideLeft {
	0% {
		opacity: 0;
		transform: translateX(3rem);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes slideLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(3rem);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

.play.slideRight {
	animation: slideRight 0.75s ease 0s 1 normal;
	-webkit-animation: slideRight 0.75s ease 0s 1 normal;
}
@keyframes slideRight {
	0% {
		opacity: 0;
		transform: translateX(-3rem);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes slideRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-3rem);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

body{
	color:rgb(51, 51, 51);
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height:1;
	letter-spacing: 1;
	text-align:left;
	word-wrap: break-word;
	background:#E4DACE;
}

a:hover{ opacity:0.48; transition: 0.5s;}
nav a:hover{ opacity:0.8; }

div:after,
ul:after,
dl:after,
.ac:after {
    content: "";
    display: block;
    clear: both;
}

.print{
	display: none;
}

.post{
	margin: 0 0 0;
}

.post>*:first-child {
    margin-top: 0 !important;
}

.post>*:last-child {
    margin-bottom: 0 !important;
}

.post h1{
	font-size:200%;
	letter-spacing: .1em;
	line-height:1.25;
	margin: -0.125em 0 1.375rem;
}
.post h2{
	font-size:150%;
	letter-spacing: .1em;
	line-height:1.25;
	padding: 0.25em 0 0.25em 0.5em;
	margin-bottom: 1.5rem;
	border-left: 0.25em solid #4B6B2D;
}
.post h3{
	color: #4B6B2D;
	letter-spacing: .1em;
	line-height:1.25;
	margin: -0.125em 0 1.375rem;
}
.post h4{
	color: #4B6B2D;
	letter-spacing: .1em;
	line-height:1.25;
	margin: -0.125em 0 1.375rem;
}
.post h5{
	color: #4B6B2D;
	letter-spacing: .1em;
	line-height:1.25;
	margin: -0.125em 0 1.375rem;
}

.post p{
	line-height:2;
	margin: -0.5em 0 1em;
}

.post .caption{
	display: block;
	line-height:1.5;
	margin:calc(1em + -0.25em) 0 -0.25em ;
	text-align: center;
}

.post p.caption{
	margin-bottom: calc(1.5em + -0.25em);
}

.post .col02,
.post .col03 {
	list-style: none;
	margin: 0 0 1.5rem;
}

.post .link{
	padding-left: 1.5em;
	background: url(../img/link.png) center left / 1em no-repeat;
}

.post table {
    width: 100%;
    margin: 0 0 1.5rem;
    border: 1px solid #4B6B2D;
    border-collapse: collapse;
}

.post table th {
		font-weight: normal;
    line-height: 1.5;
		text-align: left;
    vertical-align: top;
    padding: 0.75em 1em;
    background: rgba(75, 107, 45, 0.1);
    border: 1px solid #4B6B2D;
}

.post table td {
    line-height: 1.5;
		text-align: left;
    vertical-align: top;
    padding: 0.75em 1em;
		border: 1px solid #4B6B2D;
}

.post ul{
	margin: 0.25em 0 1.25em 1.25em;
	list-style: square;
}

.post ol{
	margin: 0.25em 0 1.25em 1.5em;
	list-style: decimal;
}

.post li{
	line-height: 1.5;
}

.post table ul,
.post table ol{
	margin-bottom: 0.25em;
}

.post dl{
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	background: rgba(75, 107, 45, 0.1);
}

.post dl dt{
	margin:-0.125em 0 0.375em;
	color: #4B6B2D;
	font-size:150%;
	font-weight: bold;
	letter-spacing: .1em;
	line-height:1.25;
}

.post dl dd{
	margin: -0.5em 0 1em;
	line-height: 2;
}

.post dl dd:last-of-type{
	margin-bottom: -0.5em;
}

.post img{
	display: inline-block;
	max-width:100%;
	height:auto;
}

/* form */

.need{
	color:#ff0000;
}

.wpcf7-form dl{
	margin:2.5em 0 0;
}

.wpcf7-form dl:first-of-type{
}

.wpcf7-form dt.br{
	padding:2px 0;
}

.wpcf7-form dd span{
}

.wpcf7-form dd input[type='text'],
.wpcf7-form dd input[type='email'],
.wpcf7-form dd textarea{
	display:block;
	width:100%;
	line-height:1.5;
	padding:0.25em 1em;
	border:1px solid #dbdbdb;
	-webkit-appearance: none;
	box-sizing:border-box;
}

.wpcf7-form dd input[type='checkbox']{
	margin:0.5em 0 0.5em 1em;
}

.wpcf7-form input[type='radio']{
	display: inline-block;
}

.wpcf7-form h3{
	color: #fff;
	font-weight: normal;
	padding: 0.5em 0 0.5em 1.75em;
	margin: 2.5em 0 1.5em;
	background: #4b6b2d;
}

.wpcf7-form div .wpcf7-list-item{
	display: block;
	line-height:1.5;
	margin: 0.75em 0 -0.25em;
}

.wpcf7-form div .wpcf7-list-item.first{
	margin-top: -0.25em;
}
/*
.wpcf7-form dd .wpcf7-radio span{
	display:inline !important;
}

.wpcf7-form dd .wpcf7-radio input{
	display:inline !important;
	width:auto !important;
}
*/
.wpcf7-form p{
	text-align:center;
	position:relative;
}

.wpcf7-form p span{
	display:inline !important;
}

.wpcf7-form p input{
	display:block;
	width:20em;
	color:#fff;
	cursor:pointer;
	font-weight:bold;
	line-height: 1;
	text-align:center;
	text-decoration:none;
	padding: 1rem 0;
	margin: 2.5em auto 0;
	background:#4b6b2d;
	border:none;
	-webkit-appearance: none;
}

.wpcf7-form p input:hover{
	opacity:0.8;
}

.wpcf7c-hide{
	display: none;
}

.wpcf7c-force-hide{
	display: none !important;
}

.wpcf7c-conf{
	color:#ff0000 !important;
	background-color:transparent !important;
	border:none !important;
}

.ajax-loader{
	display:none;
}

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

.wpcf7-not-valid-tip{
	display:block;
	color:#ff0000 !important;
	font-size:0.8em !important;
	margin-top:0.5em;
}

.wpcf7-validation-errors{
	display:block;
	color:#ff0000 !important;
	text-align:center;
	line-height:1.5;
	padding:0 !important;
	margin:0.75em 0 -0.25em !important;
	border:none !important;
}

.wpcf7c-elm-step2.message{
	display:block;
	text-align:center;
	line-height:1.5;
	padding:0 !important;
	margin:0.75em 0 -0.25em !important;
	border:none !important;
}

.wpcf7-mail-sent-ok{
	display:block;
	color:#ff0000 !important;
	text-align:center;
	line-height:1.5;
	padding:0 !important;
	margin:0.75em 0 -0.25em !important;
	border:none !important;
}

/* wp-pagenavi */

.wp-pagenavi{
	clear: both;
	padding-top: 3em;
	margin: 0 auto 0;
}

.wp-pagenavi:after{
	content:"";
	display:block;
	clear:both;
}

.wp-pagenavi a:link,
.wp-pagenavi a:visited,
.wp-pagenavi span.current,
.wp-pagenavi a:hover,
.wp-pagenavi a:active{
	display:block;
	width:2em;
	height:2em;
	float:left;
	color:#4b6b2d;
	font-weight:bold;
	line-height:2em;
	text-align:center;
	text-decoration:none;
	margin:0 0.25em 0 0;
	border:1px solid #4b6b2d;
	box-sizing: border-box;
}

.wp-pagenavi span.current,
.wp-pagenavi a:hover,
.wp-pagenavi a:active{
	color:#fff;
	background:#4b6b2d;
}

.wp-pagenavi > *:last-child{
	margin-right:0;
}

.slide{
	position: relative;
}

.slide .image{
	width: 100%;
	padding-top: 40%;
	position: relative;
}

.slide .image li{
	width: 100%;
}

.slide .image li span,
.slide .image li a{
	display: block;
	width: 100%;
	padding-top: 40%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.slide .image li img{
	position: absolute;
}

.slide .thum ul{
	margin:0 auto;
}

.slide .thum li{
	display:block;
	float:left;
	position:relative;
}

.slide .thum li span{
	display:block;
	cursor:pointer;
	text-indent:-9999px;
	margin:auto;
	background:#fff;
	border-radius:50%;
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
}

.slide .thum li.on span{
	background:#56692f;
}

/* header */

.header {
	background: #FFF;
}

.header .headerContents{
	position:relative;
	box-sizing: border-box;
}

.sideNav{
}
.sideNav .h2{
	background: #4B6B2D;
}
.sideNav .h2:nth-child(2){
	background: #2795b8;
}
.sideNav .h2:nth-child(3){
	background: #709f99;
}
.sideNav .h2 a,
.sideNav .h2 span{
	display: block;
	color: #fff;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
	padding: 0.75em 1em;
}
.sideNav .h2 a{
	text-decoration: none;
}
.sideNav .body2{
	padding: 0 1em;
	background: #fff;
	position: relative;
}
.sideNav li {
	border-bottom: 1px dashed rgba(227,217,205,0.5);
}
.sideNav li:last-child {
	border: none;
}
.sideNav li a{
	display: block;
	line-height: 1.5;
	text-decoration: none;
	padding: 0.75em 0;
}
.sideNav li li{
	border: none;
	padding: .625em 0 0 1em;
}
.sideNav li li:before{
	content:' - ';
}
.pan ul {
	text-align: left;
	margin: -0.125em 0;
}
.pan li {
	display: inline;
	color: rgba(0, 0, 0, 0.48);
	line-height: 1.25;
	position: relative;
}
.pan li:last-child {
	margin-right: 0;
}
.pan li::after {
		content: " ＞ ";
}
.pan li:last-child::after {
		content: "";
}

.subPage .ancestor span{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	text-align: center;
}

.footerMap {
	width: 100%;
	padding-top: 36%;
	margin: 0 auto;
	background: #9cae8c;
	box-shadow: 0 0 1em rgba(0,0,0,0.25);
	box-sizing: border-box;
	position: relative;
}

footer .access li{
	line-height: 1.5;
	padding: 0.25em;
}

footer .access li:after{
	clear: both;
	content: '';
	display: block;
}

footer .access li strong{
	display: block;
	width: 6em;
	float: left;
	color: #4b6b2d;
}

footer .access li span{
	display: block;
	width: calc(100% - 6em);
	float: left;
}


/* index */


.more {
	display: none;
}
.more p{
	cursor: pointer;
	font-weight: bold;
	text-align: center;
	padding: 1em 0;
	box-shadow: 0.25em 0.25em 0.25em rgba(0,0,0,0.24);
	background: #fff;
}

.more p:hover{
	opacity: 0.8;
}

.info{
	background: #fff;
}

.info .body h2 img{
	height: 1.5rem;
}

.info .body ul{
	margin-left: 0;
	list-style: none;
	border-top: 1px dotted rgba(0,0,0,0.48);
}

.info .body li{
	line-height: 1.5;
	border-bottom: 1px dotted rgba(0,0,0,0.48);
}

.info .body li:after{
	clear: both;
	content: '';
	display: block;
}

.info .body li span{
	display: block;
	float: left;
}

.info .body li a{
	display: block;
	float: left;
}

/* archives */

.archives dl{
	background: #fff;
	box-shadow: 0.25em 0.25em 0.25em rgba(0,0,0,0.24);
	position: relative;
}

.archives dl a{
	display: block;
	text-decoration: none;
	padding: 1.25rem 0.75em 0.75em;
	box-sizing: border-box;
}

.archives dl dt{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	line-height: 1.25;
	margin: -0.125em 0 1.125rem;
}

.archives dl dt .color{
	color: #4b6b2d;
}

.archives dl dt .color2{
	color: #6f9b2e;
}

.archives dl dt .color3{
	color: #f15a24;
}

.archives dl dt .color4{
	color: #f7931e;
}

.archives dl dt .color5{
	color: #008cb3;
}

.archives dl dd{
}

.archives dl dd .image{
	display: block;
	width: 100%;
	padding-top: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.archives dl dd .span{
	display: block;
	width: calc(100% - 3em);
	line-height: 1.5;
	padding: 0.75em 1em;
	background: #fff;
	box-sizing: border-box;
	position: absolute;
	bottom: 1.5em;
	left: 1.5em;
}

/* archives2 */

.archives2 dl{
	background: #fff;
	box-shadow: 0.25em 0.25em 0.25em rgba(0,0,0,0.24);
	box-sizing: border-box;
}

.archives2 dl dt{
	margin-bottom: 1rem;
	position: relative;
}

.archives2 dl dt a{
	display: block;
	width: 100%;
	padding-top: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(204,204,204,1);
}

.archives2 dl dt span{
	display: block;
	width: 100%;
	height: 1em;
	color: rgba(105,105,105,1);
	text-align: center;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.archives2 dl dd a{
	text-decoration: none;
}

.archives2 dl dd .span{
	display: block;
	color: #4b6b2d;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 112.5%;
	line-height: 1.5;
	text-align: center;
	margin: -0.25em 0;
}

.archives2 dl dd .span2{
	display: block;
	color: #fff;
	font-size: 125%;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	padding: 0.25em 0;
	margin-top: 1rem;
	background: #4b6b2d;
}

.archives2 dl dd .span3{
	display: block;
	line-height: 1.5;
	margin: 0.75em 0 -0.25em;
}

/* houselist */

.houseLists h2 {
	color: #4b6b2d;
	font-size: 125%;
	text-align: center;
	letter-spacing: 0.2em;
	margin-bottom: 1.5rem;
}

.houseLists .houseList {
	width: 100%;
	margin-bottom: 1.5em;
	box-sizing: border-box;
}

.houseLists .houseList:last-child {
	margin-bottom: 0;
}
.houseLists .houseList .image a {
	display: block;
	width: 100%;
	padding-top: 100%;
	background-color: rgba(179, 179, 179, 0.24);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.houseLists h2 {
	color: #4b6b2d;
	font-size: 125%;
	text-align: center;
	letter-spacing: 0.2em;
	margin-bottom: 1.5rem;
}

/* zadankai */

.zadankai .text{
	margin-bottom: 1.5em;
}

.zadankai .text2{
	margin-bottom: 3em;
}

.zadankai .text img,
.zadankai .text2 img{
	display: block;
	margin: 0 auto;
}

.zadankai h2 {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	letter-spacing: 1;
	border-left: none;
}

.zadankai h2 img{
	margin: 0 auto;
}

.zadankai ul:after{
	clear: both;
	content: '';
	display: block;
}

.zadankai ul{
	margin: 0 auto;
	list-style: none;
}

.zadankai .color{
	color: #f29600;
}

.zadankai .color2{
	color: #7d4697;
}

.zadankai .color3{
	color: #e95513;
}

.zadankai .color4{
	color: #036eb7;
}

.zadankai .color5{
	color: #4c7f37;
}

.zadankai .color6{
	color: #f29600;
}

.zadankai div:after{
	clear: both;
	content: '';
	display: block;
}

.zadankai dl:after{
	clear: both;
	content: '';
	display: block;
}

.zadankai dd span{
	display: block;
}

.zadankai dd .span3{
	height: auto;
}

.zadankai dd strong{
	display: block;
}

/* contact */

.contact h2{
	color: #4B6B2D;
	text-align: center;
	padding: 0 0 0.25em 0;
	border-left: none;
	border-bottom: 1px solid #4B6B2D;
}

/* interview */

.interviewHead{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 200%;
	position: relative;
	text-align: center;
	margin: 6rem 0 1.5rem;
}

/* season */

.season {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	position: relative;
	opacity: 0;
}

.season h1 img{
	display: block;
	margin: 0 auto;
}

.season .left ul{
	margin: 0;
	list-style: none;
}

.season .left ul li{
	letter-spacing: 0.125;
	line-height: 1;
	margin-bottom: 2em;
}

.season .left ul li a{
	text-decoration: none;
}

.season .body h2{
	text-align: center;
	font-size: 175%;
	letter-spacing: 0.125;
	line-height: 1;
	padding: 0;
	margin-bottom: 1.5em;
	border: none;
}

.season .slide{
	width: 100%;
	padding-top: 66.02%;
	position: relative;
}

.season .slide .image{
	padding-top: 0;
	position: static;
}

.season .slide .image ul{
	margin: 0;
	list-style: none;
}

.season .slide .image ul li{
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
}

.season .slide .image ul li img{
	display: block;
	width: 100%;
	position: static;
}

.season .slide .thum{
	width: 100%;
	margin-top: 1.5em;
	position: static;
}

.season .slide .thum ul{
	margin: 0 auto;
	list-style: none;
}

.season .thum li span{
	background:#b3b3b3;
}

/* shokokai */

.shokokai h1{
	font-size: 200%;
	margin-bottom: 3rem;
}

.shokokai .pageNav ul li.on{
	color: #2795b8;
}

.shokokai .pageNav ul li a{
	text-decoration: none;
}

.shokokai .body {
	margin: 0 0 6em;
}

.shokokai .body .text {
	margin-bottom: 1.5em;
}

.shokokai .body .text span{
	display: inline-block;
	color: #2795b8;
	margin-right: 2em;
}

.shokokai .body .text strong{
	font-size: 150%;
}

.shokokai .body .image{
	margin-bottom: 3em;
}

.shokokai .body .image li span{
	display: block;
	width: 100%;
	padding-top: 75%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.shokokai .body .text2 {
	margin-bottom: 1em;
}

.shokokai .body .text2 .span{
	display: block;
	width: 7em;
	float: left;
	color: #2795b8;
	padding: 1em 1em 1.75em;
	margin-right: 1.5rem;
	background: url(../img/baloon.png) center / 100% 100% no-repeat;
	box-sizing: border-box;
}

.shokokai .body .text2 .span2{
	display: block;
	width: calc(100% - 8.5rem);
	float: left;
	font-size: 150%;
	font-weight: bold;
	line-height: 1.25;
	padding-top: 0.5rem;
}

.shokokai .body .text3 {
	line-height:2;
	margin: -0.5em 0 2.5em;
}
