@charset "UTF-8";
/*--------------------------------------------------------------
common-style
--------------------------------------------------------------*/
*{
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
}

/* mobile */
@media (min-width: 300px) {
	body {
		color: #2b2b2b;
		font-size: 14px;
		font-weight: 300;
		letter-spacing: 1.5px;
		line-height: 1.5;
	}
	
	a,
	a:link,
	a:active,
	a:visited {
		text-decoration: none;
		color: inherit;
	}
	
	img {
		width: 100%;
		height: auto;
		max-height: 100%;
		object-fit: cover;
	}
	
	.flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	
	ul {
		list-style: none;
	}
	
	.clearfix::after {
	   content: "";
	   display: block;
	   clear: both;
	}
	
	.wrapper {
		width: 100%;
	}
	
	.section_title {
		height: 28px;
		width: auto;
		text-align: center;
		margin: 35px;
		position: relative;
	}
	
	.section_title img {
		height: 100%;
		width: auto;
	}
	
	.section_title span {
		position: absolute;
		content: "";
		display: block;
		bottom: -15px;
		left: 50%;
		transform: translateX(-50%);
		background: #776C59;
		width: 15px;
		height: 1px;
	}
	
	button.link_btn {
		display: block;
		width: 100%;
		max-width: 400px;
		height: 42px;
		margin: 0 auto;
		background: #776C59!important;
		box-shadow: 0px 3px 6px #00000029;
	}
	
	button.link_btn a {
		display: block;
		width: 100%;
		height: 100%;
		color: #FFF!important;
		letter-spacing: 3px;
		text-align: center;
		line-height: 42px;
		font-size: 15px;
	}
	
	a.link {
		color: #776C59;
		font-size: 13px;
		letter-spacing: 1.3px;
	}
	
	.sp {
		display: block;
	}
	
	.sp-tab {
		display: block;
	}
	
	.pc {
		display: none;
	}
	
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	.sp {
		display: none;
	}
	
	.pc {
		display: block;
	}

	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.sp-tab {
		display: none;
	}


}

