@charset "utf-8";
/* -----------------------------------------------
* index.css
/column/index.html
に適用するためのcss
----------------------------------------------- */
/* -----------------------------------------------
	.#page-header
----------------------------------------------- */
#page-header .page-sub-title .text {
	font-size: 16px;
}
@media only screen and (max-width: 767px) {
	#page-header .page-sub-title .text {
		font-size: 14px;
	}
}
/* -----------------------------------------------
	#item-area .item-list
----------------------------------------------- */
#item-area .item-list::after {
	display: block;
	content: "";
	clear: both;
}
#item-area .item-list {
	margin-top: 20px;
	display: block;
}
#item-area .item-list .item {
	width: 50%;
	float: left;
	display: block;
	min-height: 121px;
	margin-bottom: 40px;
}
#item-area .item-list .item .inner {
	padding: 0 10px;
	display: block;
}
#item-area .item-list .inner .click-area {
	width: 100%;
	display: block;
	transition: all 0.2s ease-out;
}
#item-area .item-list .inner .click-area::after {
	display: block;
	content: "";
	clear: both;
}
#item-area .item-list .inner .click-area .image {
	width: 40%;
	display: block;
	background-color: #ccc;
	float: left;
	margin-right: 10px;
	transition: all 0.2s ease-out;
}
#item-area .item-list .inner .click-area .label {
	display: inline-block;
	color: #fff;
	background-color: #ffb700;
	padding: 5px;
	margin-top: 0;
	width: auto;
	font-size: 12px;
}
#item-area .item-list .inner .click-area:hover .label {
	text-decoration: none;
}
#item-area .item-list .inner .click-area .title {
	display: block;
	margin-top: 5px;
}
#item-area .item-list .inner .click-area .title span {
	font-size: 16px;
	line-height: 1.3em;
	color: #333;
	font-weight: 400;
}
#item-area .item-list .inner .click-area:hover .title span {
	color: #ff8d00;
}
#item-area .main a:hover {
	text-decoration: none;
}
@media only screen and (max-width: 767px) {
	#item-area .item-list .item {
		width: 100%;
		float: none;
		margin-bottom: 10px;
	}
	#item-area .item-list .inner .click-area .label {
		padding: 2px 5px;
	}
	#item-area .item-list .inner .click-area .title span {
		font-size: 14px;
	}
	#item-area .item-list .inner .click-area .image {
		height: auto;
	}
	#item-area .item-list .inner .click-area .image {
		margin-bottom: 40px;
	}
}
/*
	#item-area .header-text
----------------------------------------------- */
#item-area .header-text {
	display: block;
	width: auto;
	padding: 0;
	margin-bottom: 10px;
	padding: 0;
	height: 115px;
	background-repeat: no-repeat;
	background-size: cover;
	border: 2px solid #393939;
}
#item-area .header-text:hover {
	border-color: #FFB700;
	color: #FFB700;
}
#item-area .header-text:hover .headline span {
	color: #FFB700;
}
#item-area .header-text .headline {
	padding: 0 20px;
	margin: 0;
	display: block;
	position: relative;
	width: auto;
	top: 40px;
}
#item-area .main .header-text .headline span {
	display: block;
}
#item-area .main .header-text .headline span .click-area {
	color: #fff;
	font-weight: 400;
	width: 100%;
	display: block;
}
#item-area .main .header-text .headline:hover span .click-area,
#item-area .main .header-text .headline span:hover .click-area {
	color: #FFB700;
}
#item-area .headline .click-area:hover {
	color: #FFB700;
	text-decoration: none;
}
#item-area .headline .click-area::after {
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	right: 10px;
	top: -6px;
	background-image: url(/common/img/icon_arrow_black.svg);
	content: "";
	background-size: 50px 114px;
}
#item-area .headline:hover .click-area::after {
	background-position: 0 50px;
}

/* -----------------------------------------------
	.animated .more-btn
----------------------------------------------- */
.animated {
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
@-webkit-keyframes slideDown {
		0% {
				opacity: 1;
				-webkit-transform: translateY(-20px);
				transform: translateY(-20px);
		}
		100% {
				opacity: 1;
				-webkit-transform: translateY(0);
				transform: translateY(0);
		}
}
@keyframes slideDown {
		0% {
				opacity: 1;
				-webkit-transform: translateY(-20px);
				transform: translateY(-20px);
		}
		100% {
				opacity: 1;
				-webkit-transform: translateY(0);
				transform: translateY(0);
		}
}
.slide-down {
		-webkit-animation-name: slideDown;
		animation-name: slideDown;
}
@-webkit-keyframes slideUp {
		0% {
				-webkit-transform: translateY(20px);
				transform: translateY(20px);
		}
		100% {
				-webkit-transform: translateY(0px);
				transform: translateY(0px);
		}
}
@keyframes slideUp {
		0% {
				-webkit-transform: translateY(20px);
				transform: translateY(20px);
		}
		100% {
				-webkit-transform: translateY(0px);
				transform: translateY(0px);
		}
}
.slide-up {
		-webkit-animation-name: slideUp;
		animation-name: slideUp;
}
.content-wrap {
		height: 800px;
		overflow: hidden;
		position: relative;
		margin: 0;
}
.column-close-btn,
.column-more-btn {
		display: block;
		width: 100%;
		padding: 120px 0 0 0;
		position: absolute;
		bottom: 0;
		left: 0;
		text-align: center;
		transition: all 0.2s ease-out;
		background: -moz-linear-gradient(
				top,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 1) 60%
		);
		background: -webkit-linear-gradient(
				top,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 1) 60%
		);
		background: linear-gradient(
				to bottom,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 1) 60%
		);
		filter: progid:DXImageTransform.Microsoft.gradient(
						startColorstr='#00ffffff',
						endColorstr='#ffffff',
						GradientType=0
				);
}
.slide-up {
		height: 480px;
		padding-bottom: 0;
		overflow: hidden;
}
.slide-down {
		height: auto;
		overflow: visible;
		padding-bottom: 50px;
}
.column-more-btn p {
		display: inline-block;
		color: #fff;
		cursor: pointer;
		background: #FEAA08;
		padding: 15px 20px;
		width: 30%;
		border-radius: 50px;
		border: 2px solid #FEAA08;
		font-size: 16px;
	transition: all 0.2s ease-out;
}
.column-more-btn p:hover {
	background-color: #fff;
	color: #FEAA08;
}
.column-close-btn {
		background: none;
		padding: 120px 0 0 0;
		display: none;
}
.column-close-btn p {
		background: #aaa;
}
@media only screen and (max-width: 767px) {
	.column-more-btn p {
		width: 60%;
		padding: 10px 0;
	}
}
