@charset "UTF-8";

/* BASE
------------------------------------*/

html {
  font-size: 62.5%;
  height: 100%;
}
body {
  background: url(../img/bg.png) repeat-y;
  background-size: 117px auto;
	background-position: center top;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

header,
footer {
  position: relative;
  min-width: 1300px;
}
.wrap {
  width: 1300px;
  padding: 0 50px;
  margin: 0 auto;
}
.wrapM {
  width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
}
.wrapS {
  width: 900px;
  padding: 0 50px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  header,
  footer {
    min-width: initial;
  }
  .wrap,
  .wrapM,
  .wrapS {
    width: 100% !important;
    padding: 0 16px !important;
  }
  .wrap .wrapM,
  .wrap .wrapS {
    padding-left: 0;
    padding-right: 0;
  }
} /* end @media */


/* COMMON
------------------------------------*/

.center{ margin: 0 auto; }

a {
  cursor: pointer;
}
p {
  line-height: 2.0em;
}

.fwb {
  font-weight: 700;
}
.red {
  color: #FF0000;
}
.serif {
  font-family: 'Noto Serif JP', serif;
}

.textRight {
  text-align: right;
}
.textCenter {
  text-align: center;
}
.textCenterSpLeft {
  text-align: center;
}

.textLink {
  color: #6B46B1;
  text-decoration: underline;
}
.textLink:hover {
  text-decoration: none;
}
.likeStyle {
  position: relative;
  font-size: 1.4rem;
  color: #6B46B1;
  text-decoration: underline;
  padding-right: 19px;
}
.likeStyle:hover {
  text-decoration: none;
}
.likeStyle::after {
  content: url(../img/arrow_right.svg);
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  line-height: 12px;
}
.linkBtn {
  display: inline-block;
  background-image: url(../img/button_from.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 420px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 54px;
}
.linkBlueBtn {
  position: relative;
  display: inline-block;
  background:#153767;
  border-radius: 27px;
  max-width: 272px;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 55px;
  letter-spacing: 0.05em;
}
.linkBlueBtn::after {
  content: url(../img/arrow_right@w.svg);
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 11px;
  line-height: 11px;
}
.linkBlueBtn:hover {
	opacity: 0.8;
}
.linkBlueBtn2 {
  position: relative;
  font-size: 15px;
  color: #15456A;
  padding: 2px 0 2px 24px;
  background: url("../img/arrow_right2.svg") no-repeat;
  background-position: top 1px left 0;
}
.linkBlueBtn2::before {
  position: absolute;
  display: block;
  content: "";
  width: 0px;
  height: 1px;
  background: #15456A;
  bottom: -4px;
  left: 0;
  transition: all 0.2s;
}
.linkBlueBtn2:hover::before {
  width: 100%;
}

.hoverStyle {
  transition: all 0.3s;
}
.hoverStyle:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.mt1em {
  margin-top: 1em;
}
.mtS {
  margin-top: 3.33em;
}
.mtM {
  margin-top: 4.66em;
}
.mtL {
  margin-top: 6.66em;
}
.sp { display: none; }

@media (max-width: 767px) {

  .textCenterSpLeft {
    text-align: left;
  }
  
  .mtS {
    margin-top: 2.33em;
  }
  .mtM {
    margin-top: 3.33em;
  }
  .mtL {
    margin-top: 4.66em;
  }

  .pc { display: none !important; }
  .sp { display: inherit; }
	
	.linkBtn {
		max-width: 80%;
	}

} /* end @media */



/* Header
------------------------------------*/

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 40px 48px 40px;
  z-index: 3;
}
.headerLogo {
  width: 203px;
}
.headerNavi1 {
  padding-top: 20px;
}
.headerNavi1 a {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 23px;
}
.headerNavi1 a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%) scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;   /*変形の時間*/
  background: #153767;
  width: 20px;
  height: 2px;
}
.headerNavi1 a:hover::after,
.job .headerNavi1__job::after,
.service .headerNavi1__service::after,
.support .headerNavi1__support::after,
.information .headerNavi1__information::after {
  transform: translateX(-50%) scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.headerNavi2 a {
  display: inline-block;
  text-align: center;
  font-size: 1.0rem;
  font-weight: 700;
}
.headerNavi2 a + a {
  margin-left: 20px;
}
.headerNavi2 a img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 4px auto;
}
.header__iconMember {
  position: relative;
}
.header__iconMember::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/regist_free.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 131px;
  height: 37px;
}

.headerMenuBtn{
  display: none;
}
.menuBox {
  display: none;
  position: fixed;
  top:0;
  left:0;
  background-color: #FFFFFF;
  width: 100%;
  height: 100vh;
  padding: 112px 0 0 0;
  z-index: 2;
}
.menuBox__wrap {
  height: calc(100vh - 112px);
  overflow-y: scroll;
  padding: 0 32px 32px 32px;
}

@media (max-width: 767px) {
  header {
    padding: 18px 16px 18px 16px;
  }
  .headerLogo {
    position: relative;
    max-width: 185px;
    width: 100%;
  }
  .headerNavi1,
  .header__iconFirst,
  .header__iconMember {
    display: none !important;
  }
  .headerNavi2 {
    width: 37px;
    margin-left: 20px;
  }
  .headerNavi2 a + a {
    margin-left: 0;
  }
  .open .headerNavi2 a {
    opacity: 0;
  }
  .headerNavi2 a img {
    width: 37px;
    height: 37px;
    margin: 0 auto 2px auto;
  }
  .headerMenuBtn{
    display: inline-block;
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-left: 0;
  }
  .headerMenuBtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 0;
    height: 1px;
    background-color: #000000;
  }
  .headerMenuBtn span:nth-of-type(1) {
    top: 13px; 
    width: 100%;
  }
  .headerMenuBtn span:nth-of-type(2) {
    top: 22px;
    width: 50%;
  }

  body.open {
    width: 100%;
    height: 100%;
    position: fixed;
  }
  .open .headerNavi1 {
    display: none;
  }
  .open .headerMenuBtn span:nth-of-type(1) {
    top: 15px;
    left: 0;
    transform: rotate(-45deg);
    width: 100%;
  }
  .open .headerMenuBtn span:nth-of-type(2) {
    top: 15px;
    left: 0;
    transform: rotate(45deg);
    width: 100%;
  }

  .menuBox__button {
    margin-bottom: 30px;
  }
  .menuBox__button .linkRegist,
  .menuBox__button .linkLogin {
    width: 100%;
    margin: 0 0 12px 0;
  }
  .menuBox__link01 {
    list-style: none;
    border-top: 1px solid #9DCFDD;
    padding: 0;
    margin: 0;
  }
  .menuBox__link01 li {
    border-bottom: 1px solid #9DCFDD;
  }
  .menuBox__link01 li a {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
    padding: 20px 12px;
  }
  .menuBox__link01 li a::after {
    content: url(../img/arrow_right@bl.svg);
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%)
  }
  .menuBox__mypage {
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    margin: 26px 0 14px 0;
  }
  .menuBox__link02 {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
  }
  .menuBox__link02 li {
    position: relative;
    line-height: 18px;
    padding-left: 28px;
  }
  .menuBox__link02 li + li {
    margin-top: 16px;
  } 
  .menuBox__link02 li a {
    font-size: 1.3rem;
  }
  .menuBox__link02 li a::before {
    content: url(../img/icon_link.svg);
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
  }
} /* end @media */


/* FOOTER
------------------------------------*/
footer {
  background-color: #153767;
  padding: 66px 0 0;
  margin-top: 100px;
}
.footerBox {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
.footerBox1 {
  flex: 1;
  color: #FFF;
}
.footerLogo {
  display: inline-block;
  width: 215px;
  margin-bottom: 40px;
}
.footerBox2 {
  display: flex;
  justify-content: space-between;
  width: 360px;
  margin-left: 60px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footerBox2 ul li {
  position: relative;
  line-height: 18px;
  padding-left: 28px;
  color: #FFF;
  font-size: 13px;
}
.footerBox2 ul li + li {
  margin-top: 16px;
}
.footerBox2 ul li a {
  font-size: 1.3rem;
}
.footerBox2 ul li a::before {
  content: url(../img/arrow_right@w2.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}
.footerBox2 ul li a:hover {
  text-decoration: underline;
}
.footerMark {
  display: flex;
  justify-content: flex-end;
}
.footerMark__p {
  width: 128px;
}
.footerMark__isms {
  width: 127px;
  margin-left: 16px;
}
.footer__logo {
  display: block;
  width: 310px;
  margin: 70px auto;
}
.footerCr {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  background: #DFE7F2;
  padding: 20px 30px 115px;
}
.footerCrL {
   padding-top: 10px;
 }
.footerTtl {
  font-size: 13px;
  margin-bottom: 20px;
}
.footerOcc li {
  display: inline-block;
  margin: 0 4px 20px;
}
.footerOcc {
  margin-bottom: 50px;
}
.footerOcc li a{
  background: #FFF;
  padding: 10px 16px;
  font-size: 12px;
  color: #153767;
  border-radius: 30px;
  transition: all 0.2s;
  border: 1px solid #FFF;
}
.footerOcc li a:hover {
  background: #153767;
  color: #FFF;
}

.footerArea dl {
}
.footerArea dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footerArea dt {
  width: 130px;
  font-size: 14px;
  font-weight: bold;
}
.footerArea dd {
  margin: 0;
  flex: 1;
  font-size: 13px;
}
.footerArea a{
  display: inline-block;
  text-decoration: underline;
  margin: 0 16px 10px 0;
}
.footerArea a:hover {
  text-decoration: none;
  color: #CCC;
}

#scroll-to-top-btn{
  position: fixed;
	z-index: 2;
  bottom: 20px;
  right: 10px;
  height: 50px;
  background-color:#9E9E9E;
  border: none;
  border-radius: 50%;
  width: 50px;
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  color: #FFF;
  opacity: 0;
  cursor: pointer;
  transition-duration: 0.5s;
}

.fixBanner_pc {
	position: fixed;
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.8);
	color: #FFF;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 10px 0;
}

@media (max-width: 767px) {

  .footerBox {
    display: block;
    padding: 0 20px;
  }
  .footerBox1 {
    width: 100%;
  }
.footerBox2 {
  max-width: 360px;
  margin: 0 auto;
  }
  .footerLogo {
    width: 254px;
    margin-bottom: 50px;
  }
  .footerBox1 p {
    font-size: 1.2rem;
  }
  .footerBox2 {
    width: 100%;
    margin-top: 70px;
  }
  .footerBox2 ul {
    width: 49%;
  }
  .footerMark {
    justify-content: center;
    margin-top: 35px;
  }
  .footerCr {
    display: block;
    text-align: center;
    padding: 10px 0 50px;
  }
  .footerCrL {
     padding-top: 30px;
   }
  #scroll-to-top-btn.fixBannerScroll {
    bottom: 100px;
  }

  
} /* end @media */


