@charset "UTF-8";
/*----------------------------------------------
 reset styles
----------------------------------------------*/
main {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	display: block;
}
/*----------------------------------------------
 formatting styles
----------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.4em;/* =14px */
	line-height: 1.6;
	color: #333;
}

@media screen and (max-width:767px) {
body {
	word-break: break-all;
	-webkit-text-size-adjust: 100%;
}
th,
td {
	word-break: break-all;
}
.noscroll {
	position: fixed;
	top: 0px;
}
}
a {
	color: #006ED5;
}
@media screen and (min-width:768px) {
a:hover {
	color: #F08C00;
	text-decoration: none;
}
}
a:visited {
	text-decoration: none;
}
img {
	border-style: none;
}
ul {
	list-style: none;
}
em {
	font-style: normal;
	font-weight: bold;
}
.hidden {
	display: none;
}
/*----------------------------------------------
 clearfix
----------------------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/*----------------------------------------------
 box-sizing
----------------------------------------------*/
html {
	box-sizing: border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
/* ----------------------------------------------
form-base
----------------------------------------------*/
input,
textarea,
select {
	font-size: 100%;
	line-height: 1.6;
	outline: none;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 50px;
	padding: 5px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
textarea {
	font-family: sans-serif;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 100px;
	padding: 5px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
 select::-ms-expand {
 display: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 50px;
	padding: 5px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #b3b3b3;
	background: url(../img/form-img/arrow-select.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #b3b3b3)); /* Chrome,Safari4+ */
	background: url(../img/form-img/arrow-select.png) no-repeat right center, -webkit-linear-gradient(top, #ffffff 0%, #b3b3b3 100%); /* Chrome10+,Safari5.1+ */
	background: url(../img/form-img/arrow-select.png) no-repeat right center, linear-gradient(to bottom, #ffffff 0%, #b3b3b3 100%); /* W3C */
	background-size: 35px 50px;
}
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: 110%;
	font-weight: bold;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	background: #b3b3b3;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #b3b3b3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%, #b3b3b3 100%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom, #ffffff 0%, #b3b3b3 100%); /* W3C */
}
/* ラジオボタン（2択） */
ul.radios {
	line-height: 1.6;
	display: inline-block;
	margin: 0;
	padding: 0;
	clear: both;
}
ul.radios li {
	display: inline-block;
	position: relative;
	float: left;
	list-style: none;
	border: solid 1px #CCCCCC;
	border-right: none;
	overflow: hidden;
}
ul.radios li:first-child {
	border-radius: 5px 0 0 5px;
}
ul.radios li:last-child {
	border-right: solid 1px #CCCCCC;
	border-radius: 0 5px 5px 0;
}
ul.radios label {
	display: block;
	min-width: 3em;
	text-align: center;
	background: #b3b3b3;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #b3b3b3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%, #b3b3b3 100%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom, #ffffff 0%, #b3b3b3 100%); /* W3C */
	border: solid 1px #CCCCCC;
	padding: 10px;
}
ul.radios li:first-child label {
	border-radius: 4px 0 0 4px;
}
ul.radios li:last-child label {
	border-radius: 0 4px 4px 0;
}
ul.radios input[type=radio] {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}
ul.radios input[type=radio]:checked {
	cursor: auto;
}
ul.radios input[type=radio]:checked + label {
	color: #ffffff;
	background: #666666;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b3b3b3), color-stop(100%, #666666)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #b3b3b3 0%, #666666 100%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom, #b3b3b3 0%, #666666 100%); /* W3C */
}
/* ラジオボタンとチェックボックス（3択以上） */
.radio-check-list fieldset {
	line-height: 1.6;
	border: none;
}
.radio-check-list legend {
	font-weight: bold;
	padding: 5px 5px 0;
}
.radio-check-list ul {
	list-style: none;
	padding: 0;
	background: #FFFFFF;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	margin: 0 auto;
}
.radio-check-list ul li {
	padding: 0;
	margin: 0;
	position: relative;
}
.radio-check-list input {
	position: absolute;
	top: -5px;
	width: 100%;
}
.radio-check-list input[type="radio"] {
	opacity : 0;
	width: 100%;
	height: 100%;
	padding: 0;
}
.radio-check-list input[type="radio"] + label {
	display: block;
	background: url(../img/form-img/radio-off.png) no-repeat left center;
	background-size: 35px;
	border-bottom: 1px dotted #CCCCCC;
	padding: 10px 10px 10px 40px;
	text-decoration: none;
}
.radio-check-list input[type="radio"]:checked + label {
	background: url(../img/form-img/radio-on.png) no-repeat left center;
	background-size: 35px;
}
.radio-check-list input[type="checkbox"] {
	opacity : 0;
	width: 100%;
	height: 100%;
	padding: 0;
}
.radio-check-list input[type="checkbox"] + label {
	display: block;
	background: url(../img/form-img/check-off.png) no-repeat left center;
	background-size: 35px;
	border-bottom: 1px dotted #CCCCCC;
	padding: 10px 10px 10px 40px;
	text-decoration: none;
}
.radio-check-list input[type="checkbox"]:checked + label {
	background: url(../img/form-img/check-on.png) no-repeat left center;
	background-size: 35px;
}
.radio-check-list li:last-child label {
	border-bottom: none;
}
/* ----------------------------------------------
header
----------------------------------------------*/
header a {
	color: #333;
	text-decoration: none;
}
@media screen and (min-width:768px) {
header a:hover {
	text-decoration: underline;
}
}
#pcHeader {
	width: 1160px;
	margin: 10px auto 20px;
	position: relative;
}
#spHeader {
	display: none;
}
#pcHeader .logoBox .text1 {
	font-size: 1.3rem;
	color: #FA621D;
	padding-bottom: 10px;
}
#pcHeader #headLinkBox {
	position: absolute;
	top: 0;
	right: 0;
	line-height: 1;
}
#pcHeader #headLinkBox .linkText1 {
	text-align: right;
}
#pcHeader #headLinkBox .linkText1 span {
	font-size: 1.1rem;
	padding-left: 35px;
}
#pcHeader #headLinkBox .btnBox1,
#pcHeader #headLinkBox .btnBox2 {
	float: right;
	padding-top: 15px;
}
#pcHeader #headLinkBox .btnBox1 p,
#pcHeader #headLinkBox .btnBox2 p {
	float: left;
}
#pcHeader #headLinkBox .btnBox1 p a {
	display: block;
	font-weight: bold;
	color: #F58B20;
	padding: 10px 0 10px 25px;
	margin-left: 25px;
	background-repeat: no-repeat;
	background-position: left 6px;
}
#pcHeader #headLinkBox .btnBox1 p a span {
	padding-left: 10px;
}
#pcHeader #headLinkBox .btnBox1 p.okiniiriBtn a {
	background-image: url(../img/icon-heart-pc.png);
}
#pcHeader #headLinkBox .btnBox1 p.watchedBtn a {
	background-image: url(../img/icon-egao-pc.png);
	padding-left: 35px;
}
#pcHeader #headLinkBox .btnBox1 p.searchBtn a {
	background-image: url(../img/icon-search-pc.png);
}
#pcHeader #headLinkBox .btnBox2 p a {
	display: block;
	width: 108px;
	height: 40px;
	margin-left: 20px;
	text-align: center;
	color: #FFF;
	padding-top: 13px;
}
#pcHeader #headLinkBox .btnBox2 p a img {
	vertical-align: middle;
	padding-left: 10px;
	height: 15px;
	width: auto;
}
#pcHeader #headLinkBox .btnBox2 p.tourokuBtn a {
	background-color: #2B438A;
	position: relative;
}
#pcHeader #headLinkBox .btnBox2 p.loginBtn a {
	background-color: #FA621D;
}

