@charset "UTF-8";


/*---------------------------

reset

---------------------------*/
sup,
sub{
  display: inline-block;
}
sup{
  transform: translateY(.15em);
}
sub{
  transform: translateY(-.3em);
}
address{ font-style: normal;}
figure{ margin:0; }
img{ width: 100%; }

a{
  color: inherit;
  text-decoration: none;
  transition: .3s all;
}
span{
  font-weight: inherit;
}
em{
  font-style: normal;
  font-weight: 500;
}

table{
  width: 100%;
  text-align: left;
  line-height: 1.5;
}
table th,
table td{
  padding: 1.5em .5em;
}
table th{
  font-weight: 500;
}
table th span{
  display: inline-block;
}
/* PC tel */
@media screen and (min-width: 768px){
  a[href^="tel"] {
    pointer-events: none;
    cursor: default;
  }
}

/*---------------------------

common

---------------------------*/
*{
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  color: inherit;
  box-sizing: border-box;
  font-feature-settings: "palt";
}
:root {
  --basicColor: #212121;
  --PINK: #E898A7;
  --BLUE: #68C9F3;
  --YELLOW: #FDFD63;
  --linkColor: #698BE6;
  --en: "Raleway", sans-serif;
  --enNum: "Roboto", sans-serif;
  --line: 1px solid #A3A3A3;
  --formLine: 1px solid #CDCDCD;
  --bg: #FCF5F5;
  --bgS: #FCF5F5;
  --bgC: #F4F9FD;
  --bgS-alfa: rgba(232,152,167,.8);
  --bgC-alfa: rgba(104,201,243,.8);
  --bgCover: background-size: cover;
  --shadow: drop-shadow( 0 3px 4px rgba(0,0,0,.1));
}
body{
  background-image: url(../images/bg.png);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-color: #fff;
  color: var(--basicColor);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}
@media screen and (max-width: 767px){
  body{
    background-size: 2000px auto;
  }
}
@media screen and (min-width: 768px){
  body{
    background-size: 1300px auto;
  }
}
#wrap{
  overflow: hidden;
}
.container{
  width: calc(100% - min(8vw,80px));
  max-width: 1364px;
  margin: 0 auto;
}
.b-hero{
  width: 100dvw;
  margin-left: 50%;
  transform: translateX(-50dvw);
}

.-en{
  font-family: var(--en);
}

.-enNum{
  font-family: var(--enNum);
  font-weight: 900;
}

/* responsive */
@media screen and (max-width: 767px){
  .pc{
    display: none;
  }
}
@media screen and (min-width: 768px){
  a:hover{
    opacity: .8;
  }
  .sp{
    display: none;
  }
}