/* SECTION
------------------------------------*/
.secJobCategory {
  margin-top: 150px;
}
.secJobCategory__box {
  display: flex;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 70px 70px 60px 70px;
}
.secJobCategory__box01 {
  width: 160px;
}
.secJobCategory__box02 {
  width: 780px;
}
.secJobCategory__box + .secJobCategory__box {
  margin-top: 50px;
}
.secJobCategory__text {
  font-size: 3.0rem;
}
.secJobCategory__box h2 {
  font-size: 1.5rem;
  margin-top: 1px;
}
.secJobCategory__box02 ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.secJobCategory__box02 ul li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.secJobCategory__box02 ul li a {
  display: inline-block;
  background-color: #EEEEEE;
  border: 1px solid #EEEEEE;;
  border-radius: 17px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3em;
  padding: 7px 16px;
  transition: all 0.3s;
}
.secJobCategory__box02 ul li a:hover,
.secJobCategory__box02 dl dd a:hover {
  border: 1px solid #999999;
  background-color: #FFFFFF;
}
.secJobCategory__box02 dl {
  display: flex;
}
.secJobCategory__box02 dl + dl {
  margin-top: 6px;
}
.secJobCategory__box02 dl dt {
  width: 164px;
  font-size: 1.4rem;
  font-weight: 700;
}
.secJobCategory__box02 dl dd {
  max-width: 585px
}
.secJobCategory__box02 dl dd a {
  display: inline-block;
  background-color: #EEEEEE;
  border: 1px solid #EEEEEE;;
  border-radius: 17px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  padding: 0 16px;
  margin: 0 8px 10px 0;
  transition: all 0.3s;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb ol li {
  font-size: 1.2rem;
  color: #333333;
}
.breadcrumb ol li:not(:last-child) {
  margin-right: 16px;
}
.breadcrumb ol li:not(:last-child)::after {
  content: url(../img/breadcrumb.svg);
  display: inline-block;
  width: 4px;
  height: 10px;
  margin-left: 18px;
}
.breadcrumb ol li a {
  color: #153767;
  text-decoration: underline;
}
.breadcrumb ol li a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .secJobCategory {
    margin-top: 100px;
  }
  .secJobCategory__box {
    display: block;
    padding: 24px 16px 30px 16px;
  }
  .secJobCategory__box01 {
    width: 100%;
  }
  .secJobCategory__box02 {
    width: 100%;
    margin-top: 30px;
  }
  .secJobCategory__box h2 {
    margin-top: -10px;
  }
  .secJobCategory__box02 dl {
    display: block;
  }
  .secJobCategory__box02 dl + dl {
    margin-top: 20px;
  }
  .secJobCategory__box02 dl dt {
    width: 100%;
    margin-bottom: 14px;
  }
  .secJobCategory__box02 dl dd {
    max-width: 100%
  }
  
  .breadcrumb {
    margin-bottom: 25px;
  }

} /* end @media */



/* Information
------------------------------------*/
.information .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.information aside {
  width: 370px;
}
.information main {
  width: 780px;
}

.aside__bannar {
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}
.aside__bannar img{
  border-radius: 20px;
}

.aside__bannar:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.aside__category {
  margin-top: 45px;
}
.aside__category h2 {
  position: relative;
  border-bottom: 1px solid #9DCFDD;
  font-size: 2.0rem;
  font-weight: 700;
  padding-bottom: 10px;
}
.aside__category h2::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #153767;
  width: 147px;
  height: 1px;
}
.aside__category ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}
.aside__category ul li + li {
  margin-top: 10px;
}
.aside__category ul li a {
  font-size: 1.5rem;
  font-weight: 700;
}
.aside__category ul li a:hover {
  text-decoration: underline;
}

.aside__box {
  margin-top: 45px;
}
.aside__title {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.aside__title::before,
.aside__title::after {
  content: "";
  background-color: #153767; /* 横線の色 */
  height: 1px; /* 横線の高さ */
  flex-grow: 1; /* 横幅いっぱい */
}
.aside__title::before {
  margin-right: 22px; /* 文字との余白 */
}
.aside__title::after {
  margin-left: 22px; /* 文字との余白 */
}
.aside__list01 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aside__list01 li + li {
  margin-top: 16px;
}
.aside__list01 a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.aside__list01 img {
  width: 120px;
  height: 80px;
  object-fit: cover;
}
.aside__list01 h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  width: 230px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5em;
} 
.aside__list01 a:hover h3 {
  text-decoration: underline;
}
.aside__list02 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aside__list02 li + li {
  margin-top: 14px;
}
.aside__list02 a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.aside__rank {
  display: inline-block;
  width: 35px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1em;
  color: #464646;
}
.rank_1 {
  color: #ABB443;
}
.rank_2 {
  color: #A2A2A2;
}
.rank_3 {
  color: #AA7C32;
}
.aside__list02 h3 {
  width: 340px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5em;
}
.aside__list02 a:hover h3 {
  text-decoration: underline;
}

.categoryTitle {
  position: relative;
  border-bottom: 1px solid #9DCFDD;
  font-size: 1.8rem;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.categoryTitle strong {
  font-size: 3.0rem;
  font-weight: 700;
  margin-right: 23px;
}
.categoryTitle::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #153767;
  width: 147px;
  height: 1px;
}

.postList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.postList li {
  display: flex;
  justify-content: space-between;
}
.postList > li + li {
  margin-top: 35px;
}
.postList__image {
  display: block;
  width: 240px;
  height: 160px;
  overflow: hidden;
}
.postList__image img {
  transition: all .3s;
}
.postList__image:hover img {
  transform: scale(1.1);
}
.postList__text {
  width: 510px;
}
.postList__title h2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.5em;
}
.postList__title:hover h2 {
  text-decoration: underline;
}
.postAttribute {
  display: flex;
  justify-content: flex-start;
  margin: 7px 0 12px 0;
}
.postAttribute time {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 24px;
  padding-left: 22px;
}
.postAttribute time::before {
  content: url(../img/information/icon_date.svg);
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  line-height: 14px;
}
.postAttribute__category {
  list-style: none;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  padding-left: 22px;
  margin: 0;
  margin-left: 24px;
}
.postAttribute__category::before {
  content: url(../img/information/icon_category.svg);
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  line-height: 14px;
}
.postAttribute__category a {
  display: inline-block;
  background-color: #153767;
  border: 1px solid #153767;
  border-radius: 2px;
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 13px;
  padding: 0 8px;
  margin: 4px 8px 4px 0;
  transition: all .3s;
}
.postAttribute__category a:hover {
  background-color: #FFFFFF;
  color: #153767;
} 
.postList__text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1.4rem;
  line-height: 1.7em;
}
.postList--first > li:first-child {
  border-bottom: 1px solid #9DCFDD;
  padding-bottom: 40px;
}
.postList--first > li:first-child .postList__image {
  width: 378px;
  height: 250px;
}
.postList--first > li:first-child .postList__text {
  width: 376px;
}
.postList--first > li:first-child .postList__text p {
  overflow: auto;
  display: block;
}

@media (max-width: 767px) {
  .information .container {
    display: block;
  }
  .information aside {
    width: 100%;
    margin-top: 70px;
  }
  .information main {
    width: 100%;
  }

  .aside__list01 h3 {
    -webkit-line-clamp: 4;
    width: calc(100% - 120px - 20px);
  } 

  .categoryTitle {
    font-size: 1.4rem;
    margin-top: -10px;
  }
  .categoryTitle strong {
    font-size: 2.0rem;
    margin-right: 20px;
  }

  .postList > li + li {
    margin-top: 30px;
  }
  .postList--first > li:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .postList__image {
    width: 120px !important;
    height: 80px !important;
  }
  .postList__text {
    width: calc(100% - 120px - 16px) !important;
  }
  .postList__title h2 {
    -webkit-line-clamp: 3;
    font-size: 1.6rem;
  }
  .postList .postAttribute {
    display: block;
    margin: 3px 0 0 0;
  }
  .postList .postAttribute__category {
    margin: 0;
  }
  .postList__text p {
    display: none !important;
  }
          
} /* end @media */


/* Information single
------------------------------------*/
.information.single .breadcrumb {
  margin-bottom: 30px;
}
.articleHeader {
  border-bottom: 1px solid #9DCFDD;
  padding-bottom: 8px;
  margin-bottom: 30px;
}
.articleHeader h1 {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 45px;
}
.articleBody {
  padding-bottom: 100px;
}

.articleBody h1,
.articleBody h2 {
  background-color: #153767;
  border-radius: 4px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5em;
  color: #FFFFFF;
  padding: 16px 12px;
  margin: 0 0 30px 0;
}
.articleBody h1:not(:first-child),
.articleBody h2:not(:first-child) {
  margin-top: 75px;
}
.articleBody h3 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 3px 0 3px 19px;
  margin: 45px 0 20px 0;
}
.articleBody h3::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #153767;
  border-radius: 4px;
  width: 5px;
  height: 100%;
} 
.articleBody h4,
.articleBody h5,
.articleBody h6 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7em;
  margin: 45px 0 15px 0;
}
.articleBody strong {
  font-weight: 700;
}
.articleBody em {
  font-style: italic;
}

.articleBody p {
  font-size: 1.7rem;
}
.articleBody s {
  text-decoration: line-through;
}
.articleBody sup {
  vertical-align: super;
}
.articleBody sub {
  vertical-align: sub;
}
.articleBody ul,
.articleBody ol {
  list-style: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
.articleBody ul ul {
  list-style-type: circle;
}
.articleBody ul ul ul {
  list-style-type: square;
}
.articleBody ol {
  list-style: decimal;
}
.articleBody ol ul {
  list-style-type: circle;
}
.articleBody ol ul ul {
  list-style-type: square;
}
.articleBody strong {
  font-weight: 700;
}
.articleBody em {
  font-style: italic;
}
.articleBody a {
  color: #6B46B1;
  text-decoration: underline;
}
.articleBody a:hover {
  text-decoration: none;
}

.wp-block-image {
  margin: 0 0 30px 0;
}

.articleSNS {
  border-top: 1px solid #9DCFDD;
  border-bottom: 1px solid #9DCFDD;
  padding: 15px 0 20px 0;
}
.articleSNS h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.articleSNS ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.articleSNS ul li {
  width: 25%;
}
.articleSNS ul li a {
  display: inline-block;
  background-color: #D5D5D5;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 43px;
  transition: all 0.3s;
}
.articleSNS ul li.articleSNS__facebook a {
  background-color: #1877F2;
  color: #FFFFFF;
}
.articleSNS ul li.articleSNS__twitter a {
  background-color: #1D9BF0;
  color: #FFFFFF;
}
.articleSNS ul li.articleSNS__line a {
  background-color: #009846;
  color: #FFFFFF;
}
.articleSNS ul li a:hover {
  opacity: 0.6;
}
.articleRelated {
  margin-top: 90px;
  margin-bottom: -35px;
}
.articleRelated h2 {
  position: relative;
  border-bottom: 1px solid #9DCFDD;
  font-size: 2.0rem;
  font-weight: 700;
  padding-bottom: 13px;
  margin-bottom: 35px;
}
.articleRelated h2::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #153767;
  width: 147px;
  height: 1px;
}
.yarpp-related {
  margin: 0 !important;
}
.relatedList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.relatedList::after{
  content: "";
  display: block;
  width: 248px;
}
.relatedList li {
  width: 248px;
  margin-bottom: 40px;
}
.relatedList li img {
  width: 248px;
  height: 166px;
  object-fit: cover;
}
.relatedList li h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 20px 0 0 0 !important;
}
.relatedList li a:hover h3 {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .articleHeader h1 {
    font-size: 2.0rem;
    margin-bottom: 12px;
  }

  .articleBody h1,
  .articleBody h2 {
    font-size: 1.8rem;
    padding: 12px;
  }
  .articleBody h3 {
    font-size: 1.8rem;
  }

  .articleSNS ul li {
    width: 50%;
  }

  .relatedList::after{
    content: none;
  }
  .relatedList li {
    width: calc(50% - 6px);
    margin-bottom: 25px;
  }
  .relatedList li img {
    width: 100%;
    height: 117px;
    object-fit: cover;
  }
  .relatedList li h3 {
    -webkit-line-clamp: 3;
    font-size: 1.2rem !important;
    margin: 10px 0 0 0 !important;
  }
    
} /* end @media */


/* PAGE
------------------------------------*/
.pageTitle {
  margin-bottom: 65px;
}
.pageTitle h1 {
  font-size: 1.8rem;
  font-weight: 700;
}
.pageTitle h1 span {
  display: block;
  font-size: 4.0rem;
  letter-spacing: 0.1em;
}
.pageSubTitle {
  border-top: 1px solid #9DCFDD;
  border-bottom: 1px solid #9DCFDD;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  padding: 25px 0;
  margin-bottom: 50px;
}

.pageTable {
  border-top: 1px solid #9DCFDD;
  width: 100%;
  border-collapse:collapse;
  margin: 45px 0;
}
.pageTable tr {
  border-bottom: 1px solid #9DCFDD;
}
.pageTable th {
  width: 190px;
  max-width: 190px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 16px 10px;
}
.pageTable td {
  line-height: 1.7em;
  word-break: break-all;
  padding: 16px 0;  
}