.tourokuBtn a span.new_reply_attention {
	color: #f00;
	font-size: 2rem;
	font-weight: bold;
	position: absolute;
	right: 3px;
	top: 7px;
}

@media screen and (max-width:767px) {
#pcHeader {
	display: none;
}
#spHeader {
	display: block;
	position: relative;
}
#spHeader .logoBox {
	line-height: 0;
	padding: 15px 10px;
}

#spHeader #menuBtn {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 5px;
	cursor: pointer;
	background: url(../img/icon-menu2-sp.png) no-repeat;
	background-size: 40px 40px;
}
#spHeader #menuBtn.close img {
	display: none;
}
#spHeader .loginBtn a {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 48px;
}
#spHeader .tourokuBtn a {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 91px;
}

#spHeader .tourokuBtn a span.new_reply_attention {
	right: 5px;
	top: -2px;
}

#spHeader .headerBottom {
	background-color: #FA621D;
	height: 30px;
	overflow: hidden;
}
#spHeader .headerBottom p a {
	display: block;
	width: 50%;
	height: 30px;
	float: left;
	font-size: 1.2rem;
	text-align: center;
	color: #FFF;
	padding-top: 6px;
	border-left: 1px solid #FFF;
}
#spHeader .headerBottom p.okiniiriBtn a {
	border-left: none;
}
#spHeader .headerBottom p#guideBtn a {
	width: 34%;
	border-left: none;
}
#spHeader .headerBottom p a img {
	vertical-align: text-bottom;
	margin-right: 2px;
}
#spHeader .headerBottom p a span:before {
	content: "："
}
#spHeader #menuList {
	width: 100%;
	background-color: #fff;
	overflow: hidden;
	border-left: 1px solid #FA621D;
}
#spHeader #menuList li a {
	display: block;
	font-size: 1.4rem;
	width: 100%;
	background: #FFF url(../img/arrow-touroku.png) no-repeat right center;
	background-size: 17px 10px;
	padding: 20px 25px 20px 20px;
	border-bottom: 1px solid #DFC9B4;
}
#slideMenu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
.slideContens {
	display: -webkit-flex;
	display: flex;
	height: 100%;
    width: 80%;
	margin-left: auto;
    max-width: 300px;
    min-width: 240px;
    position: relative;
}
.slideClose {
	flex: 1 1 50px;
	width: 50px;
	padding-top: 15px;
}
.slideClose {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	}
.slideBg {
	width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.8
}
}
/* ----------------------------------------------
main
----------------------------------------------*/
section,
header,
nav,
#pankuzu,
footer {
	min-width: 1200px;
}
main #pageTitle {
	font-size: 2.4rem;
	color: #FFF;
	background-color: #FFA852;
	padding: 20px 0;
}
main #subpageTitle {
	border-bottom: 1px solid #DFC9B4;
}
main h1{
	display: block;
	width: 1060px;
	margin: auto;
}
main h2 {
	display: block;
	width: 1060px;
	margin: auto;
	font-size: 1.8rem;
	padding: 15px 0;
}
#contentsBox {
	width: 1060px;
	margin: 40px auto 60px;
}
#contentsBox h3 {
	font-size: 1.6rem;
	color: #F9521E;
	background-color: #FFEDDB;
	border: 1px solid #FFD6AD;
	padding: 10px;
	margin-bottom: 20px;
}
#contentsBox h3.open {
	background: #FFEDDB url(../img/btn-open.png) no-repeat right center;
	background-size: 48px 35px;
	padding-right: 50px;
	cursor: pointer;
}
#contentsBox h3.close {
	background: #FFEDDB url(../img/btn-close.png) no-repeat right center;
	background-size: 48px 35px;
	padding-right: 50px;
	cursor: pointer;
}
#contentsBox .textBox {
	margin: 20px 20px 40px;
}


