﻿@charset "utf-8";

/* ****************************************************
pressrelease.css
***************************************************** */
.press-filter * {
	box-sizing: border-box;
}
/* -----------------------------------------------------
 * For PC Style
----------------------------------------------------- */
@media print, screen and (min-width: 769px) {
	/* press-text */
	.press-text {
		margin-top: 0;
	}
	
	/* press-filter */
	.press-filter {
		position: relative;
		margin: 30px 0 50px;
	       padding: 20px 30px 30px;
		background-color: #eee;
	}
	.press-filter::after {
		position: absolute;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 20px 20px 0 20px;
		border-color: #eee transparent transparent transparent;
		content: "";
	}
	.press-filter .press-filter_title {
		font-size: 120%;
		font-weight: bold;
	}
	.press-filter .press-filter_list-wrap {
		margin-top: 3px;
	}
	.press-filter .press-filter_unorder-list {
		display: flex;
		flex-flow: row wrap;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.press-filter .press-filter_unorder-list > li {
		width: calc((100% - 24px) / 4);
		margin-left: 8px;
	}
	.press-filter .press-filter_unorder-list > li:nth-of-type(4n+1) {
		margin-left: 0;
	}
	.press-filter .press-filter_unorder-list > li:nth-of-type(n+5) {
		margin-top: 8px;
	}
	.press-filter .press-filter_checkbox {
		opacity:0;
		position: absolute;
	}
	.press-filter .press-filter_checkbox-label_text {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 7px 10px 7px 40px;
		border: 1px solid #fff;
		background-color: #fff;
		cursor: pointer;
	}
	.press-filter .press-filter_checkbox-label_text::before {
		display: block;
		position: absolute;
		top: 50%;
		border-right: 3px solid #fff;
		border-bottom: 3px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		left: 14px;
		width: 6px;
		height: 10px;
		margin-top: -8px;
		opacity: 0;
		z-index: 1;
		content: '';
	}
	.press-filter .press-filter_checkbox-label_text::after {
		display: block;
		position: absolute;
		top: 50%;
		left: 8px;
		width: 16px;
		height: 16px;
		margin-top: -10px;
		background-color: #fff;
		border: 2px solid #ddd;
		content: '';
	}
	.press-filter .press-filter_checkbox-label_text:hover {
		border: 1px solid #d7083b;
		color: #d7083b;
	}
	.press-filter .press-filter_checkbox:checked + .press-filter_checkbox-label_text::before {
		opacity: 1;
	}
	.press-filter .press-filter_checkbox:checked + .press-filter_checkbox-label_text::after {
		background-color: #d7083b;
		border-color: #d7083b;
	}
	.press-filter .press-filter_button-wrap {
	       position: relative;
		margin-top: 20px;
		text-align: center;
	}
	.press-filter .press-filter_button_type {
		display: inline-block;
		position: relative;
		width: 207px;
		padding: 10px 30px 10px 35px;
		border: none;
		background: #000 url(/common/images/com_icn40.png) no-repeat 17px 50%;
		font-size: 100%;
		font-family: inherit;
		line-height: 1.6;
		color: #fff;
	}
	.press-filter .press-filter_button_type:hover {
		background-color: #d7083b;
		text-decoration: none;
	}
   .press-filter .press-filter_back-link {
	       position: absolute;
	       top: 10px;
	       left: 87px;
	      padding: 0 0 0 17px;
	      background: url(/common/images/com_icn81.png) no-repeat 0 7px;
	       line-height: 1.6;
	   }
	
	/* press-list */
	.press-list-wrap {
		margin: 20px 0 37px;
	}
	.press-list {
		margin-top: 10px;
	}
	.press-list dd {
		overflow: hidden;
	}
	.press-list.no-link {
		padding-left: 10px;
		background: none;
	}
	.press-list dt {
		clear: left;
		float: left;
		white-space: nowrap;
	}
	.press-list dt .date,
	.press-list dt .icon {
		margin-right: 10px;
	}
	.press-list dt .icon-start {
		margin-right: 3px;
	}
	.press-list dt .icon img {
		vertical-align: middle;
	}
	
	/* clearFix
	=================================*/
	.clearfix:after {
		content: "";
		display: block;
		clear: both;
	}
}

/* -----------------------------------------------------
 * For SP Style
----------------------------------------------------- */
@media screen and (max-width: 768px) {
	/* press-text */
	.press-text {
		margin: 0 0 10px;
	}
	
	/* press-filter */
	.press-filter {
		position: relative;
		margin: 30px 0 50px;
		padding: 15px 20px 20px;
		background-color: #eee;
	}
	.press-filter::after {
		position: absolute;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 20px 20px 0 20px;
		border-color: #eee transparent transparent transparent;
		content: "";
	}
	.press-filter .press-filter_title {
		font-size: 133.333%;
		font-weight: bold;
	}
	.press-filter .press-filter_list-wrap {
		margin-top: 3px;
	}
	.press-filter .press-filter_unorder-list {
		display: flex;
		flex-flow: row wrap;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.press-filter .press-filter_unorder-list > li {
		width: calc((100% - 15px) / 2);
		margin-right: 15px;
	}
	.press-filter .press-filter_unorder-list > li:nth-of-type(2n) {
		margin-right: 0;
	}
	.press-filter .press-filter_unorder-list > li:nth-of-type(n+3) {
		margin-top: 10px;
	}
	.press-filter .press-filter_checkbox {
		opacity:0;
		position: absolute;
	}
	.press-filter .press-filter_checkbox-label_text {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 11px 10px 11px 40px;
		background-color: #fff;
		cursor: pointer;
		line-height: 1.4;
	}
	.press-filter .press-filter_checkbox-label_text::before {
		display: block;
		position: absolute;
		top: 50%;
		border-right: 3px solid #fff;
		border-bottom: 3px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		left: 14px;
		width: 6px;
		height: 10px;
		margin-top: -8px;
		opacity: 0;
		z-index: 1;
		content: '';
	}
	.press-filter .press-filter_checkbox-label_text::after {
		display: block;
		position: absolute;
		top: 50%;
		left: 8px;
		width: 16px;
		height: 16px;
		margin-top: -10px;
		background-color: #fff;
		border: 2px solid #ddd;
		content: '';
	}
	.press-filter .press-filter_checkbox:checked + .press-filter_checkbox-label_text::before {
		opacity: 1;
	}
	.press-filter .press-filter_checkbox:checked + .press-filter_checkbox-label_text::after {
		background-color: #d7083b;
		border-color: #d7083b;
	}
	.press-filter .press-filter_button-wrap {
		margin-top: 15px;
		text-align: center;
	}
	.press-filter .press-filter_button_type {
		display: block;
		position: relative;
		width: 100%;
		padding: 12px 35px 12px 35px;
	       border: none;
		background: #000 url(/common/images/com_icn40.png) no-repeat 17px 50%;
		color: #fff;
		font-size: 120%;
	}
  .press-filter .press-filter_button_type:hover {
    text-decoration: none;
  }
  .press-filter .press-filter_back-link {
	       display: inline-block;
	       margin: 15px auto 0;
	       padding: 0 0 0 17px;
	       background: url(/common/images/com_icn81.png) no-repeat 0 3px;
	       line-height: 1.6;
	   }
	
	/* press-list */
	.press-list-wrap {
		margin-top: 20px;
	}
	.press-list {
		margin-top: 10px;
	}
	.press-list dd {
		margin-top: 8px;
		margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: 1px solid #cccccc;
	}
	.press-list dd.no-link {
		padding-left: 10px;
		background: none;
	}
	.press-list dt {
		margin-top: 15px;
	}
	.press-list dt .date,
	.press-list dt .icon {
		margin-right: 10px;
	}
	.press-list dt .icon-start {
		margin-right: 3px;
	}
	.press-list dt .icon img {
		vertical-align: middle;
	}

	/* clearFix
	=================================*/
	.clearfix:after {
		content: "";
		display: block;
		clear: both;
	}
}

@media print {
}