@charset "UTF-8";
/*ニュースページ下層上下マージン*/
.news-details {
	margin: 180px 0 70px;
}
.news-details img {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.news-details-day {
	font-size: 1.8rem;
	color: #6E6E6E;
	font-weight: bold;
	margin-right: 24px;
}

@media screen and (max-width: 768px) {
.news-details {
	margin: 120px 0 80px;
}
.news-details-day {
	font-size: 1.6rem;
	margin-right: 0;
	margin-bottom: 8px;
	display: block;
}

}

/*各タイトル用マージン調整*/
.news-ttl {
	margin: 10px 0 20px;
}
.news-min-ttl {
	line-height: 1.9;
	margin: 60px 0 10px;
}
.news-contents-ttl {
	margin-bottom: 10px;
}
.news-ttl-box {
	padding-bottom: 32px;
	margin-bottom: 32px;
	border-bottom: 2px solid #FF5C00;
}
.news-txt {
	font-size: 1.4rem;
	line-height: 1.7;
}
/*小セクションのマージン*/
.news-contents {
	margin-top: 50px;
}
.news-box {
	margin-top: 22px;
}
.news-contents-img {
	margin-bottom: 12px;
}
/*ニュースページサブカテゴリー*/



/*セレクトボックス*/
.news-table-wrpa {
	position: relative;
}
.news-select {
	position: absolute;
	margin-left: 40px;
	top: -10px;
	display: inline-block;
}
.news-select select {
	font-size: 3.2rem;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
.news-select {
	margin-left: 0;
	top: -50px;
}
.news-min-ttl {
	line-height: 1.5;
}
}
/** Custom Select **/
.custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
}
.custom-select-wrapper select {
	display: none;
}
.custom-select {
  position: relative;
  display: inline-block;
  background: none;
}
.custom-select-trigger {
	position: relative;
	display: block;
	width: 120px;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 40px;
	cursor: pointer;
}
.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	transform: rotate(45deg) translateY(-50%);
	transition: all .4s ease-in-out;
	transform-origin: 50% 0;
	width: 14px;
	height: 13px;
	background: url('https://corp-site.mazrica.com/assets/images/news/icon_news_select.png') no-repeat;
	background-size: 14px 13px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-180deg) translateY(-50%);
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	min-width: 100%;
	margin-top: 10px;
	border: 1px solid #B7B7B7;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0,0,0,.07);
	background: #fff;
	transition: all .4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	z-index: 1;
}
.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}
.custom-options:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%;
	right: 70%;
	width: 7px;
	height: 7px;
	margin-bottom: -4px;
	border-top: 1px solid #B7B7B7;
	border-left: 1px solid #B7B7B7;
	background: #fff;
	transform: rotate(45deg);
	transition: all .4s ease-in-out;
}
.option-hover:before {
	background: #f9f9f9;
}
.custom-option {
	position: relative;
	display: block;
	padding: 0 22px;
	border-bottom: 1px solid #B7B7B7;
	font-size: 1.8rem;
	font-weight: 600;
	color: #707070;
	line-height: 47px;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
	border-radius: 6px 6px 0 0;
}
.custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 6px 6px;
}