@media (max-width: 767px) {
  .pageTitle {
    margin-bottom: 45px;
  }
  .pageTitle h1 {
    font-size: 1.6rem;
  }
  .pageTitle h1 span {
    font-size: 2.4rem;
  }

  .pageTable th {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 16px 10px 10px 10px;
  }
  .pageTable td {
    display: block;
    width: 100%;;
    padding: 0 10px 16px 10px;  
  }
    
} /* end @media */


/* Form
------------------------------------*/
.commonForm .commonForm__item + .commonForm__item {
  margin-top: 25px;
}
.commonForm .commonForm__item dt,
.commonForm .commonForm__item dt {
  font-weight: 700;
  margin-bottom: 8px;
}
.commonForm__require::after {
  content: '必須';
  display: inline-block;
  background-color: #FF4200;
  border-radius: 2px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 18px;
  margin-left: 26px;
  padding: 0 4px;
}

.commonForm input[type=text],
.commonForm input[type=email],
.commonForm input[type=tel],
.commonForm input[type=password],
.commonForm textarea {
  background-color: #FFFFFF;
  border: 1px solid #9DCFDD;
  border-radius: 2px;
  width: 100%;
  padding: 12px;
}
.commonForm input[type="radio"]{
  display: none;
}
.commonForm input[type="radio"] + span{
  position:relative;
  display: inline-block;
  font-size: 1.4rem;
  padding-left: 30px;
}
.commonForm input[type="radio"] + span::before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border: 1px solid #9DCFDD;
  border-radius: 50%;
}
.commonForm input[type="radio"]:checked + span::after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #9DCFDD;
  border-radius: 50%;
}
.commonForm input[type="checkbox"] {
  position: relative;
  border: none;
  margin: 0 15px 0 0;
  cursor: pointer;
}
.commonForm input[type="checkbox"]:before {
  position: absolute;
  z-index: 400;
  top: -14px;
  left: 0.1875rem;
  width: 20px;
  height: 10px;
  content: '';
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
          transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
          transform: rotate(-45deg) scale(0, 0);
  border: 4px solid #9DCFDD;
  border-top-style: none;
  border-right-style: none;
}
.commonForm input[type="checkbox"]:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
          transform: rotate(-45deg) scale(1, 1);
}
.commonForm input[type="checkbox"]:after {
  position: absolute;
  top: -15px;
  left: 0;
  width: 18px;
  height: 18px;
  content: '';
  cursor: pointer;
  border: 1px solid #9DCFDD;
  border-radius: 2px;
  background: #FFFFFF;
}

.commonForm .commonForm__footer {
  text-align: center;
  margin-top: 70px;
}

.commonForm__button,
input[type="submit"].swpm-submit {
  display: inline-block;
  background-image: url(../img/button_from.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  border-radius: 27px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 54px;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
}
.commonForm__button:hover,
input[type="submit"].swpm-submit:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.commonForm__errorMessage {
  margin-bottom: 20px;
}

@media (max-width: 767px) {

  .commonForm input {
    font-size: 1.6rem;
  }
  .commonForm__require::after {
    content: none;
  }
} /* end @media */


/* Contact
------------------------------------*/
.contactForm.commonForm {
  border-top: 1px solid #9DCFDD;
  padding-top: 15px;
  margin-top: 25px;
}
.commonForm__group {
  border-bottom: 1px solid #9DCFDD;
  padding-bottom: 15px;
}
.mw_wp_form_confirm .commonForm__group {
  border-bottom: none;
  padding-bottom: 0;
}
.contactForm__agree {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  text-align: center;
  padding: 25px;
  margin-top: 50px;
}
.contactForm__agreeText2 a {
  text-decoration: underline;
}
.contactForm__agreeText2 a:hover {
  text-decoration: none;
}
.mw_wp_form_confirm .contactForm__agree {
  display: none;
}
.contactForm__agreeText1 {
  font-weight: 700;
  margin-bottom: 10px;
}
.contactForm__agree .mwform-checkbox-field-text {
  display: none;
}
.contactForm__agree .mwform-checkbox-field {
  margin-right: 12px;
}
.contactForm .commonForm__footer {
  text-align: center;
  margin-top: 70px;
}
.contactForm__return {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: underline;
  color: #6B46B1;
  padding-left: 19px;
  cursor: pointer;
}
.contactForm__return:hover {
  text-decoration: none;
}
.contactForm__return::before {
  content: url(../img/arrow_left.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  line-height: 12px;
}
.contactForm .error {
  color: #FF0000 !important;
  margin-top: 5px;
}

@media (max-width: 767px) {

  .contactForm__agree {
    text-align: left;
    padding: 25px 16px;
  }
  .contactForm__agreeText2 {
    padding-left: 2em;
    text-indent: -2em;
  }
} /* end @media */


/* Privacy
------------------------------------*/
.secPageTerm ol {
  list-style: decimal;
}
.secPageTerm ol ol {
  list-style: upper-roman;
  margin-top: 20px;
}
.secPageTerm ol li {
  line-height: 2.0em;
  margin-left: 1.5em;
  padding-left: 0.5em;
}
.secPageTerm ol li + li {
  margin-top: 25px;
}
.pageSignature {
  text-align: right;
}
.secPageTerm h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.secPageTerm a {
  color: #5BA0A0;
  text-decoration: underline;
}
.secPageTerm a:hover {
  text-decoration: none;
}
.secPageTerm__title01 {
  position: relative;
  font-size: 2.0rem;
  padding: 3px 0 3px 22px;
  margin-bottom: 60px;
}
.secPageTerm__title01::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(150deg, #55C7FB, #BD60E6);
  border-radius: 4px;
  width: 6px;
  height: 100%;
}
.secPageTerm__title01::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #9DCFDD;
  width: 100%;
  height: 1px;
}
.secPageTerm h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}
.secPageTerm h3 label {
  margin-right: 18px;
}
.secPageTerm__table01 {
  border-top: 1px solid #9DCFDD;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.secPageTerm__table01 tr {
  border-bottom: 1px solid #9DCFDD;
}
.secPageTerm__table01 th {
  width: 300px;
  max-width: 300px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 15px 0;
}
.secPageTerm__table01 td {
  font-size: 1.5rem;
  line-height: 1.5em;
  padding: 15px 0;  
}
.secPageTerm__text01 {
  border-bottom: 1px solid #9DCFDD;
  padding-bottom: 15px;
}
.secPageTerm h4 {
  border-bottom: 1px solid #9DCFDD;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 15px;
  margin-top: 25px;
  margin-bottom: 20px;
}
.secPageTerm__indent {
  padding-left: 1em;
  text-indent: -1em; 
}
.secPageTerm h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .secPageTerm__table01 th {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 15px 0 10px 0;
  }
  .secPageTerm__table01 td {
    display: block;
    width: 100%;
    padding: 0 0 15px 0;  
  }
  
} /* end @media */


/* FAQ
------------------------------------*/
.secPageFAQ {
}
.secPageFAQ__qa {
  border-top: 1px solid #153767;
}
.secPageFAQ__qa dl {
  width: 100%;
  border-bottom: 1px solid #153767;
}
.secPageFAQ__qa dt {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5em;
  padding: 30px 40px 30px 45px;
  cursor: pointer;
}
.secPageFAQ__qa dt::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-60%);
  font-size: 3.5rem;
  font-weight: 700;
  color: #153767;
}
.faqOpne,
.faqOpne span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.faqOpne {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 44px;
  height: 44px;
}
.faqOpne span {
  position: absolute;
  left: 13.5px;
  width: 40%;
  height: 2px;
  background-color: #153767;
}
.faqOpne span:nth-of-type(1) {
  top: 21.5px;
  transform: rotate(0deg);
}
.faqOpne span:nth-of-type(2) {
  top: 21.5px;
  transform: rotate(90deg);
}
.is-open .faqOpne span:nth-of-type(1) {

}
.is-open .faqOpne span:nth-of-type(2) {
  top: 21.5px;
  transform: rotate(180deg);
}
.secPageFAQ__qa dd {
  display: none;
  background-color: #FFFFFF;
  border-radius: 4px;
  font-size: 1.4rem;
  line-height: 2.0em;
  padding: 20px;
  margin-bottom: 30px;
}
.secPageFAQ__qa dd a {
  color: #3588C7;
}
.secPageFAQ__qa dd a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .secPageFAQ__qa dt {
    padding: 20px 40px 20px 45px;
  }
  .secPageFAQ__qa dt::before {
    top: 20px;
    transform: translateY(0);
  }
  .faqOpne {
    top: 7px;
    transform: translateY(0);
    right: -10px;
  }
  .secPageFAQ__qa dd {
    padding: 10px 16px;
    margin-bottom: 20px;
  }
}