@media screen and (max-width:767px) {
	section,
	header,
	nav,
	#pankuzu,
	footer {
		width: 100%;
		min-width: 320px;
	}

	main #pageTitle {
		padding: 10px;
	}

	main h1,
	main h2 {
		width: 100%;
	}

	main #pageTitle h1 {
		font-size: 1.5rem;
	}

	main h2 {
		font-size: 1.8rem;
		padding: 10px;
	}

	#contentsBox {
		width: 100%;
		margin: 10px 0 20px;
		padding: 0 10px;
	}

	#contentsBox h3 {
		margin-bottom: 10px;
	}

	#contentsBox .textBox {
		margin: 10px 0 20px;
	}
}

/*@media screen and (max-width:320px) {
	main #pageTitle h1 {
		font-size: 1.0rem;
	}
}*/

/* ----------------------------------------------
osusumeLinkArea styles
----------------------------------------------*/
#osusumeLinkArea a {
	color: #333;
	text-decoration: none;
}
@media screen and (min-width:768px) {
#osusumeLinkArea a:hover {
	text-decoration: underline;
}
}
#osusumeLinkArea {
	border-bottom: 1px solid #b3b3b3;
}
.boxInner {
	width: 1160px;
	margin: 0 auto;
}
#osusumeLinkArea #osusumeKyujin .midashi {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	padding: 30px 0;
}
#osusumeLinkArea #osusumeKyujin ul {
	overflow: hidden;
}
#osusumeLinkArea #osusumeKyujin ul li {
	width: 25%;
	float: left;
}
#osusumeLinkArea #osusumeKyujin ul li a {
	display: block;
	line-height: 1;
	color: #287300;
	background: #F0F7EA url(../img/icon-osusumekyujin.png) no-repeat right center;
	background-size: 54px 36px;
	height: 36px;
	padding: 9px 0 0 15px;
	border: 1px solid #75B646;
	margin-left: 20px;
	margin-bottom: 10px;
}
#osusumeLinkArea #osusumeKyujin ul li:first-child a {
	margin-left: 0;
}
#osusumeLinkArea .bnrBoxWrap {
	padding: 20px 0 40px;
	overflow: hidden;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 {
	width: 455px;
	float: left;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr a {
	display: block;
	height: 60px;
	position: relative;
	background-color: #FFF;
	border: 1px solid #E7D6C6;
	padding: 10px;
	margin-bottom: 10px;
}
@media screen and (min-width:768px) {
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr a:hover {
	color: #999;
	text-decoration: none;
}
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr .text1 {
	font-size: 1.2rem;
	line-height: 1;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr .text1 br {
	display: none;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr .text1 span {
	color: #FA621D;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr .btn1 {
	font-size: 1.3rem;
	width: 100px;
	height: 36px;
	padding: 6px 20px 0 10px;
	border: 1px solid #999999;
	background: #FFF url(../img/arrow-touroku.png) no-repeat right center;
	background-size: 17px 10px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #sakuseiTool {
	height: 60px;
	position: relative;
	background: #A7917C url(../img/icon-tool.png) no-repeat 10px center;
	background-size: 45px 45px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #sakuseiTool .text1 {
	font-size: 1.5rem;
	line-height: 1.4;
	color: #FFF;
	padding: 11px 0 0 65px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #sakuseiTool .btn1 a,
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #sakuseiTool .btn2 a {
	font-size: 1.3rem;
	width: 100px;
	height: 36px;
	padding: 6px 20px 0 10px;
	border: 1px solid #999999;
	background: #FFF url(../img/arrow-touroku.png) no-repeat right center;
	background-size: 17px 10px;
	position: absolute;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #sakuseiTool .btn1 a {
	right: 10px;
	bottom: 12px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #sakuseiTool .btn2 a {
	right: 120px;
	bottom: 12px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 {
	width: 690px;
	float: right;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li a {
	display: block;
	line-height: 1.4;
	color: #FFF;
	width: 220px;
	height: 60px;
	float: left;
	margin-left: 15px;
	margin-bottom: 10px;
	padding-left: 65px;
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 45px 45px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li:first-child a {
	margin-left: 0;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrShindan a {
	background-image: url(../img/icon-shindan.png);
	background-color: #00BEC5;
	padding-top: 11px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrTaiken a {
	background-image: url(../img/icon-taiken.png);
	background-color: #56A8E9;
	padding-top: 20px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrTaiken a br {
	display: none;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrPoint a {
	background-image: url(../img/icon-point.png);
	background-color: #FF8EA2;
	padding-top: 11px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrColumn a {
	background-image: url(../img/icon-column.png);
	background-color: #44C589;
	padding-top: 20px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrChoice a {
	background-image: url(../img/icon-choice.png);
	background-color: #B984B8;
	padding-top: 20px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 p#bnrCampaign a {
	width: 220px;
	height: 60px;
	float: left;
	margin-left: 15px;
	background-color: #fdee66;

}

@media screen and (max-width:767px) {
.boxInner {
	width: 100%;
}
#osusumeLinkArea #osusumeKyujin .midashi {
	padding: 15px 0;
}
#osusumeLinkArea #osusumeKyujin ul li {
	width: 100%;
	float: none;
	padding: 0 10px;
}
#osusumeLinkArea #osusumeKyujin ul li a {
	margin-left: 0;
}
#osusumeLinkArea .bnrBoxWrap {
	padding: 15px 10px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 {
	width: 100%;
	float: none;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr a {
	height: 100px;
	position: relative;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr .text1 {
	letter-spacing: 2px;
	line-height: 1.4;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #tourokuBnr .text1 br {
	display: block;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox1 #sakuseiTool {
	display: none;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 {
	width: 100%;
	float: none;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li {
	width: 50%;
	float: left;
	padding-left: 1px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li a {
	font-size: 1.1rem;
	width: 100%;
	margin-left: 0;
	margin-bottom: 1px;
	padding-left: 53px;
	background-position: 5px center;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrShindan a {
	padding-top: 15px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrTaiken a {
	padding-top: 15px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrTaiken a br {
	display: block;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrPoint a {
	padding-top: 15px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrColumn a {
	padding-top: 22px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 ul li#bnrChoice a {
	padding-top: 22px;
	margin-bottom: 10px;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 p#bnrCampaign {
	text-align: center;
}
#osusumeLinkArea .bnrBoxWrap .bnrBox2 p#bnrCampaign a {
	float: none;
	margin-left: 0;
}
}

#fair-report-banner {
    /*clear: both;*/
    float: right;
}
@media screen and (max-width: 767px) {
    #fair-report-banner {
        float: none;
        text-align: center;
    }
}

/* ----------------------------------------------
pankuzu styles
----------------------------------------------*/
#pankuzu {
	font-size: 1.1rem;
	letter-spacing: 1px;
	padding: 10px 0;
	border-bottom: 1px solid #b3b3b3;
}
#pankuzu a {
	color: #FA621D;
	text-decoration: none;
}
@media screen and (min-width:768px) {
#pankuzu a:hover {
	text-decoration: underline;
}
}

@media screen and (max-width:767px) {
#pankuzu {
	padding: 10px;
}
}
/* ----------------------------------------------
footoer
----------------------------------------------*/
footer a {
	color: #333;
	text-decoration: none;
}
@media screen and (min-width:768px) {
footer a:hover {
	text-decoration: underline;
}
}
footer .boxInner #footerBox1 {
	padding: 40px 0 30px;
	position: relative;
}
footer .boxInner #footerBox1 .logoBox {
	overflow: hidden;
}
footer .boxInner #footerBox1 .logoBox #logo {
	float: left;
	margin-right: 10px;
}
footer .boxInner #footerBox1 .logoBox #socialWrap div {
	float: left;
	margin: 5px 0 0 10px;
}
footer .boxInner .linkText1 {
	text-align: right;
	position: absolute;
	top: 40px;
	right: 0;
	font-size: 1.2rem;
}
footer #footerBox2 {
	overflow: hidden;
	position: relative;
	padding-bottom: 30px;
}
footer #footerBox2 ul {
	float: left;
	margin-right: 50px;
}
footer #footerBox2 ul li {
	font-size: 1.1rem;
	color: #FA621D;
	margin-bottom: 5px;
}
footer #footerBox2 #rightPrivacy {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
}
footer #footerBox2 #rightPrivacy #rPrivacyText {
	font-size: 1.1rem;
	color: #2F4892;
	width: 140px;
	float: right;
	margin-right: 20px;
}
footer #footerBox2 #rightPrivacy #rPrivacyMark {
	float: right;
	margin-right: 20px;
}
footer #footerBox2 #rightPrivacy #footerSSL {
	width: 130px;
	float: right;
}
footer #copyright {
	border-top: 1px solid #b3b3b3;
}
footer #copyright .boxInner {
	font-size: 1.1rem;
	text-align: right;
	color: #826253;
	padding: 20px 0;
}
footer #copyright .boxInner p br {
	display: none;
}
@media screen and (min-width:768px) {
footer .boxInner .linkText1 .spSty {
	display: none;
}
}
@media screen and (max-width:767px) {
footer .boxInner #footerBox1 {
	padding: 15px 0;
}
footer .boxInner #footerBox1 .logoBox #logo {
	float: none;
	margin-right: 0;
	text-align: center;
}
footer .boxInner #footerBox1 .logoBox #logo img {
	width: 170px;
	height: auto;
}
footer .boxInner #footerBox1 .logoBox #socialWrap {
	text-align: center;
}
footer .boxInner #footerBox1 .logoBox #socialWrap div {
	float: none;
	display: inline;
}
footer .boxInner .linkText1 {
	text-align: center;
	position: static;
	padding: 10px 25px;
	border-bottom: 1px solid #b3b3b3;
}
footer .boxInner .linkText1 br {
	display: none;
}
footer .boxInner .linkText1 a {
	display: inline-block;
}
footer #footerBox2 {
	height: 70px;
	padding-bottom: 0;
}
footer #footerBox2 ul {
	display: none;
}
footer #footerBox2 #rightPrivacy {
	right: 0;
	left: 0;
	margin: auto;
	width: 300px;
}
footer #footerBox2 #rightPrivacy #rPrivacyText {
	width: 100px;
	margin-right: 5px;
}
footer #footerBox2 #rightPrivacy #rPrivacyMark {
	margin-right: 5px;
}
footer #footerBox2 #rightPrivacy #rPrivacyMark img {
	width: 60px;
	height: auto;
}
footer #footerBox2 #rightPrivacy #footerSSL {
	width: 130px;
	float: right;
}
footer #copyright {
	border-top: none;
}
footer #copyright .boxInner {
	font-size: 1.0rem;
	text-align: center;
	padding: 10px;
}
footer #copyright .boxInner p br {
	display: block;
}
}
/* ----------------------------------------------
osusume styles
----------------------------------------------*/
#osusumeArea {
	margin-bottom: 40px;
}
#osusumeArea .boxHead {
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 2px;
	color: #FFF;
	background: #6EB82B;
	padding: 6px 15px;
}
#osusumeArea .textBox {
	border: double #6FB92C;
	border-radius: 10px;
	margin: 10px auto;
}
#osusumeArea .textBox a {
	display: block;
	background: url(../img/arrow-osusume.png) no-repeat 99% center;
	background-size: 20px 20px;
	color: #333;
	text-decoration: none;
	padding: 10px 40px 10px 10px;
	overflow: hidden;
}
@media screen and (min-width:768px) {
#osusumeArea .textBox a:hover {
	color: #999;
}
}
#osusumeArea .textBox .photo {
	line-height: 0;
	margin-right: 10px;
	float: left;
}
#osusumeArea .textBox .photo img {
	width: 158px;
	height: auto;
}
#osusumeArea .textBox .midashi {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 5px;
}
#osusumeArea .textBox h3 img {
	vertical-align: text-top;
	margin-right: 5px;
}

