/* CSS Document */

@charset "UTF-8";

@import url('reset.css');
@import url('font.css');
@import url('g-navi.css');

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

/*----------------------------------------------------------------------
全体
-----------------------------------------------------------------------*/
body {
	background-color: #FFF;
}

p.top-space {
	margin-top: 1.4em;
}

/*----------------------------------------------------------------------
ヘッダー
-----------------------------------------------------------------------*/
header.pc {
	position: fixed;
	width: 100%;
	height: 110px;
	background-color: #F6F4F2;
	color: #000;
	z-index: 100000 !important;
}
@media screen and (max-width : 736px) {
	header.pc {
		display: none;
	}
}

header.pc div.inner {
	position: relative;
	width: 1140px;
	margin: 0 auto;
}

header.pc div.inner img.logo {
	position: absolute;
	top: 5px;
	width: 162px;
}

/*----------------------------------------------------------------------
pcナビ
-----------------------------------------------------------------------*/
.header-navi li {
 	float: left;
	padding: 0px 20.5px;
	font-size: 14.5px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bolder;
	color: #000;
	line-height: 34px;
	white-space: nowrap;
}

.header-navi li a {
 	text-decoration: none !important;
}

.header-navi {
 	position: absolute;
	top: 76px;
	right: -20px;
}

.header-navi li {
	position: relative;
	list-style: none;
}

.header-navi li a {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
}

.header-navi li ul {
	top: 34px;
	position: absolute;
	background-color: #FFF;
	visibility: hidden;
	opacity: 0;
	transition: all .4s ease-in-out;
	border: 1px solid #B5B5B5;
}

.header-navi li:hover ul {
	visibility: visible;
	opacity: 1;
}
.header-navi li ul li {
	overflow: hidden;
	height: 0;
	float: none;
	visibility: hidden;
	opacity: 0;
	transition: all .4s ease-in-out;
	padding: 0px 11px;
	font-size: 13.5px;
}

.header-navi li:hover ul li {
	visibility: visible;
	opacity: 1;
}

.header-navi li ul li {
	overflow: hidden;
	height: 0;
	float: none;
	visibility: hidden;
	opacity: 0;
	transition: all .4s ease-in-out;
	padding: 0px 11px;
	font-size: 13.5px;	
}
.header-navi li ul li:hover {
	background-color: #E1E1E1;
}
.header-navi li ul li.index:hover {
	background-color: #FFF;
}

.header-navi li:hover > ul > li {
	height: 34px;
}

._2nd a {
	padding-left: 18px;
}

/*----------------------------------------------------------------------
spヘッダー
-----------------------------------------------------------------------*/
header.sp {
	position: relative;
	height: 16vw;
	padding: 3vw 0;
	background-color: #F6F4F2;
	color: #242414;
}

header.sp a#header-logo {
	position: absolute;
	left: 3vw;
	width: 19.8vw;
	z-index: 98;
}

header.sp a#header-logo img {
	width: 100%;
}

#nav-drawer {
  position: relative;
}

/*----------------------------------------------------------------------
spナビ
-----------------------------------------------------------------------*/
/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	position: fixed;
	top: 4vw;
	right: 3vw;
	width: 8vw;
	height: 6vw;
	padding: 3vw;
	background-color: #F6F4F2;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	z-index: 96;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 1.3vw;/*線の太さ*/
	width: 8vw;/*長さ*/
	background: #666;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span::before {
	bottom: -2.5vw;
}
#nav-open span::after {
	bottom: -5vw;
}

/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 72%;/*右側に隙間を作る（閉じるカバーを表示）*/
	height: 100%;
	padding: 2vw 4vw;
	background-color: #4A4633;
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
	overflow: auto;
}

#nav-content ul {
	margin-bottom: 4.4vw;
}

