<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

form .field--type-datetime h4.label,
form .form-item label:not(.option),
form .form-item legend .fieldset-legend{
	font-weight: 600;
	color:var(--first-color);
	font-size:1.3rem;
	margin-bottom: 0.5rem;
  /* display: block;	 */
}
select, .fieldgroup select,
textarea, input[type]{
	font-size:1.3rem;
}
.form-actions input[type="submit"]{
	display: inline-block;
  font-weight: 600;
  color: var(--white-color);
  text-align: center;
  vertical-align: middle;
  background-color: var(--red-btn-color);
  border: none;
  padding: 0 40px;
  font-size: 1.4rem;
  line-height: 40px;
  border-radius: 0px;
	height: 40px;
	cursor: pointer;
}
.form-actions input[type="submit"]:hover{
	background-color: var(--red-btn-hover-color);
}


.form-checkboxes .form-item,
.form-radios .form-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.field--type-datetime .form-item{
  margin-top:0;
}
.form-required::after {
  box-sizing: border-box;
  display: inline-block;
  min-width: 42px;
  padding: 0 7px;
  border: 1px solid #ef2e24;
  border-radius: 8px / 50%;
  color: #ef2e24;
  font-size: 1.1rem;
  text-align: center;
  background-image: none;
  content:"必須";
  height: 17px;
  line-height: 17px;
  margin-left: 5px;
}
textarea, input[type="text"], input[type="email"], input[type="date"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"]{
  margin-bottom:8px;
}
#edit-actions{
  text-align: center;
}
.field-group-html-element.flex{
  display: flex;
  gap:20px;
}
.description {
  margin-top: 10px;
  padding: 10px;
  background: #EAF2F8;
  border-radius: 5px;
  border: 1px solid #D4E6F1;
  color: #2471A3;
}
@media screen and (max-width: 767.9px) {
  .field-group-html-element.flex{
    flex-wrap: wrap;
    gap:5px;
  }
}

/* *************************************************************************************
 * Customize
 ************************************************************************************* */
/* webform progress */
.webform-progress .progress-marker::before {
  padding: 0;
}

/* フォーム */
form .form-wrapper {
  margin: 0 0 30px;
}

form .form-wrapper &gt; .form-item &gt; label {
  display: flex;
  align-items: flex-end;
  font-size: 1.3rem;
}

