@charset "UTF-8";
/* CSS Document */

/* =========================================================
PAGE COMMON
========================================================= */
a {}
a:link {}
a:visited {}
a:hover {}
a:active {}

body {
}

#allWrap {
}

#allWrap i.blank {
}

main {
}

article {
}

/* ==================================================
NEWS
================================================== */
#newsArea {
}

#newsArea .newsList {
}

#newsArea .newsList .list {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

#newsArea .newsList .list:not(:last-child) {
	margin-bottom: 40px;
}

/* アンカーリンクポジション */
#newsArea  .list .anchorPos {
	position: absolute;
	top: -100px;
	left: 0;
	opacity: 0;
	width: 1px;
	height: 1px;
	z-index: -9999;
}


/* .img */
#newsArea .newsList .list .img {
	margin: 0 -50px 0 auto;
	position: relative;
	z-index: 2;
	padding: 10px 0 0 0;
	text-align: left;
}

#newsArea .newsList .list .img .update {
	font-size: 1.6rem;
	text-align: center;
	padding: 2px 15px;
	display: inline-block;
	margin: 0 auto 10px 15px;
	background: rgba(255,255,255,1);
	border-radius: 50px;
}

#newsArea .newsList .list .img .update::before {
	content: "UPDATE :";
	display: inline-block;
	margin-right: 3px;
}

@media screen and (min-width: 901px) {
#newsArea .newsList .list:nth-of-type(even) .img {
	order: 2;
	margin: 0 auto 0 -50px;
	text-align: right;
}

#newsArea .newsList .list:nth-of-type(even) .img .update {
	order: 1;
	margin: 0 15px 10px auto;
}
}

#newsArea .newsList .list .img .pct {
	max-width: 380px;
	overflow: hidden;
}

#newsArea .newsList .list .img .pct img {
}

/* .txt */
#newsArea .newsList .list .txt {
	width: calc(100% - 380px);
	margin: 0 auto 0 -50px;
	position: relative;
	z-index: 1;
	padding: 30px 30px 20px 120px;
	text-align: left;
	min-height: 375px;
}

@media screen and (min-width: 901px) {
#newsArea .newsList .list:nth-of-type(even) .txt {
	margin: 0 -50px 0 auto;
	padding: 30px 120px 20px 30px;
}
}

#newsArea .newsList .list:not(:last-child) .txt {
	/*margin-bottom: 40px;*/
}

#newsArea .newsList .list .txt h3 {
	position: relative;
	font-size: 2.2rem;
	padding: 0;
	margin: 0 0 40px 0;
}

#newsArea .newsList .list .txt h3::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: #000;
	border-radius: 10px;
	position: absolute;
	bottom: -20px;
}

#newsArea .newsList .list .txt .comment {
	font-size: 1.6rem;
	line-height: 1.4;
}

#newsArea .newsList .list .txt .comment p {
	margin-bottom: 1.2em;
}

#newsArea .newsList .list .txt .comment a {
	color: #009444;
	text-decoration: underline;
}

#newsArea .newsList .list .txt .comment a:hover {
	text-decoration: none;
}

#newsArea .newsList .list .txt .comment a.linkBtn {
	position: relative;
	padding: 5px 20px;
	display: inline-block;
	background: #ffe400;
	color: #000;
	border-radius: 500px;
	text-decoration: none;
	margin: 0 15px 15px 0;
}

#newsArea .newsList .list .txt .comment a.linkBtn::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/icon_arrow_black.svg) no-repeat center center;
	background-size: 100%;
	margin-left: 10px;
	vertical-align: middle;
	transform: translateY(-2px);
}

#newsArea .newsList .list .txt .comment a.linkBtn:hover {
}

#newsArea .newsList .list .txt .comment a.linkBtn.green {
	background: #009444;
	color: #fff;
}

#newsArea .newsList .list .txt .comment a.linkBtn.red {
	background: #e3001a;
	color: #fff;
}

#newsArea .newsList .list .txt .comment a.linkBtn.blue {
	background: #0095e2;
	color: #fff;
}

#newsArea .newsList .list .txt .comment a.linkBtn.green::after,
#newsArea .newsList .list .txt .comment a.linkBtn.red::after,
#newsArea .newsList .list .txt .comment a.linkBtn.blue::after {
	background: url(../img/icon_arrow_white.svg) no-repeat center center;
	background-size: 100%;
}