#nav-content ul li {
	border-bottom: 1px solid #CCC;
	font-size: 15px;
	line-height: 1.5em;
	color: #FFF !important;
}
#nav-content ul li.button {
	padding: 12px 0px;
	cursor: pointer;
}
#nav-content ul li.button span {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0px 0px 2px 9px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#nav-content ol li {
	list-style: none;
}
#nav-content ol li:last-of-type {
	border-bottom: none;
}

#nav-content ul li a {
	display: block;
	padding: 12px 0px;
	color: #FFF !important;
	text-decoration: none;
}

#nav-content ol li a, #nav-content ol li.button {
	padding-left: 1.2em;
}

#nav-content ol ol {
	padding-left: 1.2em;
	border-bottom: 1px solid #FFF;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: .3;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*----------------------------------------------------------------------
メイン
-----------------------------------------------------------------------*/
div#main {
	width: 1140px;
	min-height: 450px;
	margin: 0 auto;
	padding: 110px 0px 66px;
	font-size: 108%;
	overflow: hidden;
}
@media screen and (max-width: 736px) {
	div#main {
		width: 100%;
		padding-top: 0;
	}
}

div#main article {
	width: 90.9%;
	margin: 0 auto;
}

div#main article h1 {
	width: 100%;
	margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
	div#main article h1 {
		margin-bottom: 20px;
	}
}

div#main article h2 {
	margin-bottom: 1.27em;
	font-size: 156%;
	line-height: 26px;
	color: #090202;
}
@media screen and (max-width: 736px) {
	div#main article h2 {
		font-size: 108%;
		line-height: 1.5em;
	}
}

div#main article p {
	width: 100%;
	margin-bottom: 1.5em;
}

@media screen and (max-width: 736px) {
	div#main section br, div#main article br {
		display: none;
	}
	
	div#main section br.sp, div#main article br.sp {
		display: block;
	}
}

div#main article img._40 {
	width: 40%;
}
div#main article img._50 {
	width: 50%;
}
div#main article img._60 {
	width: 60%;
}
div#main article img._70 {
	width: 70%;
}

@media screen and (max-width: 736px) {
	div#main article img._40, div#main article img._50, div#main article img._60,div#main article img._70 {
		width: 100%;
	}
}

div#main2 {
	position: relative;
	width: 1140px;
	height: 1200px;
	margin: 0 auto;
}

div#main2 div.left {
	float: left;
	width: 25%;
}

div#main2 div.right {
	width: 75%;
	padding-left: 25%;
}

div#main2 div.left2 {
	float: left;
	width: 18%;
}

div#main2 div.right2 {
	width: 82%;
	padding-left: 18%;
}

/*----------------------------------------------------------------------
パンくずリスト
-----------------------------------------------------------------------*/
ul#topicPath {
	margin: 12px 10px 60px;
}
@media screen and (max-width: 736px) {
	ul#topicPath {
		margin-bottom: 42px;
	}
}

ul#topicPath li {
	display: inline;
}
ul#topicPath li a, ul#topicPath li.index {
	padding-right: 10px;
	background: url(../images/com_img/topicpath.gif) no-repeat right center;
}

/*----------------------------------------------------------------------
ページナビゲーション
-----------------------------------------------------------------------*/
#page-navi {
	clear: both;
	margin: 60px 70px 0px 0px;
	float: right;
}
@media screen and (max-width: 736px) {
	#page-navi {
		margin: 60px 30px 0px 0px;
	}
	
	div#main article p br.sp {
		display: block;
	}
}

#page-navi li {
	float: left;
	margin: 0px 0px 15px 30px;
	font-size: 108%;
}

#page-navi li.back a {
	padding-left: 4px;
}
#page-navi li.back::before {
	content: "\02190";
	font-weight: bold;
}
#page-navi li.forward a {
	padding-right: 4px;
}
#page-navi li.forward::after {
	content: "\02192";
	font-weight: bold;
}

/*----------------------------------------------------------------------
勉強会・相談会
-----------------------------------------------------------------------*/
ul#study {
	margin-bottom: 1.5em;
	overflow: hidden;
}

