#container {
	font-family: "Noto Sans JP", sans-serif;
	background-image: url("../images/bg/base_under.png");
	background-repeat: repeat;
}
#main {
	width: 100%;
	margin-bottom: 20px;
}
@media screen and (min-width: 836px){
	#mainWrapper {
		display: flex;
		justify-content: center;
	}
	#main {
		flex: 1;
		width: calc(100% - 365px);
		max-width: 760px;
		margin: 0 40px 40px 15px;
	}
}

/***
ページタイトル部分
***/
#pageTitle {
	width: 100%;
	height: 160px;
	background: linear-gradient(90deg, rgba(67,197,172,.42), rgba(27,31,88,.42)),
				url("../images/news/news_top.jpg") no-repeat center/cover;
	padding: 0;
	position: static;
}
.voice #pageTitle,
.blog #pageTitle,
.pick_up #pageTitle,
.news #pageTitle,
.tips #pageTitle {
	background: linear-gradient(90deg, rgba(67,197,172,.42), rgba(27,31,88,.42)),
				url("../images/home/cont-bg.jpg") no-repeat center/cover;
}
#pageTitle h1 {
	padding: 80px 3.125% 0;
	text-align: center;
}
#pageTitle h1 .en {
	display: block;
	font-family: 'Bebas Neue', san-serif;
	font-size: 30px;
}
#pageTitle h2 {
	padding: 80px 3.125% 0;
	text-align: center;
}
#pageTitle h2 .en {
	display: block;
	font-family: 'Bebas Neue', san-serif;
	font-size: 30px;
}
@media screen and (min-width: 836px){
	#pageTitle {
		height: 321px;
	}
	#pageTitle h1 {
		font-size: 30px;
	}
	#pageTitle h1 .en {
		font-size: 60px;
		padding-top: 80px;
	}
	#pageTitle h2 {
		font-size: 30px;
	}
	#pageTitle h2 .en {
		font-size: 60px;
		padding-top: 80px;
	}
}

/***
一覧部分
***/
#archive #mainContents {
	padding: 20px 0;
}
#archive #mainContents .archiveTitle {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
#archive #mainContents h3 {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
#archive #mainContents .postList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 3.125%;
}
#archive #mainContents .postList > article {
	width: calc(50% - 1.56%);
	margin-top: 3.125%;
}
#archive #mainContents .postList > article a {
	display: block;
}
#archive #mainContents .postList > article .thumbnail {
	height: 0;
	background: #fff;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
}
#archive #mainContents .postList > article .thumbnail img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
#archive #mainContents .postList > article .thumbnail .cat {
	font-size: 12px;
	background: rgba(67,197,172,1);
	padding: 5px;
	position: absolute;
	top: 0;
	left: 0;
}
#archive #mainContents .postList > article time {
	font-size: 12px;
}
@media screen and (min-width: 836px){
	#archive #mainContents .postList {
		padding: 0;
	}
	#archive #mainContents .postList:after {
		display: block;
		content: "";
		width: calc(100% / 3 - 20px);
	}
	#archive #mainContents .postList > article {
		width: calc(100% / 3 - 20px);
	}
}

/***
一覧部分（新着モニター）
***/
.gallery #archive #mainContents .archiveTitle + p {
	margin: 15px 0;
	padding: 0 3.125vw;
}
.gallery #archive #mainContents .tab {
	display: flex;
	padding: 0 3.125vw;
}
.gallery #archive #mainContents .tab li {
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3,"ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro",Georgia,"HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	width: 25%;
	border: 1px solid #fff;
	background: rgba(0,0,0,.62);
	margin: 0 5px;
	text-align: center;
	position: relative;
	transition: .2s;
}
.gallery #archive #mainContents .tab li:before {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%) rotate(45deg);
}
.gallery #archive #mainContents .tab li a {
	display: block;
	padding: 15px 0 30px;
}
.gallery #archive #mainContents .tab li:hover,
.gallery #archive #mainContents .tab li.current {
	background-color: #43C6AC;
}
.gallery #archive #mainContents .postList {
	display: block;
}
.gallery #archive #mainContents .postList > article {
	width: 100%;
	background: rgba(0,0,0,.62);
	border: 1px dotted #fff;
	padding: 6%;
}
.gallery #archive #mainContents .postList > article h4 {
	background: linear-gradient(90deg, rgba(67,197,172,1), rgba(27,31,88,1));
	padding: 1%;
	text-align: center;
	margin-bottom: 20px;
}
.gallery #archive #mainContents .postList > article .thumbnail  {
	padding-top: 42%;
	border: 10px solid #fff;
}
@media screen and (min-width: 836px){
	.gallery #archive #mainContents .archiveTitle + p {
		margin: 30px 0;
		padding: 0;
	}
	.gallery #archive #mainContents .tab {
		padding: 0;
	}
}