/* 転職支援サービス
------------------------------------*/
.secServiceMain {
  background-image: url(../img/service/bg02.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  text-align: center;
  padding-bottom: 115px;
}
.secServiceMain__box {
  position: relative;
  background-image: url(../img/service/bg01.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: left;
  padding: 33px 50px 70px 50px;
  margin-bottom: 120px;
}
.serviceKey01 {
  max-width: 560px;
  width: 100%;
}
.secServiceMain__boxLink {
  width: 272px;
  text-align: center;
  margin-top: 39px;
}
.secServiceMain__boxLink p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FF8900;
  margin-bottom: 3px;
}
.serviceKey02 {
  max-width: 398px;
  width: 100%;
}
.serviceText01 {
  margin-top: 75px;
}
.serviceText {
  letter-spacing: 0.05em;
}
.secServiceFeatures {
  padding-bottom: 150px;
}
.secServiceFeatures__box01 {
  background-color: #FFFFFF;
  padding: 90px 0 120px 0;
  margin-bottom: 150px;
}
.secServiceFeatures__box01 h2 {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
}
.secServiceFeatures__list01 {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.secServiceFeatures__list01 li {
  position: relative;
  background-color: #EEEEEE;
  width: 280px;
  text-align: center;
  padding: 40px 27px;
}
.secServiceFeatures__list01 li::before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #838383;
  height: calc(26px / 2 * tan(60deg));
  width: 42px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.secServiceFeatures__text01 {
  font-size: 2.0rem;
  margin-top: 20px;
}
.secServiceFeatures__text02 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 23px 0 20px 0;
}
.secServiceFeatures__text03 {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.secServiceFeatures__list01 img {
  max-width: 225px;
  width: 100%;
}
.secServiceFeatures__box02 {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}
.secServiceFeatures__box02 + .secServiceFeatures__box02 {
  margin-top: 200px;
}
.secServiceFeatures__box0201 {
  max-width: 580px;
  width: 100%;
  text-align: center;
}
.secServiceFeatures__box0202 {
  max-width: 400px;
  width: 100%;
}
.reverse .secServiceFeatures__box0201 {
  order: 2;
}
.reverse .secServiceFeatures__box0202 {
  order: 1;
}
.secServiceFeatures__box0201 img {
  max-width: 300px;
}
.secServiceFeatures__text04 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 5px 0 40px 0;
}
.secServiceFeatures__box0201 .serviceText {
  text-align: left;
}

.secServiceFlow {
  background-color: #FFFFFF;
  padding: 120px 0 90px 0;
}
.secServiceFlow .wrap {
  width: 953px;
}
.secServiceFlow__text01 {
  text-align: center;
}
.secServiceFlow h2 {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  margin: 10px 0 65px 0;
}
.secServiceFlow__list {
  list-style: none;
  margin-top: 100px;
}
.secServiceFlow__list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.secServiceFlow__list li + li {
  margin-top: 100px;
}
.secServiceFlow__list li:not(:last-child)::after {
  content: url(../img/service/flow_down.svg);
  display: inline-block;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}
.secServiceFlow__listImage {
  width: 59px;
}
.secServiceFlow__listText {
  max-width: 763px;
  width: 100%;
}
.secServiceFlow__listText h3 {
  font-size: 1.7rem;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 15px;
}
.secServiceFlow__list li.secServiceFlow__listLast {
  display: block;
}
.secServiceFlow__text02 {
  background-color: #193060;
  border-radius: 33px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 66px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.secServiceFlow__text03 {
  text-align: center;
}

.secServiceVoice {
  text-align: center;
  padding: 90px 0 120px 0;
}
.secServiceVoice h2 {
  font-size: 3.0rem;
  margin-bottom: 15px;
}
.secServiceVoice__list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.secServiceVoice__list li {
  background-color: #FFFFFF;
  border-radius: 4px;
  max-width: 380px;
  width: 100%;
  text-align: left;
  padding: 45px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.secServiceVoice__text01 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.secServiceVoice__text02 {
  text-align: center;
  margin: 10px 0 40px 0;
}
.secServiceVoice__box {
  margin-top: 50px;
}

.secServiceRegist {
  position: relative;
  padding-top: 300px;
}
.secServiceRegist::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  background-image: url(../img/service/bg03.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 580px;
  z-index: -1;
}
.secServiceRegist__box {
  background-color: #FFFFFF;
  text-align: center;
  padding: 100px 20px;
}
.secServiceRegist__box h2 img {
  width: 253px;
}
.secServiceRegist__text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 45px 0 40px 0;
}
.secServiceRegist__boxLink p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FF8900;
  margin-bottom: 15px;
}
.secServiceRegist__boxLink a {
  position: relative;
  display: inline-block;
  background: linear-gradient(150deg, #FF8A15, #D15EF4);
  border-radius: 49px;
  max-width: 637px;
  width: 100%;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 83px;
}
.secServiceRegist__boxLink a::before {
  content: url(../img/service/icon_regist.svg);
  display: inline-block;
  width: 33px;
  height: 33px;
  vertical-align: middle;
  line-height: 33px;
  margin-right: 20px;
}

@media (max-width: 767px) {

  .secServiceMain {
    background-size: auto 457px;
    padding-bottom: 120px;
  }
  .secServiceMain__box {
    background-image: url(../img/service/bg01@sp.jpg);
    width: 100vw;
    text-align: center;
    padding: 190px 16px 50px 16px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 100px;
  }
  .secServiceMain__boxLink {
    margin: 30px auto 0 auto;
  }
  .serviceKey02 {
    max-width: 300px;
  }
  .serviceText01 {
    text-align: left;
    margin-top: 50px;
  }
     
  .secServiceFeatures__box01 {
    padding: 26px 0;
    margin-bottom: 70px;
  }
  .secServiceFeatures__box01 h2 {
    font-size: 2.0rem;
  }
  .secServiceFeatures__list01 {
    display: none;
  }

  .secServiceFeatures__box02 {
    display: block;
    padding: 0;
  }
  .secServiceFeatures__box02 + .secServiceFeatures__box02 {
    margin-top: 100px;
  }
  .secServiceFeatures__box0201 {
    max-width: 100%;
    width: 100%;
  }
  .secServiceFeatures__box0202 {
    max-width: 100%;
    width: 100%;
    margin-top: 100px;
  }
  
  .secServiceFlow {
    padding: 70px 0 100px 0;
  }
  .secServiceFlow .wrap {
    width: 100%;
  }
  .secServiceFlow__text01 {
    font-size: 1.3rem;
  }
  .secServiceFlow h2 {
    font-size: 2.0rem;
    margin: 10px 0 45px 0;
  }
  .secServiceFlow__list {
    margin-top: 70px;
  }
  .secServiceFlow__list li + li {
    margin-top: 80px;
  }
  .secServiceFlow__list li:not(:last-child)::after {
    bottom: -60px;
  }
  .secServiceFlow__listImage {
    width: 59px;
  }
  .secServiceFlow__listText {
    max-width: 100%;
    width: calc(100% - 59px - 24px);
  }
  .secServiceFlow__text03 {
    text-align: left;
  }

  .secServiceVoice {
    padding: 70px 0 70px 0;
  }
  .secServiceVoice h2 {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .secServiceVoice__list {
    display: block;
    margin-top: 45px;
  }
  .secServiceVoice__list li {
    max-width: 100%;
    width: 100%;
  }
  .secServiceVoice__list li + li {
    margin-top: 30px;
  }

  .secServiceRegist {
    padding-top: 120px;
  }
  .secServiceRegist::before {
    height: 300px;
  }
  .secServiceRegist__box {
    padding: 50px 30px;
  }
  .secServiceRegist__text {
    text-align: left;
    font-size: 1.5rem;
    margin: 50px 0 40px 0;
  }
  .secServiceRegist__boxLink a {
    border-radius: 27px;
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 55px;
  }
  .secServiceRegist__boxLink a::before {
    content: url(../img/service/icon_regist@sp.svg);
    display: inline-block;
    width: 23px;
    height: 23px;
    vertical-align: middle;
    line-height: 23px;
    margin-right: 20px;
  }
                
}


/* 提携メディア
------------------------------------*/
.partnerBox {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 60px 50px 40px 50px;
}
.partnerBox__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
.partnerBox__title:not(:first-child) {
  margin-top: 30px;
}
.partnerBox__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.partnerBox__list li {
  width:48%;
  margin-bottom: 25px;
}
.partnerBox__name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}
.partnerBox__url {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3563AC;
  line-height: 1.3;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .partnerBox__url:hover {
    text-decoration: none;
  }
} /* end @media */

@media (max-width: 767px) {
  .partnerBox {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 30px 16px 15px 16px;
  }
  .partnerBox__list {
    display: block;
  }
  .partnerBox__list li {
    width: 100%;
  }
}


/* JOB
------------------------------------*/
.jobSearchForm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 16px 10px 16px 20px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 40px;
}
.jobSearchForm input[type=text],
.jobSearchForm select {
  background-color: #EEEEEE;
  border-radius: 2px;
  width: 240px;
  font-size: 1.5rem;
  line-height: 1.5em;
  padding: 12px 16px;
}
.jobSearchForm select {
  background-image: url(../img/arrow_down.svg);
  background-repeat: no-repeat;
  background-position: top 20px right 10px;
  white-space: nowrap;
  padding: 12px 30px 12px 16px;
}
.jobSearchForm__button {
  display: inline-block;
  background-image: url(../img/button_search.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 27px;
  max-width: 212px;
  width: 100%;
  text-align: center;
  line-height: 51px;
  color: #FFFFFF;
  cursor: pointer;
}

.jobSearchCount {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.jobSearchCount small {
  font-size: 1.6rem;
  margin-left: 15px;
}

.jobPagenavi {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 150px;
}
.jobPagenavi .page,
.jobPagenavi .current {
  display: inline-block;
  background-color: #FFFFFF;
  border: 1px solid#153767;
  border-radius: 50%;
  width: 45px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 43px;
  color: #153767;
  margin: 0 6px;
  transition: all 0.3s;
}
.jobPagenavi .current,
.jobPagenavi .page:hover {
  background-color: #153767;
  color: #FFFFFF;
}
.jobPagenavi .previouspostslink,
.jobPagenavi .nextpostslink,
.jobPagenavi .first,
.jobPagenavi .last,
.jobPagenavi .extend {
  color: #153767;
  font-size: 2.0rem;
  font-weight: 700;
  margin: 0 8px;
}

.jobList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jobList li,
.jobSingle {
  background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
  border-radius: 4px;
  padding: 13px 10px 36px 10px;
}
.jobSingle {
  padding-bottom: 100px;
}
.jobList li + li {
  margin-top: 30px;
}
.jobList__header,
.jobSingle__header {
  background-color: #EEEEEE;
  border-radius: 4px 4px 0 0;
  padding: 24px 30px;
}
.jobList__title h2,
.jobSingle__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.jobList__title:hover h2 {
  text-decoration: underline;
}
.jobList__conmapyName,
.jobSingle__conmapyName {
  display: flex;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 4px 12px;
  margin-top: 10px;
}
.jobList__conmapyName dt,
.jobSingle__conmapyName dt {
  width: 40px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 16px;
}
.jobList__conmapyName dd,
.jobSingle__conmapyName dd {
  font-size: 1.4rem;
}
.jobList__conmapyName dd a,
.jobSingle__conmapyName dd a {
  color: #3563AC;
  text-decoration: underline;
}
.jobList__conmapyName dd a:hover,
.jobSingle__conmapyName dd a:hover {
  text-decoration: none;
}
.jobList__body,
.jobSingle__headerBody {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
.jobList__body01,
.jobSingle__headerBody01 {
  width: 410px;
}
.jobList__body01 p,
.jobSingle__headerBody01 p {
  line-height: 1.5em;
  white-space: pre-wrap;
}
.jobList__body02,
.jobSingle__headerBody02 {
  width: 460px;
}
.jobList__conmapyAttribute,
.jobSingle__conmapyAttribute {
  display: flex;
  border-top: 1px solid #9DCFDD;
  padding: 13px 0;
}
.jobList__conmapyAttribute:last-child,
.jobSingle__conmapyAttribute:last-child {
  border-bottom: 1px solid #9DCFDD;
}
.jobList__conmapyAttribute dt,
.jobSingle__conmapyAttribute dt {
  width: 90px;
  font-size: 1.4rem;
  font-weight: 700;
}
.jobList__conmapyAttribute dd,
.jobSingle__conmapyAttribute dd {
  width: 360px;
  font-size: 1.4rem;
}
.jobList__conmapyAttribute dd a:hover,
.jobSingle__conmapyAttribute dd a:hover {
  text-decoration: underline;
}
.jobList__conmapyAttribute dd a + a::before,
.jobSingle__conmapyAttribute dd a + a::before {
  content: ' / ';
}
.jobList__footer,
.jobSingle__headerFooter,
.jobSingle__footer {
  display: flex;
  justify-content: center;
}
.jobList__footer a,
.jobSingle__headerFooter a,
.jobSingle__footer a {
  margin: 0 10px;
}
.simplefavorite-button {
  position: relative;
  display: inline-block;
  border: 1px solid #F7CED6;
  border-radius: 27px;
  width: 260px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  line-height: 53px;
  transition: all 0.3s;
}
.simplefavorite-button.active {
  background-color: #F7E1E4;
}
.simplefavorite-button:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
}
.simplefavorite-button::before {
  content: url(../img/favorite_off.svg);
  display: inline-block;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  line-height: 23px;
  transition: all 0.3s;
}
.simplefavorite-button.active::before {
  content: url(../img/favorite_on.svg);
  transition: all 0.3s;
}
.jobList__footer .linkBlueBtn {
  max-width: 260px;
}
.jobSingle__link,
.entryForm  .commonForm__button {
  position: relative;
  display: inline-block;
  background: linear-gradient(150deg, #FF8B17, #FF5800);
  border-radius: 27px;
  width: 260px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 55px;
}
.jobSingle__link::before,
.entryForm  .commonForm__button:before {
  content: url(../img/icon_entry.svg);
  display: inline-block;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  line-height: 23px;
}

.jobInfo {
  margin-bottom: 10px;
}
.jobInfo__text01 {
  font-size: 1.2rem;
  line-height: 1.5em;
}
.jobInfo__text02 {
  font-size: 1.2rem;
  line-height: 1.5em;
  margin-top: 3px;
}
.jobSingle__body {
  padding: 70px 30px;
}
.jobSingle__headerBody {
  flex-wrap: wrap;
  padding: 30px 30px 40px 30px;
}
.jobTags {
  margin-top: 50px;
}
.jobList .jobTags {
  padding: 0 30px;
  margin-top: 0;
  margin-bottom: 30px;
}
.jobTags label {
  display: inline-block;
  background-color: #153767;
  border: 1px solid #9DCFDD;
  border-radius: 2px;
  font-size: 1.2rem;
  color: #FFF;
  line-height: 24px;
  padding: 0 10px;
  margin: 0 8px 10px 0;
}
.jobSingle__body h2 {
  border-bottom: 1px solid #9DCFDD;
  font-size: 2.0rem;
  font-weight: 700;
  padding-bottom: 27px;
}
.jobSingle__application {
  display: flex;
  border-bottom: 1px solid #9DCFDD;
  padding: 26px 0;
}
.jobSingle__application dt {
  width: 180px;
  font-size: 1.5rem;
  font-weight: 700;
}
.jobSingle__application dd {
  width: 730px;
  font-size: 1.5rem;
  white-space: pre-wrap;
}
.jobSingle__application dd a {
  color: #3563AC;
  text-decoration: underline;
}
.jobSingle__application dd a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .jobSearchForm {
    flex-wrap: wrap;
    border-radius: 4px;
    padding: 20px 10px;
    margin-bottom: 35px;
  }
  .home .jobSearchForm {
    margin-bottom: 40px;
  }
  .jobSearchForm input[type=text] {
    width: 100%;
    margin: 10px 0 20px 0;
  }
  .jobSearchForm select {
    width: 49%;
  }
  .jobSearchForm__button {
    margin: 0 auto;
  }

  .jobPagenavi {
    margin-bottom: 0;
  }
  
  .jobList li,
  .jobSingle {
    padding: 10px 10px 30px 10px;
  }
  .jobList li + li {
    margin-top: 40px;
  }
  .jobList__header,
  .jobSingle__header {
    padding: 24px 10px;
  }
  .jobList__title h2,
  .jobSingle__title {
    font-size: 1.6rem;
  }
  .jobList__body,
  .jobSingle__headerBody {
    display: block;
    padding: 17px 16px 30px 16px;
  }
  .jobList__body01,
  .jobSingle__headerBody01 {
    width: 100%;
  }
  .jobList__body02,
  .jobSingle__headerBody02 {
    width: 100%;
    margin-top: 10px;
  }
  .jobList__conmapyAttribute dd,
  .jobSingle__conmapyAttribute dd {
    width: calc(100% - 90px);
    font-size: 1.4rem;
  }
  .jobList__footer,
  .jobSingle__headerFooter,
  .jobSingle__footer {
    justify-content: space-between
  }
  .jobList__footer a,
  .jobSingle__headerFooter a,
  .jobSingle__footer a {
    margin: 0;
  }
  .simplefavorite-button {
    width: 48%;
  }
  .simplefavorite-button::before {
    left: 16px;
  }
  .jobList__footer .linkBlueBtn {
    width: 48%;
  }
  .jobList__footer .linkBlueBtn::after {
    right: 16px;
  }

  .jobSingle {
    width: 100vw;
    padding: 16px 16px 50px 16px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .jobInfo {
    margin-bottom: 16px;
  }
  .jobSingle__headerBody {
    padding: 30px 0 30px 0;
  }
  .jobSingle__headerBody02 {
    margin-top: 50px;
  }
  .jobSingle__headerFooter,
  .jobSingle__footer {
    flex-wrap: wrap;
  }
  .jobSingle__headerFooter a,
  .jobSingle__footer a {
    width: 100%;
  }
  .jobSingle__headerFooter a + a,
  .jobSingle__footer a + a {
    margin-top: 12px;
  }
  .jobSingle__body {
    padding: 50px 0;
  }
  .jobTags {
    margin-top: 30px;
  }
  .jobList .jobTags {
    margin-top: 15px;
    padding: 0 16px;
  }
  .jobSingle__body h2 {
    padding-bottom: 20px;
  }
  .jobSingle__application {
    display: block;
    padding: 18px 0;
  }
  .jobSingle__application dt {
    width: 100%;
  }
  .jobSingle__application dd {
    width: 100%;
    margin-top: 10px;
  }
      
} /* end @media */


/* Entry
------------------------------------*/
.entryBox {
  background-color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  padding: 65px 16px 70px 16px;
}
.entryBox__text {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.entryBox__link {
  text-align: center;
  margin-top: 40px;
}
.linkRegist {
  position: relative;
  display: inline-block;
  background: linear-gradient(150deg, #FF8A15, #D15EF4);
  border-radius: 27px;
  width: 272px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 55px;
  margin: 0 10px;
}
.linkRegist::before {
  content: url(../img/icon_regist.svg);
  display: inline-block;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  line-height: 23px;
}
.linkLogin {
  position: relative;
  display: inline-block;
  background: linear-gradient(150deg, #55C7FB, #BD60E6);
  border-radius: 27px;
  width: 272px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 55px;
  margin: 0 10px;
}
.linkLogin::before {
  content: url(../img/icon_login.svg);
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  line-height: 23px;
}

.pageTable__occupation + .pageTable__occupation::before {
  content: '/';
}

.entryForm  .commonForm__button {
  width: 421px;
  margin: 0;
}

@media (max-width: 767px) {
  .entryBox {
    text-align: left;
    padding: 45px 16px 70px 16px;
  }
  .entryBox__text {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.5em;
  }
  .linkRegist {
    width: 100%;
    margin: 0;
  }
  .linkLogin {
    width: 100%;
    margin: 12px 0 0 0;
  }
  .entryForm  .commonForm__button {
    width: 100%;
  }
       
} /* end @media */


/* Login
------------------------------------*/
.loginForm {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.loginForm .commonForm__item + .commonForm__item {
  margin-top: 19px;
}
.loginForm .commonForm__footer {
  margin-top: 30px;
}
.loginForm .commonForm__button {
  background-image: url(../img/button_login.png);
}
.loginForm__password {
  text-align: center;
  margin-top: 27px;
}
.loginForm__password a {
  font-size: 1.4rem;
  color: #6B46B1;
  text-decoration: underline;
}
.loginForm__password a:hover {
  text-decoration: none;
}
.loginForm__regist {
  border-top: 1px solid #9DCFDD;
  border-bottom: 1px solid #9DCFDD;
  text-align: center;
  padding: 30px;
  margin-top: 48px;
}
.loginForm__regist p {
  line-height: 2.0em;
  margin-bottom: 25px;
}
.loginForm__regist a {
  display: inline-block;
  background-image: url(../img/button_regist.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 27px;
  max-width: 282px;
  width: 100%;
  text-align: center;
  line-height: 54px;
  color: #21B5F8;
  cursor: pointer;
}

@media (max-width: 767px) {

} /* end @media */


/* Simple Membership Form Builder
------------------------------------*/
form.swpm-form-builder {
  margin: 0;
}
.swpm-form-builder ul {
  margin: 0 !important;
}
.swpm-form-builder ul li {
  padding: 0 !important;
}
.swpm-form-builder ul li:not(:last-child) {
  margin-bottom: 28px !important;
}
.swpm-form-builder label.swpm-desc {
  font-weight: 700;
  margin-bottom: 8px;
}
.swpm-form-builder .swpm-legend {
  border: none;
  padding: 0;
  margin: 20px 0 16px 0;
}
.swpm-form-builder .swpm-legend h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.swpm-required-asterisk {
  color:  transparent;
}
.swpm-required-asterisk::after {
  content: '必須';
  display: inline-block;
  background-color: #FF4200;
  border-radius: 2px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 18px;
  margin-left: 10px;
  padding: 0 4px;
}
.swpm-edit-profile-submit-section {
  margin-top: 50px;
}
form.swpm-form-builder label.swpm-form-builder-error {
  font-size: 1.3rem ;
  font-weight: 500;
  color: #FF0000;
  margin-top: 5px;
}
form.swpm-form-builder label.swpm-error {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

input.swpm-small {
  width: 150px !important;
}

.openCloseBox .swpm-item-checkbox {
  background-color: #EDF6FF !important;
  border: 1px solid #9DCFDD;
  border-radius: 2px;
  padding: 16px 14px !important;
}
.openBox .swpm-legend h3::after,
.openCloseBox .swpm-legend h3::after {
  content: '該当する項目があれば全てにチェックを入れてください。';
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 5px;
}

.swpm-form-builder ul li.swpm-item-checkbox:not(:last-child) {
  margin-bottom: 10px !important;
}
.openCloseBox .swpm-item-checkbox label.swpm-desc {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 0;
  cursor: pointer;
}
.openCloseBox .swpm-item-checkbox label.swpm-desc::after {
  content: url(../img/member/arrow_down.svg);
  position: absolute;
  top: 7px;
  right: 0;
  width: 12px;
  height: 7px;
  line-height: 7px;
  transition: all .3s;
}
.openCloseBox .swpm-item-checkbox label.swpm-desc.is-open::after {
  transform: rotateX(180deg);
}

.openCloseBox .swpm-item-checkbox label.swpm-desc + div {
  display: flex;
  flex-wrap: wrap;
  background-color: #FFFFFF !important;
  padding: 16px 16px 6px 16px !important;
  margin-top: 12px;
}
.openCloseBox .swpm-item-checkbox div.swpm-span {
  width: auto;
}
.openCloseBox .swpm-item-checkbox div.swpm-span:not(:last-child) {
  margin-right: 25px;
}
.swpm-form-builder label.swpm-choice {
  font-size: 1.4rem;
  white-space: nowrap;
  padding: 0 0 10px 0;
  margin-left: 28px;
}
.commonForm .swpm-form-builder input[type="checkbox"]:before {
  top: -2px;
}
.commonForm .swpm-form-builder input[type="checkbox"]:after {
  top: -3px;
}

.commonForm #item-swpm-52 .swpm-legend,
.commonForm #item-swpm-10,
.commonForm #item-swpm-13,
.commonForm #item-swpm-11,
.commonForm #item-swpm-12,
.commonForm #item-swpm-79 {
  display: none;
}
.commonForm #item-swpm-38 label::after {
  content: '現在の年収（時間外手当・賞与 等も含む額面金額　※通勤費は除く）';
  display: block;
  color: #FF0000;
}
.commonForm #item-swpm-37 input + p,
.commonForm #item-swpm-38 input + p {
  display: inline-block;
  margin-left: 16px;
}
.commonForm #swpm-36 {
  background-image: url(../img/member/icon_date.svg);
  background-repeat: no-repeat;
  background-position: top 15px right 8px;
  padding-right: 25px;
}
.swpm-edit-profile-submit-section {
  margin-top: 30px;
}
.form_privacy {
	margin-top: 50px!important;
	background: #EEE!important;
	border: 1px solid #CCC;
	padding: 20px!important;
}
.form_privacy a {
	text-decoration: underline;
}
.form_privacy .swpm-required-asterisk {
	display: none;
}


@media (max-width: 767px) {
  .openCloseBox .swpm-item-checkbox div.swpm-span {
    width: 100%;
  }
  .openCloseBox .swpm-item-checkbox div.swpm-span:not(:last-child) {
    margin-right: 0;
  }
  .swpm-form-builder label.swpm-choice {
    white-space: normal;
    width: 92%;
  }
}


/* 無料会員登録
------------------------------------*/
.member main {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.memberStemTitle {
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 22px 0;
  margin-bottom: 70px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
.memberStep {
  text-align: center;
  margin-bottom: 70px;
}
.memberStep__step1 {
  max-width: 539px;
  width: 100%;
}
.memberStep__step2 {
  max-width: 539px;
  width: 100%;
}
.memberStep__step3 {
  max-width: 539px;
  width: 100%;
}
.memberActionTitle {
  border-top: 1px solid #9DCFDD;
  border-bottom: 1px solid #9DCFDD;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px 0;
  margin-bottom: 50px;
}
.memberButtonBox {
  text-align: center;
  margin-top: 65px;
}
.memberButtonBox .linkBlueBtn {
  max-width: 420px;
}

.member .commonForm {
  margin-top: 60px;
}

.member .step1 #item-swpm-77 .swpm-legend {
  display: none;
}

.member .step1 #item-swpm-3 div:last-child {
  margin-top: 28px;
}
.member .step1 #item-swpm-3 div:last-child::before {
  content: 'パスワード（確認）';
  display: inline-block;
  font-weight: 700;
  margin-bottom: 8px;
}
.member .step1 #item-swpm-4 {
  display: none;
}

.member .step2 .agreeBox .swpm-item-checkbox .swpm-desc {
  display: none;
}
.member .step2 .agreeBox .swpm-choice a {
  color: #6B46B1;
  text-decoration: underline;
}
.member .step2 .agreeBox .swpm-choice a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .member main {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .memberStep__step1 {
    max-width: 305px;
  }
  .memberStep__step2 {
    max-width: 305px;
  }
  .memberStep__step3 {
    max-width: 305px;
  }
  
} /* end @media */


/* パスワードの再発行
------------------------------------*/
.passwordResetForm {
  max-width: 420px;
  width: 100%;
  padding-top: 50px;
  margin: 0 auto;
}
.passwordResetForm p {
  text-align: center;
  line-height: 2.0em;
}
.passwordResetForm .commonForm {
  margin-top: 45px;
}
.passwordResetForm .commonForm__footer {
  margin-top: 30px;
}
.passwordResetForm__login {
  text-align: center;
  margin-top: 27px;
}
.passwordResetForm__login a {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  color: #153767;
  text-decoration: underline;
  padding-left: 16px;
}
.passwordResetForm__login a:hover {
  text-decoration: none;
}
.passwordResetForm__login a::before {
  content: url(../img/arrow_left@b.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  line-height: 12px;
}

.swpm-reset-pw-error {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.swpm-reset-pw-success-box {
  background-color: transparent;
  border: none;
  text-align: center;
  color: #000000;
  padding: 0;
  margin: 30px 0 0 0;
}
.swpm-reset-pw-success,
.swpm-reset-pw-success-email {
  font-size: 1.5rem;
  line-height: 2.0em;
}


/* Mypage
------------------------------------*/
.mypage .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.mypage aside {
  width: 300px;
}
.mypage main {
  background-color: #FFFFFF;
  border-radius: 4px;
  width: 850px;
  padding: 45px 50px 70px 50px;
}
.mypage main > h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.mypage main .subTitle {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 6px;
  padding-left: 20px;
  margin-bottom: 26px;
}
.mypage main .subTitle::before {
  content: url(../img/mypage/titleLine.svg);
  position: absolute;
  top: 0;
  left: 0;
}

.mypage .likeStyle {
  color: #153767;
}
.mypage .likeStyle::after {
  content: url(../img/arrow_right@b.svg);
}

.mypage main.noSideber {
  background-color: transparent;
  padding-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
.mypageNavi {
  display: block;
  border-radius: 4px;
}
.mypageNavi a {
  position: relative;
  display: inline-block;
  background-color: #FFFFFF;
  width: 100%;
  line-height: 1.0em;
  padding: 22px 20px 24px 53px;
}
.mypageNavi a + a {
  border-top: 1px solid #9DCFDD;
}
.mypageNavi a:first-child {
  border-radius: 4px 4px 0 0;
}
.mypageNavi a:last-child {
  border-radius: 0 0 4px 4px;
}
.mypageNavi a:nth-child(1)::before {
  content: url(../img/mypage/icon_member.svg);
  position: absolute;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.mypageNavi a:nth-child(2)::before {
  content: url(../img/mypage/icon_email.svg);
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
}
.mypageNavi a:nth-child(3)::before {
  content: url(../img/mypage/icon_password.svg);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.mypageNavi a:nth-child(4)::before {
  content: url(../img/mypage/icon_history.svg);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.mypageNavi a:nth-child(5)::before {
  content: url(../img/mypage/icon_favorite.svg);
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
}
.mypageNavi a:nth-child(6)::before {
  content: url(../img/mypage/iron_logout.svg);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.mypageNavi a.is-active,
.mypageNavi a:hover {
  background: linear-gradient(150deg, #55C7FB, #BD60E6);
  font-weight: 700;
  color: #FFFFFF;
}
.mypageNavi a:nth-child(1).is-active::before,
.mypageNavi a:nth-child(1):hover:before {
  content: url(../img/mypage/icon_member@r.svg);
}
.mypageNavi a:nth-child(2).is-active::before,
.mypageNavi a:nth-child(2):hover:before {
  content: url(../img/mypage/icon_email@r.svg);
}
.mypageNavi a:nth-child(3).is-active::before,
.mypageNavi a:nth-child(3):hover:before {
  content: url(../img/mypage/icon_password@r.svg);
}
.mypageNavi a:nth-child(4).is-active::before,
.mypageNavi a:nth-child(4):hover:before {
  content: url(../img/mypage/icon_history@r.svg);
}
.mypageNavi a:nth-child(5).is-active::before,
.mypageNavi a:nth-child(5):hover:before {
  content: url(../img/mypage/icon_favorite@r.svg);
}
.mypageNavi a:nth-child(6).is-active::before,
.mypageNavi a:nth-child(6):hover:before {
  content: url(../img/mypage/iron_logout@r.svg);
}

.mypageNologin a {
  color: #6B46B1;
  text-decoration: underline;
}
.mypageNologin a:hover {
  text-decoration: none;
}

.mypageForm {
  margin-top: 40px;
}
.mypageForm__item dt {
  font-weight: 700;
  margin-bottom: 8px;
}
.mypageButtonBox {
  text-align: center;
  margin-top: 65px;
}

.mypageText01 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #FF0000;
  line-height: 2.0em;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 20px;
}
.mypage .error {
  color: #FF0000 !important;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .mypage .container {
    display: block;
  }
  .mypage aside {
    width: 100%;
    margin-bottom: 30px;
  }
  .mypage main {
    border-radius: 0;
    width: 100vw;
    padding: 45px 16px 70px 16px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .mypage main.noSideber {
    padding-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .mypageNavi {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap ;
    border-radius: 4px;
  }
  .mypageNavi a {
    width: 50%;
    font-size: 1.3rem;
    padding: 14px 5px 14px 42px;
  }
  .mypageNavi a + a {
    border-top: none;
  }
  .mypageNavi a:nth-child(1) {
    border-radius: 4px 0 0 0;
    border-bottom: 1px solid #9DCFDD;
  }
  .mypageNavi a:nth-child(2) {
    border-radius: 0 4px 0 0 ;
    border-bottom: 1px solid #9DCFDD;
    border-left: 1px solid #9DCFDD;
  }
  .mypageNavi a:nth-child(3) {
    border-radius: 0;
    border-bottom: 1px solid #9DCFDD;
  }
  .mypageNavi a:nth-child(4) {
    border-radius: 0;
    border-bottom: 1px solid #9DCFDD;
    border-left: 1px solid #9DCFDD;
  }
  .mypageNavi a:nth-child(5) {
    border-radius: 0 0 0 4px;
  }
  .mypageNavi a:nth-child(6) {
    border-radius: 0 0 4px 0;
    border-left: 1px solid #9DCFDD;
  }
  
  .mypageNavi a:nth-child(1)::before {
    content: url(../img/mypage/icon_member.svg);
    left: 16px;
  }
  .mypageNavi a:nth-child(2)::before {
    content: url(../img/mypage/icon_email.svg);
    left: 16px;
  }
  .mypageNavi a:nth-child(3)::before {
    content: url(../img/mypage/icon_password.svg);
    left: 15px;
  }
  .mypageNavi a:nth-child(4)::before {
    content: url(../img/mypage/icon_history.svg);
    left: 16px;
  }
  .mypageNavi a:nth-child(5)::before {
    content: url(../img/mypage/icon_favorite.svg);
    left: 16px;
  }
  .mypageNavi a:nth-child(6)::before {
    content: url(../img/mypage/iron_logout.svg);
    left: 16px;
  }
              
} /* end @media */


/* 会員情報
------------------------------------*/
.mypageInlineBlock {
  display: inline-block;
}
.mypageEdit {
  position: relative;
  display: inline-block;
  border: 1px solid #9DCFDD;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #21B5F8;
  padding: 2px 14px 3px 30px;
  margin-left: 30px;
  vertical-align: text-bottom;
}
.mypageEdit::before {
  content: url(../img/mypage/icon_edit.svg);
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 14px;
  height: 14px;
}

.mypage .profileEdit #item-swpm-63 {
  display: none;
}

.openBox .swpm-section {
  background-color: #EEEEEE !important;
  border-radius: 2px;
  padding: 20px !important;
}
.openBox .swpm-item-checkbox label.swpm-desc {
  font-size: 1.5rem;
}
.openBox .swpm-item-checkbox label.swpm-desc + div {
  display: flex;
  flex-wrap: wrap;
}
.openBox .swpm-item-checkbox div.swpm-span {
  width: auto;
}
.openBox .swpm-item-checkbox div.swpm-span:not(:last-child) {
  margin-right: 25px;
}

.mypageEditMessage {
  position: relative;
  background-color: #D5F2FF;
  border: 1px solid #21B5F8;
  font-size: 1.5rem;
  font-weight: 700;
  color: #21B5F8;
  padding: 20px 40px 20px 13px;
  margin: -14px 0 40px 0;
}
.mypageEditMessage button {
  position: absolute;
  top: 20px;
  right: 15px;
  background-image: url(../img/mypage/icon_close.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 19.5px;
  height: 19.5px;
  cursor: pointer;
}


/* パスワード変更
------------------------------------*/
.mypage .passwordEdit .swpm-section .swpm-item {
  display: none;
}
.mypage .passwordEdit #item-swpm-11 {
  display: block;
  margin-bottom: 0 !important;
}
.mypage .passwordEdit #item-swpm-11 div:last-child {
  margin-top: 28px;
}
.mypage .passwordEdit #item-swpm-11 div:last-child::before {
  content: 'パスワード（確認）';
  display: inline-block;
  font-weight: 700;
  margin-bottom: 8px;
}

.mypage .passwordEdit #item-swpm-30,
.mypage .passwordEdit #item-swpm-57,
.mypage .passwordEdit #item-swpm-63 {
  display: none;
}


/* メールアドレス変更
------------------------------------*/
.mypageEmailText {
  border-top: 1px solid #9DCFDD;
  border-bottom: 1px solid #9DCFDD;
  padding: 10px;
}


/* 応募履歴
------------------------------------*/
.membarHistoryList {
  border-top: 1px solid #9DCFDD;
  list-style: none;
  padding: 0;
  margin: 0;
}
.membarHistoryList li {
  border-bottom: 1px solid #9DCFDD;
  padding: 17px 0;
}
.membarHistoryList__upper time {
  font-size: 1.4rem;
}
.membarHistoryList__upper label {
  font-size: 1.4rem;
  margin-left: 40px;
}
.membarHistoryList__lower {
  margin-top: 7px;
}
.membarHistoryList__lower a {
  text-decoration: underline;
}
.membarHistoryList__lower a:hover {
  text-decoration: none;
}

.historyPagenavi {
  text-align: center;
  margin-top: 40px;
}
.historyPagenavi .page,
.historyPagenavi .current {
  display: inline-block;
  background-color: #FFFFFF;
  border: 1px solid#4FAEF8;
  border-radius: 50%;
  width: 45px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 43px;
  color: #4FAEF8;
  margin: 0 6px;
  transition: all 0.3s;
}
.historyPagenavi .current,
.historyPagenavi .page:hover {
  background-color: #4FAEF8;
  color: #FFFFFF;
}

.historyPagenavi .previouspostslink,
.historyPagenavi .nextpostslink,
.historyPagenavi .first,
.historyPagenavi .last,
.historyPagenavi .extend {
  color: #4FAEF8;
  font-size: 2.0rem;
  font-weight: 700;
  margin: 0 8px;
}


/* 気になる求人一覧
------------------------------------*/
.mypage.favorite main {
  background-color: transparent;
  padding: 0;
}
.mypage.favorite .jobList__body01 {
  width: 350px;
}
.mypage.favorite .jobList__body02 {
  width: 400px;
}

@media (max-width: 767px) {
  .mypage.favorite main {
    background-color: transparent;
    padding: 0 16px;
  }
  .mypage.favorite .jobList__body01,
  .mypage.favorite .jobList__body02 {
    width: 100%;
  }
}


/* コンサルタント募集
------------------------------------*/
.recruitment .wrapM {
  width: 1000px;
  padding: 0 40px;
}

.secRecruitmentMain {
  background-image: url(../img/recruitment/main.webp);
  background-position: center;
  background-size: cover;
  height: 488px;
  min-width: 1000px;
  padding: 95px 100px 0 100px;
  margin-top: 18px;
}
.secRecruitmentMain__text {
  line-height: 1.5em;
}
.secRecruitmentMain__text + .secRecruitmentMain__text {
  margin-top: 20px;
}
.secRecruitmentMain__text span {
  display: inline-block;
  background-color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 8px 10px;
}
.secRecruitmentMain h1 {
  display: inline-block;
  background-color: rgba(0, 177, 255, 0.9);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.5em;
  color: #FFFFFF;
  padding: 7px 20px;
  margin: 20px 0;
}

.secRecruitmentAbout {
  padding: 100px 0;
}
.secRecruitmentAbout__text01 {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
}
.secRecruitmentAbout__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
.secRecruitmentAbout__boxImage {
  max-width: 410px;
  width: 100%;
}
.secRecruitmentAbout__boxText {
  max-width: 462px;
  width: 100%;
}
.secRecruitmentAbout__boxText p {
  font-size: 1.6rem;
}
.secRecruitmentAbout__box--reverse .secRecruitmentAbout__boxImage {
  order: 2;
}
.secRecruitmentAbout__box--reverse .secRecruitmentAbout__boxText {
  order: 1;
}

.secRecruitmentOccupation h2,
.secRecruitmentDescription h2 {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
}
.secRecruitmentOccupation h2 span,
.secRecruitmentDescription h2 span {
  display: block;
  font-size: 2.0rem;
  font-weight: 500;
  color: #9DCFDD;
  margin-bottom: 5px;
}
.secRecruitmentOccupation table {
  width: 100%;
  margin-top: 65px;
}
.secRecruitmentOccupation table {
  border-collapse: collapse;
  border-top: 1px solid #9DCFDD;
  width: 100%;
  margin-top: 45px;
}
.secRecruitmentOccupation table tr {
  border-bottom: 1px dotted #9DCFDD;
}
.secRecruitmentOccupation th {
  width: 185px;
  text-align: left;
  font-weight: 700;
  line-height: 2.0em;
  padding: 25px 0;
}
.secRecruitmentOccupation td {
  font-weight: 500;
  line-height: 2.0em;
  padding: 25px 0;
}

.secRecruitmentDescription {
  padding: 90px 0 0 0;
}
.secRecruitmentDescription table {
  border-collapse: collapse;
  border-top: 1px solid #9DCFDD;
  width: 100%;
  margin-top: 45px;
}
.secRecruitmentDescription table tr {
  border-bottom: 1px dotted #9DCFDD;
}
.secRecruitmentDescription table tr {
  border-bottom: 1px dotted #9DCFDD;
}
.secRecruitmentDescription th {
  background-color: #E9F2F5;
  width: 230px;
  text-align: left;
  font-weight: 700;
  line-height: 2.0em;
  padding: 25px 30px;
}
.secRecruitmentDescription td {
  font-weight: 500;
  line-height: 2.0em;
  padding: 25px 0 25px 30px;
}
.secRecruitmentDescription__button {
  text-align: center;
  margin-top: 100px;
}
.secRecruitmentDescription__button a {
  position: relative;
  display: inline-block;
  background-image: url(../img/recruitment/button_bg.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 9px;
  max-width: 481px;
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 0 12px 0;
}
.secRecruitmentDescription__button a::before {
  content: url(../img/icon_entry.svg);
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.secRecruitmentDescription__button a span {
  display: block;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .secRecruitmentMain {
    background-image: url(../img/recruitment/main@sp.webp);
    height: 455px;
    min-width: 100%;
    padding: 85px 16px 0 16px;
  }
  .secRecruitmentMain__text + .secRecruitmentMain__text {
    margin-top: 16px;
  }
  .secRecruitmentMain__text span {
    font-size: 1.5rem;
    padding: 6px 10px;
  }
  .secRecruitmentMain h1 {
    display: block;
    text-align: center;
    font-size: 2.0rem;
    padding: 10px 20px;
    margin: 20px 0 30px 0;
  }

  .secRecruitmentAbout {
    padding: 50px 0 120px 0;
  }
  .secRecruitmentAbout__text01 {
    text-align: left;
    font-size: 1.8rem;
  }
  .secRecruitmentAbout__box {
    display: block;
    margin-top: 80px;
  }
  .secRecruitmentAbout__box + .secRecruitmentAbout__box {
    margin-top: 45px;
  }
  .secRecruitmentAbout__boxImage {
    max-width: 100%;
  }
  .secRecruitmentAbout__boxText {
    max-width: 100%;
    margin-top: 30px;
  }
  .secRecruitmentAbout__boxText p {
    font-size: 1.5rem;
  }

  .secRecruitmentOccupation h2,
  .secRecruitmentDescription h2 {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
  }
  .secRecruitmentOccupation th {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  .secRecruitmentOccupation td {
    display: block;
    width: 100%;
    padding: 0 0 15px 0;
  }
  .secRecruitmentDescription th {
    width: 120px;
    padding: 13px 13px;
  }
  .secRecruitmentDescription td {
    padding: 13px 0 13px 13px;
  }
  .secRecruitmentDescription__button {
    margin-top: 70px;
  }
        
}


.jobMain {
  background-size: cover;
  padding: 70px 0 90px;
  text-align: center;
  margin-bottom: 70px;
}
.jobMain__apart {
  background-image: url("../img/job/apartMain.webp");
}
.jobMain__equip {
  background-image: url("../img/job/equipMain.webp");
}
.jobMain__en {
  color: #B2B2B2;
  font-size: 13px;
  margin-bottom: 2px;
}
.jobMain__jp {
  color: #B2B2B2;
  font-size: 20px;
  margin-bottom: 10px;  
}
.jobMain h1 {
  font-size: 40px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 40px;
}
.jobMain a {
  display: inline-block;
  background: #FFF 16px 16px no-repeat;
  background-image: url("../img/job/jobSearch.svg");
  background-size: 16px 16px;
  border-radius: 50px;
  padding: 14px 30px 14px 50px;
  font-size: 15px;
  font-weight: 700;
  color: #384253;
  transition: all 0.3s;
}
.jobMain a:hover {
  opacity: 0.8;
  transform: scale(1.03);
}

.intTtl1 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D9D9D9;
}
.intTtl1::before {
  position: absolute;
  content: "";
  width: 160px;
  height: 1px;
  background: #384253;
  bottom: 0;
  left: 0;
}
.intLink {
  text-align: right;
  margin: 50px 0 70px;
}

.intList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.intList::after{
  content:"";
  display: block;
  width:318px;
}
.intList li {
  position: relative;
  width: 318px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}
.intList__img {
  overflow:hidden;
  margin-bottom: 16px;
  border-radius: 4px;
  transition:0.3s all;
}
.intList__img:hover {
  box-shadow: 0 0 16px 0 rgba(0,0,0,.2);
  transition:0.3s all;
}
.intList__img img {
  width: 100%;
  transition:0.3s all;
}
.intList__img img:hover {
  transform: scale(1.1,1.1);
  transition:0.5s all;
}
.intList p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8em;
}

.intCase {
  background: #FFF;
  margin-top: 60px;
  padding: 60px 30px 100px;
  border-radius: 7px;
}
.intCase__center {
  text-align: center;
}
.intCase__center img {
  width: 47px;
  margin-bottom: 6px;
}
.intCase__en {
  font-size: 20px;
  color: #B2A891;
  margin-bottom: 2px;
}
.intCase__center h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.intCase ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.intCase ul::after{
  content:"";
  display: block;
  width:300px;
}
.intCase li {
  position: relative;
  width: 300px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}
.intCase__img {
  overflow:hidden;
  margin-bottom: 16px;
  transition:0.3s all;
}
.intCase__img:hover {
  box-shadow: 0 0 16px 0 rgba(0,0,0,.2);
  transition:0.3s all;
}
.intCase__img img {
  width: 100%;
  transition:0.3s all;
}
.intCase__img img:hover {
  transform: scale(1.1,1.1);
  transition:0.3s all;
}
.intCase p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8em;
}

.intBtn {
  position: relative;
  display: block;
  margin: 100px auto 0;
  width: 500px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  background: url("../img/job/btnBg.jpg");
  background-position: top 0 left 0;
  background-size: auto 84px;
  padding: 20px 0;
  border-radius: 100px;
  transition: all 0.3s;
}
.intBtn:hover {
  background-position: top 0 left 500px;
  transition: all 0.3s;
  transform: scale(1.03)
}
.intBtn::after {
  position: absolute;
  content: url("../img/job/jobSearch2.svg");
  top: 30px;
  left: 50px;
}

@media (max-width: 767px) {
  .jobMain {
    background-position: center;
  }
  .intList,
  .intCase ul {
    display: block;
  }
  .intList li,
  .intCase li {
    width: 100%;
  }
  .intBtn {
    width: 100%;
  }
  .intBtn::after {
    top: 30px;
    left: 20px;
}


}

.secTopBnr {
  display: flex;
  justify-content: space-between;  
  margin-top: 70px;
  margin-bottom: 70px;
}
.secTopBnr img {
  width: 587px;
  transition: all 0.3s;
  border-radius: 20px;
}
.secTopBnr img:hover {
  box-shadow: 0 0 20px 0 rgba(0,0,0,.4);
}

@media (max-width: 767px) {
  .secTopBnr {
    display: block;
    margin: 0px 0 20px;
  }
  .secTopBnr img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }
}

.scroll-container_wrap {
    width: 100%;
    background: #FFF;
    padding: 20px 0 20px;
}
.scroll-container_ttl{
  font-size: 12px;
  padding-left: 20px;
  margin-bottom: 10px;
}
.scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    margin-bottom: 10px;
    overflow: hidden;
}
.scroll-content2 {
    display: inline-block;
    animation-direction: reverse;
    overflow: hidden;
}
.scroll-content img,
.scroll-content2 img {
    display: inline-block;
    height: 24px;
    margin-right: 30px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 767px) {
  .scroll-container_wrap {
  }

  .topMediaLine {
    padding: 16px 0 10px;
  }

  .subBgIn--record {
    padding: 50px 16px;
  }
}



/* TOC+ */
#toc_container{
  margin:20px auto 30px;
  background-color: #FFF; /* 目次全体の背景カラー */
  border:3px solid rgba(64,105,144,.2); /* 目次全体の枠線 */
  border-radius:3px;
  box-sizing:border-box;
  padding:20px;
  display:table;
  min-width: 100%;
  width: 100%;
  counter-reset:li;
}
 
#toc_container li {
  list-style: none;
}
/* テーマによるリストの装飾を一旦無効化 */
#toc_container ul.toc_list li::before{
  content:none;
  padding:0;
  margin:0;
  width:0;
  height:0;
  background:none;
  box-shadow:none;
}
 
/* 目次の見出しタイトル */
#toc_container .toc_title{
  text-align:center;
  font-weight:bold;
  font-size:118%;
  padding:0;
}
 
/* 見出しタイトル左のアイコン */
#toc_container .toc_title::before{
  position:relative;
  font-size:28px;
  content:"\2254";
  display:inline-block;
  width:40px;
  height:40px;
  line-height:34px;
  margin-right:8px;
  border-radius:50%;
  vertical-align:baseline;
  speak:none;
  -webkit-font-smoothing:antialiased;
  color:#fff;
  background-color:#5f7b96;
}
 
/* 表示／非表示トグル */
#toc_container .toc_toggle a{
  font-size:13px;
  font-weight:normal;
  padding:2px 4px;
}
 