ul#study li {
	float: left;
	padding-right: 1.2em;
	list-style: disc;
	list-style-position: inside;
}

/*----------------------------------------------------------------------
建築事例TOP
-----------------------------------------------------------------------*/
div#main.gallery-index section {
	width: 90.9%;
	margin: 0 auto;
}

div#main.gallery-index h1 {
	margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
	div#main.gallery-index h1 {
		margin-bottom: 20px;
	}
}

div#main.gallery-index section article {
	width: 100%;
	padding: 40px 0px;
	border-bottom: 1px solid #CCC;
	font-size: 93%;
	overflow: hidden;
}
@media screen and (max-width: 736px) {
	div#main.gallery-index section article {
		padding: 30px 0px 14px;
	}
}
div#main.gallery-index section article:last-of-type {
	border-bottom: none;
}

div#main.gallery-index section article a {
	display: block;
	text-decoration: none;
}
div#main.gallery-index section article:hover a {
	color: #242414;
}

div#main.gallery-index section article h2 {
	line-height: 1em;
	color: #242414;
}

div#main.gallery-index section article h2 span {
	font-size: 14px !important;
}

div#main.gallery-index section article p {
	font-size: 85%;
}

div#main.gallery-index section article img:first-of-type {
	float: left;
	width: 510px;
	margin-right: 40px;
	
}
@media screen and (max-width: 736px) {
	div#main.gallery-index section article img:first-of-type {
		float: none;
		width: 100%;
		margin-right: 0;
	}
}

div#main.gallery-index section article:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/*----------------------------------------------------------------------
建築事例
-----------------------------------------------------------------------*/
div#main.gallery article {
	width: 1000px;
	margin: 0 auto;
}

div#main.gallery {
	margin: 0 auto;
	padding-bottom: 20px;
}

div#main.gallery section {
	width: 90.9%;
	margin: 0 auto;
}

div#main.gallery section h1 {
	margin-bottom: 0.25em;
	font-size: 144%;
	line-height: 26px;
}
@media screen and (max-width: 736px) {
	div#main.gallery section h1 {
		margin-bottom: 7.5px;
	}
}

div#main.gallery section h2 {
	margin-bottom: 1.27em;
}
@media screen and (max-width: 736px) {
	div#main.gallery section h2 {
		margin-bottom: 20px;
	}
}

div#main.gallery section p {
	font-size: 85%;
}

article.newhouse {
	width: 100%;
	padding: 25px 0px;
	background-color: #FFF;
	border-bottom: 1px solid #CCC;
	overflow: hidden;
}
article.newhouse:nth-child(even) {
	background-color: #E6E6E7;
}

article.newhouse div {
	width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 736px) {
	article.newhouse div {
		width: 90.9%;
	}
}

article.newhouse div h2 {
	margin-bottom: 6px;
	padding-top: 45px;
	font-family: 'Cantarell', sans-serif;
	font-size: 42px;
	font-weight: normal;
}
@media screen and (max-width: 736px) {
	article.newhouse div h2 {
		font-size: 32px;
	}
}

article.newhouse div img {
	float: left;
	margin-right: 80px;
}
article.newhouse:nth-child(odd) div img {
	float: right;
	margin-left: 80px;
	margin-right: 0px;
}
@media screen and (max-width: 736px) {
	article.newhouse div img {
		width: 100%;
		margin: 0;
	}
}

div.bottom {
	width: 1100px;
	margin: 0 auto;
}

/*----------------------------------------------------------------------
スタイルギャラリー
-----------------------------------------------------------------------*/
ul#style-index {
	display: table;
	width: 930px;
	margin: 20px auto 0px;
	overflow: hidden;
}

ul#style-index li {
	float: left;
	width: 435px;
	margin: 15px 15px 5px;
}

ul#style-index li a {
	display: block;
}
ul#style-index li:hover a {
	opacity: 0.8;
	filter : alpha(opacity=80);
}

