@charset "UTF-8";
/* デスクトップPCとスマホに適用するCSS */
body, p, h1, h2, h3, h4, style, ul, li, a {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 100%;
	text-decoration: none;
	box-sizing: border-box;
	color: #000000;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
}
img{
  vertical-align: bottom;
}
.wrapper {
	text-align: center;
	margin: 0 auto;
}
.header {
	position: relative;
	text-align: center;
	background: #ffffff;
	height:70px;
	border-bottom: 2px solid #fe7eb0;
	box-shadow: 0 4px 4px #dddddd;
}
.header .title {
	margin: 0;
}
.header img {
	height: 70px;
	margin-top: 0px
}

/* ナビ */
#nav-open {
	position: absolute;
	top: 26px;
	left: 10px;
	height: 20px;
	width: 25px;
	vertical-align: middle;
	cursor: pointer;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
	content: '';
	position: absolute;
	transition: all 0.4s;
	height: 3px;/*線の太さ*/
	width: 25px;/*長さ*/
	border-radius: 3px;
	background: #000000;
	display: block;
	z-index: 9999;/*最前面*/
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}
/*三本線を動かす*/
#nav-open.active span {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
#nav-open.active span:before {
	-webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
	transform: translateY(-8px) rotate(45deg);/*打ち消す*/
	opacity: 0;
}
#nav-open.active span:after {
	-webkit-transform: translateY(-16px) rotate(45deg);
	transform: translateY(-16px) rotate(90deg);
}
/*▲ハンバーガーナビ用css*/

/*中身*/
.nav-content_area {
	height: 0px;
}
#nav-content {
	display: none;
	opacity: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .2s ease-in-out;
}
#nav-content.open {
	display: block;
	opacity: 1;
	top: 72px;
	z-index: 9998;
	background: rgba(255, 255, 255, 0.8);/*背景色*/
	overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}

#nav-content ul {
	text-align: left;
}
#nav-content ul li {
	cursor: pointer;
	font-weight: bold;
	background-color:antiquewhite;
	font-size: 0.8em;
	margin: 0;
	border-bottom: solid #46206c 1px;
	padding: 1em 2em;
}
#nav-content ul li a {
	position: relative;
	display: block;
	color:darkorchid;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}
#nav-content ul li a:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	width: 6px;
	height: 6px;
	margin: -4px 0 0 0;
	border-top: solid 2px darkorchid;
	border-right: solid 2px darkorchid;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.category-title a {
	text-decoration: none;
}

.ad_area {
	background-color: #eeeeee;
	width: 100%;
	padding: 20px 0;
	margin-bottom: 30px;
	text-align: center;
}
.link_area {
	width: 100%;
	margin: 10px auto -30px;
}
.regist-btn{
	margin: 10px auto;
	width: 97%;
	box-sizing: border-box;
}
.regist-btn img{
	width: 100%;
}
/* -------- クレジットログイン画面--------*/
table.login_form{
    width: 96%;
    margin: 0 2% 0 2%;
  border-collapse: separate;
  border-spacing: 10px;
}
table.login_form th{
    width: calc( 100% - 4% - 2px );
    padding: 5px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    -webkit-appearance: none;
    font-family: inherit;
    line-height: normal;
}
table.login_form input[type="password"] ,input[type="text"]{
    width: calc( 100% - 4% - 2px );
    padding: 10px 2%;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #fafafa;
    -webkit-appearance: none;
    font-family: inherit;
    line-height: normal;
}
table.login_form input[type="submit"]{
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    background: white;
    color: slategray;
}
table.login_form a {
    font-size: x-small;
    color: blue;
}
/* -------- フッター --------*/
.footer {
	padding: 2em 4em;
	text-align: center;
	background-color: #3E3E3E;
	margin-top: 1em;
	color: #ffffff;
}
.footer ul {
	padding: 20px 0;
}
.footer ul li {
	font-size: 0.8em;
	color: #ffffff;
}
.footer ul li a {
	color: #ffffff;
}
/* -------- /フッター --------*/

/* -------- TOPページ 記事--------*/
.article {
	display: flex;
	width: 95%;
	text-align: left;
	margin: 10px 10px 20px;
	vertical-align: top;
	border: 1px solid #cccccc;
	padding: 5px;
	box-sizing: border-box;
	min-height: 50px;
}
.article .article_area_img {
	width: 33%;
	height: auto;
	background-size: 100%;
	margin: 0 7px 0 0;
	padding: 0;
}
.article .article_area_img img{
	width: 100%;
}
.article_sub {
	flex: 1 1 60%;
}
.article_sub ul {
	padding: 0;
}
.article_sub ul li {
	display: inline-block;
	background-color: #eeeeee;
	padding: 0 5px;
	font-size: 0.5em;
	border-radius: 2px;
}
.article_sub h3 {
	padding: 5px 0 0 5px;
	font-size: 1.1em;
}
.article_sub p {
	display: none;
	font-size: 0.8em;
	line-height: 150%;
	color: #999999;
	padding: 0;
	margin: 0;
}
.date_area {
	font-size: 0.5em;
	background-color: transparent;
	padding: 0 5px;
	vertical-align: middle;
}
.pager{
	text-align: center;
}