/* 目次エリア */
#toc_container p.toc_title + ul.toc_list{
  padding:20px 0 0;
  margin:20px 0 0;
  border-top:1px solid rgba(0,0,0,.1);
}
 
/* リスト共通スタイル */
#toc_container ul.toc_list li{
  position:relative;
  padding:0;
  margin:0;
}
 
/* 目次リンク共通スタイル */
#toc_container ul.toc_list li a{
  position:relative;
  font-size:94%;
  font-weight:normal;
  text-decoration:none;
  display:inline-block;
  line-height:1.6;
  padding:3px 0;
  margin:0 0 5px 0;
  transition:all .3s ease;
}
#toc_container ul.toc_list a,
#toc_container ul.toc_list a:visited{
  color:#000; /* リンクカラー */
}
/* マウスオーバー時 */
#toc_container ul.toc_list li a:hover{
  text-decoration:none;
  box-shadow:0 2px;
}
 
/* 親の目次 */
#toc_container ul.toc_list > li > a{
  font-size:17px;
  font-weight:bold;
  margin-left:40px;
}
 
/* 親の目次(左側の連番) */
#toc_container ul.toc_list > li::before,
#toc_container ul.toc_list > li::after{
  position:absolute;
  top:0px;
  left:0;
}
/* 連番背景 */
#toc_container ul.toc_list > li::before{
  content:'';
  display:inline-block;
  vertical-align:bottom;
  width:32px;
  height:32px;
  margin-right:7px;
  border-radius:16px;
  background-color:rgba(125,157,188,0.66);
}
/* 連番 */
#toc_container ul.toc_list > li::after{
  counter-increment:li;
  content:counter(li);
  width:32px;
  line-height:32px;
  font-family:'Avenir Next', 'Helvetica Neue', Arial, 'Meiryo','Yu Gothic', san-serif;
  font-weight:400;
  text-align:center;
  color:#fff;
}
 
