@charset "utf-8";
/*
 * style_sp.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */
a {
	color: #000;
	text-decoration: none;
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
/* !Inline Align ------------------------------------------------------------ */
.taL { text-align: left   !important;}
.taC { text-align: center !important;}
.taR { text-align: right  !important;}
.vaT { vertical-align: top    !important;}
.vaM { vertical-align: middle !important;}
.vaB { vertical-align: bottom !important;}
.blockC { margin-right: auto; margin-left: auto; text-align: left;}
* html .blockC { margin-right: 0; margin-left: 0;}
.blockR { margin-left: auto; text-align: left;}
* html .blockR { margin-left: 0;}
.pc{
	display: none;
}
.sp{
	display: block;
}

/* !h(n)eading
---------------------------------------------------------- */
.hdL {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: #1d2089;
}
.hdL span{
	display: inline-block;
	padding-bottom: 12px;
	position: relative;
}
.hdL span:before{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #1d2089;
	width: 50px;
	height: 2px;
	content: '';
}
.hdM {
	text-align: center;
	font-size: 1.75rem;
	font-weight: bold;
}
.hdM span{
	display: block;
	font-size: 1.15rem;
	font-weight: normal;
	color: #29a6dd;
}

.hdS {
	
}

.hd01 {
	text-align: center;
	font-size: 1.4rem;
	color: #1d2089;
	font-weight: bold;
	background-color: #ededef;
	padding: 5px 0;
	margin: 0 -5px;
	width: calc(100% + 10px);
}

.errorMessage {
  color: #f00;
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	position: relative;
}
#wrapper.menuOpen{
  overflow: hidden;
  height: 100vh;
}
/* !header
---------------------------------------------------------- */
#header {
	
}

#headerIn {
	
}
.headerMenu{
	padding: 15px 17px;
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
}
#headerLogo {
    width: 73.46vw;
}
#headerLogo a{display: block;}
.headOut{
	display: none;
}
.headSlick{
	display: none;
}

#headerLinks {
	position: fixed;
	top: 2px;
	right: 0;
	z-index: 9999;
  transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
}
#headerLinks.hidden {
  /*opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
	*/
}
#wrapper.menuOpen #headerLinks.hidden {
  opacity: 1;
  pointer-events: inherit;
}
.lineMenu{
	writing-mode: vertical-lr; 
    writing-mode: tb-lr;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 3px;
    display: block;
}
.btnItem{
	position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    letter-spacing: 0.1em;
}
.btnItem .lineMenu span{
	display: none;
}
.btnItem .lineMenu.remove span{
	display: block;
}
.btnItem .lineMenu em{
	display: block;
	font-weight: bold;
}
.btnItem .lineMenu.remove em{
	display: none;
}



.btnMenu{
	width:47px;
	height:113px;
	background: url('../img/common/circle.png')no-repeat right center;
	background-size: 100% 100%;
	cursor: pointer;
}
.btnMenu a {
	display: block;
    width: 18px;
    height: 14px;
	box-sizing: border-box;
	position: relative;
	right: 0;
}

.btnMenu a span {
    display: block;
    background: #fff;
    width: 18px;
    height: 2px;
    position: absolute;
    left: unset;
    right: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.btnMenu a span:first-child {
	top: 0;
}

.btnMenu a span:nth-child(2) {
	top: 50%;
	margin-top: -1px;
}

.btnMenu a span:last-child {
    bottom: 0;
}

	
.btnMenu.active a span:first-child {
    -webkit-transform: translateY(1px) rotate(45deg);
    -moz-transform: translateY(1px) rotate(45deg);
    -ms-transform: translateY(1px) rotate(45deg);
    transform: translateY(1px) rotate(45deg);
}

.btnMenu.active a span:nth-child(2) {
    opacity: 0;
}

.btnMenu.active a span:last-child {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
}


.btnMenu a:hover{
  opacity: 1;
}
.btnMenu:hover{
  opacity: 0.85;
  transition: all 0.5s;
}
/* !gMenu
---------------------------------------------------------- */
#gMenu {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	box-sizing: border-box;
	transform: translateX(100%);
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-webkit-transition: transform 0.5s;
	z-index: 999;
	box-sizing: border-box;
	background-color: #fff;
}
#gMenu .gMenuIn {
  height: 100vh;
	box-sizing: border-box;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
}
#gMenu:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url("../img/common/gmenu_top.png") left center repeat-x;
  background-size: auto 28px;
  content: '';
  width: 100%;
  height: 28px;
}
#gMenu .gMenuBtm {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: url("../img/common/gmenu_btm.png") left top repeat-x;
  background-size: auto 28px;
  width: 100%;
  height: 100px;
  display: block;
  text-indent: -9999px;
}
#gMenu .gMenuBtm:after {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #1dade5;
  content: '';
  width: 100%;
  height: 90px;
}

#gMenu .gMenuBody {
	padding: 75px 0 150px;
}
#gMenu.active {
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-webkit-transition: transform 0.5s;
}
.overlay {
	background-color: rgba(0, 0, 0, 0.24);
	z-index: 998;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}


#gMenu ul{
	margin-left: -25px;
	padding: 0 20px;
	box-sizing: border-box;
}
#gMenu ul li{
	float: left;
	width: 50%;
	padding-left: 25px;
	box-sizing: border-box;
}
#gMenu ul li a{
	display: block;
	font-weight: bold;
	color: #1e2089;
	font-size: 1.4rem;
}
#gMenu .firstUl li:first-child{
	width: 100%;
}
#gMenu .firstUl li{
	padding-top: 5px;
	padding-bottom: 5px;
	box-sizing: border-box;
}
#gMenu .secondUl{
	margin-top: 20px;
}
#gMenu .secondUl li a{
	font-size: 1.2rem;
}
#gMenu .secondUl li:last-child{
	float: right;
}
#gMenu .secondUl li{
	padding-top: 5px;
	padding-bottom: 5px;
	box-sizing: border-box;
}
.gImg{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top:30px;
	padding: 0 20px;
	box-sizing: border-box;
}
.gImg a{
	display: block;
}
.gImg a:last-child{
	margin-left: 15px;
}


/* !gNavi
---------------------------------------------------------- */
		
#gNavi {
	display: none;
	margin-top: -20px;
}
.home #gNavi{
	display: block;
}		
/* !gNavi
---------------------------------------------------------- */
#gNavi ul {}
#gNavi ul li {
	float: left;
	width: 33.33%;
	box-sizing: border-box;
	position: relative;
}
#gNavi ul li:before {
	position: absolute;
	left: 0;
	width: 1px;
	height: 60%;
	top: 24%;
	z-index: 2;
	background: #becbce;
	content: '';
}
#gNavi ul li:first-child:before,
#gNavi ul li:nth-child(4):before{
	display: none;
}
#gNavi ul li a {
	display: block;
	padding: 40px 0 5px 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.07;
	font-weight: bold;
	border-bottom: 3px solid #29a6dd;
	background: url('../img/common/gnav01.png')no-repeat center top;
	background-size: 45px auto;margin-top: 20px;
}
#gNavi ul li a.blue{border-bottom: 3px solid #1d2089;
	background: url('../img/common/gnav02.png')no-repeat center 5px;background-size: 40px auto;margin-top: 20px;}
#gNavi ul li a.proe{border-bottom: 3px solid #855bbc;
	background: url('../img/common/gnav03.png')no-repeat center top;background-size: 45px auto;margin-top: 20px;}
#gNavi ul li a.green{border-bottom: 3px solid #2ea072;
	background: url('../img/common/gnav04.png')no-repeat center top;background-size: 44px auto;margin-top: 20px;}
#gNavi ul li a.orange{border-bottom: 3px solid #f96b00;
	background: url('../img/common/gnav05.png')no-repeat center top;background-size: 40px auto;margin-top: 20px;}
#gNavi ul li a.pink{border-bottom: 3px solid #f777ab;
	background: url('../img/common/gnav06.png')no-repeat center top;background-size: 40px auto;margin-top: 20px;}