/* other */
.comment em {
	display: inline-block;
	position: relative;
	margin: 0 4px;
}

.comment em::after {
	content: "";
	display: block;
	width: calc(100% + 4px);
	height:60%;
	position: absolute;
	bottom: -1px;
	left: -2px;
	z-index: -1;
	opacity: 0.5;
}

.comment em.green::after {
	background-color: #009444;
}

.comment em.red::after {
	background-color: #e3001a;
}

.comment em.blue::after {
	background-color: #0095e2;
}

.comment em.yellow::after {
	background-color: #ffe400;
}

.comment .label {
	display: inline-block;
	border: 4px solid #e3001a;
	border-radius: 28px;
	color: #e3001a;
	padding: 1px 15px;
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 5px;
}

.comment .date {
	padding: 0 0 0 15px;
	font-size: 2rem;
	/*! color: #e3001a; */
}

.comment .note {
	font-size: 90%;
	display: block;
	margin: 10px 0;
}


/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 900px) {
#newsArea {
}

#newsArea .newsList {
}

#newsArea .newsList .list {
	display: block;
	max-width: 740px;
}

#newsArea .newsList .list:not(:first-child) {
}

/* .img */
#newsArea .newsList .list .img {
	width: calc(100% - 80px);
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#newsArea .newsList .list .img .update {
	width: 100%;
	margin: 15px 0 0;
	padding: 0;
	order: 2;
}

#newsArea .newsList .list .img .update::before {
}

#newsArea .newsList .list .img .pct {
	margin: 0 auto;
	max-width: 500px;
	width: 96%;
	border-radius: 18px;
}

#newsArea .newsList .list .img .pct img {
}

/* .txt */
#newsArea .newsList .list .txt {
	width: 100%;
	margin: -120px auto 0;
	padding: 125px 30px 30px;
	min-height: auto;
}

#newsArea .newsList .list .txt h3 {
}

#newsArea .newsList .list .txt h3::after {
}

#newsArea .newsList .list .txt .comment {
}

#newsArea .newsList .list .txt .comment p {
}

#newsArea .newsList .list .txt .comment a {
}

#newsArea .newsList .list .txt .comment a:hover {
}

#newsArea .newsList .list .txt .comment a.linkBtn {
}

#newsArea .newsList .list .txt .comment a.linkBtn::after {
}

#newsArea .newsList .list .txt .comment a.linkBtn:hover {
}
} /* ############ ↑↑↑ MEDIAQUERY ↑↑↑ ############ */


/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 420px) {
#newsArea {
}

#newsArea .newsList {
}

#newsArea .newsList .list {
}

#newsArea .newsList .list:not(:first-child) {
}

/* .img */
#newsArea .newsList .list .img {
	width: calc(100% - 42px);
}

#newsArea .newsList .list .img .update {
	font-size: 1.4rem;
	margin: 10px 0 0;
}

#newsArea .newsList .list .img .update::before {
}

#newsArea .newsList .list .img .pct {
}

#newsArea .newsList .list .img .pct img {
}

/* .txt */
#newsArea .newsList .list .txt {
	padding: 125px 15px 15px;
}

#newsArea .newsList .list .txt h3 {
	font-size: 1.8rem;
}

#newsArea .newsList .list .txt h3::after {
}

#newsArea .newsList .list .txt .comment {
	font-size: 1.5rem;
}

#newsArea .newsList .list .txt .comment p {
}

#newsArea .newsList .list .txt .comment a {
}

#newsArea .newsList .list .txt .comment a:hover {
}

#newsArea .newsList .list .txt .comment a.linkBtn {
}

#newsArea .newsList .list .txt .comment a.linkBtn::after {
}

#newsArea .newsList .list .txt .comment a.linkBtn:hover {
}
} /* ############ ↑↑↑ MEDIAQUERY ↑↑↑ ############ */


/* ==================================================
＊＊＊＊＊
================================================== */


/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 768px) {

} /* ############ ↑↑↑ MEDIAQUERY ↑↑↑ ############ */


/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* ##########　MEMO　################################################################################## */
/* #################################################################################################### */
/* #################################################################################################### */

/* ==================================================
大見出し
================================================== */

/* 中見出し（他、説明など）
------------------------------ */

/* ### 小見出し 1 ### */
/* ### ----- ### */

/* 小見出し 2 */
/* ----- */

/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 768px) {

} /* ############ ↑↑↑ MEDIAQUERY ↑↑↑ ############ */