/* 子の目次 */
#toc_container ul.toc_list > li > ul{
  margin-left:40px;
  font-size: 15px;
}
 
/* 子の目次の左側のアイコン */
#toc_container ul.toc_list > li ul li::before{
  position:absolute;
  top:0px;
  left:0;
  content:'\2023';
  display: inline-block;
  width:14px;
  height:28px;
  line-height:28px;
  font-size:18px;
  color:#5f7b96;
}
#toc_container ul.toc_list > li ul li a{
  font-weight: normal;
  margin-left:16px;
}
.toc_list li ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
 
/* レスポンシブ設定(667px幅以下) */
@media only screen and (max-width: 667px){
  #toc_container{
    padding:20px 3vw;
    min-width:auto;
    width:100%!important;
  }
  #toc_container p.toc_title + ul.toc_list{
    padding:20px 0 0;
  }
  #toc_container ul.toc_list > li > ul{
    margin-left:30px;
  }
}

ul.wp-block-list {
  padding: 30px 30px 20px 30px;
  background: #FFF;
  border-radius: 4px;
}
.wp-block-list li {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  list-style: none;
}
.wp-block-list li{
    position: relative;
    padding-left: 25px;
  }
 
.wp-block-list li:before {
    content: "";
    position: absolute;
    top: .35em;
    left: 6px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 5px;
    height: 10px;
    border-right: 2px solid #4E546B;
    border-bottom: 2px solid #4E546B;
  }
 