form .form-wrapper &gt; fieldset &gt; legend {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.field-group-html-element.flex {
  flex-wrap: wrap;
  gap: 0 20px;
}

.form-item {
  margin: 0;
}

input,
select {
  width: 100%;
  background: #fff;
  padding: 8px;
  margin: 0;
  border: 1px solid #a6a6a6!important;
  border-radius: 3px;
  height: 40px;
}

input.form-file {
  box-sizing: border-box;
  height: auto;
}

textarea, input[type="text"], input[type="email"], input[type="date"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"] {
  margin: 0;
}


form .field--type-string,
form .field--type-list-integer {
  width: calc((100% - 20px) / 2);
}

form .field--type-list-integer:has(.form-radios) {
  width: 100%;
}

@media screen and (max-width: 767px) {
  form .field--type-string,
  form .field--type-list-integer {
    width: 100%;
  }
  
  form .field-group-html-element.flex {
    gap: 0 10px;
  }
  
  form .field-group-html-element.flex .field--type-string,
  form .field-group-html-element.flex .field--type-list-integer {
    width: calc((100% - 10px) / 2);
  }
}

/* カレンダー */
form .field--type-datetime {
  width: calc((100% - 20px) / 2);
}
form .field--type-datetime h4 {
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  font-size: 1.3rem;
}
form .field--type-datetime .form-item {
  width: 100%;
}

@media screen and (max-width: 767px) {
  form .field--type-datetime {
    width: 100%;
  }
}


/* ラジオボタン＆チェックボックス */
.form-radios,
.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-radios .form-item,
.form-checkboxes .form-item {
  width: calc((100% - 15px * 3) / 4);
  margin: 0!important;
}
@media screen and (max-width: 991px) {
  .form-radios .form-item,
  .form-checkboxes .form-item {
    width: calc((100% - 15px * 2) / 3);
  }
}
@media screen and (max-width: 767px) {
  .form-radios,
  .form-checkboxes {
    gap: 10px;
  }
  .form-radios .form-item,
  .form-checkboxes .form-item {
    width: calc((100% - 10px * 1) / 2);
  }
}

/* ラジオボタン */
.form-radios {
  position: relative;
}

.form-radios input {
  /* position: absolute;
  width: 1px;
  height: 1px;
  top: 45%;
  left: 20px; */

  display: none;
}

.form-radios label {
  margin-bottom: 0;
  width: 100%;
  height: 30px;
  border: 1px solid #ccc;
  padding: 12px 16px 12px 45px;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: bold;
  /* color: #333; */
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.form-radios label:before,
.form-radios label:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.form-radios label:before {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 10px;
}

.form-radios label:after {
  background-color: var(--main-color);
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 15px;
}


.form-radios input:checked+label {
  background-color: rgba(0, 149, 216, .04);
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.form-radios input:checked+label:before {
  border: 1px solid var(--main-color);
}
.form-radios input:checked+label:after {
  opacity: 1;
}

.fieldset-wrapper:has(.form-radios #edit-field-etrex-int-type-2:checked) .request-wrapper.hope-warpper,
.fieldset-wrapper:has(.form-radios #edit-field-etrex-int-type-3:checked) .request-wrapper.hope-warpper{
  display:none;
}

/* チェックボックス */
.form-checkboxes {
  position: relative;
}

.form-checkboxes input {
  /* position: absolute;
  width: 1px;
  height: 1px;
  top: 45%;
  left: 20px; */
  
  display: none;
}
.form-checkboxes label {
  margin-bottom: 0;
  width: 100%;
  height: 30px;
  border: 1px solid #ccc;
  padding: 12px 12px 12px 45px;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: bold;
  /* color: #333; */
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.form-checkboxes label:before,
.form-checkboxes label:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.form-checkboxes label:before {
  background: #fff;
  border: 1px solid #ccc;
  content: '';
  display: block;
  height: 16px;
  left: 12px;
  position: absolute;
  top: 50%;
  width: 16px;
  border-radius: 2px;
}

.form-checkboxes label:after {
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  content: '';
  display: block;
  height: 12px;
  left: 18px;
  margin-top: -9px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
  border-radius: 0;
}


.form-checkboxes input:checked+label {
  background-color: rgba(0, 149, 216, .04);
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.form-checkboxes input:checked+label:before {
  border: 1px solid var(--main-color);
}
.form-checkboxes input:checked+label:after {
  opacity: 1;
}


/* 真偽値 */
form .field--type-boolean .form-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;;
  gap: 15px 10px;
}

form .field--type-boolean .form-item input {
  width: 15px;
  height: 15px;
  cursor: pointer;
}
form .field--type-boolean .form-item label {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
form .field--type-boolean .form-item .description {
  width: 100%;
  margin: 0;
}

/* ボタン */
form .form-actions {
  margin-top: 40px;
}
form .form-actions input {
  max-width: 300px;
}


/* 住所（郵便番号、都道府県、市区町村、番地・建物名） */
form div[id*="-postal-code-wrapper"] {
  width: 100%;
}

form div[id*="-postal-code-wrapper"] .js-form-item {
  width: calc((100% - 20px) / 2);
}

form div[id*="-prefecture-wrapper"],
form div[id*="-city-wrapper"] {
  width: calc((100% - 20px) / 2);
}

form div[id*="-address-wrapper"] {
  width: 100%;
}

@media screen and (max-width: 767px) {
  form div[id*="-postal-code-wrapper"],
  form div[id*="-address-wrapper"] {
    width: 100%!important;
  }
  
  form div[id*="-postal-code-wrapper"] .js-form-item {
    width: 100%;
  }
}

/* submitボタン */
.form-actions input[type="submit"] {
  background-color: #fb4848!important;
  border: 2px solid #fb4848!important;
  border-radius: 3px;
  transition: all .3s;
}
@media (hover: hover) {
  .form-actions input[type="submit"]:hover {
    background-color: #ff9048!important;
    border: 2px solid #ff9048!important;
  }
}

.form-actions input[type="submit"].button--secondary {
  background-color: #efefef!important;
  border: 2px solid #aaa!important;
  color: #333;
}

/* リセットボタン */
@media (hover: hover) {
  .form-actions input[type="submit"].button--secondary:hover {
    background-color: #aaa!important;
    color: #333!important;
  }
}

.red_notes{
  color: #ef2e24;
}

/* *****************************************************************
 * 求職者プロフィール プロフィール編集
 ***************************************************************** */
form.profile-form {
  padding: 40px 30px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form.profile-form #edit-group-profile3 {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid rgba(1, 87, 161, .7);
  border-radius: 3px;
}
form.profile-form #edit-group-profile3 &gt; legend span {
  font-size: 1.8rem;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  form.profile-form {
    padding: 30px 15px 20px;
  }
  form.profile-form #edit-group-profile3 {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* *****************************************************************
 * 求職者プロフィール アカウント情報編集
 ***************************************************************** */
form.user-form {
  padding: 40px 30px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form.user-form &gt; .form-wrapper &gt; .form-item {
  margin-bottom: 40px;
}

.js-form-item-pass &gt; .form-item {
  margin-bottom: 40px;
}
.js-form-item-pass &gt; .form-item.confirm-parent {
  margin-bottom: 10px;
}

.password-confirm-message {
  margin-top: 5px;
}
.password-confirm-message[style="visibility: hidden;"] {
  display: none;
}

@media screen and (max-width: 767px) {
  form.user-form {
    padding: 30px 15px 20px;
  }
}




/* *****************************************************************
 * ログイン
 ***************************************************************** */
form.user-login-form .form-item {
  margin-bottom: 30px;
}
form.user-login-form .form-item label {
  display: flex;
  align-items: center;
}
form.user-login-form .form-actions {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  form.user-login-form {
    padding: 30px 30px 20px!important;
  }
}



/* *****************************************************************
 * 個人様／企業様　お問い合わせフォーム（共通）
 ***************************************************************** */
 .path-webform h1.page-title::before {
  display: none !important;
}

.path-webform h1.page-title {
  padding: 0 !important;
  text-align: center !important;
}

form.webform-submission-form .form-item:not(.form-type-radio) {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .webform-submission-contact-form,
  .webform-submission-company-contact-form {
    max-width: 750px;
    width: 100%!important;
    /*margin-left: 0!important;*/
    margin-right: auto!important;
  }
}


.path-webform form .webform-actions{
  font-size: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  height: 100%;
}



/* *****************************************************************
 * 個人様　お問い合わせフォーム
 ***************************************************************** */
form.webform-submission-contact-form .form-radios .form-item {
  width: calc((100% - 15px * 2) / 3);
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  form.webform-submission-contact-form .form-radios .form-item {
    width: calc((100% - 15px * 1) / 2);
  }
}


form.webform-submission-contact-form &gt; .form-item &gt; label,
form.webform-submission-contact-form .fieldset-wrapper &gt; .form-item &gt; label {
  display: flex;
  align-items: flex-end;
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}

form.webform-submission-contact-form &gt; fieldset &gt; legend {
  display: flex;
  align-items: flex-end;
  font-size: 1.3rem;
  margin-bottom: 0.05em;
}

form.webform-submission-contact-form .form-item.webform-radios-other-input {
  margin-top: 15px;
  width: 100%!important;
}



/* *****************************************************************
 * 企業様　お問い合わせフォーム
 ***************************************************************** */
form.webform-submission-form &gt; .form-item &gt; label,
form.webform-submission-form .fieldset-wrapper &gt; .form-item &gt; label,
form.webform-submission-form fieldset legend {
  display: flex;
  align-items: flex-end;
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}



/* *****************************************************************
 * 問い合わせフォームpreview
 ***************************************************************** */
.webform-preview + .form-actions.webform-actions{
  display: flex;
  flex-direction: column-reverse;
}

/*戻るボタン*/
.contact-complete__link .component-button {
  height: 30px;
  border-radius: 120px;
  line-height: 30px;
  padding: 0px 20px;
  font-size: 1.1rem;

  display: inline-block;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
  margin-top: 10px;
}
.contact-complete__link .component-button:hover {
  background-color: #fff !important;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}


/* *****************************************************************
 * 会員登録
 ***************************************************************** */
body.path-register form.custom-register-form .form-type-password-confirm .password-parent {
  margin-bottom: 40px;
}
body.path-register form.custom-register-form .form-type-password-confirm label {
  display: flex;
  align-items: flex-end;
  font-size: 1.3rem;
}



/* *****************************************************************
 * パスワード再設定
 ***************************************************************** */
form.user-pass .form-item &gt; label {
  display: flex;
  align-items: flex-end;
  font-size: 1.3rem;
}



/* WEBフォーム ***********/
body.path-webform .form-item input.error,
body.path-webform .form-item textarea.error,
body.path-webform .form-item select.error {
  border: 2px solid red!important;
}

body.path-webform div[data-drupal-messages]{
  position:fixed;
  top:0;
  z-index:1000;
}
/*お問い合わせ・お申込みフォーム エラー時にLP消す */
body.path-webform form.webform-submission-service-company-contact-form div[data-drupal-messages] + .form-type-processed-text .lp-company{
  display:none;
}


.webform-confirmation .webform-confirmation__message{
  text-align: center;
}

/* 求職者生年月日 ************/
.field--name-field-skp-birth .fieldset-wrapper .container-inline{
  display:flex;
  gap:5px;
}
#edit-field-skp-birth-0,
#edit-entity-seeker-profile-field-skp-birth-0{
  border:none;
  padding:0;
}
form fieldset.profile-section #edit-entity-seeker-profile-field-skp-birth-0 legend span.fieldset-legend{
  font-size:1.3rem;
}
/* 生年月日 年 消す */
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="190"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="191"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="192"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="193"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="194"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="202"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="203"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="204"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="205"],
#edit-entity-seeker-profile-field-skp-birth-0-value-year option[value^="206"]{
    display:none;
}
@media only screen and (max-width : 767px ) { 
  #edit-entity-seeker-profile-field-skp-prefecture{
    font-size:1.6rem
  }
}
/* validation **/
select.error,
input.error {
  border: 2px solid red;
  background-color: #fff0f0;
  position:relative;
}
/* エラー入力 */
.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 4px;
}
#edit-pass--description{
    display:none;
}
/* error */
.form-item input.error,
.form-item textarea.error, 
.form-item select.error{
    background-image:url(/themes/custom/dorazamurai_front/img/form/form-error.svg);
    background-repeat:  no-repeat;           
    background-position:center right 5px;
    background-size:16px;
}
.error-group {
    border: 2px solid red!important;
    padding: 5px;
       background-image:url(/themes/custom/dorazamurai_front/img/form/form-error.svg);
    background-repeat:  no-repeat;           
    background-position:top 5px right 5px;
    background-size:16px;
    background-color: #ffe5e5;
}

/* パスワード表示 **/
.user-form .form-type-password{
    padding-right:40px;
}

.user-form .password-wrapper {
  position: relative;
}

.user-form .toggle-password {
  position: absolute;
  top: 35px;
  right: 0.75rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 0;
     opacity:0.5;
}
/*目玉位置調整*/
.user-form.custom-register-form .toggle-password{
    top: 40px;
}
.toggle-password:hover{
    opacity:1;
}

/* 目玉アイコンで切替 */
.toggle-password::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url('/themes/custom/dorazamurai_front/img/icon/eye-open.svg') no-repeat center center;
  background-size: contain;
}
.toggle-password[data-visible="true"]::before {
  background-image: url('/themes/custom/dorazamurai_front/img/icon/eye-close.svg');
}
.btn.btn-register-line {
    width: 100%;
    height: 50px;
    background: #4cc764 url(/themes/custom/dorazamurai_front/img/icon/line_logo.svg) no-repeat left 10px top 10px;
    background-size: 30px;
    box-sizing: border-box;
    display: block;
    position: relative;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    padding: 0px;
    line-height: 50px;
    border: 1px solid #4cc764;
    margin-bottom: 10px;
}
.mb-3{
  margin-bottom:30px;
}
.text-center{
  text-align: center;
}</pre></body></html>