/* -------- 見出し共通--------*/
.cont-title {
	font-weight: bold;
	background-color: #fe7eb0;
	border-radius: 5px;
	padding: 1.25em;
	color: #ffffff;
	margin-bottom: 0.25em;
	text-align: left;
}
.cate_title {
	font-size: 1.5em;
	font-weight: bold;
	padding: 0em 1em 1em;
	text-align: left;
}

/* -------- 人気記事リスト and 関連記事リスト--------*/
.popular-article {
	margin: 5px;
}
.popular-article ul {
	text-align: left;
	margin-top: 1em;
	margin-bottom: 2em;
	vertical-align: top;
}
.popular-article ul li {
	border-bottom: 1px #cccccc solid;
	display: inline-block;
	margin-bottom: 1.5em;
	padding-bottom: 1em;
	width: 100%;
	font-size: 0.9em;
	vertical-align: middle;
	padding-right: 0.5em;
	padding-left: 0.5em;
}
.popular-article ul li a {
	display: flex;
	color: #333333;
	font-weight: bold;
}
.popular-article img {
	margin-right: 0.5em;
}
/* -------- 人気キーワードリスト --------*/
.popular-keyword {
	margin: 5px;
}
.popular-keyword ul {
	display: flex;
	flex-flow: row wrap;
	text-align: left;
	margin: 1em 0 2em;
	font-weight: bold;
}
.popular-keyword ul li {

}
.popular-keyword ul li a {
	display: inline-block;
	margin: 0.125em 0.18em;
	padding: 0.5em 1em;
	background-color: #999999;
	border-radius: 3px;
	font-size: 0.8em;
	color: #ffffff;
}

/* -------- パンくずリスト --------*/
.breadcrumb {
	color: #666666;
	font-size: 0.9em;
	font-weight: bold;
	margin-bottom: 1em;
	margin-top: 1em;
	padding-left: 0.5em;
	text-align: left;
}
/* -------- 記事ページ --------*/
.date_category {
	display: flex;
	align-items: flex-end;
	padding:0 1em;
	margin-bottom: 0em;
	text-align: left;
}
.date {
	display: inline-block;
	font-size: 0.7em;
	font-weight: bold;
	color: #666666;
}
.articlepage_keyword {
	background-color: #eeeeee;
	color: #ffffff;
	padding: 3px 5px;
	display: inline-block;
	font-size: 0.5em;
	border-radius: 2px;
	margin-left: 1em;
}
.articlepage_wrapper {
	text-align: left;
	margin: 1em 10px 2em;
	line-height: 2em;
	border: 1px solid #cccccc;
	padding: 1.5em;
}
.articlepage_wrapper img {
	width: 100%;
	padding-bottom: 1em;
}
.articlepage_wrapper h3 {
	font-size: 1.1em;
	font-weight: bold;
	text-align: left;
	padding: 0.5em;
	border-left: 3px solid #46206c;
	margin-top: 2em;
	margin-bottom: 0em;
}
.articlepage_wrapper strong {
	font-weight: bold;
	color: #46206c;
}
.article_pr {
	display: inline-block;
	border: 2px solid #876558;
	margin-bottom: 15px;
	width: 250px;
	height: 180px;
}
/* -------- キーワード and カテゴリー ページ --------*/
.key_cate {
	font-size: 0.5em;
	font-weight: bold;
	float: left;
	display: inline-block;
	color: #666666;
}
/* -------- クレジットカード情報 利用規約 プライバシポリシー 会社概要 特定商取引 対応機種 運営会社--------*/
.common_wrapper {
	text-align: left;
	margin: 5px;
	line-height: 2em;
	padding: 1.5em;
}
.common_wrapper h2 {
	font-size: 1.5em;
	font-weight: bold;
	padding: 0.5em 0 1em;
	text-align: left;
}
.common_wrapper h3 {
	font-weight: bold;
	background-color: #fe7eb0;
	border-radius: 5px;
	padding: 1.25em;
	color: #ffffff;
	margin-bottom: 0.25em;
	text-align: left;
}
.common_wrapper p {
	margin-bottom: 1.25em;
	line-height: 1.75em;
}

/* -------- お問い合わせ --------*/
.contact_wrapper {
	text-align: left;
	margin: 5px;
	line-height: 2em;
	padding: 1.5em;
}
.contact_wrapper h2 {
	font-size: 1.5em;
	font-weight: bold;
	padding: 0.5em 0 1em;
	text-align: left;
}
.contact_wrapper h3 {
	font-weight: bold;
	background-color: #fe7eb0;
	border-radius: 5px;
	padding: 1.25em;
	color: #ffffff;
	margin-bottom: 0.25em;
	text-align: left;
}
.contact_wrapper p {
	margin-bottom: 1.25em;
	line-height: 1.75em;
}
/*▼汎用---------------------------------------------------------------------------*/  
.sizexs {
	font-size: 0.9em;
}
.sizexxs {
	font-size: 0.8em;
}
.sizexxxs {
	font-size: 0.7em;
	font-weight: normal;
}
.sizexl {
	font-size: 1.1em;
}
.sizexxl {
	font-size: 1.2em;
}
.sizexxxl {
	font-size: 1.3em;
}