@media screen and (max-width: 736px) {
	ul#style-index {
		width: 100%;
	}
	
	ul#style-index li {
		float: none;
		width: 100%;
		margin: 1.5em 0em 0em;
	}
	ul#style-index li:first-of-type {
		margin-top: 0.5em;
	}
}

/*----------------------------------------------------------------------
モデルハウス
-----------------------------------------------------------------------*/
article.modelhouse h3 {
	margin-bottom: 1.4em;
	color: #D37753;
}

article.modelhouse p img {
	float: left;
	margin: 0 1.5em 1.5em 0;
}

article.modelhouse p strong {
	font-size: 83%;
}

@media screen and (max-width: 736px) {
	article.modelhouse a {
		color: #D37753;
	}
}

/*----------------------------------------------------------------------
会社概要
-----------------------------------------------------------------------*/
article.about table {
	width: 100%;
	margin: 25px 0px 50px;
	border-top: 1px solid #777;
}

article.about table th, article.about table td {
	padding: 1.5em;
	border-bottom: 1px solid #777;
}
@media screen and (max-width: 736px) {
	article.about table th, article.about table td {
		display: block;
		width: 100%;
		padding: 0.5em 1em;
	}
}

article.about table th {
	background-color: #E0E0E0;
	text-align: left;
	font-weight: normal;
}
@media screen and (min-width: 736px) {
	article.about table th {
		width: 140px;
		text-align: center;
	}
}

article.about table ul li {
	margin-left: 1.2em;
	list-style-type: disc;
}

@media screen and (min-width: 736px) {
	article.about p.train {
		margin-bottom: 0 !important;
	}
}

/*----------------------------------------------------------------------
スタッフ
-----------------------------------------------------------------------*/
div#main.staff section {
	width: 90.9%;
	margin: 0 auto;
}

div#main.staff h1 {
	margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
	div#main.staff h1 {
		margin-bottom: 20px;
	}
}

div#main.staff section article {
	width: 100%;
	padding: 40px 0px;
	border-bottom: 1px solid #CCC;
	font-size: 93%;
	overflow: hidden;
}
@media screen and (max-width: 736px) {
	div#main.staff section article {
		padding: 30px 0px;
	}
}
div#main.staff section article:last-of-type {
	border-bottom: none;
}

div#main.staff section article img:first-of-type {
	float: left;
	width: 380px;
	margin-right: 40px;
	
}
@media screen and (max-width: 736px) {
	div#main.staff section article img:first-of-type {
		float: none;
		width: 100%;
		margin-right: 0;
	}
}

div#main.staff section article img:nth-of-type(2) {
	width: 400px;
	margin-bottom: 1.5em;
}
@media screen and (max-width: 736px) {
	div#main.staff section article img:nth-of-type(2) {
		width: 100%;
	}
}

div#main.staff section article p.top-space {
	margin-bottom: 0;
}

/*----------------------------------------------------------------------
採用情報
-----------------------------------------------------------------------*/
@media screen and (min-width: 736px) {
	div#main article.job h2 {
		margin-bottom: 0.8em;
	}
}

/*----------------------------------------------------------------------
イベント
-----------------------------------------------------------------------*/
div#main.event section {
	width: 90.9%;
	margin: 0 auto;
}

div#main.event article {
	width: 100%;
}

div#main.event h1 {
	margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
	div#main.event h1 {
		margin-bottom: 20px;
	}
}

div#main.event-index article {
	clear: left;
	min-height: 245px;
	padding: 20px 0px 6px;
	border-bottom: 1px solid #AAA;
}
div#main.event-index article:first-of-type {
	padding-top: 0;
}
div#main.event-index article:last-of-type {
	border: none;
}

div#main.event-index article img {
	float: left;
	width: 338px;
}
@media screen and (max-width: 736px) {
	div#main.event article img, div#main.event-index article img {
		float: none;
		width: 100%;
	}
}

