@charset "utf-8";

/* CSS reset
---------------------------*/
html, body, h1, h2, h3, p, ul, li, img {
	margin: 0;
	padding: 0;
	line-height: 1.0;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 14px;
	color: #212121;
}

@media screen and (max-width: 767px) {
	html, body, h1, h2, h3, p, ul, li, img {
		font-size: 14px;
	}
}

body {
	background: #fff;
}

img {
	/*display: block;*/
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

ul, li {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.6;
}

/* 共通レイアウト
----------------------------*/
.container {
	max-width: 1024px;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
}

.flex-btw {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-nml {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.flex-cnt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*↓　PC用・スマホ用　↓*/
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}

	.sp {
	}
}

/*↑　PC用・スマホ用　↑*/

/*共通背景
---------------------------*/
.bg_emphasis {
	background: #ffe7ef;
}

/*共通見出しスタイル
---------------------------*/
.h1-style {
	float: left;
	width: 170px;
	height: auto;
}

.h2-style {
	padding: 7px 10px 4px;
	background: #ff0050;
	color: #fff;
	font-size: 20px
}

/* ヘッダー・フッター共通部品
-----------------------------*/
/*SNSアイコン*/
.i-sns {
	max-width: 36px;
	height: auto;
}

/*バナー*/
.banner_pc img, .banner_sp img {
	display: block;
	margin: 0 auto;
}

/* ヘッダー
-----------------------------*/
.container_hd {
	overflow: hidden;
	position: relative;
	max-width: 1216px;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
}

/*ヘッダー右側*/
.hd-right {
	overflow: hidden;
	position: absolute;
	right: 10px;
	bottom: 10px;
	margin: auto;
}

/*グローバルナビゲーション*/
.gnav {
	float: left;
	margin: 12px 30px 0 0;
}

.gnav ul {
	overflow: hidden;
}

.gnav ul li {
	float: left;
}

.gnav ul li a {
	margin-right: 10px;
	padding-top: 2px;
	color: #ff0050;
	font-weight: bold;
}

.gnav ul li:last-child a {
	margin-right: 0;
}

/*マイSNS*/
.my-sns {
	float: right;
}

.my-sns ul {
	overflow: hidden;
}

.my-sns ul li {
	float: left;
}

.my-sns ul li a {
	margin-right: 5px;
}

.my-sns ul li:last-child a {
	margin-right: 0;
}


@media screen and (max-width:767px) {

	/*ヘッダー右側を全画面に*/
	.hd-right {
		visibility: hidden;
		overflow: visible;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 220px;
		margin: 0;
		padding-top: 10%;
		padding-bottom: 10%;
		padding-left: 15%;
		padding-right: 15%;
		box-sizing: border-box;
		background: rgba(255, 231, 239, 0.9);
		z-index: 98;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		-webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
		transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
	}

	/*グローバルナビゲーション*/
	.gnav {
		float: none;
		margin: 0;
	}

	.gnav ul {
		overflow: visible;
		margin-bottom: 20px;
	}

	.gnav ul li {
		float: none;
		text-align: center;
	}

	.gnav ul li a {
		margin-bottom: 20px;
		margin-right: 0px;
	}

	.gnav ul li:last-child a {
		margin-bottom: 0;
	}

	/*マイSNS*/
	.my-sns {
		float: none;
	}

	.my-sns ul {
		width: 92px;
		margin: 0 auto;
	}

	.my-sns ul li a {
		margin-right: 20px;
	}

	.my-sns ul li:last-child a {
		margin-right: 0;
	}

	/*ナビゲーション アニメーション*/
	.open {
		visibility: visible;
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.4s;
	}

	.gnav ul li a {
		transition: 0s;
	}
}

/*ハンバーガーメニュー*/
.nav-toggle {
	width: 40px;
	height: 40px;
	background: #ff9ab9;
	position: fixed;
	top: 10px;
	right: 10px;
	border-radius: 5px;
	z-index: 99;
}

.nav-toggle div {
	width: 20px;
	height: 15px;
	margin: 12px auto 13px;
	position: relative;
}

.nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #fff;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

.nav-toggle span:nth-child(1) {
	top: 0;
}

.nav-toggle span:nth-child(2) {
	top: 7px;
}

.nav-toggle span:nth-child(3) {
	top: 14px;
}

/*ハンバーガーメニュー 切り替えアニメーション*/
.nav-toggle_active span:nth-child(1) {
	top: 7px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

.nav-toggle_active span:nth-child(2) {
	width: 0;
	left: 50%;
}

.nav-toggle_active span:nth-child(3) {
	top: 7px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

/*RSSエリア*/
.rss {
	padding: 5px 0;
}

.rss li {
	position: relative;
	margin: 5px;
}

.rss p {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 36px;
	margin: auto;
	padding: 0 5px;
	box-sizing: border-box;
	background: rgba(100, 100, 100, 0.8);
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
}

@media screen and (max-width:767px) {
	.rss {
		margin: -7.5px;
		padding: 0;
	}

	.rss li {
		position: relative;
		margin: 2.5px;
	}
}

/*カテゴリー　新着情報　相互リンク　共通*/
.wrap_scroll {
	overflow: auto;
	max-height: 200px;
}

.wrap {
	padding: 5px;
	background: #fff;
	border: 1px solid #aaa;
	box-sizing: border-box;
}

.wrap ul {
	margin-bottom: -8px;

}

.wrap li a {
	display: inline-block;
	margin-bottom: 8px;
	margin-right: 15px;
	border-bottom: 1px solid #212121;
	font-size: 12px;
}

.new:after {
	content: "NEW!";
	width: 24px;
	height: 14px;
	margin-left: 5px;
	color: #ff0050;
	border-bottom: none;
}

/*カテゴリー*/
.category a {
	font-size: 14px;
}

/* フッター
-----------------------------*/
.links_ft {
	overflow: hidden;
}

.links_ft ul {
	float: left;
	width: 33.33%;
}

.links_ft ul li a {
	display: inline-block;
	margin-bottom: 8px;
	border-bottom: 1px solid #212121;
	font-size: 12px;
}

footer p {
	text-align: center;
	margin: 20px 0 10px;
}

@media screen and (max-width:767px) {
	.links_ft {
		overflow: visible;
	}

	.links_ft ul {
		float: none;
		width: 100%;
	}

	.links_ft ul li {
		text-align: center;
	}
}

/* コンテンツ一覧
-----------------------------*/
.sec_content {
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
}

.content__date {
	padding: 5px 2px;
	background: #ff0050;
	color: #fff;
	font-weight: bold;
}

.content__image {
	max-width: 426px;
	height: 320px;
	margin-bottom: 10px;
	background: #fff;
}

.content__name {
	margin: 5px 0 10px;
	font-size: 20px;
}

.btn {
	max-width: 300px;
	margin: 10px auto 5px;
	padding: 10px;
	background: #ff9ab9;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
}

/*↓　コンテンツ画像中央配置　↓*/
.content__image {
	position: relative;
	margin-right: auto;
	margin-left: auto;
}

.content__image img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.content__lead {
	line-height: 1.5;
}

/*↑　コンテンツ画像中央配置　↑*/

@media screen and (max-width:767px) {
	.content__name {
		margin-bottom: 5px;
		line-height: 1.5;
		text-align: left;
	}

	.content__image {
		height: 260px;
	}

	.content__lead {
		text-align: left;
	}
}

/*ページネーション*/
.pagination {
	margin-top: 30px;
}

.page {
	margin-right: 10px;
	padding: 10px 10px 8px;
	background: #ff9ab9;
	color: #fff;
	font-weight: bold;
}

.page:last-child {
	margin-right: 0;
}

.page_active {
	background: #fff;
	color: #ff9ab9;
	border: 1px solid #ff9ab9;
	box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	.wrap-sec_contents {
		overflow: visible;
	}

	.sec_content {
		float: none;
		width: 100%;
		margin: 0 auto;
	}
}

/*詳細
-----------------------------*/
.h2-style_detail {
	margin: 10px 0;
	text-align: center;
	font-size: 24px;
}

.detail__image {
	max-width: 426px;
	height: 320px;
	margin-bottom: 10px;
	background: #fff;
}

.wrap .wrap_detail__image {
	margin-bottom: 20px;
}

.detail__lead {
	margin-bottom: 20px;
	line-height: 1.5;
}

/*↓　詳細画像中央配置　↓*/
.detail__image {
	position: relative;
	margin-right: auto;
	margin-left: auto;
}

.detail__image img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

@media screen and (max-width:767px) {
	.h2-style_detail {
		font-size: 20px;
		line-height: 1.5;
		text-align: left;
	}

	.detail__image {
		height: 260px;
	}

	.detail__lead {
		text-align: left;
	}
}

/*↑　コンテンツ画像中央配置　↑*/


/*免責事項　エラー共通
-----------------------------*/
.text {
	line-height: 1.5;
}

/*免責事項
-----------------------------*/
.h2-style_disclaimer {
	margin: 0 auto 20px;
	text-align: center;
	font-size: 24px;
}

/*エラー
-----------------------------*/
.h2-style_error {
	position: relative;
	width: 100px;
	margin: 0 auto 20px;
	font-size: 24px;
}

.h2-style_error:before {
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 5px;
	left: -40px;
	margin: auto;
	content: "";
	width: 32px;
	height: 32px;
	background: url(../images/common/ex-mark.png);
	background-size: contain;
}