/*---------------------------

navigation

---------------------------*/
.b-nav .e-group-mds{
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.b-nav li{
  display: block;
  margin-top: 1em;
}
.b-nav .b-group.m-03 .b-lst+.b-lst{
  border-top: var(--line);
  margin-top: 2em;
  padding-top: .5em;
}
.b-nav li a{
  font-size: 14px;
}
@media screen and (max-width: 767px){
  .b-nav .e-logo{
    width: 185px;
  }
  .b-nav .b-group+.b-group{
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: var(--line);
  }
  .b-nav .b-group.m-03{
    padding-top: 1em;
  }
}
@media screen and (min-width: 768px){
  .b-nav .b-group.m-03{
    padding-top: 0;
    margin-top: -.6em;
  }
}



/*---------------------------

header

---------------------------*/
.b-header{
  display: flex;
  width: 100%;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  pointer-events: none;
}
.b-header .b-siteLogo a{
  display: block;
}
.b-header .b-nav{
  line-height: 1;
}
@media screen and (max-width: 767px){
  .b-header{
    height: 80px;
    align-items: center;
  }
  .b-header .b-siteLogo{
    width: 148px;
    margin-left: 12px;
  }
  .b-header .b-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60px;
    min-width: 60px;
    height: 60px;
    right: 10px;
  }
  .b-header .b-menu span{
    width: 17px;
    height: 2px;
  }
  .b-header .b-menu span:nth-child(2){
    margin: 6px 0;
  }
  .b-header .b-subNav{
    display: flex;
    margin-right: 15px;
  }
  .b-header .b-subNav a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: var(--YELLOW);
    border-radius: 50%;
    font-size: 10px;
    letter-spacing: -.08em;
    font-weight: 500;
    text-align: center;
    position: relative;
  }
  .b-header .b-subNav a span{
    transform: scale(.9) translateY(.2em);
  }
  .b-header .b-subNav a::after{
    content: "";
    display: block;
    width: 10%;
    height: 10%;
    border-bottom: 2px solid var(--PINK);
    border-left: 2px solid var(--PINK);
    position: absolute;
    left: 50%;
    top: 32%;
    transform: translate(-50%,-50%) rotate(-45deg);
  }
  #STAFFING .b-header .b-subNav .e-contact{
    display: none;
  }
  #COMPANIS .b-header .b-subNav .e-entry{
    display: none;
  }
}
@media screen and (min-width: 768px){
  .b-header{
    justify-content: space-between;
    align-items: flex-start;
  }
  .b-header .b-siteLogo{
    width: 25%;
    max-width: 225px;
    min-width: 180px;
    margin: 20px auto 0 30px;
  }
  .b-header .b-nav .e-logo,
  .b-header .b-nav li:not(.m-pc),
  .b-header .b-nav .b-group.m-02,
  /*.b-header .b-nav .b-group.m-03,*/
  .b-header .b-nav .e-group-mds,
  .b-header .b-menu{
    display: none;
  }
  .b-header .b-nav .b-lst,
  .b-header .b-nav a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 17px;
    margin: 0 !important;
    padding: 0 !important;
  }
  .b-header .b-nav .b-lst{
    justify-content: flex-end;
    background: #fff;
    filter: var(--shadow);
  }
  .b-header .b-nav .b-group.m-03 .b-lst{
    background: none;
    border-top: 0 none;
  }
  .b-header .b-nav li{
    margin: 0;
  }
  .b-header .b-nav a{
    width: 240px;
    height: 80px;
    padding-left: .5em;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
  }
  .b-header .b-nav .m-entry a,
  .b-header .b-nav .m-contact a{
    background: var(--YELLOW);
    filter: var(--shadow);
  }
  .b-header .b-nav a span{
    display: block;
    width: 1.6em;
    height: 1.6em;
    background: #fff;
    border-radius: 50%;
    margin-left: .5em;
    position: relative;
  }
  .b-header .b-nav a span::after{
    content: "";
    display: block;
    width: 20%;
    height: 20%;
    border-bottom: 2px solid var(--PINK);
    border-left: 2px solid var(--PINK);
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%,-50%) rotate(-45deg);
  }
  
  #DEFAULT .b-header .b-nav .b-group.m-03,
  #STAFFING .b-header .b-nav .b-group.m-03{
    display: none;
  }
  #COMPANIS .b-header .b-nav .b-group.m-01{
    display: none;
  }
}
.b-header .b-siteLogo,
.b-header .b-nav,
.b-header .b-menu{
  pointer-events: auto;
}
/* menu open */
.b-header .b-menu{
  cursor: pointer;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
}
.b-header .b-menu span{
  transition: .2s all;
  transform-origin: center center;
  background: var(--basicColor);
}
.b-header .b-menu span:nth-child(2){
  transition: .2s all;
  transform-origin: left center;
}
.b-header.open .b-menu span:nth-child(1){
  transform: translateY(2px) rotate(45deg) scale(1.3 , 1);
}
.b-header.open .b-menu span:nth-child(3){
  transform: translateY(-2px) rotate(-45deg) scale(1.3 , 1);
}
.b-header.open .b-menu span:nth-child(2){
  transform: scale(0 , 0);
  margin: 0;
}
/* menu open nav*/
@media screen and (max-width: 767px){
  .b-header .b-nav{
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    background:var(--YELLOW);
    height: 100dvh;
    opacity: 0;
    transition: .3s all;
    transform: translateY( -50px );
  }
  .b-header:not(.open) .b-nav{
    pointer-events: none;
  }
  .b-header.open .b-nav{
    opacity: 1;
    transform: translateY( 0 );
  }
  .b-header .b-nav .inner{
    height: calc(100dvh - 90px);
    overflow-y: scroll;
    padding: 25px;
    padding-bottom: 40px;
    margin-top: 90px;
  }
  .b-header .b-nav .e-logo{
    position: absolute;
    top: 15px;
    left: 15px;
  }
}