.wp-block-list li:after {
    content: "";
    position: absolute;
    top: .2em;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #4E546B;
    border-radius: 20px;
  }
.wp-block-table {
  background: #FFF;
}

.wp-block-buttons a {
  text-decoration: none;
  color: #FFF;
}
.wp-block-buttons a:hover {
  opacity: 0.8;
}

.nk-fieldset-hidden>.swpm-legend {
    display: none;
}

.nk-step {
    display: none;
}

.memberForm2 {
    max-width: 800px;
    margin: 120px auto 0;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;
    transform: translate(0, -41px);
    z-index: 1;
    position: relative;
}

.memberForm2_ttl {
    background: #003B63;
    letter-spacing: 0px;
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
    padding: 23px 0;
}

.memberForm2_desc_w {
    padding: 50px 30px 60px;
}

.memberForm2_steps {
    display: flex;
    justify-content: center;
    gap: 0 5px;
    margin-bottom: 40px;
}

.memberForm2_step {
    font-size: 15px;
    background: #F0F0F0;
    border-radius: 16px;
    line-height: 1;
    padding: 0 0.83em;
    height: 2.2em;
    display: flex;
    align-items: center;
    color:#A7A7A7;
}
.memberForm2_step.memberForm2_step_active{
    background: #A0A027;
    color: #fff;
}
.memberForm2_step .memberForm2_step_txt{
  display: none;
}
.memberForm2_step.memberForm2_step_active .memberForm2_step_txt{
  display: inline;
}