/*--------------------------------------------------------------
#header
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#header {
		display: none;
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	

	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#header {
		display: block;
		background: #fff;
		width: auto;
		height: 100vh;
		margin: 0;
		padding: 0;
		float: left;
		position: fixed;
		overflow-y: scroll;
	}
	
	.side_bar {
		width: 75px;
		height: 100%;
		min-height: 650px;
		position: relative;
		top: 0;
		left: 0;
	}
	
	.logo_h {
		background: #776C59;
		text-align: center;
		width: 100%;
		height: 250px;
		margin: 0 0 35px;
		padding: 20px 14px;
	}
	
	.logo_h .flex {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.logo_h .flex img {
		height: 20px;
		width: auto;
	}
	
	.logo_h > img {
		width: 28px;
		height: auto;
		margin: 20px 0 40px;
	}
	
	.main_nav {
		display: block;
		width: 75px;
		height: auto;
		position: relative;
	}
	
	.main_nav ul {
		position: relative;
		width: 100%;
		height: auto;
		min-height: 300px;
		text-align: center;
		margin: 0;
		box-sizing: border-box;
	}
	
	.main_nav ul li {
		-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
        text-orientation: upright;
		width: auto;
		margin: 0 auto 15px;
		padding: 0 0 15px;
		border-bottom: 1px solid #B5B5B5;
		font-size: 14px;
		letter-spacing: 2px;
	}
	
	.main_nav ul li:last-child {
		border: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}


}


/*--------------------------------------------------------------
#toggle
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#toggle_sp {
		display: block;
		color: #776C59;
		text-align: center;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 9998;
		background: #FFF;
		padding: 10px 10px 5px 10px;
	}
	
	#toggle_close {
		display: block;
		color: #FFFFFF;
		text-align: center;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 9999;
		background: #000;
		padding: 10px 10px 5px 10px;
	}
	
	.trigger,
	.trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	
	.trigger {
		position: relative;
		width: 21px;
		height: 20px;
	}

	.trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: #776C59;
	}
	
	.trigger span:nth-of-type(1) {
		top: 0;
	}
	
	.trigger span:nth-of-type(2) {
		top: 8px;
	}
	
	.trigger span:nth-of-type(3) {
		top: 16px;
	}
	
	.trigger.active span:nth-of-type(1) {
		top: 8px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
    }
	
	.trigger.active span:nth-of-type(2) {
		width: 0;
		left: 50%;
    }
	
	.trigger.active span:nth-of-type(3) {
		top: 8px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
    }
	
	.toggleWrap {
		display: none;
		background: rgba(0, 0, 0, 0.9);
		margin: 0;
		padding: 0;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		overflow-y: auto;
		width: 100%;
		height: 100%;
		z-index: 9998;
		text-align: center;
	}
	
	.toggle-inner {
		width: 100%;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	
	.toggle-inner a:link {
		color: #E9E9E9;
		text-decoration: none;
	}
	
	.toggle-inner a:visited {
		color: #E9E9E9;
		text-decoration: none;
	}
	
	.toggle-inner a:hover,
	.toggle-inner a:active,
	.toggle-inner a:focus {
		color: #A2A2A2;
		text-decoration: none;
	}
	
	.tg-menu-logo {
		margin: 0 auto 20px auto;
		padding: 0;
		width: 100px;
		height: auto;
	}
	
	.tg_menu {
		margin: 0 0 80px 0;
		padding: 0;
		font-size: 15px;
		list-style-type: none;
		text-align: center;
		overflow: hidden;
	}

	.tg_menu li a {
		margin: 0;
		padding: 10px 30px;
		box-sizing: border-box;
		display: block;
	}
	
	.tg_menu li i {
		margin: -1px 5px 0 0;
		padding: 0;
		font-size: 7px;
		vertical-align: middle;
	}
	
	.fb_link {
		margin: 0 0 20px 0;
		padding: 0;
		font-size: 13px;
	}
	
	.fb_link i {
		margin: 0 10px 0 0;
		padding: 0;
	}
	
	.fb_link a {
		margin: 0;
		padding: 10px 10px 10px 20px;
		border: 1px solid #E9E9E9;
		display: inline-block;
	}
	
	.toggle-inner p {
		margin: 0;
		padding: 0;
		font-size: 13px;
	}
	
	.toggle-inner p i {
		margin: 0 8px 0 0;
		padding: 0;
		font-size: 12px;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#toggle_sp {
		display: none;
	}
	
	#toggle_pc {
		display: block;
		color: #776C59;
		position: absolute;
		text-align: center;
		bottom: 15px;
		left: 20px;
		z-index: 9999;
		background: #FFF;
		padding: 5px 5px 5px 5px;
	}
	
	#toggle_close {
		display: block;
		color: #FFFFFF;
		text-align: center;
		position: fixed;
		bottom: 15px;
		left: 20px;
		z-index: 9999;
		background: none;
		padding: 5px 5px 5px 5px;
	}
	
	.tg_menu {
		margin: 0 0 80px 0;
		padding: 0;
		font-size: 15px;
		list-style-type: none;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		text-align: center;
		overflow: hidden;
	}
	
	.tg_menu li a {
		margin: 0;
		padding: 5px 30px;
	}
	
}


/*--------------------------------------------------------------
.fb-fixed
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.fb-fixed {
		width: 175px;
		height: 40px;
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
		background: #fff;
		box-shadow: 0px 3px 6px #00000029;
		z-index: 2;
		display: flex;
		align-items: center;
	}
	
	.fb-fixed a {
		display: block;
		width: 100%;
		padding: 13px 13px;
		font-size: 13px;
		letter-spacing: 2.6px;
		color: #776C59;
		line-height: 1;
		text-align: center;
	}
	
	.fb-fixed a img {
		height: 15px;
		width: auto;
		margin: 0 10px 0 0;
		vertical-align: text-bottom;
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	

	
}


/* Larger than tablet */
@media (min-width: 992px) {
	


}