div#main.event-index article div {
	margin-left: 378px;
}
@media screen and (max-width: 736px) {
	div#main.event-index article div {
		margin-left: 0;
	}
}

div#main.event article h1 {
	margin: 0.3em 0em 1.5em;
	font-size: 138.5%;
}

div#main.event article ul {
	margin: 0em 0em 1.5em 1.4em;
	list-style-type: disc;
	list-style: outside;
	font-size: 116%;
	line-height: 25px;
}

div#main.event article p {
	margin-bottom: 1em;
	font-size: 116%;
	line-height: 25px;
}

div#main.event article p.theme {
	font-weight: bold;
}
div#main.event article p.category {
	margin: 1.5em 0em 0.2em;
	font-weight: bold;
	font-size: 100%
}

/*----------------------------------------------------------------------
お問い合わせ
-----------------------------------------------------------------------*/
div#main.inq article {
	width: 1000px;
	margin: 0 auto;
}

/*----------------------------------------------------------------------
プライバシーポリシー
-----------------------------------------------------------------------*/
div#main.privacy article {
	width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 736px) {
	div#main.privacy article {
		width: 90.9%;
	}
}
div#main.privacy article h2 {
	color: #242414;
}

div#main.privacy article h3 {
	margin: 26px 0 2px;
}
div#main.privacy article h3::before {
	content: "\FF3B";
}
div#main.privacy article h3::after {
	content: "\FF3D";
}

/* @group merit.html ---------------------------------------- */

div#main.checkPoint {
	padding: 40px 50px;
	background: #fdf7dd;
}

div#main.checkPoint h3 {
	margin: 0 0 20px;
	color: #de6909;
	font-size: 2.2rem;
	line-height: 1;
	font-weight: 400;
}

div#main.checkPoint .checkListWrapper {
	display: flex;
	margin: 0 ;
}

div#main.checkPoint .checkList {
	width: 50%;
	padding: 0 15px 0 0;
}

div#main.checkPoint .checkList:last-child {
	padding: 0 0 0 15px;
}

div#main.checkPoint .checkList li {
	position: relative;
	margin: 4px 0;
	padding-left: 30px;
	font-size: 1.6rem;
	line-height: 1.6;
}

div#main.checkPoint .checkList li:before {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url("../images/icon_checkbox.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

div#main.checkPoint .checkList li small {
	display: inline-block;
	margin: 0 0 10px;
	font-size: 1.4rem;
	line-height: 1.6;
}

@media screen and (max-width: 736px) {
	div#main {
		padding-bottom: 2vw;
	}
}

/*----------------------------------------------------------------------
pagetop
-----------------------------------------------------------------------*/
#page-top {
	z-index: 200;
	position: fixed;
	bottom: 50px;
	right: 50px;
	width: 54px;
	height: 54px;
}
#page-top:hover {
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter:alpha(opacity=80);
}

#page-top a {
	display: block;
	width: 54px;
	height: 54px;
}

@media screen and (max-width: 736px) {
	#page-top, #page-top a {
		width: 12vw;
		height: 12vw;
	}

	#page-top {
		bottom: 0;
		right: 0;
	}
}

/*----------------------------------------------------------------------
フッター
-----------------------------------------------------------------------*/
footer.pc {
	clear: both;
	height: 160px;
	margin: 0 auto;
	background-color: #25221B;
	color: #FFF;
}
@media screen and (max-width: 736px) {
	footer.pc {
		display: none;
	}
}

footer.pc a {
	color: #FFF;
	text-decoration: none;
}

footer.pc div#footer-inner {
	position: relative;
	width: 1140px;
	height: 160px;
	margin: 0 auto;
	line-height: 1.2;
}

footer.pc ul.footer-links {
	position: absolute;
	top: 22px;
	left: 66px;
}
footer.pc .footer-links li {
	float: left;
	border-right: 1px solid #FFF;
	padding: 0px 6px;
}
footer.pc .footer-links li:last-of-type {
	border-right: none;
	padding-left: 8px;
}
footer.pc .footer-links li a:hover {
	text-decoration: underline;
}

