.grecaptcha-badge {
    display: block;
}

.wpcf7-form{
    margin: auto;
    width:100%;
    text-align: left;
}



input , textarea{
    width: 100%;
}
.submission{
    text-align: center;
}

/** ラジオボタンやチェックボックスを横並びにする*/
.wpcf7-list-item > label{
    display: flex;
    /*align-items: center;*/
}
.wpcf7-list-item > label > span{
    display:inline;
    white-space: nowrap;
}

/**ラジオボタンとチェックボックスの見た目を画像に変えている*/
input[type="radio"]{
    background-repeat: no-repeat;
    background-size:contain;
    width:1rem;
    height: 1rem;
    appearance: none;
    -webkit-appearance: none; /**なぜかこれも書かないとiosで適用されないことがある*/
    border-radius: 0px; /***/
    border:none !important;
    background-color: transparent;
}
input[type="radio"]:not(:checked){
    background-image: url("../images/careers/RadioButton_Circle_01.svg");

}
input[type="radio"]:checked{
    background-image: url("../images/careers/RadioButton_Circle_00.svg");
}

input[type="checkbox"]{
    background-repeat: no-repeat;
    background-size:contain;
    width:1rem;
    height: 1rem;
    appearance: none;
    -webkit-appearance: none; /**なぜかこれも書かないとiosで適用されないことがある*/
    border-radius: 0px;
    border:none !important;
    background-color: transparent;
}
input[type="checkbox"]:not(:checked){
    background-image: url("../images/careers/RadioButton_Square_01.svg");

}
input[type="checkbox"]:checked{
    background-image: url("../images/careers/RadioButton_Square_00.svg");
}

#contents-body > section dt {
    font-size: 1rem;
    width: 100%;
    clear: left;
    text-align: left;
    border: none;
    padding-top: 0;
    margin: 6vh auto -1vh auto;
}

#contents-body > section dd {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    border-top: none;
    padding-top: 0;
    margin-top: 2vh;
    margin-bottom: 2vh;
}
dl.scrEvent{
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
}

/** 送信時にくるくる回るやつをblock要素にして改行しないと、送信などのボタンがズレる*/
span.wpcf7-spinner{
    display: block;
    transform: translate(70vw, 0);
}

/** 以下の3つの指定についてですが、もともと存在したdiv[id^="wpcf7-"] .wpcf7-form という指定は不要であり、
またそれらがあるために優先度が高くなるため、その後の透過させる処理で!important を指定しないと
きれいに書けないという問題が生じたため、input.wpcf7-xxx 以外の部分を削除しました。 20230227 Hikari Asaka */
input.wpcf7-confirm {
    width: 46%;
    background-color: #4b4b4b;
    opacity: 0.8;
    color: #EEEEEE;
    padding: 1vw 0;
    display: inline-block;
    border-color : #b4b4b4;
    border-radius: 1px;
    cursor: pointer;
     margin-top: 5vh;
    transition: opacity .3s ;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden; 
}

input.wpcf7-back {
    width: 46%;
    background-color: #4b4b4b;
    opacity: 0.8;
    color: #EEEEEE;
    padding: 1vw 0;
    display: inline-block;
    border-color : #b4b4b4;
    border-radius: 1px;
    cursor: pointer;
    margin: 5vh 0.5vh auto auto;
    transition: opacity .3s ;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden; 
}

input.wpcf7-submit {
    width: 46%;
    background-color: #4b4b4b;
    opacity: 0.8;
    color: #EEEEEE;
    padding: 1vw 0;
    display: inline-block;
    border-color : #b4b4b4;
    border-radius: 1px;
    cursor: pointer;
    margin: 5vh auto auto 0.5vh;
    transition: opacity .3s ;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden; 
}

 /** 透過させる処理。*/
input.wpcf7-confirm:hover{
    opacity: 0.5; 
}

input.wpcf7-back:hover{
    opacity: 0.5; 
}

input.wpcf7-submit:hover{
    opacity: 0.5; 
}

/**入力ー確認ー送信の画像*/
#form_flow {
    width: 80%;
    margin: 5vh auto auto auto;
}
form.wpcf7-form .wpcf7c-conf {
    background-color: #e0e0e0;
}

