@charset "utf-8";

/* main_head
---------------------------- */
#main {
	letter-spacing: 0.05em;
}
.main_head {
	text-align: center;
}
.main_head .title {
	padding: 100px 0 0;
	font-size: 3.4rem;
	letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
	.main_head .title {
		padding: 10% 0 0;
		font-size: 2.4rem;
	}
}

.main_body {
	padding-bottom: 100px;
}
@media screen and (max-width:767px) {
	.main_body {
		padding-bottom: 0;
	}
}

/* category
---------------------------- */
.category {
	background-color: #fbf7e8;
	text-align: center;
	padding: 50px 0;
	margin: 50px 0;
}
.category ul li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 1.5em;
	position: relative;
	padding-right: 1.5em;
	cursor: pointer;
}
.category ul li.active {
	color: #fc7215;
  border-bottom: 3px solid #fc7215;
}
.category ul li::after {
  position: absolute;
  top: 0;
  bottom: 0.3em;
  right: 0;
  margin: auto;
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.category ul li.active::after {
  border-bottom: 2px solid #fc7215;
  border-right: 2px solid #fc7215;
}
@media screen and (max-width:767px) {
	.category {
		padding: 3% 0 8% 0;
		margin: 10% 0;
	}
	.category ul li {
		font-size: 1.4rem;
		margin: 0 2em;
		padding-right: 1.3em;
		margin-top: 5%;
	}
	.category ul li.active {
	  border-bottom: 2px solid #fc7215;
	}
	.category ul li::after {
	  bottom: 0.2em;
	  width: 8px;
	  height: 8px;
	}
}

/* section
---------------------------- */
.section .inner {
  width: 90%;
  margin: 0 auto;
}
.section h2 {
	font-size: 2.4rem;
	border-bottom: 1px solid #c9c9c9;
	padding: 40px 0;
	position: relative;
}
.section_close h2 {
	cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.section_close h2:hover {
  opacity: .5
}
.section h2 span {
	border-left: 5px solid #fc7215;
	padding-left: 15px;
}
.section_close h2::before,
.section_close h2::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  background: #333;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}
.section_close h2::after {
  background: #333;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
.section_close h2.active::before {
	display: none;
}
.section_close h2.active::after {
  transform: rotate(0);
  transition: 0.5s;
}
.section_close .list {
	display: none;
}
.section .list li {
	border-bottom: 1px dotted #c9c9c9;
}
.section .list li a {
	display: block;
	padding: 25px 0;
	position: relative;
}
.section .list li a:hover .title {
	text-decoration: underline;
}
.section .list li .img {
	width: 15%;
}
.section .list li .img img {
	border: 1px solid #efefef;
}
.section .list li .text {
	overflow: hidden;
}
.section .list li .sub {
	color: #878787;
	font-size: 1.4rem;
	float: left;
}
.section .list li .sub span {
	display: inline-block;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.8em;
	width: 9em;
	text-align: center;
	margin-left: 15px;
}
.section .list li.info .sub span {
	background-color: #fc7215;
}
.section .list li.press .sub span {
	background-color: #f8bf12;
}
.section .list li.media .sub span {
	background-color: #71b421;
}
.section .list li .title {
	font-size: 1.6rem;
	padding-left: 14.5em;
}
.news .section .list li .text {
	width: 100%;
	padding: 0;
}
.news .section .list li .text .title {
	font-weight: bold;
	line-height: 1.6;
	padding-top: 5px;
}
@media screen and (max-width:1100px) {
	.section .inner {
	  width: 100%;
	}
}
@media screen and (max-width:767px) {
	.section h2 {
		font-size: 1.8rem;
		line-height: 1.5;
		padding: 8% 0;
	}
	.section_close h2::before,
	.section_close h2::after {
	  width: 13px;
	}
	.section .list li a {
		padding: 5% 0;
	}
	.section .list li .img {
		width: 26%;
	}
	.section .list li .sub {
		float: none;
	}
	.section .list li .sub span {
	  font-size: 1.1rem;
	  width: auto;
	  margin-left: 10px;
	  padding: 0 10px;
	}
	.section .list li .title {
	  font-size: 1.4rem;
	  padding: 5px 0 0;
	}
	.news .section .list li .text .title {
	  line-height: 1.4;
	}
}