footer.pc a.fb {
	position: absolute;
	top: 10px;
	left: 594px;
	width: 42px;
	height: 42px;
}

footer.pc a.fb img {
	width: 100%;
}

footer.pc img.footer-logo {
	position: absolute;
	top: 60px;
	left: 3px;
	width: 191px;
	height: 55px;
	padding: 2px 0px 0px 60px;
	background-image: url(/takamune2019/images/footer/logo_bg.gif);
	background-repeat: no-repeat;
}

footer.pc ul#footer-info {
	position: absolute;
	top: 80px;
	left: 288px;
}

footer.pc #footer-inner p.copyright {
	position: absolute;
	bottom: 20px;
	right: 27px;
}

/*----------------------------------------------------------------------
フッター
-----------------------------------------------------------------------*/
footer.sp {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 10000;
}
@media screen and (min-width: 736px) {
	footer.sp {
		display: none;
	}
}

footer.sp ul.footer-links {
	width: 100%;
	height: 20vw;
	margin: 0;
	padding: 0;
	background-color: #574B31;
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
}

footer.sp ul.footer-links li {
	width: calc(88% / 2);
	background-color: #574B31;
	text-align: center;
	list-style: none;
}
footer.sp ul.footer-links li:last-of-type {
	width: calc(112% / 2);
}

footer.sp ul.footer-links li img {
	width: 58%;
}
footer.sp ul.footer-links li:last-of-type img {
	width: 68%;
}

footer.sp ul.footer-links li a {
	display: block;
	width: 100%;
	height: 100%;
}

/*2018_06809追加

/*----------------------------------------------------------------------
リフォーム - basecolor
-----------------------------------------------------------------------*/
.btnY a, .btnY a:hover {
	background: #3E8073;
	color: #FFF;
}
.btnY a::after {
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
}

.baseFrame .baseSect .text strong {
	color: #3E8073;
}

#improvement .troubleTitle .num {
	background: #3E8073;
	color: #FFF;
}

#health .insulationArea .when {
	color: #3E8073;
}

#cost #basicPack {
	border: 1px solid #3E8073;
}

#cost #basicPack h3 {
	background: #3E8073;
	color: #FFF;
}

#cost #basicPack .imageArea h4 {
	color: #3E8073;
}

.stepBlock .step {
	background: #3E8073;
	color: #FFF;
}

#faq .faqSect .faqQ {
	color: #3E8073;
}

#panelArea .panel:hover {
	background: #3E8073;
	color: #FFF;
}

#panelArea .panel:hover .date, #panelArea .panel:hover .panelTitle {
	color: #FFF;
	border: none;
}

#galleryDetail .baseSectTitle span.badge {
	background: #3E8073;
	color: #FFF;
}

.sp-thumbnail-container.sp-selected-thumbnail li:before {
	border: 4px solid #AAA;
}

#eventHeader .subTitle span {
	background: #3E8073;
	color: #FFF;
}

.eventPanel .titleArea .badge span {
	background: #3E8073;
	color: #FFF;
}

.eventPanel .btnDetail a, .eventPanel .btnDetail a:hover {
	background: #3E8073;
	color: #FFF;
}
.eventPanel .btnDetail a::after {
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
}

.eventPanel .description {
	position: inherit;
	transform: none;
}

#panelArea .panel.new:before {
	background: #3E8073;
	color: #FFF;
}

/*----------------------------------------------------------------------
sp
-----------------------------------------------------------------------*/
@media screen and (max-width: 736px) {
	header.pc, nav.pc, img.pc, footer.pc {
		display: none;
	}
	.sub-menu::after {
		content: none !important;
	}
}

@media screen and (min-width: 736px) {
	header.sp, #nav-open, img.sp, img.SP {
		display: none;
	}
}