@media screen and (max-width:767px) {
#osusumeArea {
	margin-bottom: 20px;
}
#osusumeArea .textBox a {
	background: url(../img/arrow-osusume.png) no-repeat 98% center;
	background-size: 20px 20px;
	padding: 10px 30px 10px 10px;
}
#osusumeArea .textBox .photo img {
	width: 79px;
	height: auto;
}
#osusumeArea .textBox .midashi {
	font-size: 1.6rem;
	line-height: 1.5;
}
}
/* ----------------------------------------------
pageNav styles
----------------------------------------------*/
.pageNav {
	text-align: center;
	margin: -10px auto 40px;
}
.pageNav li {
	line-height: 3;
	display: inline-block;
}
.pageNav li a {
	background-color: #D6E8F8;
	padding: 7px 10px;
	border-radius: 5px;
}
.pageNav li.now a {
	text-decoration: none;
	color: #333;
	background-color: #DDD;
}
/* ----------------------------------------------
色別アイコン
----------------------------------------------*/
.iconArea {
	padding: 0;
}
.iconArea ul {
	margin-bottom: 10px;
}
.iconArea ul li {
	float: left;
	border: 2px solid;
	padding: 1px 5px 0;
	margin-right: 10px;
	margin-bottom: 5px;
	font-size: 1.2rem;
}
.iconArea ul li.icon01 {
	border-color: #ff5266;
}
.iconArea ul li.icon02 {
	border-color: #ffbd2b;
}
.iconArea ul li.icon03 {
	border-color: #82cf11;
}
.iconArea ul li.icon04 {
	border-color: #72c4ed;
}
.iconArea ul li.icon05 {
	border-color: #bc87ff;
}
@media screen and (max-width:767px) {
.iconArea {
	padding: 0;
}
}

