﻿@charset "utf-8";

/**
 * ページ構成定義
 *
 * CSS versions	3
 *
 * @category   Web Application
 * @package    Argus
 * @copyright  Polaris, Inc.
 *
 */

/*==========================================
 タイトル
===========================================*/
/* 左折曲右籏（文字：黒、背景：灰色）*/
.ttl1
{
	display: block;
	position: relative;
	margin: 0 auto 2rem;
	padding: 0rem 1rem;
	width: 100%;
	height: 3rem;
	line-height: 3rem;
	background-color: #f0f0f0;
}
.ttl1::before,
.ttl1::after
{
	content: '';
	position: absolute;
}
.ttl1::before
{
	top: 100%;
	left: 0;
	border-width: 0 1rem 1rem 0;
	border-style: solid;
	border-color: transparent;
	border-right-color: #ccc;
}
.ttl1::after
{
	top: 0;
	right: 0;
	z-index: 2;
	border-width: 1.5rem 2rem;
	border-style: solid;
	border-color: transparent;
	border-right-color: #fff;
}

/* 左線下線有り（文字：ピンク、背景：灰色） */
.ttl2
{
	display: block;
	margin: 0 auto 2rem;
	padding: 0.2rem 0 0.1rem;
	width: 100%;
	line-height: 2rem;
	color: #ff7fbf;
	text-align: left;
	text-indent: 1rem;
	border-left: 10px solid #ff7fbf;
	border-bottom: 2px solid #ff7fbf;
}

/* 単色（文字：赤、背景：灰色） */
.ttl3
{
	display: block;
	margin: 0 auto 2rem;
	padding: 0.2rem 0rem;
	width: 100%;
	line-height: 2rem;
	color: #fff;
	text-align: left;
	text-indent: 1rem;
	background-color:#ec0714;
}