.section-title{
    font-size: 1.5rem;
    /* margin: 5vh 0; */
    font-weight: bolder;
    margin-bottom: 5vh;
    margin-top: 8vh;
}

.required{
    font-size: 0.8rem;
    background-color: #a2a2a2;
    color:white;
    border-radius: 5px;
    padding:0 2px;
    margin-left:1rem;
}

.application-complete-title{
    /* 変更前
    font-size: 2rem;
    margin-bottom:2rem;
    margin-top: 5rem;
    line-height: 2.2rem;
    */
    margin-bottom: 30px;
    font-family: var(--ja-font);
    color: #000;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: calc(100 / 1000* 1em);
    line-height: 34px;
    padding-left: 17px;
    position: relative;
}

.application-complete-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 10px;
    height: 10px;
    background-image: url(../images/message/icon-dia.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.application-complete{
    text-align: center;
}

.application-complete-desc{
    margin:1rem;
}

.works{
    margin-top: -3vh;
}

/* 確認画面でプレースホルダーを見えなくする*/
.wpcf7-form input[readonly="readonly"]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: transparent;
  }

.privacy-policy{
    height: 300px;
    background-color: white;
    overflow-y: scroll;
    border: 1px solid #4b4b4b;
    padding: 1px 2px;
}



@media screen and (max-width: 900px) {
    
}

input[type="button"],input[type="submit"] {
    -webkit-appearance: none; /** 憎きiOS君はボタンにも謎のスタイルを適用させてくるのでオフにする*/
}


/**　message.cssより移植　**/
.recruit_seo_body {
  margin: 10vh auto;
  overflow: hidden;
  width: 95%;
}

.recruit_seo_body:first-of-type {
  margin: 0 auto;
}

.recruit_seo_body h4 {
  text-align: left;
  margin-left: 1vw;
}

.recruit_seo p {
  text-align: left;
  margin: 3vh 2vw;
}

.recruit_seo p.strong {
  text-align: right;
}

.recruit_seo > ul#category > li {
  width: 30%;
  border: 1px #9f9f9f solid;
  text-align: center;
  margin: 1vh 1vw;
  cursor: pointer;
  min-height: 14vh;
}

.recruit_seo > img {
  width: 100%;
}


@media screen and (min-width: 900px) {
  .recruit_seo_body {
    clear: both;
  }

  .recruit_seo {
    clear: both;
  }

  .recruit_seo_body {
    margin: 10vh auto !important;
  }

  .recruit_seo_body {
    width: 80% !important;
  }

  .left_recruit {
    width: 60%;
    float: left;
  }

  .right_recruit {
    width: 60%;
    float: right;
  }

  .left_image {
    width: 40%;
    float: left;
  }

  .right_image {
    width: 40%;
    float: right;
  }

  .left_image > img,
  .right_image > img {
    width: 100%;
  }

  ul.game {
    padding-left: 0vw;
  }
}

img {
  width: 100%;
}

.name {
  opacity: 1;
  font-size: 1.5rem;
  padding: 2rem;
}

.recruit_seo > .name > span {
  display: inline-block;
  font-size: 1rem;
  width: 100%;
  margin: 1vh auto;
}

.recruit_seo > .profile {
  border-top: 1px solid #cbcbcb;
}

/**　message.cssより移植ここまで　**/


input[type=text], input[type=email], textarea {
    
}

.grecaptcha-badge {
    display: block;
}

#recruit input.wpcf7-text , #recruit textarea {
    font-size: 18px
    transform: scale(0.8);
    width: 100%;
}



/**span要素がradiobuttonの次の次に来るが、それをうまく指定できないので苦肉の策 main.js参照*/
#recruit input[type=radio].selected_color + *+*{
    background-color: #4b4b4b;
} 

/*名前やメールアドレス*/
#contents-body > div dt {
    font-size: 1rem;
    width: 100%;
    clear: left;
    text-align: left;
    border: none;
    padding-top: 0;
    margin-top: 3vh;
    margin-bottom: 1vh;
    
}

/*お問い合わせ種類の項目*/
#contents-body > div dd {
    font-size: 1rem;
    border-top: none;
    padding-top: 0;
    margin: 0 auto 4rem;
}