/* ----------------------------------------------
ページトップへ
----------------------------------------------*/
#totop {
	position: fixed;
	right: 2%;
 	bottom: 0;
	padding: 30px 0 10px;
	z-index: 99;
}

/* ----------------------------------------------
読み込み中
----------------------------------------------*/
.loading {
	width: 50px;
}
#kyujin .loading {
	margin: 130px auto 80px;
}
@media screen and (max-width:767px) {
#kyujin .loading {
	margin: 100px auto 80px;
}
}

/* ----------------------------------------------
点滅
----------------------------------------------*/
.blinking {
	-webkit-animation: 0.5s linear 0s alternate none infinite running blink;
	-moz-animation: 0.5s linear 0s alternate none infinite running blink;
	animation: 0.5s linear 0s alternate none infinite running blink;
}

@-webkit-keyframes blink {
	0% { opacity: 0; }
	19.9% { opacity: 0; }
	20% { opacity: 1; }
	100% { opacity: 1; }
}

@-moz-keyframes blink {
	0% { opacity: 0; }
	19.9% { opacity: 0; }
	20% { opacity: 1; }
	100% { opacity: 1; }
}

@keyframes blink {
	0% { opacity: 0; }
	19.9% { opacity: 0; }
	20% { opacity: 1; }
	100% { opacity: 1; }
}