/* 先頭飾り１（文字：ピンク、背景：透過） */
.ttl4
{
	display: block;
	position: relative;
	margin: 0 auto 1rem;
	padding-top:0.4rem;
	width: 90%;
	height:60px;
	color:#fff;
	font-size: 2rem;
	font-family: sans-serif;
	text-align:center;
	/*background-color:#ffd4d4;*/
	background:linear-gradient(to right,#ff3d98,#ff0f4b);
}
.ttl4:before
{
	position: absolute;
	top: 0;
	display: block;
	height: 48px;
	content: '';
	border: 30px solid #ff3d98;
}
.ttl4:after
{
	position: absolute;
	top: 0;
	display: block;
	height: 48px;
	content: '';
	border: 30px solid #ff0f4b;
}
.ttl4:before
{
	left: -40px;
	border-left-width: 15px;
	border-left-color: transparent;
}
.ttl4:after
{
	right: -40px;
	border-right-width: 15px;
	border-right-color: transparent;
}
.ttl4+p
{
	display: block;
	padding: 1rem 2rem 2rem;
	color: #ff0f4b;
	font-size: 1.7rem;
	text-align:center;
}
@media screen and (min-width: 0) and (max-width: 960px)
{
	.ttl4
	{
		padding-top:0.7rem;
		font-size: 1.8rem;
		width: 90%;
	}
	.ttl4 span
	{
		text-indent: 2rem;
	}
	.ttl4+p
	{
		font-size: 1.4rem;
	}
}
@media screen and (min-width: 0) and (max-width: 480px)
{
	.ttl4
	{
		padding-top:0.7rem;
		font-size: 1.6rem;
		width: 85%;
		height:50px;
	}
	.ttl4:before,
	.ttl4:after
	{
		height: 38px;
		border: 25px solid #ff3d98;
	}
	.ttl4:after
	{
		height: 38px;
		border: 25px solid #ff0f4b;
	}
	.ttl4:before
	{
		left: -30px;
		border-left-width: 10px;
		border-left-color: transparent;
	}
	.ttl4:after
	{
		right: -30px;
		border-right-width: 10px;
		border-right-color: transparent;
	}
	.ttl4+p
	{
		padding: 0 1rem 2rem;
		text-align:left;
	}
}
/* ２タイトル（文字１：ピンク、文字２：白、背景：透過） */
.ttl5
{
	display: block;
	position: relative;
	margin: 0 auto 1rem;
	width: 100%;
	color:#ff0f87;
	font-size: 2rem;
	font-family: sans-serif;
}
/*.ttl5 .heading
{
	position: relative;
	height: 3.5rem;
	line-height: 3.5rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	border-radius: 0.3rem;
	border: 1px solid #ff0f87;
	background-color:#fff2f6;
}*/
.ttl5 span.heading
{
	position: relative;
	display:inline-block;
	width:100%;
	height:3.5rem;
	line-height: 3.5rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	border-radius: 0.3rem;
	border: 1px solid #ff0f87;
	background-color:#fff2f6;
}
.ttl5 .heading .caption
{
	position: absolute;
	right: 0;
	top: 0;
	height: 3.4rem;
	line-height: 3.4rem;
	padding-left: 1rem;
	padding-right: 2rem;
	color: #fff;
	background:linear-gradient(to right,#ff0f87,#ff0f4b) ;
}
.ttl5 .heading .caption:before
{
	display: block;
	content: ' ';
	width: 0;
	height: 0;
	overflow: hidden;
	position: absolute;
	right: 99.9%;
	top: 0;
	border: 0 solid transparent;
	border-width: 3.4rem 1.75rem 0 0;
	border-right-color:#ff0f87;
}
.ttl5 .heading .title
{
	float: left;
	padding-left: 1.5rem;
}
.ttl5+p
{
	display: block;
	padding:2rem 1rem;
	color: #ff0f87;
	font-size: 1.4rem;
	text-align:center;
}
@media screen and (min-width: 481px) and (max-width: 960px)
{
	.ttl5,
	.ttl5+p
	{
		font-size: 1.3rem;
	}
}
@media screen and (min-width: 0px) and (max-width: 480px)
{
	.ttl5,
	.ttl5+p
	{
		font-size: 1.2rem;
	}
	.ttl5 .heading .title
	{
		padding-left:1rem;
	}
	.ttl5 .heading .caption
	{
		padding-left:0.5rem;
		padding-right:1rem;
	}
	.ttl5+p
	{
		padding:1rem;
		text-align:left;
	}
}
/* 単色（文字：白、背景：赤） */
.ttl6
{
	display: block;
	margin: 0 auto 2rem;
	padding: 0.4rem 1rem;
	width: 100%;
	font-size: 1.4rem;
	color: #fff;
	text-align: left;
	background-color: #ec0714;

	/* 角丸（まるめ5px） */
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;

}
.tc6-1
{
	margin: 0 auto 1rem;
	padding: 0.3rem 1rem 0.4rem;
	font-size: 0.8rem;
}

/* グラデーション下線（文字：黒） */
.ttl7
{
	position: relative;
	display: block;
	padding: 0.25em 0 0.7rem;
	font-size: 1.1rem;
	text-indent:0.5rem;
	color:#333;
}
.ttl7:after
{
	content: "";
	display: block;
	height: 4px;
	background: -webkit-linear-gradient(to right, #e60014, transparent);
	background: linear-gradient(to right, #e60014, transparent);
}

/* グラデーション下線（文字：オジレン） */
.ttl8
{
	position: relative;
	padding: 1rem .5rem;
}
.ttl8:after
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	content: '';
	background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
	background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
	background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

/* 単色（文字：緑） */
.ttl10
{
	display: block;
	margin: 0 auto 2rem;
	width: 100%;
	font-size: 1.2rem;
	color: #17a481;
	text-align: left;
}
.tc10-1
{
	margin: 0 auto;
	padding: 1rem;
	color: #333;
	font-size: 1.7rem;
}
.tc10-1 > img
{
	margin-right: 1rem;
	width: 1.8rem;
	vertical-align: middle;
}
.tc10-1 > p
{
	margin-left: 2rem;
	font-size: 1.1rem;
	font-weight: normal;
	border-bottom: 1px solid #1d76be;
}
.tc10-1 > span
{
	display:block;
	margin-left: 2rem;
	font-size: 1.1rem;
	font-weight: normal;
	border-bottom: 1px solid #1d76be;
}

/* 先頭１文字丸囲み、文字列下線有り */
.ttl11
{
	position: relative;
	display: block;
	width: 100%;
	font-size: 2rem;
	border-bottom: 3px solid #ccc;
}
.ttl11::after
{
	position: absolute;
	display: block;
	width: 20%;
	content: " ";
	border-bottom: 3px solid #ff0f87;
}
.ttl11::before
{
	position: absolute;
	display: inline-block;
	top: calc(50% - 1.5rem);
	left: -1.2rem;
	content: " ";
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	border-radius: 50%;
	background: #ff0f87;
	text-align:center;
}
.ttl11 span
{
	position: relative;
	display: inline-block;
	width: 2rem;
	height: 2rem;
	color: #fff;
}


/*==========================================
 ボタン
===========================================*/

/* 角やや丸（文字：白、背景：透明　枠線：白） */
.btn1
{
	display: block;
	height: 2.5rem;
	line-height: 2rem;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	border: 0.2rem solid #fff;
	border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	-moz-border-radius: 0.5rem;
	background-color: rgba(255, 255, 255, 0);
}
.btn1:hover
{
	background-color: rgba(255, 255, 255, .3);
}

/* 角丸（文字：青、背景：透明　枠線：青） */
.btn2
{
	display: block;
	padding: 0.9rem;
	width: 100%;
	text-align: center;
	font-size: 1.3rem;
	font-weight:bold;
	color: #17a481;
	background-color: #fff;
	border:1px solid #17a481;
	border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	-moz-border-radius: 0.5rem;
}
.btn2:hover
{
	background-color: #afdefc;
}

/* 角丸（文字：白、背景：赤　枠線：なし） */
.btn3
{
	display: block;
	padding: 0.9rem;
	width: 100%;
	text-align: center;
	font-size: 1.3rem;
	font-weight:bold;
	color: #fff;
	background-color: #17a481;
	border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	-moz-border-radius: 0.5rem;
}
.btn3:hover
{
	opacity:0.7;
}

/* 角丸（文字：白、背景：灰色　枠線：なし） */
.btn3.bc3-1
{
	background-color:#ccc;
}
.btn3.bc3-1:hover
{
	background-color:#17a481;
}

/* 角丸（文字：白、背景：赤　枠線：無し） */
.btn11
{
	display: block;
	padding: 0.4rem 2rem 0.6rem;
	font-size: 0.8rem;
	text-align: center;
	color: #fff;
	background: #f00;
	border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	-moz-border-radius: 0.5rem;
}
.btn11:hover
{
	background: #f99;
}

/* 角丸（文字：黒、背景：白　枠線：黒） */
.btn11.bc11-1
{
	color: #333;
	background-color: #fff;
	border: 1px solid #aaa;
}
.btn11.bc11-1:hover
{
	background: #f99;
}

/*==========================================
 Loading
===========================================*/
div.loading
{
	display:none;
	float:right;
	margin-right:0.5rem;
	color:#777;
}
@-webkit-keyframes scale
{
	0%
	{
		-webkit-transform: scale(1);
				transform: scale(1);
		opacity: 1;
	}
	45%
	{
		-webkit-transform: scale(0.1);
				transform: scale(0.1);
		opacity: 0.7;
	}
	80%
	{
		-webkit-transform: scale(1);
				transform: scale(1);
		opacity: 1;
	}
}
@keyframes scale
{
	0%
	{
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  opacity: 1;
	}
	45%
	{
	  -webkit-transform: scale(0.1);
			  transform: scale(0.1);
	  opacity: 0.7;
	}
	80%
	{
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  opacity: 1;
	}
}
.loading > div:nth-child(1)
{
	margin-left: 1rem;
	-webkit-animation: scale 1.5s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
			animation: scale 1.5s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loading > div:nth-child(2) {
	-webkit-animation: scale 1.5s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
			animation: scale 1.5s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
 
.loading > div:nth-child(3) {
	-webkit-animation: scale 1.5s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
			animation: scale 1.5s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loading > div:nth-child(4) {
	-webkit-animation: scale 1.5s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
			animation: scale 1.5s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loading > div:nth-child(5) {
	-webkit-animation: scale 1.5s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
			animation: scale 1.5s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loading > div
{
	background-color:#aaa;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: 2px;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
	display: inline-block;
}

/*==========================================
 フレーム
===========================================*/

/* フレーム（エラー） */
div.frame.error
{
	width: 100%;
}
div.frame.error h1,
div.frame.error div.section
{
	margin: 0 auto;
	width: calc(100% - 4rem);
}
div.frame.error div.section
{
	font-size: 1.5rem;
	color: #999;
}

/* フレーム（プライバシーポリシー　※総合） */
div.frame.privacy
{
	padding: 0rem 0rem 10rem;
	width: 100%;
}
div.frame.privacy h1,
div.frame.privacy div.section
{
	margin: 0 auto;
	width: calc(100vw - 4rem);
	max-width: 1024px;
}
div.frame.privacy div.section
{
	margin-top:2rem;
	padding:0rem 3rem 3rem;
	background-color: #fff;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	box-shadow: 2px 2px 4px #ccc;
}
div.frame.privacy h2
{
	padding:2rem 0 0.3rem;
}

/* フレーム（会員規約　※総合） */
div.frame.agreemant
{
	padding: 0rem 0rem 10rem;
	width: 100%;
}
div.frame.agreemant h1,
div.frame.agreemant > p,
div.frame.agreemant div.section
{
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 1024px;
}
div.frame.agreemant div.section
{
	margin-top:2rem;
	padding:0rem 3rem 3rem;
	background-color: #fff;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	box-shadow: 2px 2px 4px #ccc;
}
div.frame.agreemant h2
{
	padding:2rem 0 0.3rem;
}
div.frame.agreemant div.section p
{
	width:100%;
}

/* フレーム（特定商取引法　※総合） */
div.frame.commerce
{
	padding: 0rem 0rem 10rem;
	width: 100%;
}
div.frame.commerce h1,
div.frame.commerce table,
div.frame.commerce div.section
{
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 1024px;
}
div.frame.commerce table
{
	margin-top:2rem;
}
div.frame.commerce table tbody
{
	border:1px solid #e4e4e4;
}
div.frame.commerce table tbody th
{
	padding:0.7rem 1rem;
	width:12rem;
	font-size:1rem;
	text-align:left;
	background-color: #f7f7f7;
	border:1px solid #e4e4e4;
}
div.frame.commerce table tbody td
{
	padding-left:1rem;
	font-weight:normal;
}

/* フレーム（フォーム） */
div.frame.entry,
div.frame.confirm,
div.frame.complete
{
	margin: 0 auto;
	width: 100%;
}
div.frame.entry h1,
div.frame.confirm h1,
div.frame.complete h1,
div.frame.entry div.section,
div.frame.confirm div.section,
div.frame.complete div.section
{
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 1024px;
}
div.frame.entry h1,
div.frame.confirm h1,
div.frame.complete h1
{
	margin: 0 auto;
}
div.frame.entry div.section.note0,
div.frame.confirm div.section.note0,
div.frame.complete div.section.note0
{
	margin: 1rem auto 2rem;
}
div.frame.entry div.section.note1,
div.frame.confirm div.section.note1,
div.frame.complete div.section.note1
{
	margin: 2rem auto 2rem;
	padding:2rem 1rem;
	font-weight:bold;
	color:#17a481;
	background-color:#fff;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	box-shadow: 2px 2px 4px #ccc;
}
div.frame.entry div.section.note2,
div.frame.confirm div.section.note2,
div.frame.complete div.section.note2
{
	margin: 2rem auto 2rem;
	padding:2rem 1rem;
	border:1px solid #f00;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem
}
div.frame.entry div.section.note0 ul
{
	padding: 1rem 1rem 0;
}
div.frame.entry div.section.note0 li
{
	list-style-type: disc;
}
div.frame.entry div.section.error,
div.frame.confirm div.section.error,
div.frame.complete div.section.error
{
	margin: 0rem auto 2rem;
	padding: 2rem;
	color: #f00;
}
div.frame.entry div.section.content,
div.frame.complete div.section.content
{
	margin: 0 auto 3rem;
}
div.frame.entry div.section.content dl,
div.frame.confirm div.section.content dl,
div.frame.complete div.section.content dl
{
	display: flex;
	flex-wrap: wrap;
}
div.frame.entry div.section.content dt,
div.frame.confirm div.section.content dt,
div.frame.complete div.section.content dt
{
	padding:1rem 0;
	width: 30%;
	box-sizing: border-box;
}
div.frame.entry div.section.content dd,
div.frame.confirm div.section.content dd,
div.frame.complete div.section.content dd
{
	padding: 1rem 0rem 1rem 1rem;
	width: 70%;
	box-sizing: border-box;
	overflow:hidden;
	word-break:break-all;
}
div.frame.confirm div.section.content
{
	margin:1rem auto 3rem;
}
div.frame.confirm div.section.content dt
{
	margin-bottom:1rem;
	padding:0;
	background-color:#e3e3e3;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
}
div.frame.confirm div.section.content dd
{
	margin-bottom:1rem;
	padding:0;
}
div.frame.confirm div.section.content dt p
{
	padding:1rem;
}
div.frame.confirm div.section.content dd p
{
	padding:1rem;
}
div.frame.entry div.section.operation,
div.frame.confirm div.section.operation,
div.frame.complete div.section.operation
{
	margin: 0 auto 10rem;
	width: 100%;
}
div.frame.entry div.section.operation p,
div.frame.confirm div.section.operation p,
div.frame.complete div.section.operation p
{
	margin: 0 auto 2rem;
	width: calc(100% - 4rem);
}
div.frame.entry div.section.operation a,
div.frame.confirm div.section.operation a,
div.frame.complete div.section.operation a
{
	display: block;
	margin: 0 auto;
	width: 90%;
}
div.frame.entry div.section.operation2,
div.frame.confirm div.section.operation2,
div.frame.complete div.section.operation2
{
	margin: 0 auto 10rem;
	width: 70%;
}
div.frame.entry div.section.operation2 a,
div.frame.confirm div.section.operation2 a,
div.frame.complete div.section.operation2 a
{
	width: 45%;
	max-width: 20rem;
}
div.frame.entry div.section.operation2 a:nth-of-type(1),
div.frame.confirm div.section.operation2 a:nth-of-type(1),
div.frame.complete div.section.operation2 a:nth-of-type(1)
{
	float: left;
}
div.frame.entry div.section.operation2 a:nth-of-type(2),
div.frame.confirm div.section.operation2 a:nth-of-type(2),
div.frame.complete div.section.operation2 a:nth-of-type(2)
{
	float: right;
}
@media screen and (min-width:0px) and (max-width:960px)
{
	div.frame.entry div.section.content dl,
	div.frame.confirm div.section.content dl,
	div.frame.complete div.section.content dl
	{
		flex-flow: column nowrap;
	}
	div.frame.entry div.section.content dt,
	div.frame.confirm div.section.content dt,
	div.frame.complete div.section.content dt,
	div.frame.entry div.section.content dd,
	div.frame.confirm div.section.content dd,
	div.frame.complete div.section.content dd
	{
		padding:1.7rem 0rem 0.5rem;
		width: 100%;
	}
	div.frame.entry div.section.content dd,
	div.frame.complete div.section.content dd
	{
		padding:0 0rem 0.5rem;
	}
	div.frame.confirm div.section.content dt,
	div.frame.confirm div.section.content dd
	{
		margin-bottom:0rem;
		padding:0;
	}
	div.frame.confirm div.section.content dt p
	{
		padding:1rem;
	}
	div.frame.confirm div.section.content dd p
	{
		padding:1rem 1rem 1.7rem;
		font-size:1.2rem;
	}
}

/* フレーム（登録フォーム　セレクトボックス） */
div.frame.entry input[type='text'],
div.frame.entry input[type='password'],
div.frame.entry input[type='email'],
div.frame.entry input[type='number']
{
	padding: 1.1rem 1rem 1.1rem 1rem;
	width: 100%;
	font-size:1.2rem;
	color: #666;
	text-align: left;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	border: 1px solid #fff;
	background-color: #fff;
	box-shadow: 2px 2px 4px #ccc;
	-webkit-box-shadow:2px 2px 4px #ccc;
	-webkit-appearance: none;
	appearance: none;
}

/* フレーム（登録フォーム　テキストエリア） */
div.frame.entry textarea
{
	padding: 0.5rem 3rem 0.5rem 0.5rem;
	width: 100%;
	color: #666;
	text-align: left;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	border: 1px solid #fff;
	background-color: #fff;
	box-shadow: 2px 2px 4px #ccc;
	-webkit-appearance: none;
	appearance: none;
}
div.frame.entry textarea:focus
{
	outline: none;
}

/* フレーム（登録フォーム　セレクトボックス） */
div.frame.entry div.selectbox
{
	position: relative;
	overflow: hidden;
	width: 100%;
	text-align: center;
	border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	-webkit-border-radius: 0.3rem;
	border: 1px solid #fff;
	background-color: #fff;
	box-shadow: 2px 2px 4px #ccc;
}
div.frame.entry div.selectbox::before
{
	position: absolute;
	top: 1.5em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 0.4rem solid transparent;
	border-right: 0.4rem solid transparent;
	border-top: 0.5rem solid #17a481;
	pointer-events: none;
}
div.frame.entry div.selectbox select
{
	padding: 1.2rem 2.5rem 1.2rem 1rem;
	width: 100%;
	font-size:1.1rem;
	color: #666;
	cursor: pointer;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
div.frame.entry div.selectbox select::-ms-expand
{
	display: none;
}

/* ラジオボタン */
div.frame.entry div.radiobox > div
{
	float:left;
}
div.frame.entry div.radiobox > div:not(:nth-of-type(1))
{
	margin-left:1rem;
}
div.frame.entry div.radiobox input[type='radio']
{	
	border: 1px solid #bbb;
	accent-color:#17a481;
}

/* チェックボックス */
div.frame.entry input[type='checkbox']
{	
	accent-color:#17a481;
}

/* フレーム（検索フォーム） */
div.frame.search
{
	margin: 0 auto;
	width: 100%;
}
div.frame.search div.section
{
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 1024px;
}

/*==========================================
 ページ制御フレーム
===========================================*/
div.pager_panel
{
	margin:1rem auto 1.5rem;
	padding:0 1rem;
}
div.pager_panel div.count
{
	float:left;
	margin-top:0.3rem;
}
div.pager_panel div.pager
{
	float:right;
}
div.pager_panel div.pager span
{
	float:left;
}
div.pager_panel div.pager a
{
	float:left;
	margin-left:5px;
}
div.pager_panel div.pager div.page_num,
div.pager_panel div.pager div.page_num_cur
{
	float:left;
	height:25px;
	min-width:21px;
	text-align:center;
}
div.pager_panel div.pager div.page_num
{
	background-color:#fff;
	border:1px solid #333;
}
div.pager_panel div.pager div.page_num_cur
{
	margin-left:5px;
	color:#fff;
	background-color:#333;
	border:1px solid #333;
}
@media screen and (min-width:0px) and (max-width:1100px)
{
	div.pager_panel div.pager a:not(.prev):not(.next),
	div.pager_panel div.pager div.page_num_cur,
	div.pager_panel div.pager > span
	{
		display:none;
	}
	div.pager_panel div.pager a span
	{
		padding: 0.3rem 1.5rem;
		border:1px solid #888;
		-moz-border-radius: 0.3rem;
		-webkit-border-radius: 0.3rem;
		border-radius: 0.3rem;
	}
	div.pager_panel div.pager a span:hover
	{
		color: #fff;
		background-color: #f33b69;
		border:1px solid #f33b69;
	}
}