/***
ページネーション
***/
.pagination {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}
.pagination li {
	margin: 0 5px;
}
.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding-bottom: 2px;
	background: rgba(0,0,0,.62);
}
.pagination li.current a {
	background: rgba(67,197,172,1);
	font-weight: 700;
}
@media screen and (min-width: 836px){
	.pagination {
		margin: 40px 0;
	}
	.pagination li a {
		width: 36px;
		height: 36px;
	}
}

/***
パンくず
***/
.breadcrumbs {
	font-size: 12px;
	width: 100%;
	margin: 10px 0;
}
.breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0 3.125%;
}
.breadcrumbs ol li {
	display: flex;
	align-items: center;
}
.breadcrumbs ol li:not(:first-child):before {
	content: ">";
	margin: 0 5px;
}
@media screen and (min-width: 836px){
	.breadcrumbs {
		font-size: 14px;
	}
	.breadcrumbs ol {
		max-width: 1130px;
		margin: 0 auto;
		padding: 0 15px;
	}
}

/***
サイドバー
***/
#sidebar {
	width: 100%;
	padding: 0 3.125%;
}
#sidebar section {
	margin-bottom: 20px;
}
#sidebar h3 {
	background: linear-gradient(90deg, rgba(67,197,172,1), rgba(27,31,88,1));
	padding: 10px;
}
#sidebar ul li {
	margin-top: 10px;
}
#sidebar .ranking a {
	display: flex;
}
#sidebar .ranking .thumb {
	width: 80px;
	height: 80px;
	background: #fff;
}
#sidebar .ranking p {
	flex: 1;
	margin-left: 10px;
}
@media screen and (min-width: 836px){
	#sidebar {
		width: 300px;
		margin-right: 15px;
		padding: 0;
	}
}

.secContact {
	width: 100%;
}

/***
フッター
***/
footer .newsCat {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 1px dotted #777;
	margin-top: 20px;
	padding-top: 20px;
	list-style: none;
}
footer .newsCat dt {
	width: 100%;
}
footer .newsCat dd {
	margin-top: 10px;
}

/***
記事ページ
***/
#single {
	color: #333;
	background: #fff;
	padding: 20px 15px;
}
#single h1,
#single h2 {
	font-size: 20px;
	font-weight: 700;
	color: rgba(67,197,172,1);
	margin: 10px 0 20px;
	text-align: center;
}
#single h3, #single h4 {
	font-weight: 700;
	margin: 20px 0 10px;
}
#single .imageThumb ul {
	display: flex;
	justify-content: center;
}
#single .imageThumb ul li {
	width: 100px !important;
	height: 100px !important;
	margin: 0 5px;
}
#single .imageThumb ul li:after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	position: absolute;
	top: 0;
	left: 0;
}
#single .imageThumb ul li.swiper-slide-thumb-active:after {
	content: none;
}
#single p {
	margin-bottom: 1em;
}
#single a {
	color: #666;
}
@media screen and (min-width: 560px){
	#single h1,#single h2 {
		font-size: 26px;
	}
	#single .imageBox {
		display: flex;
	}
	#single .imageBody {
		flex: 1;
	}
	#single .imageThumb {
		margin-left: 20px;
	}
	#single .imageThumb ul {
		flex-direction: column;
	}
	#single .imageThumb ul li {
		width: 140px !important;
		height: 140px !important;
		margin: 0 0 10px 0;
	}
}
@media screen and (min-width: 836px){
	#single {
		padding: 40px;
	}
	#single h1,#single h2 {
		font-size: 32px;
	}
}

/***
スライダー
***/
.swiper-container .swiper-wrapper {
	height: auto;
	margin: 0;
}
.swiper-container .swiper-slide img {
	width: 100%;
}

/***
関連記事
***/
.related {
	border-top: 1px solid #ccc;
	margin-top: 40px;
}
#single .related h3 {
	font-size: 18px;
	font-weight: 700;
	color: rgba(67,197,172,1);
	text-align: center;
	margin-bottom: 20px;
}
.related ul li {
	border-bottom: 1px solid #eee;
	margin-top: 10px;
	padding-bottom: 10px;
}
.related ul li a {
	display: flex;
}
.related ul li .thumbnail {
	width: 100px;
}
.related ul li .title {
	flex: 1;
	margin-left: 15px;
}
.related ul li .title .date {
	font-size: 12px;
}
@media screen and (min-width: 836px){
	#single .related h3 {
		font-size: 24px;
	}
	.related ul li .title {
		margin-left: 40px;
	}
}