@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;
}
li.member-nav__item.member-login.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;
}

.keisai_link {
  height: 43px;
  line-height: 43px;
  margin-left: 10px;
}

/* ----------------------------------------------
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;
  position: relative;
  display: flex;
}
#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 div {
  display: inline-block;
  width: 40px;
}
#pcHeader #headLinkBox .btnBox1 p a span {
  background-color: red;
  border-radius: 25px;
  color: white;
  font-weight: 500;
  padding: 5px 7px;
}
#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 (min-width: 768px) {
  .site-pr {
    width: 380px;
  }

  .site-pr__catch {
    font-size: 1.3rem;
    color: #fa621d;
    padding-bottom: 11px;
  }

  .site-pr__logo {
    display: flex;
    padding-top: 20px;
  }

  .site-pr__logo--w-catch {
    display: flex;
    padding: 0;
  }

  .site-logo-img {
    vertical-align: sub;
  }

  .site-pr__logo__todoufuken {
    font-size: 2.3rem;
    font-weight: bold;
    color: #4d4d4d;
    line-height: 41px;
  }
  .site-pr__logo__todoufuken a {
    color: #4d4d4d;
  }

  .navs {
    width: 760px;
  }

  .site-nav {
    min-width: 0;
  }

  .site-nav__items {
    display: flex;
    justify-content: flex-end;
  }

  .site-nav__item {
    margin-left: 2rem;
    font-size: 1.2rem;
  }

  .user-nav {
    display: flex;
    align-items: center;
    height: 58px;
    justify-content: flex-end;
  }
  .util-nav {
    min-width: 0;
  }
  .member-nav {
    min-width: 0;
  }
  .util-nav__items,
  .member-nav__items {
    display: flex;
  }

  .util-nav__item {
    margin-right: 3.17rem;
    font-weight: 600;
    color: #f58b20;
  }

  .util-nav__item a {
    color: #f58b20;
  }
  .util-nav__item.scoutBtn {
    margin-left: 1.0rem;
  }
  .nav-item-img {
    margin-right: 0.6rem;
    vertical-align: text-bottom;
  }

  .with-badge {
    position: relative;
  }
  .with-badge::after {
    content: attr(data-badge);
    position: absolute;
    top: -0.5rem;
    right: -2.1rem;
    font-size: 1.3rem;
    font-weight: 600;
    width: 2.4rem;
    text-align: center;
    line-height: 2.4rem;
  }
  .with-badge.watched-count-badge::after {
    right: -2.5rem;;
  }
  .with-badge.scout-count-badge::after {
    font-size: 1.1rem;
    font-weight: 900;
    background: red;
    color: white;
    width: 2.1rem;
    height: 2.1rem;
    line-height: 2.1rem;
    border-radius: 50%;
  }

  .member-mypage {
    width: 118px;
    background-color: #2b438a;
    display: block;
    width: 108px;
    height: 40px;
    text-align: center;
    color: #fff;
    line-height: 40px;
    position: relative;
  }

  .member-mypage::after {
    content: url(https://www.ekaigotenshoku.com/img/icon-touroku-pc.png);
    width: 10px;
    height: 14px;
    position: absolute;
    top: 2px;
    right: 10px;
  }

  .member-login {
    width: 118px;
    background-color: #fa621d;
    display: block;
    width: 108px;
    height: 40px;
    margin-left: 20px;
    text-align: center;
    color: #fff;
    line-height: 40px;
    position: relative;
  }

  .member-login::after {
    content: url(https://www.ekaigotenshoku.com/img/icon-login-pc.png);
    width: 17px;
    height: 15px;
    position: absolute;
    top: 2px;
    right: 10px;
  }

  .member-nav__item a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
  }

  .member-mypage a {
    padding-right: 10px;
  }

  .member-login a {
    padding-right: 16px;
  }

  .member-nav__item a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  #pcHeader {
    display: none;
  }
  #spHeader {
    display: block;
    position: relative;
  }
  #spHeader .headerHead {
    height: 59px;
  }
  #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 .scoutUnreadCount {
    position: absolute;
    top: 3px;
    right: 45px;
    width: 2.2rem;
    height: 2.2rem;
    color: white;
    font-weight: 900;
    line-height: 2.2rem;
    text-align: center;
    background-color: red;
    border-radius: 50%;
  }
  #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;
  }
  .headerBottom__count {
    display: inline-block;
    width: 30px;
    text-align: left;
  }
}
/* ----------------------------------------------
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 .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;
  }
  #tourokuBnr > img {
    width: 100%;
    height: auto;
  }
  #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: 1rem;
    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: 0.7em;
    line-height: 50px;
  }

  #sp-app-banner__fixed img {
    height: 18px;
    margin-right: 0.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 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: 0.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;
}