/* !mainVisual
---------------------------------------------------------- */
#mainVisual {}
#mainVisual .mainBg{
	position: relative;
	background: url('../img/top/mainSp.jpg')no-repeat 0 0;
	background-size: cover;
	height: 43.866vw;
}
#mainVisual .mainBg:before{
	position: absolute;
	bottom: 3px;
	right: 15px;
	background: url('../img/top/eat.png')no-repeat 0 0;
	background-size: 100% auto;
	width: 19.066vw;
	height: 11.33vw;
	content: '';
	z-index: 10;
}
.mainBox {
    position: relative;
    margin-top: 18px;
    margin-bottom: 10px;
}
.mainBox ul{
	margin-left: -15px;
}
.mainBox ul li{
	width: 210px;
	padding-left: 15px;
	box-sizing: border-box;
}
#mainVisual .slick-slide img{
    width: 100%;
}
#header #mainVisual .slick-arrow {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}
#header #mainVisual .slick-prev {
  background: url('../img/top/arrow_left.png') center center no-repeat;
  background-size: 100%;
	left: 50%;
	margin-left: -113px;
}
#header #mainVisual .slick-next {
  background: url('../img/top/arrow_right.png') center center no-repeat;
  background-size: 100%;
  right: 50%;
	margin-right: -127px;
}
#header #mainVisual .slick-active img{
	border: 1px solid #1d2089;
	box-sizing: border-box;
}
/* !teaser
---------------------------------------------------------- */
#teaser {
	background: url('../img/contact/teaser.jpg') repeat-x center center;
	height:28vw;
	background-size: auto 100%;
	width: 100%;
  	position: relative;
}
#teaser h2{
	position: absolute;
	top: 4vw;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-weight: bold;
	padding: 23px 0 0;
	color: #fff;
	width: 100%;
	box-sizing: border-box;
	font-size: 1.5rem;
	background: url('../img/contact/teaserTips.png')no-repeat center top;
	background-size: 20px auto;
}
#company #teaser {
	background: url('../img/company/teaser.jpg') repeat-x center center;
	background-size:auto 100%;
}
#company #teaser h2{
	padding: 20px 0 0;
	background: url('../img/company/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#broadcast #teaser {
	background: url('../img/broadcast/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#broadcast #teaser h2{
	padding: 20px 0 0;
	background: url('../img/broadcast/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#media #teaser {
	background: url('../img/media/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#media #teaser h2{
	padding: 20px 0 0;
	background: url('../img/media/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#support #teaser {
	background: url('../img/support/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#support #teaser h2{
	padding: 20px 0 0;
	background: url('../img/support/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#privacy #teaser {
	background: url('../img/privacy/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#privacy #teaser h2{
	padding: 20px 0 0;
	background: url('../img/privacy/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#sitemap #teaser {
	background: url('../img/sitemap/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#sitemap #teaser h2{
	padding: 20px 0 0;
	background: url('../img/sitemap/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#introduction #teaser {
	background: url('../img/introduction/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#introduction #teaser h2{
	padding: 20px 0 0;
	background: url('../img/introduction/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#antisocial #teaser {
	background: url('../img/antisocial/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#antisocial #teaser h2{
	padding: 20px 0 0;
	background: url('../img/antisocial/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#literacy #teaser {
	background: url('../img/literacy/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#literacy #teaser h2{
	padding: 20px 0 0;
	background: url('../img/literacy/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#national #teaser {
	background: url('../img/national/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#national #teaser h2{
	padding: 20px 0 0;
	background: url('../img/national/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#recruit #teaser {
	background: url('../img/recruit/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#recruit #teaser h2{
	padding: 20px 0 0;
	background: url('../img/recruit/teaserTips.png')no-repeat center top;
	background-size:3.33vw auto;
}
#friends #teaser {
	background: url('../img/friends/teaser.jpg') repeat-x center center;
	background-size: auto 100%;
}
#friends #teaser  h2{
	background: url('../img/friends/teaserTips.png')no-repeat center top;
	background-size: 20px auto;
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb{
	display: none;
}
/* !contents
---------------------------------------------------------- */
#contents {
	
}

#main {
	
}
.inner {
	max-width: 1220px;
	padding: 0 10px;
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
}
.inner_s {
	max-width: 1000px;
}

.home .inner{
	padding: 0 3px;
}
/* !footer
---------------------------------------------------------- */
footer{
	position: relative;
	padding-top: 17.466vw;
	box-sizing: border-box;
}
footer:before{
	position: absolute;
	z-index: 50;
	top: 0px;
	left: 0;
	right: 0;
	margin: auto;
	background: url('../img/common/footer_icon.png')no-repeat 0 0;
	width: 33.066vw;
	height: 19.466vw;
	content: '';
	background-size: 100% auto;
}
#footer {
	background: url('../img/common/footer.png')no-repeat center center;
	background-size: cover;
	min-height:150px;
}
.footSub{
	text-align: center;
	padding: 25px 0;
}
#footer .footerIn ul{
	text-align: center;
}
#footer .footerIn ul li{
	display: inline-block;
	padding: 0 10px;
	font-size: 1.4rem;
}
#footer .footerIn ul li a{
	color: #fff;
}	
#footer .footerIn ul li a:hover{
	text-decoration: underline;
}
#copyright {
	color: #fff;
	font-size: 1rem;
	text-align: center;
	padding: 15px 0 10px;
}


/*
*contact-----page.css
*
*/
.contactWrap{
	margin: 15px 0 0;
}
.contMars{margin: 50px 0 0;}
.contMess{
	text-align: center;
	line-height: 1.2857;
	margin: 10px 0 35px;
}
.font01{
	font-size: 1.4rem;
}
.font02{
	font-size: 1.4rem;
	color: #ff0000;
	text-decoration: underline;
	margin: 5px 0;
}
.font03{
	margin-top: 10px;
	font-size: 1.3rem;
	line-height: 1.69;
}
.tel01 img{
    width: 69.33vw;
}
.tel01 {
    pointer-events: initial;
    padding: 5px 0;
    display: block;
}
.contTopBtn{
	text-align: center;
}
.contTopBtn a{
	color: #fff;
	font-weight: bold;
	background-color: #21a9dc;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 1.4rem;
	margin: 0 auto;
	max-width: 290px;
	padding: 3px 0;
  border-radius: 4px;
}

.contItem02{
	margin: 25px 0 0;
}
.contMiddle ul{
	display: none;
}
.conTab p.text01{
	font-size: 1.3rem;
	line-height: 1.69;
	text-align: left;
	margin-bottom: 15px;
	margin-top: 20px;
}

.contactArea {
  font-size: 1.4rem;
  line-height: 2.10;
}

.contactArea .contactForm {
  padding: 15px 0 20px;
}
.contactArea table,
.contactArea table tbody,
.contactArea table tr,
.contactArea table th,
.contactArea table td{
    width: 100% !important;
    display: block;
}
.contactArea table {
  width: 100%;
  border-left: 1px solid #575757;
  border-right: 1px solid #575757;
  border-bottom: 1px solid #575757;
  box-sizing: border-box;
}
.contactArea table td {
  padding: 10px;
  box-sizing: border-box;
}
.contactArea table th {
  box-sizing: border-box;
  font-size: 1.4rem;
  padding: 3px 8px 3px 13px;
  vertical-align: top;
  background-color: #f1f1f1;
  border-bottom: 1px solid #575757;
  border-top: 1px solid #575757;
}
.contactArea table th span {
  display: block;
}
.contactArea table th .must {
  padding: 0;
  float: right;
  width: 36px;
  height: 23px;
  background-color: #ec2028;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 23px;
  border-radius: 4px;
  margin-top: 3px;
}
.contactArea table th .none {
  background-color: #a0a0a0;
}
.contactArea table td .note {
  color: #575757;
  font-size: 1.25rem;
  margin-top: 10px;
}
.contactArea table td .notes{
  color: #000000;
  font-size: 1.25rem;
  margin: 5px 0;
}
.botBorder th{
	border-bottom: 0!important;
}
.contactArea input[type=text],
.contactArea input[type=tel],
.contactArea input[type=email] {
  border: 1px solid #575757;
  box-sizing: border-box;
  background: #fafafa;
  width: 100%;
  height: 30px;
  font-size: 1.4rem;
  padding: 0 13px;
}
.contactArea textarea {
	border: 1px solid #575757;
	box-sizing: border-box;
	background: #fff;
	width: 100%;
	height: 150px;
	font-size: 1.4rem;
	padding: 10px;
	resize: none;
	overflow: hidden;
}
.contactArea select{
  border: 1px solid #575757;
  box-sizing: border-box;
  background: #fafafa;
  color: #575757;
  width: 200px;
  height: 30px;
  font-size: 1.2rem;
  padding: 0 5px;
  position: relative;
  background: url('../img/common/select.png')no-repeat right 10px center;
  background-size: 9px 8px;
}

.contactArea  label {
  display: block;
  font-size: 1.3rem;
}
.contactArea  label input[type=checkbox],
.contactArea  label input[type=radio]{
  width: 16px;
  height: 16px;
  background: url('../img/common/bg_checkbox.png') center center no-repeat;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.contactArea  label input[type=checkbox]:checked,
.contactArea  label input[type=radio]:checked{
  background: url('../img/common/bg_checkbox_checked.png') center center no-repeat;
  background-size: 100%;
}

.contactAreaMar{
	margin-top: 25px;
}
.contactArea .agreeBtn label input[type=checkbox]{
	margin-right: 7px;
    width: 22px;
    height: 22px;
 	 background-size: 100%;
}
.contactArea .agreeBtn{
	background-color: #e6e6e6;
	padding:10px 15px;
	box-sizing: border-box;
	margin-top: 15px;
	font-size: 1.4rem;
}
.contactArea .agreeBtn a{
	color: #0083b9;
}

.contactArea .submitBtn {
  text-align: center;
  margin:40px auto 0;
}
.contactArea .submitBtn input[type=submit],
.contactArea .submitBtn input[type=button]:hover,
.contactArea .submitBtn input[type=reset]:hover {
  box-sizing: border-box;
  width: 158px;
  height: 40px;
  border: 1px solid #1d2089;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin: 10px auto 0; 
  background: #1d2089;
  cursor: pointer;
  transition: all 0.5s;
}
.contactArea .submitBtn input[type=submit]:hover,
.contactArea .submitBtn input[type=button],
.contactArea .submitBtn input[type=reset]{
  box-sizing: border-box;
  width: 158px;
  height: 40px;
  border: 1px solid #1d2089;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
	border-radius: 5px;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #1d2089;
  margin: 10px auto 0;
  background: #fff;
  cursor: pointer;
  transition: all 0.5s;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  background: red;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  background: red;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  background: red;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  background: red;
}






.contItem03{
	margin: 40px auto 60px;
	padding: 0 5px;
	box-sizing: border-box;
}
.contItem03 h2{
	text-align: center;
	border-bottom: 1px solid #acacac;
	padding-bottom: 7px;
	margin-bottom: 7px;
	font-size: 1.4rem;
}
.contItem03 p{
	font-size: 1.2rem;
	line-height: 1.5;
}

/*
*contact-----page.css
*
*/


/*
*company-----page.css
*
*/

.companyWrap{
	margin: 30px 0 15px;
}
.companyInner{
	padding: 0 5.33vw;
	box-sizing: border-box;
}
.companyWrap ul li{
	box-sizing: border-box;
	margin-bottom: 25px;
}
.companyWrap ul li a{
	border: 1px solid #8f8f8f;
	border-radius: 5px;
	padding: 0 40px 0 25px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 1.7rem;
	background: url('../img/company/arrow.png')no-repeat right 10px center;
	background-size: 7.66vw auto;
	height: 76px;
	display: flex;
    align-items: center;
}

/**company-----page.css**/



/**index-----page.css**/
.topicsWrap{
	margin: 25px 0 0;
}
.topicHdL{
	font-size: 2.5rem;
	color: #ff9400;
	font-weight: bold;
	text-align: center;
}
.topicsMenu{
	margin: 0 0 15px;
	text-align: center;
}
.topicsMenu p{
	display: inline-block;
	align-items: center;
	margin-top: 5px;
}
.topicsMenu p span{
	display: inline-block;
	font-size: 1rem;
	line-height: 3;
	font-weight: bold;
	border-radius: 40px;
	text-align: center;
	padding:0 13px;
	color: #fff;
	margin: 6px 5px;
}
.topicsMenu p span.gray{background-color: #ededed;color: #1d2089;}
.pink{background-color: #ff8db6;}
.orange{background-color: #f96b00;}
.sky{background-color: #2bb5f9;}
.green{background-color: #3ecc3e;}
.blue{background-color: #094daf;}
.purple{background-color: #855bbc;}

.topicsCont{
	position: relative;
}
.topicsCont:before{
	position: absolute;
	left: -5px;
	bottom: 0;
	background: url('../img/top/gradient.png')no-repeat left bottom;
	background-size: cover;
	width: calc(100% + 5px);
	height: 130px;
	z-index: 15;
	content: '';
}
.topicsCont ul{
	margin-left: -3px;
}
.topicsCont ul li{
	float: left;
	width: 50%;
	padding-left: 3px;
	box-sizing: border-box;
	margin-bottom: 3px;
}
.topicsCont ul li a{
	display: block;
}
.topicsItem{
	border: 2px solid #f96b00;
	box-sizing: border-box;
}
.topicsItempurple{
	border: 2px solid #855bbc;
}
.topicsItemblue{
	border: 2px solid #094daf;
}
.topicsItemsky{
	border: 2px solid #2bb5f9;
}
.topicImg{
	width: 100%;
	height: 100%;
	position: relative;
}
.topicImg:before{
	position: absolute;
	top: 0;
	left: 0;/*
	background: url('../img/top/topic01.png')no-repeat center center;*/
	width: 100%;/*
	height: 100%;*/
	content: '';
}
/*.topicImg02:before{
	background: url('../img/top/topic02.png')no-repeat center center;
}
.topicImg03:before{
	background: url('../img/top/topic03.png')no-repeat center center;
}
.topicImg04:before{
	background: url('../img/top/topic04.png')no-repeat center center;
}
.topicImg05:before{
	background: url('../img/top/topic05.png')no-repeat center center;
}
.topicImg06:before{
	background: url('../img/top/topic06.png')no-repeat center center;
}
.topicImg07:before{
	background: url('../img/top/topic07.png')no-repeat center center;
}
.topicImg08:before{
	background: url('../img/top/topic08.png')no-repeat center center;
}
.topicImg09:before{
	background: url('../img/top/topic09.png')no-repeat center center;
}
.topicImg10:before{
	background: url('../img/top/topic10.png')no-repeat center center;
}
.topicImg11:before{
	background: url('../img/top/topic11.png')no-repeat center center;
}
.topicImg12:before{
	background: url('../img/top/topic12.png')no-repeat center center;
}*/
.topicImg span{
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;/*
	background-color: #1d2089;*/
	font-size: 1rem;
	font-weight: bold;
	padding: 2px 12px;
	box-sizing: border-box;
}
.topicInfo{
	padding:10px 7px;
	box-sizing: border-box;
	color: #000;
	font-size: 1.4rem;
	font-weight: bold;
	height: 80px;
	line-height: 1.3;
}
.topicTime{
	color: #8f8f8f;
	font-size: 1rem;
	display: block;
	font-weight: normal;
}
.topicflex{
	display: flex;
	align-items: center;
}

.topicImg span.oranColor{
	background-color: #f96b00;
}
.topicImg span.blueColor{
	background-color: #094daf;
}
.topicImg span.purpleColor{
	background-color: #855bbc;
}
.topicImg04 span{
	padding: 0;
}
.topicImg04 span em{
	font-weight: bold;
	display: inline-block;
	padding: 3px 15px;
	background-color: #2bb5f9;
}
.topicImg04 span em.yellow{
	background-color: #ffff00;
	color: #000;
}
.aslider .slick-arrow {
  width: 18px;
  height: 100%;
  margin-top: 0;
  top: 0;
  z-index: 99999;
}
.aslider .slick-prev {
  background: url('../img/top/alick.png') center center no-repeat;
  background-size: 100%;
  left: 7px;
}
.aslider .slick-next {
  background: url('../img/top/blick.png') center center no-repeat;
  background-size: 100%;
  right: 7px;
}

.skyBtn{
	margin: 0 auto;
	text-align: center;
}
.skyBtn a{
	max-width: 223px;
	margin: 0 auto;
	width: 100%;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #21a9dc;
	border-radius: 3px;
	font-weight: bold;
	font-size: 1.3rem;
}
.tidingsWrap{
	margin: 100px 0 60px;
}
.tidingsBox ul{
	margin-top: 25px;
}
.tidingsBox ul li{
	float: left;
	width: 33.33%;
	padding: 10px;
	box-sizing: border-box;
}
.tidingsBox ul li a{
	display: block;
	box-shadow: 0 0 10px rgba(0, 0, 0,0.2);
}
.tidingsBox .slick-arrow {
  width: 30px;
  height: 30px;
  margin-top: -35px;
}
.tidingsBox .slick-prev {
  background: url('../img/top/arrow_left.png') center center no-repeat;
  background-size: 100%;
  left: 18.4vw;
}
.tidingsBox .slick-next {
  background: url('../img/top/arrow_right.png') center center no-repeat;
  background-size: 100%;
  right: 18.4vw;
}
.tidingsList{
	padding: 16px 13px 15px;
	box-sizing: border-box;
}
.tidingsTime{
	color: #8f8f8f;
	font-size: 0.9rem;
}
.tidingsInfo{
	font-size: 1.15rem;
	font-weight: bold;
	margin: 5px 0;
}
.tidingsLinks span:first-child{
	display: inline-block;
	margin-right: 10px;
}
.tidingsLinks{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

#bn_koukoku_wrap{
    width: 100%;
    margin: 0px auto 60px auto;
    overflow: hidden;
    text-align: center;
}

.tvWrap{
	background: url('../img/top/tvBg.jpg')repeat 0 0;
	padding: 25px 0 75px;
}
.tbSub{
	margin-bottom: 25px;
}
.tvSime{
	text-align: center;
	font-size: 1.4rem;
	margin:25px auto 0;
	font-weight: bold;
}
.tbSub p{
	padding-left: 20px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
.tbSub p img{
	width: 43.73vw;
}
.tbSub a{
	max-width: 312px;
	margin: 0 auto;
	width: 100%;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #1d2089;
	background: url('../img/top/tvlink.png')no-repeat left 30px center;
	background-color: #fff;
	background-size: 32px auto;
	border: 2px solid #1d2089;
	border-radius: 3px;
	font-weight: bold;
	font-size: 1.85rem;
}
.tvBox ul{
	margin-left: -7px;
	margin-bottom: 8px;
	padding:0 9.86vw;
	box-sizing: border-box;
}
.tvBox ul li{
	float: left;
	width: 50%;
	padding-left: 7px;
	box-sizing: border-box;
	margin-bottom: 6px;
}
.tvBox ul li a{
	display: block;
	border: 1px solid #c8c8c8;
	box-sizing: border-box;
}
.tvBox ul li a img{
	width: 100%;
}

.demandWrap{
	display: none;
}


.vrWrap{
	margin-bottom: 45px;
}
.vrSub{
	text-align: center;
	margin-bottom: 50px;
	padding: 10px 60px;
	box-sizing: border-box;
	border-bottom: 1px solid #e5e5e5;
	width: calc(100% + 6px);
	margin: 0 -3px ;
}
.vrMub{
	text-align: center;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 20px 60px;
	box-sizing: border-box;
	width: calc(100% + 6px);
	margin: 0 -3px;
}
.vrItem ul{}
.vrItem ul li{
	text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}

/**/

#instagram_sp{
    padding-bottom: 30px !important;
}

#sb_instagram.sbi_col_3.sbi_disable_mobile #sbi_images .sbi_item{
    width: 45%;
    float: left;
}



/**/

.vrList{
	padding: 0 25px;
	box-sizing: border-box;
}

.vrList h3{
	margin-top: 8px;
}





.vrList p{
	display: none;
}
.vrList p img{
	width: 100%;
}


.mationWrap{
	padding: 40px 0 0;
	background: url(../img/top/tvBg.jpg)repeat 0 0;
	position: relative;
}
.mationWrap:before{
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	margin: auto;
	background: url('../img/top/mationTitle.png')no-repeat 0 0;
	width: 23.066vw;
	height: 14.4vw;
	background-size: 100% auto;
	content: '';
}
.mationInner{
	max-width: 880px;
	padding: 0 10px;
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
}
.mationHdL{
	text-align: center;
}
.mationHdL span{
	font-size: 1.75rem;
	color: #1d2089;
	font-weight: bold;
	padding: 10px 0 10px 50px;
	background: url('../img/top/mationEat.png')no-repeat left center;
	background-size: 25px auto;
	box-sizing: border-box;
}
.mationHdL em{
	display: block;
	font-size: 1.15rem;
	font-weight: normal;
	color: #1d2089;
}
.mationList{
	margin-bottom: 25px;
	margin-top: 18px;
}
.mationList dl{
	width: 100%;
}
.mationList dl dt,.mationList dl dd{
	padding: 7px 30px;
	box-sizing: border-box;
}
.mationList dl dt{
	
}
.mationList dl dt span{
	color: #8f8f8f;
	font-size: 1.4rem;
	margin-right: 15px;
}
.mationList dl dt em{
	color: #1d2089;
	font-size: 1.1rem;
	border: 1px solid #1d2089;
	box-sizing: border-box;
	border-radius:5px;
	background-color: #fff;
	padding: 1px 4px;
	min-width: 110px;
	text-align: center;
	display: inline-block;
}
.mationList dl dd{
	box-sizing: border-box;
}
.mationList dl dd a{
	display: block;
	font-weight: bold;
	font-size: 1.3rem;
	overflow : hidden;/*
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;*/
}
.mationItem{
	margin-bottom: 50px;
}
.chopBox{
	margin: 0 auto;
	padding: 25px 25px 10px;
	box-sizing: border-box;
	background-color: #fff;
}
.chopBox ul{
	margin-left: -15px;
}
.chopBox ul li{
	float: left;
	width: 50%;
	padding-left: 15px;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.chopBox ul li a{
	display: block;
	box-sizing: border-box;
	border: 1px solid #bebebe;
}
.chopBox ul li a img{
	width: 100%;
}

/**index-----page.css**/

/**broadcast-----page.css**/
.broadcastWrap{
	margin: 5px 0 60px;
}
.broadBox{
	margin-bottom: 10px;
}
.broadBtn{
	border: 1px solid #1d1f88;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 1.4rem;
	font-weight: bold;
	padding:11px 25px;
	color: #1d1f88;
	background: url('../img/broadcast/arrow_bottom.png')no-repeat right 20px center;
	background-size: 18px auto;
	background-color: #eef8ff;
	cursor: pointer;
}
.broadBtn.active{
	background: url('../img/broadcast/arrow_top.png')no-repeat right 20px center;
	background-size: 18px auto;
	background-color: #eef8ff;
}
.broadCont{
	padding: 10px 0 20px;
	box-sizing: border-box;
	display: none;
}
.broList{
	font-size: 1.4rem;
	line-height: 1.6;
}
.broItem{
	font-size: 1.4rem;
	line-height: 1.6;
}
.broItem p + p{
	margin-top: 15px;
}
.broList h3{
	font-weight: bold;
	margin-top: 15px;
}
.broGray{
	text-align: center;
	background-color: #ededef;
	font-size: 1.4rem;
	color: #1d1f88;
	font-weight: bold;
	padding: 5px 5px;
	margin-bottom: 15px;
	box-sizing: border-box;
}
.broListEs{
	padding: 0 10px 20px;
	box-sizing: border-box;
	line-height: 1.6;
}
.broMar{
	padding: 0 0 10px;
}
.broPdf{}
.broPdf a{
	display: block;
	font-size: 1.4rem;
	color: #0083b9;
	margin-bottom: 15px;
}
.broPdf p{
	font-size: 1.4rem;
	line-height: 1.6;
	margin-bottom: 15px;
}
.broMess{
	padding:0 5px 10px 5px;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.6;
}

.broTable{
	width: 100%;
	overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.broTable table{
	border-left: 1px solid #9b9b9b;
	border-top: 1px solid #9b9b9b;
	border-right: 1px solid #9b9b9b;
    width: 500px;
}
.broTable table tr{}
.broTable table tr th,
.broTable table tr td{
	font-size: 1.4rem;
	padding: 8px 5px;
	box-sizing: border-box;
	border-bottom: 1px solid #9b9b9b;
}
.broTable table tr th{
	background-color: #e5e5e5;
	font-weight: bold;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}
.broTable table tr td{
	text-align: center;
}
.broTable table tr td:last-child{
	border-left: 1px solid #9b9b9b;
}
.width01{width: 45%;}
.width02{width: 25%;}
.width03{width: 30%;}
.othlinks{
	margin: 15px 0 0;
}
.othlinks p{
	font-size: 1.4rem;
	line-height: 1.6;
	color: #2400ff;
}
.othlinks a{
	font-size: 1.4rem;
	line-height: 1.6;
	color: #2400ff;
}

/**broadcast-----page.css**/

/**media-----page.css**/
.mediaWrap{
	margin: 20px 0;
}
.mediaSub{
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
	color: #1d2089;
}
.mediaSub:before{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: #1d2089;
	margin: auto;
	z-index: 2;
	content: '';
}
.madiaText{
	text-align: center;
	line-height: 1.285;
	font-size: 1.4rem;
	margin: 15px 0;
}
.mediaBox h3{
	text-align: center;
	background-color: #ededef;
	font-size: 1.4rem;
	color: #1d1f88;
	font-weight: bold;
	padding: 5px 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
}
.mediaInfo{
	text-align: left;
	line-height: 1.28;
	font-size: 1.4rem;
}
.mediaMaL{
	text-align: left;
	margin-bottom: 20px;
}
.mediaInfo span{
	color: #ff9400;
}
.mediaItem{
	margin: 45px 0 50px;
}
.mediaTel{
	text-align: center;
	margin: 10px 0;
}
.mediaTel a{
	display: inline-block;

}
.mediaBox h3.hd01 {
    padding: 1px 10px;
    margin-bottom: 0;
}
#media .contMiddle{
	margin-top: 25px;
}
#media .contactArea .contactForm {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}
#media .contactAreaMar {
    margin-top: 0;
}
#media .contactArea .agreeBtn {
    position: relative;
}
#media .contactArea .agreeBtn .must {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    width: 36px;
    height: 23px;
    background-color: #ec2028;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    line-height: 23px;
    border-radius: 4px;
}
#media .contItem03 {
    margin: 5px auto 30px;
    padding: 0;
}

.aboutInfo{
	text-align: left;
	line-height: 1.60;
	font-size: 1.4rem;
    padding-top: 30px;
}

.aboutInfo p{
	margin-bottom: 1em;
}

/**media-----page.css**/
/**support-----page.css**/
.supportWrap{
	margin: 25px 0 20px;
}
.supportList{
	margin:30px 0;
}
.supportBox dl{
	width: 100%;
	margin-bottom: 30px;
}
.supportBox dl dt,.supportBox dl dd{}
.supportBox dl dt{
	width: 100%;
}
.supportBox dl dt span{
	display: block;
	background-color: #ededef;
	color: #1d2089;
	font-weight: bold;
	font-size: 1.3rem;
	text-align: center;
	padding: 11px 10px;
	box-sizing: border-box;
}
.supportBox dl dd{
	margin: 15px 0 0;
}
.supportBox dl dd p{
	font-size: 1.4rem;
	line-height: 1.42;
}
.supportBox dl dd .suppItem p{
	margin-bottom: 20px;
}
.supportBox dl dd a{
	display: block;
	color: #fff;
	border-radius: 5px;
	padding: 12px 5px 12px 80px;
	box-sizing: border-box;
	background: url('../img/support/pdf.png')no-repeat left 30px center;
	background-size: 23px auto;
	background-color: #1d2089;
	margin-bottom: 6px;
	font-size: 1.15rem;
	
}

.supportBox dl dd .exel a {
	display: block;
	color: #fff;
	border-radius: 5px;
	padding: 12px 5px 12px 80px;
	box-sizing: border-box;
	background: url('../img/support/xlsx.png')no-repeat left 30px center;
	background-size: 23px auto;
	background-color: #1d2089;
	margin-bottom: 6px;
	font-size: 1.15rem;
}


.supportCont{
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.53;
	margin-top: 25px;
}
.supportCont a{
	display: block;
	pointer-events: initial;
}
#support .companyWrap ul li{
    margin-bottom: 10px;
}
/**support-----page.css**/

/**privacy-----page.css**/
.textind{
	margin: 10px 0;
	padding:0 10px;
	box-sizing: border-box;
}
.textA{
	margin: 10px 0;
}
.textA a{
	display: block;
	color: #0083b9;
}
.textFox{
	margin-top: 10px;
}
.textFox span{
	padding-left: 17px;
	box-sizing: border-box;
}
.textFox .textFirst{
	padding-left: 0;
}
.textFox p{
	padding-left: 17px;
	box-sizing: border-box;
}
.textFox em{
	display: block;
	padding-left: 12px;
	box-sizing: border-box;
}
.pal15{
	padding-top: 5px;
}
#privacy .broadCont {
    padding: 15px 0;
}
#privacy .contactArea .contactForm {
    padding: 0 15px;
	box-sizing: border-box;
}
#privacy .contactAreaMar {
    margin-top: 15px;
}
#privacy .contactArea .agreeBtn {
    position: relative;
}
#privacy .contactArea .agreeBtn .must {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    width: 36px;
    height: 23px;
    background-color: #ec2028;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    line-height: 23px;
    border-radius: 4px;
}
.privacyBox{
	margin:50px 0 0;
}
.privacyList{
	margin-top: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.64;
}
.privacyList p{
	font-weight: bold;
}
.privacyList span{
	display: inline-block;
	margin-right: 5px;
}
.privacyMess{
	margin-top: 20px;
	font-size: 1.4rem;
	line-height: 1.64;
	text-align: center;
}
#privacy .hd01{
	margin: 20px 0;
}
#privacy .companyWrap ul li {
    margin-bottom: 15px;
}
/**privacy-----page.css**/

/**sitemap-----page.css**/
.sitemapWrap{
	margin: 25px 0 30px;
}
.sitemapBox{
	padding: 0 10px;
	box-sizing: border-box;
}
.sitemapBox dl{}
.sitemapBox dl dt{
	margin-bottom: 12px;
	border-radius: 5px;
	border: 1px solid #21a9dc;
	font-weight: bold;
	font-size: 1.5rem;
	box-sizing: border-box;
}
.sitemapBox dl dt .sitemapItem{
	background: url('../img/sitemap/arrow.png')no-repeat left 14px center;
	background-size: 23px auto;
}
.sitemapBox dl dt a{
	width: 100%;
	height: 100%;
	display: block;
	box-sizing: border-box;
	padding: 17px 10px 17px 70px;
}
.sitemapBox dl dt ul{
	float: left;
	padding-left: 10px;
	box-sizing: border-box;
	width: 31%;
}
.sitemapBox dl dt ul:last-child{
	width: 38%;
}
.sitemapBox dl dt .siteUlBig ul,
.sitemapBox dl dt .siteUlSmall ul {
	width: 100%;
}
.sitemapBox dl dt .siteUl{
	margin-left: -10px;
	padding-left: 15px;
    box-sizing: border-box;
    padding-bottom: 10px;
    padding-top: 5px;
}
.sitemapBox dl dt ul li a{
	background-image: none;
	font-size: 1.25rem;
	font-weight: normal;
	padding: 0;
	line-height: 1.92;
}
.sitemapRelated{
	margin-top: 25px;
	padding-left: 5px;
	box-sizing: border-box;
}
.sitemapRelated h2{
	font-weight: bold;
	font-size: 1.3rem;
	color: #1d2087;
	margin-bottom: 7px;
}
.siteRelaBox{
	margin-left: -40px;
}
.siteRelaBox ul{
	float: left;
	box-sizing: border-box;
	padding-left: 40px;
	width: 50%;
}
.siteRelaBox ul li a{
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 2;
}
/**sitemap-----page.css**/

/**error-----page.css**/
.errorWrap{
	margin: 60px 0 45px;
}
.errorBox{
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.errorHdL{
	font-weight: bold;
	color: #21a9dc;
	font-size: 6.7rem;
	line-height: 1;
	padding-bottom: 40px;
	position: relative;
	margin-bottom: 12px;
	text-align: center;
}
.errorHdL:before{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: url('../img/404/eat.png')no-repeat 0 0;
	width: 27.73vw;
	height: 16.26vw;
	background-size: 100% auto;
	content: '';
}
.errorInfo{
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
}
.errorMess{
	text-align: center;
	font-size: 1.2rem;
	margin: 5px 0 13px;
}
.errorBtn{
	text-align: center;
}
.errorBtn a{
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	align-items: center;
	width: 100%;
	max-width: 250px;
	padding-left: 27px;
	box-sizing: border-box;
	height: 44px;
	border-radius: 5px;
	border: 1px solid #8f8f8f;
	font-size: 1.25rem;
	font-weight: bold;
	background: url('../img/404/arrow.png')no-repeat right 10px center;
	background-size: 20px auto;
}
/**error-----page.css**/

/**introduction-----page.css**/
.mediaBox .introText{
    margin-bottom:15px;
    margin-top: 15px;
}
.introMess{
	padding: 0 12px;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.64;
}
.introMessBox1{
	padding: 0 12px;
}
.introMessBox2{
	padding: 0 12px;
}
.introMess span{
	font-size: 1.4rem;
	display: block;
}
.introMess em{
	font-weight: bold;
	font-size: 1.4rem;
	color: #1d2089;
}
.introMess dl{
	display: table;
	width: 100%;
	margin-bottom: 10px;
}
.introMess dl dt,.introMess dl dd{
	display: table-cell;
	vertical-align: top;
}
.introMess dl dt{
	width: 30px;
}
.introMess dl dt img{
	width: 15px;
}
.introMess dl dd{
	padding-left: 5px;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.64;
}

.anchorBox{
	background-color: #eefcff;
	padding: 6px 5px;
	box-sizing: border-box;
	position: relative;
	margin: 5px -10px 35px;
	width: calc(100% + 20px);
}
.anchorBox ul{
	text-align: center;
}
.anchorBox ul li{
	display: inline-block;
}
.anchorBox ul li a{
	font-size: 1.1rem;
	display: inline-block;
	padding: 0 10px;
	box-sizing: border-box;
	position: relative;
}
.anchorBox ul li a.active{
	font-weight: bold;
}
.anchorBox ul li a:before{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #000;
	width: 1px;
	height: 10px;
	content: '';
}
.anchorBox ul li:last-child a:before{
	display: none;
}


.introTable{
	padding: 30px 0 0;
	margin: 0 auto;
	width: 100%;
}
.introSetion{
	border-top: 1px solid #8f8f8f;
	border-right: 1px solid #8f8f8f;
	border-left: 1px solid #8f8f8f;
	margin: 20px 0 0;
}
.blueC{
	color: #0083b9;
}
.introTable dl{
	display: table;
	width: 100%;
}
.introTable dl dt,.introTable dl dd{
	display: table-cell;
	vertical-align: top;
	font-size: 1.4rem;
	border-bottom: 1px solid #8f8f8f;
	box-sizing: border-box;
	padding-top: 7px;
	padding-bottom: 8px;
}
.introTable dl dt{
	width: 100px;
	background-color: #e5e5e5;
	font-weight: bold;
	padding-left: 10px;
	box-sizing: border-box;
}
.introTable dl dd{
	padding-left: 10px;
	box-sizing: border-box;
	padding-right: 10px;
}
.introTable dl dd a{
	display: block;
	pointer-events: initial;
}
.introTable dl dd a.mapLink{	
	pointer-events: initial;
	color: #0083b9;
}

.introAccess{
	padding: 30px 10px 0;
	box-sizing: border-box;
}
.introAccess dl{
	display: table;
	width: 100%;
	margin-bottom: 40px;
}
.introAccess dl dt{
	display: table-footer-group;
	font-size: 1.4rem;
}
.introAccess dl dd{
	display: table-header-group;
}
.introAccess dl dd .introMap{
	height: 155px;
	width: 100%;
	max-width: 240px;
	margin: 0 auto;
}
.introAccess dl dd .introMap iframe{
	width: 100%;
	height: 100%;
}
.introAccess dl dt h3{
	font-size: 1.4rem;
	font-weight: bold;
	color: #1d2089;
	margin-bottom: 10px;
	padding-top: 25px;
}
.phone01{
	display: block;
	font-size: 1.4rem;
}
.smalInfos{
	margin-top: 10px;
}
.smalInfo{
	font-size: 1.4rem;
}
.introAccess dl dd a{
	display: block;
}
.mat50{
	margin-top: 20px;
}


.checkpWrap{
	padding: 40px 0 0;
	margin: 0 auto 10px;
}
.checkpDl{
	margin-left: -13px;
	margin-top: 15px;
}
.checkItem{
	padding-left: 13px;
	width: 50%;
	float: left;
	box-sizing: border-box;
	border-right: 1px solid #8f8f8f;
	margin-bottom: 10px;
}
.checkpDl dl{
	display: table;
	width: 100%;
}
.checkpDl dl dt,.checkpDl dl dd{
	display: table-cell;
	font-size: 1.3rem;
	border-bottom: 1px solid #8f8f8f;
	padding-top: 6px;
	padding-bottom: 6px;
}
.checkpDl dl:first-child dt,
.checkpDl dl:first-child dd{
	border-top: 1px solid #8f8f8f;
}
.checkpDl dl dt{
	width: 99px;
	font-weight: bold;
	padding-left: 8px;
	box-sizing: border-box;
	border-left: 1px solid #8f8f8f;
	background-color: #e5e5e5;
}
.checkpDl dl dd{
	text-align: center;
}
.dn{
	visibility: hidden;
}
.checkpArea{
	font-size: 1.4rem;
}
.checkpArea h2{
	font-weight: bold;
}
.checkpArea h2 ~ h2{
	margin-top: 20px;
}
.checkpArea a{
	color: #0083b9;
	display: inline-block;
}
.roundWrap{
	padding: 30px 0 40px;
}
.roundItem{}
.roundItem ul{
	margin-left: -13px;
}
.roundItem ul li{
	float: left;
	width: 50%;
	padding-left: 13px;
	box-sizing: border-box;
	margin-top: 10px;
}
.roundList{
	border: 2px solid #e5e5e5;
	box-sizing: border-box;
	padding:10px 13px 10px;
}
.roundList h3{
	font-weight: bold;
	font-size: 1.3rem;
	margin-bottom: 10px;
}
.roundList p{
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.roundList p span{
	display: inline-block;
	width: 45px;
}
.roundList p a{
	display: inline-block;
	color: #0083b9;
}
/**introduction-----page.css**/

/**antisocial-----page.css**/
#antisocial .broadCont {
    padding: 15px 0;
}
.antisocialWrap .broItem p{
	padding-left: 10px;
	box-sizing: border-box;
	position: relative;
}
.antisocialWrap .broItem p:before{
	position: absolute;
	top: 10px;
	left: 0;
	width: 3px;
	height: 3px;
	background-color: #000;
	border-radius: 50%;
	content: '';
}
/**antisocial-----page.css**/

/**literacy-----page.css**/
.literacyWrap{
	margin: 30px 0;
}
.literacyBox ul{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px 0 10px;
}
.literacyBox ul li{
	padding:0 2px;
	box-sizing: border-box;
}
.literText{
	font-size: 1.4rem;
	line-height: 1.64;
	margin-bottom: 15px;
}
.literacyLeft{
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.64;
	margin-bottom: 15px;
}
.literacyRight{
	overflow: hidden;
	padding: 0 16vw;
	box-sizing: border-box;
}
.literacyRight ul{
	display: block;
	margin: 0 0 -5px 0;
}
.literacyRight ul li{
	float: left;
	width: 50%;
	padding: 0 0 0 5px;
	box-sizing: border-box;
	margin-bottom: 5px;
}
.literacyRight ul li img{
	width: 100%;
}

.literacyFox{
	padding: 40px 0 0;
}
.literacyBank{
	padding: 65px 0 45px;
	background: url('../img/literacy/cube.png')repeat 0 0;
}
.literInfo{
	margin: 15px 0;
	font-size: 1.4rem;
	line-height: 1.64;
}

.literacyBank dl{
	display: table;
	width: 100%;
	margin-bottom: 25px;
	padding: 0 15px;
	box-sizing: border-box;
}
.literacyBank dl dt,
.literacyBank dl dd{
	display: table-cell;
	vertical-align: top;
}
.literacyBank dl dt{
	width: 100px;
}
.literacyBank dl dt img{
	width: 100%;
}
.literacyBank dl dd{
	padding-left: 15px;
	box-sizing: border-box;
	font-size: 1.4rem;
}
.literacyBank dl dd .literMes01{
	margin-bottom: 10px;
}
.literacyEox{
	padding: 10px 0 0;
}
.literAreas{
	margin-top: 30px;
}
/**literacy-----page.css**/

/**recruit-----page.css**/
.recruitBg{
	background: url('../img/recruit/img01_sp.png')no-repeat 0 0;
	background-size: cover;
	min-height: 175px;
	position: relative;
}
.recruitBg p{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.recruitBg p img{
	width: 112px;
}
.recruitBg a{
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	border-radius: 40px;
	background-color: #21a9dc;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 222px;
	height: 43px;
	font-weight: bold;
	font-size: 1.4rem;
}

.recruitBg_a{
	background: url('../img/recruit/recruit_a01.png')no-repeat 0 0;
	background-size: cover;
	min-height: 256px;
	background-position: center center;
	position: relative;
}

.recruitBg_a .rec_txt01{
	font-size: 3.3rem;
	color: #fff;
	font-family: source-han-sans-japanese, sans-serif;
    font-weight: 900;
    font-style: normal;
	line-height: 140%;
	text-align: left;
	position: absolute;
	bottom: 12px;
	left: 26px;
}


.recruitMess{
	margin-top: 45px;
}
.recruitText{
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.5;
	margin: 10px 0 0;
	padding: 0 15px;
	box-sizing: border-box;
}
.sceneBox{
	margin-top: 35px;
	position: relative;
}
.sceneBox:before{
	position: absolute;
	bottom: 8px;
	right: 10px;
	background: url('../img/recruit/a.png')no-repeat 0 0;
	width: 50px;
	height: 60px;
	background-size: 100% auto;
	content: '';
	z-index: 5;
}
.sceneItem{
	background: url('../img/recruit/scenBg_sp.png')repeat-x 0 0;
	background-size: auto 100%;
	margin: 30px 0 40px;
	padding-bottom: 15px;
	position: relative;
}
.sceneItem:before{
	position: absolute;
	top: -30px;
	left: 4vw;
	background: url('../img/recruit/e.png')no-repeat 0 0;
	width: 65px;
	height:60px;
	background-size: 100% auto;
	content: '';
}
.sceneItem:after{
	position: absolute;
	top: -30px;
	right: 4vw;
	background: url('../img/recruit/t.png')no-repeat 0 0;
	width: 36px;
	height: 75px;
	background-size: 100% auto;
	content: '';
}
.sceneItem ul{
	padding: 40px 0 25px;
}
.sceneItem ul li{
	float: left;
	width: 25%;
	padding-left: 13px;
	box-sizing: border-box;
}
.sceneItem ul li a{
	display: block;
}
.sceneList{
	background-color: #fff;
}
.sceImg img{
	width: 100%;
	height: auto;
}
.sceneList .sceInfo{
	text-align: center;
	font-size: 1.25rem;
	padding: 16px 0;
	font-weight: bold;
}
.sceneBtn{
	text-align: center;
}
.sceneBtn a{
	color: #fff;
	border-radius: 40px;
	background-color: #f5ab18;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 222px;
	height: 43px;
	font-weight: bold;
	font-size: 1.4rem;
	margin: 0 auto;
}

.sceneItem .slick-arrow {
  width: 51px;
  height: 51px;
  margin-top: -20px;
}
.sceneItem .slick-prev {
  background: url(../img/recruit/left.png) center center no-repeat;
  background-size: 100%;
  left: 25px;
}
.sceneItem .slick-next {
  background: url(../img/recruit/right.png) center center no-repeat;
  background-size: 100%;
  right: 15px;
}

.tokoroBox ul{
	margin-top: 20px;
	padding-bottom: 30px;
	position: relative;
}
.tokoroBox ul:before{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: url('../img/recruit/eat.png')no-repeat 0 0;
	width:90px;
	height: 50px;
	content: '';
	background-size: 100% auto;
	z-index: 5;
}
.tokoroBox ul li{
	padding:0 5px;
	margin-bottom: 30px;
	box-sizing: border-box;
	text-align: center;
}
.tokoImg img{
	width: 100%;
}
.tokoImg{
	padding: 0 60px;
	box-sizing: border-box;
}
.toko01{
	color: #1d2089;
	font-size:1.5rem;
	font-weight: bold;
	margin: 10px 0;
}
.toko02{
	font-size: 1.4rem;
	line-height: 1.5;
}

.typeItem{
	margin: 15px 0 0;
}
.typeBox{
	padding: 25px 0 0;
}

.typeLeft{
	box-sizing: border-box;
	padding-top: 20px;
}
.typePic{
	text-align: center;
	margin: 0 -10px;
	width: calc(100% + 20px);
}
.typePic img{
	width: 100%;
}
.type01{
	font-weight: bold;
	font-size: 1.4rem;
	color: #1d2089;
	margin-bottom: 5px;
}
.type02{
	font-weight: bold;
	font-size: 2.9rem;
	color: #f5ab18;
	margin-bottom: 5px;
}
.type03{
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 5px;
}
.type04{
	border: 1px solid #21a9dc;
	font-weight: bold;
	color: #21a9dc;
	text-align: center;
	padding: 8px 5px;
	box-sizing: border-box;
	display: block;
	font-size: 1.4rem;
	margin-bottom: 10px;
	background-color: #fff;
}
.typeFont{
	box-sizing: border-box;
    padding-top: 20px;
    text-align: center;
}
.typeRight .typeFont {
    padding: 20px 0 0 0;
}

.sneakBox{
	padding: 35px 0 0;
}
.sneakImg{
	margin: 17px 0 0;
	position: relative;
}
.sneakImg:before{
	position: absolute;
	bottom: -5px;
	left: 25px;
	background: url('../img/recruit/eatIcon.png')no-repeat 0 0;
	background-size: 100% auto;
	content: '';
	z-index: 10;
	width: 85px;
	height: 53px;
}
.sneakText{
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.5;
	margin: 20px 0 40px;
}


.sneakFlex{
	display: table;
	margin: 0 -10px;
	width: calc(100% + 20px);
}
.sneakLeft{
	background-color: #d9f4fc;
	padding: 20px 15px 30px;
	box-sizing: border-box;
}
.sneakRight{
	display: table-header-group;
}
.sneakRight img{
	width: 100%;
}
.sneakLeft h3{
	font-weight: bold;
	font-size: 1.6rem;
}
.sneakLeft h3 span{
	display: inline-block;
	color: #21a9dc;
	font-size: 1.6rem;
	margin-right: 15px;
}
.sneakLeft p{
	line-height: 1.2;
	margin-top: 8px;
	font-size: 1.4rem;
}
.sneakUl ul{}
.sneakUl ul li{
	box-sizing: border-box;
	margin-top: 15px;
}

.colorBox{
	background-color: #d9f4fc;
	padding: 20px 20px 15px;
	box-sizing: border-box;
}
.colorBox h4{
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 8px;
}
.colorBox p{
	line-height: 1.2;
	font-size: 1.4rem;
}

.whiteBox h4{
	font-weight: bold;
	font-size: 1.6rem;
}
.whiteBox h4 span{
	display: inline-block;
	color: #21a9dc;
	font-size: 1.6rem;
	margin-right: 25px;
}
.whiteBox p{
	line-height: 1.6;
	margin-top: 8px;
	font-size: 1.2rem;
}
.whiteImg img{
	width: 100%;
}
.sneakBorder{
	margin-bottom: 15px;
	position: relative;
}
.sneakBorder:before{
	position: absolute;
	top: 68vw;
	right: 5px;
	background: url('../img/recruit/icon_a.png')no-repeat 0 0;
	background-size: 100% auto;
	width: 37px;
	height: 50px;
	content: '';
}
.sneakIcon{
	position: relative;
}
.sneakIcon:before{
	position: absolute;
	bottom: 32vw;
	left: 15px;
	background: url('../img/recruit/icon_e.png')no-repeat 0 0;
	width: 37px;
	height: 47px;
	background-size: 100% auto;
	content: '';
}
.sneakFlexs{
	position: relative;
	display: block;
}
.sneakFlexs:before{
	position: absolute;
	bottom: -5px;
	left: 20px;
	background: url('../img/recruit/icon_t.png')no-repeat 0 0;
	width: 41px;
	height: 53px;
	background-size: 100% auto;
	content: '';
}


.overBox{
	background-color: #d9f4fc;
	padding: 25px;
	box-sizing: border-box;
	margin: 15px -10px 0;
	width: calc(100% + 10px;)
}
.overItem{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.overLeft{
	width: 54vw;
	box-sizing: border-box;
	padding-right: 2vw;
}
.overRight{
	width: 44vw;
}
.overLeft p{
	font-size:1.4rem;
}
.overHd{
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.elementBox{
	margin: 50px 0 30px;
	text-align: center;
}
.mat20x{
	margin-top: 20px;
}

/**recruit-----page.css**/
/* !loading
---------------------------------------------------------- */
#loading {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 199999;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
#loading img {
  display: none;
}
#loading p + p {
	margin-top: 50px;
}
#mainVisual .mainBg{
	background-color: rgba(0,0,0,0);
}
#myVideo,#main_banner img{
    top: 0px;
    z-index: -1;
	width: 100%;
	height: auto;
}
#mainVisual .mainBg{
	height: 0 !important;
}
.home .mainBox{
	margin-top: 0;
}
.tvBox ul li a img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
}
.tvBox ul li a img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
}
.tvBox ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
    height: 100%;
	background: white;
}
.tvBox ul{
	display: flex;
	flex-wrap: wrap;
}
.b-ehimenews{
	border: 3px solid #094daf;
}
.b-present{
	border: 3px solid #2bb5f9;
}
.b-eiga{
	border: 3px solid #3ecc3e;
}
.b-program,.b-program_news{
	border: 3px solid #094daf;
}
.b-post{
	border: 3px solid #ff8db6;
}
.b-event{
	border: 3px solid #f96b00;
}
.b-announcer,.b-announcer_blog{
	border: 3px solid #855bbc;
}
.c-post{background-color: #ff8db6;}
.c-event{background-color: #f96b00;}
.c-present{background-color: #2bb5f9;}
.c-eiga{background-color: #3ecc3e;}
.c-ehimenews{background-color: #094daf;}
.c-announcer,.c-announcer_blog{background-color: #855bbc;}
.c-program,.c-program_news{background-color: #094daf;}
.demandPic{
	padding-top: 0;
}
.topicImg{
	display: flex;
	justify-content: center;
	align-items: center;
}
.topicImg img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.topicsCont ul li:nth-child(9),.topicsCont ul li:nth-child(10),.topicsCont ul li:nth-child(11),.topicsCont ul li:nth-child(12){
	display: none;
}#gNavi ul li a{
	min-height: 93px;
}
/*.home .mainBox{
	overflow-x: scroll;overflow-y: hidden;
	padding: 5px 0;
}
.home .mainBox::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}
.mainBox ul{
	width: fit-content;
	display: flex;
}
.mainBox ul li a img{
	border: 1px solid #808080;
}*/
.sceneItem ul li{
	width: 48%;
	margin-bottom: 15px;
}
.tidingsBox ul#enews li{
	width: 50%;
}
.tidingsBox ul#enews li:nth-child(3){
	display: none;
}
.vrList h3{
	margin-top: 15px;
	margin-bottom: 20px;
}

.toriatsukai dt{
	text-align: center;
	font-size: 120%;
	font-weight: bold;
}

.toriatsukai dd{
	text-align: right;
}
.neww{
	color: red;
	position: absolute;
	top: -2px;
	font-size: 14px;
}
.tidingsList{
	position: relative;
}
.tidingsBox ul li a{
	
	box-shadow: auto;
	box-shadow: unset;
		
}
.topicInfo{
	position: relative;
}
.home .tidingsItem{
	box-shadow: 0 0 15px rgba(0, 0, 0,0.2);
}
.sp_hide{
	display: none;
}
.b-campaign{
	border: 3px solid #ef4726;
}
.c-campaign{background-color: #ef4726;}
.l-box{
	display: none;
}
#colorbox .l-box{
	display: block;
}
.hijo_midashi{
	text-align: center;
	padding: 1.5rem 0;
	background-color: #c8000b;
	color: white;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 3rem;
	margin: 0 1.5rem;
}
.hijo_content{
	font-size: 2rem;
	margin:2.5rem auto 0;
	position: relative;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	margin-bottom: 2.5rem;
}
.hijo_content:after{
	content: '';
	width: 20rem;
	border-bottom: 1px solid #b5b5b5;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 6rem;
}

.hijo_text{
	font-size: 2rem;
	margin: auto;
	text-align:center;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.hijo_wrap {
	max-width: 1000px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
	width: 100%;
	padding-top: 2.5rem;
	margin-bottom: 4.5rem;
}
.no_jump:before{
	display: none;
}
.demandImg span.new{
	    top: 0;
    bottom: auto;
    color: red;
    background-color: rgba(255,255,255,0.8);
}
.topicInfo {
	display: block;
}
.topicInfo .neww{
	
	position: static;
}
.tidingsBox ul li a img{
	height:auto;
}
.msbox_in .m2{
	position: relative;
}

.msbox_in .ablink{
    position: absolute;
    left: 24vw;
    bottom: 30vw;
    width: 49vw;
    height: 10vw;
}

.msbox_in .ablink2{
    position: absolute;
    left: 10vw;
    bottom: 19vw;
    width: 49vw;
    height: 10vw;
}

.msbox_in .ablink3{
    position: absolute;
    left: 9vw;
    bottom: 32vw;
    width: 49vw;
    height: 10vw;
}

.msbox_in .ablink4{
    position: absolute;
    left: 9vw;
    bottom: 4vw;
    width: 49vw;
    height: 10vw;
}

.msbox_in .ablink202011{
    position: absolute;
    left: 10vw;
    bottom: 19vw;
    width: 49vw;
    height: 10vw;
}

.msbox_in .ablink202011{
    position: absolute;
    left: 24vw;
    bottom: 30vw;
    width: 49vw;
    height: 10vw;
}


.msbox_in .ablink2202011{
    position: absolute;
    left: 24vw;
    bottom: 19vw;
    width: 49vw;
    height: 10vw;
}






/**/


/*秋・採用*/

.rec_block01{
	background: #ffa700;
	overflow: hidden;
}

.rec_block01 .rec_inner{
	text-align: center;
	margin: 26px auto;
	overflow: hidden;
}

.rec_block01 .rec_inner img{
	width: 92%;
	height: auto;
}


/**/

.rec_block02{
	background: #000;
	position: relative;
}

.rec_block02::after{
	content: '';
	display: inline-block;
	background: url("../img/recruit/rec02_bottom.png")no-repeat;
	background-size: cover;
	background-position: right center;
	width: 100%;
	height: 30px;
	position: absolute;
	border: 0;
	left: 0;
}

.rec_block02 .rec_inner{
	margin: 0 8px;
	padding: 39px 0 26px;
	overflow: hidden;
}

.rec_block02 .rec_inner h2 img{
	width: 53%;
	height: auto;
}


.rec_block02 .rec_inner .rec_video{
	margin-top: 17px;
	position: relative;
	text-align: center;
}

.rec_block02 .rec_inner .rec_video video,.rec_block02 .rec_inner .rec_video iframe{
	width: 96%;
	height: 212px;
	outline:none;
	position: relative;
	z-index: 99;
}

.rec_block02 .rec_inner .rec_video .rec_name{
	position: absolute;
	bottom: -33px;
	left: 0px;
}

.rec_block02 .rec_inner .rec_video .rec_name img{
	width: 210px;
	height: auto;
}


.rec_block02 .rec_inner .rec_message{
	margin-top: 58px;
	margin-left: 13px;
	margin-right: 16px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 187%;
	color: #fff;
}


/**/

.rec_block03{
	margin-top: 0px;
	overflow: hidden;
}

.rec_block03 .rec_inner{
	margin: 35px auto 0px;
	overflow: hidden;
}

.rec_block03 .rec_inner h2{
	margin-bottom: 57px;
	margin-left: 17px;
}

.rec_block03 .rec_inner h2 img{
	width: 163px;
	height: auto;
}



.rec_block03 .rec_inner h2 span{
	float: right;
	position: relative;
	top: 22px;
	left: -40px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
}

.rec_block03 .rec_inner .one_person{
	margin-bottom: 42px;
	overflow: hidden;
}

.rec_block03 .rec_inner .one_person .left_col{
	margin: 15px 12px 0;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 187%;
	overflow: hidden;
}

.rec_block03 .rec_inner .one_person .right_col{
	width: 100%;
	height: 201px;
	position: relative;
}

.rec_block03 .rec_inner .one_person .right_col video,.rec_block03 .rec_inner .one_person .right_col iframe{
	width: 72%;
	height: 151px;
	position: relative;
	z-index: 99;
}

.rec_block03 .rec_inner .one_person .right_col .rec_name{
	position: absolute;
	bottom: -0px;
	right: 0;
	z-index: -1;
}

.rec_block03 .rec_inner .one_person .right_col .rec_name img{
	height: 59px;
}


/**/
/*
.block04_head{
	background: url("../img/recruit/03head.png")no-repeat;
	background-size: cover;
	background-position: left center;
	width: 100%;
	height: 22px;
	font-size: 0;
	line-height: 0;
}

.rec_block04{
	background: #333333;
	overflow: hidden;
}

.rec_block04 .rec_inner{
	max-width: 1050px;
	margin: 75px auto 150px;
	overflow: hidden;
	color: #fff;
}

.rec_block04 .rec_inner h2{
	margin-bottom: 80px;
}


.rec_block04 .rec_inner h2 span{
	float: right;
	margin-right: 100px;
	position: relative;
	top: 35px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
}

.rec_block04 .rec_inner .one_person{
	margin-bottom: 74px;
	overflow: hidden;
}

.rec_block04 .rec_inner .one_person .left_col{
	float: left;
	width: 470px;
	margin-left: 25px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 270%;
}

.rec_block04 .rec_inner .one_person .right_col{
	float: right;
	width: 520px;
	height: 362px;
	position: relative;
}

.rec_block04 .rec_inner .one_person .right_col video{
	position: absolute;
	left: 0;
	top: 0;
	width: 501px;
	height: 282px;
	z-index: 2;
}

.rec_block04 .rec_inner .one_person .right_col .rec_name{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.rec_block04 .rec_inner .one_person:nth-child(odd) .left_col{
	float: right;
	margin-right: 20px;
	
}

.rec_block04 .rec_inner .one_person:nth-child(odd) .right_col{
	float: left;
}
*/

.rec_block04{
	background: #333;
	color: #fff;
	overflow: hidden;
}

.rec_block04 .rec_inner{
	margin: 35px auto 0px;
	overflow: hidden;
}

.rec_block04 .rec_inner h2{
	margin-bottom: 90px;
	margin-left: 17px;
}

.rec_block04 .rec_inner h2 img{
	width: 103px;
	height: auto;
}



.rec_block04 .rec_inner h2 span{
	float: right;
	position: relative;
	top: 19px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 203%;
	margin-right: 60px;
}

.rec_block04 .rec_inner .one_person{
	margin-bottom: 42px;
	overflow: hidden;
}

.rec_block04 .rec_inner .one_person .left_col{
	margin: 15px 12px 0;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 187%;
	overflow: hidden;
}

.rec_block04 .rec_inner .one_person .right_col{
	width: 100%;
	height: 201px;
	position: relative;
}

.rec_block04 .rec_inner .one_person .right_col video,.rec_block04 .rec_inner .one_person .right_col iframe{
	width: 72%;
	height: 151px;
	position: relative;
	z-index: 99;
}

.rec_block04 .rec_inner .one_person .right_col .rec_name{
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 1;
}

.rec_block04 .rec_inner .one_person .right_col .rec_name img{
	height: 59px;
}

/**/

.rec_block05{
	background: #fff1d8;
	overflow: hidden;
}

.rec_block05 .rec_inner{
	margin: 50px 15px 22px 21px;
	overflow: hidden;
}

.rec_block05 .rec_inner h3{
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.86rem;
	font-weight: bold;
	margin-bottom: 30px;
}

.rec_block05 .rec_inner dl{
	display: table;
	margin-bottom: 13px;
}

.rec_block05 .rec_inner dl.ans{
	margin-bottom: 21px;
}


.rec_block05 .rec_inner dl dt{
	display: table-cell;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.5rem;
	font-weight: bold;
	padding-right: 9px;
}

.rec_block05 .rec_inner dl.ans dt{
	color: #00abe0;
}

.rec_block05 .rec_inner dl dd{
	display: table-cell;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.3rem;
	line-height: 141%;
}

.rec_block05 .rec_inner dl.que dd{
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.5rem;
	font-weight: bold;
}

.rec_block05 .rec_inner dl dd a{
	color: #8e8e8e;
}

/**/

.rec_block06{
	background: #000;
	overflow: hidden;
}

.rec_block06 .rec_inner{
	margin: 25px 0;
}

.rec_block06 .rec_inner .rec_btn01{
	width: 222px;
	margin: 0 auto;
}

.rec_block06 .rec_inner .rec_btn01 a{
	display: block;
	width: 222px;
	line-height: 42px;
	border-radius: 21px;
	background: #00abe0;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.45rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

/**/

.rec_block07{
	overflow: hidden;
}

.rec_block07 .rec_inner{
	margin: 26px auto 145px;
	overflow: hidden;
}

.rec_block07 .rec_inner .c_txt{
	text-align: center;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	font-weight: bold;
}

.rec_block07 .rec_inner .c_img{
	text-align: center;
	margin: 22px auto 18px;
}

.rec_block07 .rec_inner .c_img img{
	width: 178px;
}


.rec_block07 .rec_inner .c_txt02{
	text-align: center;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 2.91rem;
	letter-spacing: 0.34em;
	font-weight: bold;
}

.rec_block07 .rec_inner ul{
	margin: 12px auto 18px;
	text-align: center;
	line-height: 100%;
	font-size: 0;
}

.rec_block07 .rec_inner ul li{
	margin: 0 0 9px;
}

.rec_block07 .rec_inner ul li img{
	width: 222px;
	height: auto;
}


.rec_block07 .rec_inner .c_txt03{
	margin: 0 32px;
	font-size: 1.2rem;
	line-height: 144%;
	text-align: center;
}


.recruitBg a.nlink{
	width: 90%;
	max-width: 100vw;
}
.recruitBg a.nlink p{
	width: 100%;
	font-size: 1.5rem;
}
.recruitBg a.nlink span{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
}
.recruitBg a.nlinkblue{
	background-color: #006cd5;
}
.recruitBg a.nlinkred{
	background-color: #d00000;
	bottom: -80px;
}
.recruitBg a.nlinkgreen{
	background-color: #00ac00;
	bottom: -136px;
}
.recruitMess {
    margin-top: 168px;
}
.endwrap{
	color: red;
	margin: 20px auto;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}

/*-----------------------------------*/
/*上に戻るボタン*/

#page_top{
  width: 40px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #ff8c00;
  opacity: 1;
	line-height: 25px;
}
#page_top a{
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/**/

/*フッター内TOPページへのリンク*/

#footer_link_top{
	display:block;
	width: 33.066vw;
    height: 19.466vw;
	position: absolute;
	left: 50%;
	top: 0px;
	margin-left: -16.5vw;
	z-index: 100;
}

#footer_link_top span{
	display: none;
}