/* アプリLPバナー */
@media screen and (max-width:767px) {
	#sp-app-banner__embeded {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	#sp-app-banner__embeded a {
		display: block;
		width: 100%;
	}

	#sp-app-banner__embeded img {
		width: 100%;
		border:dashed 1px brown;
	}

	/* スマホ向け画面下部固定のバナー */
	#sp-app-banner__fixed {
		position: fixed;
		z-index: 100;
		bottom: 0px;
		display: block;
		width: 100%;
		height: 50px;
		border-top: dashed 1px brown;
		background-color: #ffdc7d;
		background-image:
			url('../img/app-icon.png'),
			url('../img/sp-mock.png');
		background-repeat: no-repeat,no-repeat;
		background-position:
			1px 1px,
			calc(100% + 10px) calc(50% + 20px);
		background-size: 48px 48px, 22% auto;
	}

	#sp-app-banner__fixed p {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
		text-align: center;
		color: brown;
		font-size: .7em;
		line-height: 50px;
	}

	#sp-app-banner__fixed img {
		height: 18px;
		margin-right: .5em;
		vertical-align: -0.4em;
	}

	#sp-app-banner__fixed a {
		display: block;
		width: 100%;
		height: 100%;
		color: brown;
		text-decoration: none;
	}

	#sp-app-banner__fixed .highlight {
		margin: 0 .2em;
		text-decoration: underline;
		color: #f25f25;
		font-size: 1.5em;
		font-weight: bold;
	}

	#pc-app-banner__fixed,
	#pc-app-banner__embeded {
		display: none;
	}
}