/*--------------------------------------------------------------
#footer
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#footer {
		background: #F2F0ED;
		margin: 0;
		height: 343px;
	}
	
	.foot_wrap {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		height: 100%;
		padding: 30px 20px 20px;
		position: relative;
	}
	
	.foot_logo {
		width: 94px;
		height: auto;
		float: none;
		margin: 0;
	}
	
	.foot_logo .flex {
		-ms-flex-pack: distribute;
		justify-content: space-around;
		width: 70px;
		margin: 0 auto 10px;
	}
	
	.foot_logo ul li {
		height: 28px;
		width: auto;
	}
	
	.foot_logo ul li img {
		height: 100%;
		width: auto;
	}
	
	.foot_info {
		font-size: 13px;
		line-height: 1,6;
		margin: 20px 0 0;
	}
	
	.foot_nav {
		font-size: 12px;
		margin: 10px 0 0;
	}
	
	.foot_nav i {
		margin: 0 5px 0 0;
	}
	
	.foot_nav ul li {
		float: left;
	}
	
	.foot_nav ul li:first-child {
		margin: 0 10px 0 0;
		padding: 0 10px 0 0;
		border-right: 1px solid #2b2b2b;
	}
	
	.copyright {
		display: block;
		margin: 0 auto;
		padding: 30px 0 0;
		font-size: 10px;
		position: absolute; 
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	#footer {
		background: #F2F0ED;
		margin: 0;
		height: 270px;
	}
	
	.foot_wrap {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		height: 100%;
		padding: 50px 20px 20px;
		position: relative;
		box-sizing: border-box;
	}
	
	.foot_logo {
		width: 94px;
		height: auto;
		float: left;
		margin: 0 30px 0 0;
	}
	
	.foot_logo .flex {
		-ms-flex-pack: distribute;
		justify-content: space-around;
		width: 70px;
		margin: 0 auto 10px;
	}
	
	.foot_logo ul li {
		height: 28px;
		width: auto;
	}
	
	.foot_logo ul li img {
		height: 100%;
		width: auto;
	}
	
	.foot_info {
		font-size: 13px;
		line-height: 1,6;
		margin: 0;
	}
	
	.foot_nav {
		font-size: 12px;
	}
	
	.foot_nav ul li {
		float: left;
	}
	
	.foot_nav ul li:first-child {
		margin: 0 10px 0 0;
		padding: 0 10px 0 0;
		border-right: 1px solid #2b2b2b;
	}
	
	.copyright {
		display: block;
		margin: 0 auto;
		padding: 30px 0 0;
		font-size: 10px;
		position: absolute; 
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
	}
}


/* Larger than tablet */
@media (min-width: 992px) {
	#footer {
		background: #F2F0ED;
		margin: 0 0 0 75px;
		height: 300px;
	}
	
	.foot_wrap {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		height: 100%;
		padding: 50px 50px 20px 50px;
		position: relative;
	}
	
	.foot_logo {
		width: 94px;
		height: auto;
		float: left;
		margin: 0 30px 0 0;
	}
	
	.foot_logo .flex {
		-ms-flex-pack: distribute;
		justify-content: space-around;
		width: 70px;
		margin: 0 auto 10px;
	}
	
	.foot_logo ul li {
		height: 28px;
		width: auto;
	}
	
	.foot_logo ul li img {
		height: 100%;
		width: auto;
	}
	
	.foot_info {
		font-size: 13px;
		line-height: 1,6;
		margin: 0;
	}
	
	.foot_nav {
		font-size: 12px;
	}
	
	.foot_nav ul li {
		float: left;
	}
	
	.foot_nav ul li:first-child {
		margin: 0 10px 0 0;
		padding: 0 10px 0 0;
		border-right: 1px solid #2b2b2b;
	}
	
	.copyright {
		display: block;
		margin: 0 auto;
		padding: 30px 0 0;
		font-size: 10px;
		position: absolute; 
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
	}


}

/*--------------------------------------------------------------
@pageTop
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#pageTop {
	  position: fixed;
	  bottom: 0;
	  right: 0;
	  z-index: 9997;
	}
	
	
	#pageTop a {
	  display: block;
	  padding: 0;
	  width: 40px;
	  height: 40px;
	  background-color: rgba(255,255,255,0.3);
	}

	#pageTop a:hover {
	  text-decoration: none;
	  opacity: 0.7;
	}


}

/* Small than tablet */
@media (min-width: 768px) {
	
	#pageTop {
	  position: fixed;
	  bottom: 20px;
	  right: 20px;
	}
	
	#pageTop a {
	  width: 60px;
	  height: 60px;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	


}