/*---------------------------

main

---------------------------*/
.b-mainInner,
.b-mainTxts,
.b-mainTxts .b-item,
.b-mainImages .e-img{
  height: 100%;
}
/* b-main -----------------*/
.b-main{
  position: relative;
}
body.noMain .b-main{
  display: none;
}
@media screen and (max-width: 767px){
  main:not(.home) .b-main{
    /* height: min( 118.6vw,510px); */
    height: 510px;
  }
}
@media screen and (min-width: 768px){
  main:not(.home) .b-main{
    height: 500px;
  }
}
/* mainTxts */
.b-mainTxts .e-catch{
  position: absolute;
  z-index: 2;
  transform: translateY(calc(-130px));
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}
@media screen and (max-width: 767px){
  .b-mainTxts .e-catch{
    width: min(80vw,260px);
    top: min(90px);
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px){
  .b-mainTxts .b-item{
    width: 50%;
    position: relative;
  }
  .b-mainTxts .e-catch{
    width: min( 45%,375px);
  }
}
/* mainImages */
.b-mainImages .e-img{
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px){
  main:not(.home) .b-mainImages .e-img{
    width: 100%;
    overflow: hidden;
  }
  main:not(.home) .b-mainImages .e-img img{
    object-fit: cover;
    object-position: bottom center;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px){ 
  .b-mainImages .e-img{
    width: 1920px;
  }
}
/* mainNav*/
.b-mainNav{
  width: 100%;
  position: absolute;
  z-index: 30;
  bottom: 0;
}
.b-mainNav li{
  display: block;
  text-align: center;
}
.b-mainNav a,
#DEFAULT .b-mainImages .b-mainNav li{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  text-align: center;
  font-size: min(7.5vw,30px);
  font-weight: 500;
  color: #fff;
}
#STAFFING main:not(.home) .b-mainTxts .m-companis,
#STAFFING main:not(.home) .b-mainImages .m-companis{
  display: none;
}
#COMPANIS main:not(.home) .b-mainTxts .m-staffing,
#COMPANIS main:not(.home) .b-mainImages .m-staffing{
  display: none;
}
.b-mainNav .m-staffing a,
#DEFAULT .b-mainImages li.m-staffing{
  background: var(--bgS-alfa);
}
.b-mainNav .m-companies a,
#DEFAULT .b-mainImages li.m-companies{
   background: var(--bgC-alfa);
}
#COMPANIS .b-mainNav .m-staffing a{
  background: rgba(255,255,255,.8);
  color: var(--PINK);
}
#STAFFING .b-mainNav .m-companies a{
  background: rgba(255,255,255,.8);
  color: var(--BLUE);
}
@media screen and (max-width: 767px){
  .b-mainNav li{
    height: 50px;
  }
  main:not(.home) .b-mainNav a{
    font-size: min(5vw,22px);
  }
}
@media screen and (min-width: 768px){
  .b-mainNav{
    display: flex;
    height: 80px;
  }
  .b-mainNav li{
    width: 50%;
  }
}