@media screen and (min-width:375px) {
	#sp-app-banner__fixed img {
		height: 22px;
	}

	#sp-app-banner__fixed p {
		font-size: .9em;
	}
}
/*就職フェアバナー*/
#fair-banner,
#event-banner
 {
	display: block;
	margin: 0 auto 10px;
	padding: 0;
	width: 95%;
}

#fair-banner img,
#event-banner img
 {
	width: 100%;
}

/* トップページバナー */
.top-banner {
	display: block;
	margin: -15px auto 10px;
	padding: 0;
	background-color: #c5bfb2;
	height: 15.6vw;
	min-width: 320px;
}

.top-banner img
 {
	width: 100%;
}

@media screen and (min-width:768px) {
	.top-banner {
		 	margin: 0 auto 30px;
			width: 728px;
			height: 90px;
	}
}

@media screen and (min-width:768px) {
	#pc-app-banner__fixed {
		position: fixed;
		left: 0px;
		bottom: 20px;
		display: block;
		width: 100px;
		height: 100px;
		border-radius: 0px 5px 5px 0px/0px 5px 5px 0px;
		overflow: hidden;
		border: 1px solid #ccc;
		z-index: 100;
		transition: all 0.3s;
		box-shadow: 2px 2px 2px rgba(0,0,0,0.2)
	}

	#pc-app-banner__fixed:hover {
		width: 300px;
	}

	#pc-app-banner__fixed img {
		width: 300px;
		height: 100px;
		float: right;
	}

	#pc-app-banner__embeded {
		display: block;
		margin-top: 15px;
	}

	#pc-app-banner__embeded a,
	#pc-app-banner__embeded img {
		display: block;
		width: 100%;
		height: 100%;
	}

	.app-banner__w360 {
		width: 360px;
		height: 80px;
		margin: 0 auto 30px;
	}

	#sp-app-banner__embeded,
	#sp-app-banner__fixed {
		display: none;
	}

	/*就職フェアバナー*/
	#fair-banner,
	#event-banner
	 {
		margin-bottom: 50px;
		width: 728px;
	}
}

/* 地図
----------------------------------------------*/
.new-label {
	position: relative;
}

.new-label::before {
	content: "";
	top: 0;
	right: 0;
	border-bottom: 2em solid transparent;
	border-right: 3em solid red; /* ラベルの色はここで変更 */
	position: absolute;
	z-index: 100;
}

.new-label::after {
	content: "New!";
	display: block;
	top: 5px;
	transform: rotate(30deg);
	color: #fff; /* 文字色はここで変更 */
	right: 5px;
	font-size: 0.6em;
  font-weight: bold;
	position: absolute;
	z-index: 101;
}