.nk-step-active{
  display: block;
}

.nk-step h4 {
    display: none;
}

.nk-step .nk-desc-header h4{
    display: block;
    border: none;
    font-weight: bold;
    font-size: 15px;
    margin-top: 50px !important;
}

.memberForm2 .swpm-section-div {
    background: transparent;
    border-radius: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.memberForm2_desc_step{
  display: none;
}
.memberForm2_desc_step.memberForm2_step_active{
  display: block;
}

.nk-step-nav button.nk-next-btn {
    background: #D85041;
    border-radius: 33px;
    height: 66px;
    width: 350px;
    text-align: center;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0;
    display: block;
    margin: auto;
    position: relative;
    max-width: 100%;
}
.nk-step-nav button.nk-next-btn:hover {
	opacity: 0.7;
	cursor: pointer;
}

button.nk-prev-btn {
    margin-top: 55px;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 0;
    /* border-bottom: 1px solid #707070; */
    position: relative;
}
button.nk-prev-btn:hover {
	color: #777;
	cursor: pointer;
}

.nk-step-nav {
    margin-top: 50px;
    text-align: center;
}

.nk-step-nav button.nk-next-btn svg {
    position: absolute;
    width: 8px;
    line-height: 1;
    top: 50%;
    transform: translate(0, -50%);
    right: 27px;
    fill: #fff;
}

button.nk-prev-btn svg {
    position: absolute;
    width: 7px;
    line-height: 1;
    top: 50%;
    transform: translate(0, -50%);
}

button.nk-prev-btn span {
    padding-left: 1.1em;
}

.memberForm2 .swpm-form-builder ul li.nk-checkbox {
    background-color: #EDF6FF !important;
    border: 1px solid #9DCFDD !important;
    border-radius: 2px !important;
    padding: 16px 14px !important;
}
.memberForm2 .swpm-form-builder ul .nk-checkboxs li>div {
    background-color: #EDF6FF !important;
    border: 1px solid #9DCFDD !important;
    border-radius: 2px !important;
    padding: 16px 14px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.memberForm2 .swpm-form-builder ul .nk-checkboxs li>div .swpm-span {
    width: auto;
}

.memberForm2 .swpm-form-builder ul .nk-checkboxs li>div .swpm-span  label.swpm-choice{
  padding: 0;
}

.memberForm2 label.swpm-desc {
    font-size: 15px;
    font-weight: bold;
}


.memberForm2 .agreeBox .swpm-item-checkbox .swpm-desc {
  display: none;
}
.memberForm2 .agreeBox .swpm-choice a {
  color: #6B46B1;
  text-decoration: underline;
}
.memberForm2 .agreeBox .swpm-choice a:hover {
  text-decoration: none;
}

.memberForm2 .agreeBox h4 {
    display: block;
    border: none;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 20px !important;
}

.member .memberForm2 .commonForm{
  margin-top: 50px;
}

.memberForm2 .agreeBox {
    margin-top: 70px;
}

.memberForm2 .swpm-required-asterisk::after{
    display:none;
}
.memberForm2 .swpm-required-asterisk::before {
    content: '必須';
    display: inline-block;
    background-color: #FF4200;
    border-radius: 2px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 18px;
    padding: 0 4px;
}
.memberForm2 .nk-order-desc-w>.swpm-span {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
}

.memberForm2 .nk-order-desc-w>.swpm-span>* {
    width: 100%;
}

.memberForm2 .nk-order-desc-w>.swpm-span>p {
    order:-1;
}

.memberForm2 .swpm-desc {
    display: flex;
}

.memberForm2 span.swpm-required-asterisk {
    order: -1;
}

.memberForm2 span.nk-add {
    display: inline-block;
    margin-left: 16px;
    width: auto !important;
}

.memberForm2 .nk-desc-header .swpm-item-instructions {
    border-bottom: solid 1px #9DCFDD;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

.memberForm2 li#item-swpm-89 {
    margin-bottom: 0 !important;
}

.memberForm2 .nk-desc-header .swpm-item-instructions label {
    display: none;
}

.memberForm2_desc_last {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.memberForm2 #item-swpm-119 h4 {
    margin-top: 0 !important;
}

.commonForm select {
    background-color: #FFFFFF;
    border: 1px solid #9DCFDD;
    border-radius: 2px;
    padding: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding-right: 2em;
    box-sizing: border-box;
}

.nk-swpm-select-w {
    width: 200px;
    position: relative;
}

.commonForm .nk-swpm-select-w select.swpm-select {
}

.nk-swpm-select-icon {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(-90deg); /* ← ここで回転 */
  pointer-events: none;
}

.custom-select-arrow {
  width: 100%;
  height: 100%;
  display: block;
}

.memberForm2 p.memberActionTitle {
    border: none;
    font-size: 25px;
    padding: 0;
    margin: 20px 0 70px;
}

.member .memberForm2 #item-swpm-3>div>div:last-of-type::before{
    content: 'パスワード（確認）';
    display: inline-block;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 10px;
}

.pmark {
  width: 100px;
  float: left;
  margin: 0 30px 0 0;
}

@media (max-width: 767px) {
    .sp_br{
      display: block;
    }
  .memberForm2 {
      max-width: 92%;
  }
  .memberForm2_ttl {
    padding: 12px 0;
    font-size: 20px;
  }
    .memberForm2_desc_w {
      padding: 30px 16px 60px;
  }

}


.home__3btn {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.home__3btn > div {
  position: relative;
  width: 32%;
  text-align: center;
  padding: 14px 0 14px;
  transition: all 0.2s;
}
.fixBanner_pc .home__3btn > div {
  padding: 4px 0;
}
.home__3btn a {
  position: absolute;
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.home__3btn1 {
  background: #153767 url("../img/btn_arr_wh.svg") no-repeat;
  background-size: 10px 20px;
  background-position: top 34px right 30px;
  border: 3px solid #153767;
  border-radius: 50px;
  color: #FFF;
}
.home__3btn2 {
  background: #FFF url("../img/btn_arr_blue.svg") no-repeat;
  background-size: 10px 20px;
  background-position: top 34px right 30px;
  border: 3px solid #153767;
  border-radius: 50px;
  color: #153767;
}
.home__3btn1:hover,
.home__3btn2:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}
.fixBanner_pc .home__3btn1 {
  border: 3px solid #FFF;
  background-position: top 24px right 30px;
}
.fixBanner_pc .home__3btn2 {
  background-position: top 24px right 30px;
}
.home__3btn-txt1 {
  font-size: 15px;
  font-weight: 400;
}
.home__3btn-txt1F {
  position: relative;
  top: 4px;
}
.home__3btn-txt2F {
  position: relative;
  top: -4px;
}

.home__3btn-txt2,
.home__3btn-txt3 {
  font-size: 19px;
  font-weight: bold;
}
.home__3btn-txt2 {
  margin-top: 7px;
}
.home__3btn-txt3 {
  margin-top: -8px;
}
.home__3btn-txt3 span {
  color: #FFFF00;
  margin-right: 4px;
}
.home__3btn-txt3b {
  position: relative;
  top: 6px;
  font-size: 39px;
  line-height: 39px;
  margin-top: -4px;
}


@media (max-width: 767px) {

  .home__sec4 .home__3btn {
    display: block;
    margin: 0 auto;
  }
  .home__sec4 .home__3btn > div {
    width: 90%;
    margin: 0 auto 16px;
  }
  .fixBanner_pc .home__3btn {
    padding: 0 10px;
  }
  .fixBanner_pc .home__3btn > div {
    width: 49%;
    padding: 4px 0;
    border: 2px solid #FFF;
  }
  .fixBanner_pc .home__3btn1 {
    background-image: none;
  }
  .fixBanner_pc .home__3btn-txt1 {
    position: relative;
    top: 2px;
    font-size: 3.0vw;
  }
  .fixBanner_pc .home__3btn-txt1F {
    position: relative;
    top: 2px;
  }
  .fixBanner_pc .home__3btn-txt2F {
    top: -4px;
  }
  .fixBanner_pc .home__3btn-txt2,
  .fixBanner_pc .home__3btn-txt3 {
    font-size: 4.0vw;
  }
  .fixBanner_pc .home__3btn-txt2 {
    margin-top: 5px;
  }
  .fixBanner_pc .home__3btn-txt3 {
    margin-top: -6px;
  }
  .fixBanner_pc .home__3btn-txt3 span {
    margin-right: 0px;
  }
  .fixBanner_pc .home__3btn-txt3b {
    top: 4px;
    font-size: 7vw;
    line-height: 30px;
  }

}/* end @media */