/* scroll */
@media screen and (max-width: 767px){
  .e-scroll{
    width: 60px;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 130px;
    filter: drop-shadow( 0 2px 3px rgba(0,0,0,1));
  }
}
@media screen and (min-width: 768px){
  .e-scroll{
    display: none;
  }
}
/* STAFFING */
@media screen and (max-width: 767px){
  
}
@media screen and (min-width: 768px){
  #STAFFING .b-mainImages .e-img{
    right: 0;
  }
}
/* COMPANIS */
@media screen and (max-width: 767px){
  
}
@media screen and (min-width: 768px){
  #COMPANIS .b-mainTxts .b-item{
    margin-left: auto;
    margin-right: 0;
  }
  #COMPANIS .b-mainImages .e-img{
    left: 0;
  }
}

/* contents ----------------------*/
.b-contents p+p{
  margin-top: 1.5em;
}
@media screen and (max-width: 767px){
  .b-contents{
    margin-top: 50px;
  }
  .noMain .b-contents{
    padding-top: 70px;
  }
}
@media screen and (min-width: 768px){
  .b-contents{
    margin-top: 135px;
  }
  .noMain .b-contents{
    padding-top: 50px;
  }
}
/* e-mds */
.b-contents .e-mds{
  padding-left: 1.2em;
  font-weight: 500;
  position: relative;
}
.b-contents .e-mds span{
  display: inline-block;
}
.b-contents .e-mds::before{
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.b-contents.m-staffing .e-mds::before,
.b-contents.m-recruit .e-mds::before{
  background: url(../images/mds-s.svg) center center / contain no-repeat;
}
.b-contents.m-companis .e-mds::before{
  background: url(../images/mds-c.svg) center center / contain no-repeat;
}
@media screen and (max-width: 767px){
  .b-contents .e-mds{
    font-size: 25px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px){
  .b-contents .e-mds{
    font-size: 28px;
    margin-bottom: 50px;
  }
}

/* e-mds m-min01 */
.b-contents .e-mds.m-min01{
  margin-bottom: 30px;
  padding-left: 0;
}
.b-contents .e-mds.m-min01::before{
  display: none;
}
@media screen and (max-width: 767px){
  .b-contents .e-mds.m-min01{
    font-size: 22px;
  }
}
@media screen and (min-width: 768px){
  .b-contents .e-mds.m-min01{
    font-size: 24px;
  }
}

/* b-btns */
.b-btns{
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.b-btns a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 80px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  filter: var(--shadow);
  position: relative;
}
.b-btns a::after{
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: center center;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.b-contents.m-staffing .b-btns a,
.b-contents.m-recruit .b-btns a{
  background: var(--PINK);
}
.b-contents.m-companis .b-btns a{
  background: var(--BLUE);
}
@media screen and (min-width: 768px){
  .b-btns{
    margin-top: 60px;
  }
}

/* e-marker */
.e-marker{
  position: relative;
  padding: 0 .2em;
}
.e-marker::after{
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  position: absolute;
  left: 0;
  bottom: -.1em;
  z-index: -1;
}
.m-staffing .e-marker{}
.m-companis .e-marker::after{
  background: #93D8F6;
}


/*---------------------------

footer

---------------------------*/

.b-footer .b-tels{
  width: 100%;
  text-align: center;
  border-bottom: var(--line);
  line-height: 1.5;
  padding-bottom: 40px;
  margin-bottom: 45px;
}
.b-footer .b-tels dt{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: min(5.5vw,20px);
  font-weight: 500;
}
.b-footer .b-tels dt::before,
.b-footer .b-tels dt::after{
  content: "";
  display: block;
  width: 1.2em;
  height: 2px;
  margin-bottom: 2px;
  background: var(--basicColor);
}
.b-footer .b-tels dt::before{
  margin-right: .5em;
  transform-origin: bottom right;
  transform: rotate(55deg);
}
.b-footer .b-tels dt::after{
  margin-left: .5em;
  transform-origin: bottom left;
  transform: rotate(-55deg);
}
.b-footer .b-tels a{
  font-size: min(11vw,38px);
}
.b-footer .b-tels .e-time{
  font-size: min(6vw,20px);
  font-weight: 500;
}
.b-footer .b-tels .e-time .-enNum{
  font-weight: 500;
  font-size: 1.05em;
}

.b-footerBottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: var(--line);
  height: 70px;
}
.b-footerBottom .e-copy{
    font-size: 14px;
}
.b-pagetop{
  position: relative;
}
.b-pagetop::before{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #A3A3A3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.b-pagetop a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 40px;
}
.b-pagetop span{
  display: block;
  width: 15px;
  height: 15px;
  border-top: 1px solid var(--basicColor);
  border-left: 1px solid var(--basicColor);
  transform-origin: center center;
  transform: translate(0,5px) rotate(53deg) skew(15deg);
}
@media screen and (max-width: 767px){
  .b-footer{
    padding-top: 80px;
  }
  .b-footer .container{
    width: 100%;
    padding: 0 25px;
  }
  .b-footer .e-logo{
    margin: 0 auto 50px;
  }
  .b-footerBottom{
    margin-top: 28px;
  }
 .b-pagetop{
    order: 3;
    margin-right: -20px;
  }
}
@media screen and (min-width: 768px){
  .b-footer{
    padding-top: 110px;
    padding-bottom: 10px;
  }
  .b-footer .b-nav{
    display: flex;
    position: relative;
    margin: 0 0 0 auto;
  }
  .b-footer .e-logo{
    width: 200px;
    position: absolute;
    top: 0;
  }
  .b-footer .b-group{
    padding: 0 3em 1em;
  }
  .b-footer .b-group.m-01{
    padding-left: 0;
  }
  .b-footer .b-group.m-03{
    padding-right: 0;
  }
  .b-footer .b-group+.b-group{
    border-left: var(--line);
  }
  .b-footer .e-group-mds .-en{
    font-size: 24px;
    margin-right: .5em;
  }
  .b-footer .b-nav li a[target="_blank"]::after{
    transform: translateY(3px);
  }
  .b-footer .b-group01,
  .b-footer .b-group02{
    border-left: var(--line);
  }
  .b-footer .b-footerBottom{
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px){
  .b-footer .e-logo{
    left: 50%;
    transform: translateX(-50%);
  }
  .b-footer .b-nav{
    justify-content: center;
  }
  .b-footer .b-group{
    margin-top: 120px;
  }
}
@media screen and (min-width: 1025px){
  .b-footer .e-logo{
    left: 0;
  }
  .b-footer .b-group.m-01{
    margin-left: auto;
  }
}

/*---------------------------

form

---------------------------*/

.b-formwrap{
  border-top: var(--formLine);
  line-height: 1.5;
}
.b-formwrap .b-item{
  padding: 40px 0;
  border-bottom: var(--formLine);
}
.b-formwrap .b-item dt,
.b-formwrap .b-item dd{
  font-size: 18px;
}
.b-formwrap .b-item dt{
  display: flex;
  flex-wrap: wrap;
  padding-right: .5em;
  font-weight: 500;
}
.b-formwrap .b-item dt .e-caution{
  width: 100%;
  color: #AD1C23;
  font-size: 14px;
  font-weight: 400;
}
.b-formwrap .b-item .b-addNum{
  font-size: 30px;
}
.b-formwrap .b-item .b-addNum input{
  margin: auto 15px;
  width: 200px;
}
.b-formwrap .b-item .b-addNum .b-search{
  display: inline-block;
  padding: .7em 1.2em;
  background: #E5E6E1;
  border: 1px solid #A3A3A3;
  border-radius: 5px;
  font-size: min( 5.6vw,24px);
  color: #45444E;
  cursor: pointer;
  transition: .3s all;
} 
.b-formwrap .b-item .b-addNum .b-search:hover{
  opacity: .8;
}
.b-formwrap .b-vertical > div+div{
  margin-top: 30px;
}
.b-formwrap .b-itemHorizon .item-select+.item-select{
  margin-left: .8em;
}
.b-formwrap .b-itemHorizon label+label{
  margin-left: 2em;
}
.b-formwrap.m-comfirm .b-item dd{
  font-weight: bold;
}
.b-formwrap a{
  color: var(--blue);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .b-formwrap .b-item dt{
    margin-bottom: 20px;
  }
  .b-formwrap .b-vertical > div+div{
    margin-top: 20px;
  }
  .b-formwrap .b-itemHorizon.m-radio label{
    display: inline-block;
    margin: 0;
    margin-right: 1em;
  }
  .b-formwrap .b-itemHorizon.m-radio label+label{
    margin-top: 10px;
  }
  .b-formwrap .b-itemHorizon.m-ymd label{
    display: inline-block;
    margin: 0;
  }
  .b-formwrap .b-itemHorizon.m-ymd label+label{
    margin-top: 20px;
  }
  .b-formwrap .b-item .b-addNum .b-search{
    width: 200px;
    text-align: center;
    margin-top: 10px;
    margin-left: 40px;
    padding: .7em 0;
  }
}
@media screen and (min-width: 768px){
  .b-formwrap .b-item{
    display: flex;
    align-items: flex-start;
  }
  .b-formwrap .b-item dt{
    width: 15em;
  }
  .b-formwrap .b-item dd{
    width: calc(100% - 13em);
  }
  .b-formwrap .b-vertical > div+div{
    margin-top: 30px;
  }
}
.b-formwrap .b-item.m-subject dd{
  font-size: 1.2em;
  font-weight: 500;
  color: var(--PINK);
}
.b-formwrap .b-textBox.b-pp{
  height: 400px;
  margin-top: 40px;
  /*overflow-y: scroll;*/
}
.b-formwrap .b-textBox.b-pp .b-item{
  border-bottom: none;
}
.b-formwrap .b-textBox.b-pp{
  padding: 0;
}
.b-formwrap .b-textBox.b-privacy{
  background: none;
}
.b-formwrap .b-textBox.b-privacy.m-contect{
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 1em;
}
.b-formwrap .b-textBox .e-endTxt{
  text-align: center;
  padding-bottom: 3em;
}
.mCS-ppScroll.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
  width: 8px;
  background-color: var(--keyColor);
  top: 30px;
  right: 1em;
}
.mCS-ppScroll.mCSB_scrollTools .mCSB_draggerRail{
  background: none;
} 
.e-req{
  display: inline-block;
  width: 15px;
  margin-left: .5em;
  transform: translateY(-8px)
}
.b-formwrap .b-btnWrap{
  text-align: center;
  padding-top: 50px;
}
.b-checkWrap{
  padding-top: 30px;
}
.b-checkWrap .e-check{
  display: flex;
  justify-content: center;
  font-size: min(5vw,22px);
}
.error{
  width: 100%;
}
.error,
.error em{
  font-style: normal;
  font-size: 16px;
  color: #f00;
  font-weight: bold;
  margin-top: .5em;
}
@media screen and (min-width: 768px) {
  .b-checkWrap{
    padding-top: 50px;
    text-align: center;
  }
}

/* parts */
label{
  cursor: pointer;
}
::placeholder{
  color: #AFAFAF;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select{
  background: #fff;
  border: var(--formLine);
  border-radius: 8px;
  font-size: 18px;
  appearance: none;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea{
  width: 100%;
  padding: 1em 1.2em;
}
input[type="text"],
input[type="tel"],
input[type="email"]{
  max-width: 670px;
}

/* textarea */
textarea{
  min-height: calc(8em * 1.55);
}

/* radio checkbox */
input[type="checkbox"],
input[type="radio"]{
  display: inline-block;
  width: 25px;
  min-width: 25px;
  height: 25px;
  margin-right: 5px;
  vertical-align: -6px;
  position: relative;
  background: #fff;
  border: var(--formLine);
  cursor: pointer;
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
}
/* checkbox*/
input[type="checkbox"]{
  border-radius: 3px;
  margin-right: 15px;
}
input[type="checkbox"]:checked::before {
  width: 14px;
  height: 5px;
  border-left: 3px solid var(--keyColor);
  border-bottom: 3px solid var(--keyColor);
  transform: translate(-50% , -65%) rotate(-45deg) 
}
.b-contents.m-staffing input[type="checkbox"]:checked::before,
.b-contents.m-recruit input[type="checkbox"]:checked::before {
  border-left: 3px solid var(--PINK);
  border-bottom: 3px solid var(--PINK);
}
.b-contents.m-companis input[type="checkbox"]:checked::before {
  border-left: 3px solid var(--BLUE);
  border-bottom: 3px solid var(--BLUE);
}
/* radio */
input[type="radio"]{
  border-radius: 50%;
}
input[type="radio"]:checked::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--keyColor);
  transform: translate(-50% , -50%)
}
.b-contents.m-staffing input[type="radio"]:checked::before,
.b-contents.m-recruit input[type="radio"]:checked::before{
  background: var(--PINK);
}
.b-contents.m-companis input[type="radio"]:checked::before {
  background: var(--BLUE);
}

/* select */
select{
  padding: .8em 4em .8em 1.3em;
  appearance: none;
}
@media screen and (max-width: 767px) {
  select{
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  select{
    min-width: 400px;
  }
}
.m-ymd select{
  width: auto;
  min-width: auto;
}
@media screen and (max-width: 767px) {
  .m-ymd select{
    width: 8em;
  }
}
.item-select{
  position: relative;
  margin-right: .4em;
}
.item-select::after{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #A3A3A3;
  border-bottom: 3px solid #A3A3A3;
  position: absolute;
  top: 50%;
  right: 20px;
  transform-origin: center center;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* btn */
button.b-btn,
button.b-btn.-next,
input.b-btn,
input.b-btn.-next{
  width: 100%;
  max-width: 400px;
  height: 80px;
  border-radius: 15px;
}
button.b-btn span,
input.b-btn{
  font-size: 22px;
}
button.b-btn,
input.b-btn{
  background: var(--YELLOW);
}
button.b-btn.-back,
input.b-btn.-back{
  background: #AAAAAA;
  color: #fff;
}

.b-formWrapper .b-btnWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.b-formWrapper.m-comfirm .b-btnWrap form{
  margin-top: 55px;
}
.b-formWrapper .b-btnWrap form+form{
  margin: 5px;
}
button.b-btn.-prev,
input.b-btn.-prev{
  border: 0 none;
  background: #ccc;
}
button.b-btn.-prev::after,
input.b-btn.-prev::after{
  display: none;
}

button.b-btn[disabled="disabled"],
input.b-btn[disabled="disabled"]{
  background: #ccc;
}
button.b-btn[disabled="disabled"]::after,
input.b-btn[disabled="disabled"]::after{
  display: none;
}
button.b-btn[disabled="disabled"] span,
input.b-btn[disabled="disabled"]{
  color: #eee;
}

.wpcf7-spinner{
  display: none !important;
}

/*---------------------------

comfirm

---------------------------*/
@media screen and (max-width: 767px){
  .b-formContents.m-comfirm .e-mds+.e-txt{
    margin-bottom: 30px;
  }
  .b-formContents .b-btnWrap input+input{
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px){
  .b-formContents.m-comfirm .e-mds{
    margin-bottom: 40px;
  }
  .b-formContents.m-comfirm .e-mds+.e-txt{
    margin-bottom: 30px;
  }
  .b-formContents .b-btnWrap input{
    max-width: min(35vw, 400px);
  }
  .b-formContents .b-btnWrap input+input{
    margin-left: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px){
  .b-formContents .b-btnWrap input+input{
    margin-top: : 30px;
  }
}