#recruit .attention {
    font-size: 0.7rem;
}

#recruit .attention input[type=checkbox] {
    width: 20px;
}


/** 送信時にくるくる回るやつをblock要素にして改行しないと、送信などのボタンがズレる*/
span.wpcf7-spinner{
    display: block;
    transform: translate(70vw, 0);
}

div[id^="wpcf7-"] .wpcf7-form input.wpcf7-confirm {
    width: 48%;
    background-color: #b4b4b4;
    color: #EEEEEE;
    padding: 0.5em 0;
    display: inline-block;
    border-color : #b4b4b4;
    border-radius: 1px;
    cursor: pointer;
}

div[id^="wpcf7-"] .wpcf7-form input.wpcf7-back {
    width: 48%;
    background-color: #b4b4b4;
    color: #EEEEEE;
    padding: 0.5em 0;
    display: inline-block;
    border-color : #b4b4b4;
    border-radius: 1px;
    cursor: pointer;
    
}

div[id^="wpcf7-"] .wpcf7-form input.wpcf7-submit {
    width: 48%;
    background-color: #b4b4b4;
    color: #EEEEEE;
    padding: 0.5em 0;
    display: inline-block;
    border-color : #b4b4b4;
    border-radius: 1px;
    cursor: pointer;
    
}
/**入力ー確認ー送信の画像*/
#form_flow {
    width: 98%;
    margin: 5vh auto;
    
}

form.wpcf7-form .wpcf7c-conf {
    background-color: #e0e0e0;
}

/**ラジオボタンの選択ボタンの幅を指定*/
.wpcf7-radio span.wpcf7-list-item {
    width: %;
}

/**最初の文章にmarginを設ける*/
#recruit-topparag{
    margin: 2em auto 1em auto;
}


/*==============
2024 recruit 
==============*/

:root {
  --en-font: "Libre Baskerville", serif;
  --ja-font: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

body.p-recruit {
  background: none;
  font-family: var(--ja-font);
}

body.p-recruit::before {
  display: none;
}

body.p-recruit main,
body.p-recruit article,
body.p-recruit #contents-body {
  width: 100%;
  margin: 0;
}

.p-recruit a::after {
  display: none;
}

.p-recruit main {
  opacity: 1 !important;
}

.p-recruit__wrapper {
  padding: 134px 20px 0;
}

.p-recruit__title {
  margin-bottom: 30px;
  color: #c7c7c7;
  font-size: 40px;
  letter-spacing: calc(100 / 1000 * 1em);
  line-height: 50px;
  font-family: var(--en-font);
  font-weight: normal;
  text-align: center;
}

.p-recruit__kv {
  margin-bottom: 90px;
  display: flex;
  justify-content: center;
}

.p-recruit__kv img {
  vertical-align: bottom;
  max-width: 1116px;
}

/* content */
.p-recruit__content {
  max-width: 926px;
  margin: 0 auto;
}

.p-recruit__form-title {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1116px;
  margin: 0 auto 60px;
}

.p-recruit__form-title span {
  flex-shrink: 0;
  color: #000;
  font-size: 30px;
  letter-spacing: calc(100 / 1000 * 1em);
  line-height: 37px;
  font-family: var(--en-font);
  font-weight: normal;
  text-align: center;
}

.p-recruit__form-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}

.p-recruit__content-block + .p-recruit__content-block {
  margin-top: 80px;
}

.p-recruit__content-text {
  font-family: var(--ja-font);
  font-size: 14px;
  color: #000;
  font-weight: normal;
  line-height: 26px;
}


@media screen and (min-width: 900px) {
  .p-recruit__wrapper {
    padding-top: 154px;
  }

  .p-recruit__title {
    font-size: 60px;
  }

  .p-recruit__kv {
    margin-bottom: 80px;
  }

  .p-recruit__form-title {
    gap: 30px;
  }

  .p-recruit__content-text {
    font-size: 15px;
  }

  .p-recruit__content-block--image {
    flex-direction: row;
    gap: 24px;
  }

  .p-recruit__content-signature {
    margin-top: 50px;
  }
}
