@charset "UTF-8";
main section * {
    font-feature-settings: normal;
}

/* フロー図 */
.form_flow {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}
.form_flow > div {
    margin: 0 2rem;
    text-align: center;
}
.form_flow .num {
    width: 48px;
    height: 48px;
    color: var(--color-maintxt_thin);
    background-color: #F5F1EB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
	font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}
.form_flow .num::before {
    content: "";
    width: 200%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 100%;
    background-color: var(--color-border1);
    z-index: -1;
}
.form_flow > div:last-child .num::before {
    content: none;
}
.form_flow .current .num {
    background-color: var(--color-brandGr);
    color: #fff;
}

.form_flow .num + p {
    font-size: var(--font-size14px);
	color: var(--color-maintxt_thin);
    margin-top: .5rem;
}
.form_flow .current .num + p {
    color: var(--color-brandGr);
}

.formArea_wrap dt {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* 必須・任意 */
.formArea_dl .requiredTxt {
    font-size: var(--font-size14px);
    color: #fff;
    background-color: #E62A2B;
    padding: .5rem .8rem;
    border-radius: 55px;
    margin-right: 1rem;
    line-height: 1;
}
.formArea_dl .optional {
    font-size: var(--font-size14px);
    color: var(--color-maintxt);
    background-color: #ECEAE7;
    padding: .5rem .8rem;
    border-radius: 55px;
    margin-right: 1rem;
    line-height: 1;
}

/*------------------------
問い合せ：入力
------------------------*/
button {
    padding: 0;
    border: 0;
    background-color: transparent;
    transition: .3s;
    cursor: pointer;
}
input[type="button"],input[type="submit"] {
    -webkit-appearance: none;
    cursor: pointer;
}
.formArea_wrap input::placeholder,
.formArea_wrap textarea::placeholder {
    color: #ccc;
}
.formArea_wrap input,
.formArea_wrap textarea {
    background-color: transparent;
    /* background-color: var(--color-bg); */
    border: 1px solid #ddd;
    padding: .8em;
    width: 100%;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.6;
}
.formArea_wrap input:focus,
.formArea_wrap input:focus-visible,
.formArea_wrap textarea:focus {
    outline: 1px solid var(--color-brandGr);
}

.formArea_wrap input:-webkit-autofill,
.formArea_wrap textarea:-webkit-autofill {
    /* border: 1px solid #999; */
    -webkit-box-shadow: 0 0 0px 1000px var(--color-bg) inset; /* 背景色（白いシャドウで塗りつぶす） */
    transition: var(--color-bg) 5000s ease-in-out 0s;
}
.formArea_wrap dl,.formArea_wrap table {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.formArea_wrap table {
    margin-bottom: 3rem;
}
.formArea_wrap dd + dd {
    margin-top: 1rem;
}
.formArea_wrap .example {
    margin-top: 1rem;
    color: var(--color-txt1);
}
.formArea_wrap .example a {
    pointer-events: none;
    color: var(--color-txt1);
}



/* チェックボックス  ラジオボタン */
.form_check input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.form_check .wpcf7-form-control {
    align-items: center;
}
.form_check .wpcf7-form-control > * {
    display: block;
}
.form_check .wpcf7-form-control > *:not(:last-child) {
    margin-bottom: 0.75rem;
}
.form_check .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    cursor: pointer;
    line-height: 1.6;
}
.form_check .wpcf7-list-item-label::before {
    content:"";
    display: block;
    min-width: 1.5em;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    transition: .3s;
    box-sizing: border-box;
}
.form_check .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    left: 3px;
    top: 50%;
    opacity: 0;
    transition: .3s;
}
.form_check input[type=checkbox]:checked + .wpcf7-list-item-label::before {
    background-color: var(--color-brandGr);
    border-color: var(--color-brandGr);
}
.form_check input[type="checkbox"] + .wpcf7-list-item-label::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: .4em;
    height: .75em;
    transform: rotate(45deg) translateY(-50%);
    margin-top: -4px;
    transition: .3s;
}
.form_check input[type="radio"] + .wpcf7-list-item-label::before {
    border-radius: 50%;
    transition: .3s;
}
.form_check input[type="radio"]:checked + .wpcf7-list-item-label::before {
    border-color: var(--color-brandGr);
}
.form_check input[type="radio"] + .wpcf7-list-item-label::after {
    width: 1em;
    height: 1em;
    background-color: var(--color-brandGr);
    border-radius: 50%;
    top: 50%;
    left: 0.25em;
    transform: translateY(-50%);
}
.form_check input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}

/* セレクト */
.formArea_wrap select {
  position: relative;
  padding-right: 2em;
  width: 100%;
  border: 1px solid #ddd;
  padding: 1rem 2rem 1rem 1rem;
  border-radius: 3px;
  z-index: 2;
  background-color: transparent;
  -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.formArea_dl .select_wrap {
    position: relative;
    display: block;
}
.formArea_wrap select:focus {
  outline: 1px solid var(--color-brandGr);
}

.formArea_dl .select_wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translate(50%, -50%);
    width:0;
    height:0;
    border-style:solid;
    border-width: .4em .4em 0 .4em;
    border-color: #333 transparent transparent transparent;
    z-index: 5;
}

.formArea_dl tr {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.formArea_dl tr th {
    margin-bottom: 1rem;
}

.formArea_wrap a.txtLink {
    color: var(--color-brandGr);
    text-decoration: underline;
}

.formArea_wrap .policy_link {
    text-align: center;
    line-height: 1.8;
}
@media (min-width: 751px) {
    .w_half {
        width: calc(100% / 2);
    }
}
@media (max-width: 750px) {
    .input-error, .wpcf7-form-control.wpcf7-not-valid {
        font-size: var(--font-size12px);
    }
}


/* プライバシー同意 */
#privacyWrap {
    background-color: #F5F1EB;
    padding: 2.5em;
    position: relative;
}
#privacyWrap .policy_link {
    margin-bottom: 2.5em;
}
#privacyWrap .wpcf7-form-control {
    flex-direction: column;
    display: flex;
    margin-bottom: 2em;
}
#privacyWrap.form_check .wpcf7-list-item-label::before {
    background-color: #fff !important;
}
#privacyWrap.form_check input[type=checkbox]:checked + .wpcf7-list-item-label::before {
    background-color: var(--color-brandGr);
}
#privacyWrap #target-button {
    background-color: var(--color-brandGr);
    width: 100%;
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    border: 1px solid var(--color-brandGr);
}
#privacyWrap #target-button::after {
    content: "";
    width: 1em;
    height: 1em;
    display: inline-block;
    background-image: url(../img/icon/icon_arw_wh.svg);
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: .5em;
    transition: .3s;
}
@media (min-width: 1024px) {
    #privacyWrap #target-button:hover {
        background-color: transparent;
        color: var(--color-brandGr);
    }
    #privacyWrap #target-button:hover::after {
        background-image: url(../img/icon/icon_arw_gr.svg);
    }
}
@media (max-width: 750px) {
    #privacyWrap {
        padding: 1.5em;
    }
    #privacyWrap .policy_link {
        text-align: left;
    }
    #privacyWrap .policy_link br {
        display: none;
    }
}

.wpcf7-response-output {
    display: none;
}

/* 入力エラー */
.input-error, .wpcf7-form-control.wpcf7-not-valid {
    font-size: var(--font-size14px);
    font-weight: normal;
    /* background-color: #E62A2B; */
    /* padding: .5rem .8rem; */
    /* border-radius: 55px; */
    border-color: #E62A2B;
    margin-right: 1rem;
    /* line-height: 1; */
    white-space: nowrap;
}
/* エラーメッセージが表示された際の疑似要素位置ずれ対策 */
.formArea_dl dd .wpcf7-not-valid + .wpcf7-not-valid-tip,
.formArea_dl td .wpcf7-not-valid + .wpcf7-not-valid-tip {
    position: absolute; 
    bottom: -3em; 
    left: 0;
    z-index: 10; 
    white-space: nowrap;
}
.formArea_dl dd .wpcf7-radio.wpcf7-not-valid + .wpcf7-not-valid-tip,
.formArea_dl dd .wpcf7-checkbox.wpcf7-not-valid + .wpcf7-not-valid-tip{
    bottom:-1em;
}
.formArea_dl dd .wpcf7-select.wpcf7-not-valid + .wpcf7-not-valid-tip {
    bottom: -3.4em; 
}
.formArea_dl dd .wpcf7-textarea.wpcf7-not-valid + .wpcf7-not-valid-tip {
    bottom: -1.6em; 
}
.formArea_dl .rc_y_m_d_wrap .wpcf7-select.wpcf7-not-valid + .wpcf7-not-valid-tip {
    bottom: -3em; 
}
@media (max-width: 750px) {
    .formArea_dl .rc_y_m_d_wrap .wpcf7-select.wpcf7-not-valid + .wpcf7-not-valid-tip {
        bottom: -12em; 
    }

}

.input-error {
    outline: 1px solid #E62A2B;
    background-color: #FDE5E9;
}

.wpcf7-not-valid-tip {
    color: #E62A2B;
   /*  margin-top: .8rem; */
    display: block;
}

#privacyWrap .wpcf7-not-valid {
    margin-bottom: 0;
}
#privacyWrap .wpcf7-not-valid-tip {
    text-align: center;
    margin-bottom: 1rem;
}

/*------------------------
問い合せ：確認
------------------------*/
/* .form_confirmation dl {
    border-bottom: 1px solid var(--color-border1);
}
.form_confirmation dd:not(.y_m_d_wrap) > div:not(:last-child) {
    margin-bottom: 1rem;
} */
.form_confirmation .border_deco {
    margin-bottom: 2em;
}
.form_confirmation dl + .border_deco {
    margin-top: 2.5em;
}
/* .contact_back {
    margin-top: 2.5rem;
} */

.wpcf7cp-container {
    display: flex;
    flex-direction: column;
}
.wpcf7cp-form-hide {
    display: none !important;
}

div#wpcf7cpcnf {
    position: relative;
}

div#wpcf7cpcnf table {
    width: 100%;
    border-top: 1px solid var(--color-border1);
}
div#wpcf7cpcnf tr{
    display: flex;
    flex-direction: column;
    text-align: left;
}
div#wpcf7cpcnf tr th{
   padding: 1rem 0;
}
div#wpcf7cpcnf tr td {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border1);
}

div#wpcf7cpcnf  .wpcf7cp-btns {
    background-color: #F5F1EB;
    padding: 2.5em;
    margin-top: 2.5em;
    z-index: 10;
    display: flex;
    flex-direction: column-reverse;
}
div#wpcf7cpcnf  .wpcf7cp-btns > * {
    width: 100%;
}
div#wpcf7cpcnf .wpcf7cp-btns .wpcf7cp-cfm-submit-btn {
    background-color: var(--color-brandGr);
    color: #fff;
    padding: .8em;
    margin-bottom: 2em;
    display: block;
    text-align: center;
}
div#wpcf7cpcnf .wpcf7cp-btns .wpcf7cp-cfm-edit-btn {
    text-decoration: underline;
    margin: 0;
}

div#wpcf7cpcnf tr:last-child {
    display:none;
}



/*------------------------
問い合せ：完了
------------------------*/

.form_sent * {
    font-feature-settings: normal;
}
.form_sent h2 {
    font-size: var(--font-size24px);
}
.form_sent h2 + p {
    margin: 2.5em 0;
}
.form_sent .bg {
    background-color: #F5F1EB;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}
.form_sent .bg ul {
    margin-top: 1.5em;
}
.form_sent .bg li {
    margin-bottom: .5rem;
    padding-left: 1em;
    position: relative;
    line-height: 1.6;
}
.form_sent .bg li::before {
    content: "●";
    font-size: .6em;
    color: var(--color-brandGr);
    position: absolute;
    top: .55em;
    left: 0;

}
.form_sent .bg li:last-child {
    margin-bottom: 0;
}
.form_sent .btn_bgGr a {
    margin: auto;
}
@media (max-width: 750px) {
    .contTopTtl .form_sent h2 + p {
        margin-bottom: 1rem;
    }
    .form_sent .bg {
        padding: 1rem;
    }
    .contList .bg h3 {
        margin-bottom: 1rem;
    }
}


/*------------------------
採用情報：エントリー
------------------------*/
.border_deco h2 {
    font-size: var(--font-size24px);
}
.entry_form .border_deco {
    margin-top: 2.5em;
}
.entry_form .border_deco h2 + p {
    margin: 2em 0 1.5em;
}
.entry_form .border_deco .btn_bgGr a {
    margin: auto;
}


/*------------------------
協力会社様応募フォーム
------------------------*/
.apply_form .border_deco h2 {
    margin-bottom: 1.3em;
}
.apply_form_bg {
    background-color: #F5F1EB;
    padding: 2em;
    margin-bottom: 2em;
}
.apply_form_bg dl:last-child,.apply_form_bg table:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.apply_form_bg input {
    background-color: #fff;
}
.apply_form_bg select {
    background-color: #fff;
}
.num_people {
    display: flex;
    align-items: center;
    gap: 1em;
}
.num_people input {
    width: 8em;
}


.y_m_d_wrap {
    display: flex;
    align-items: center;
    gap: 1em;
}
.y_m_d_wrap > div {
    display: flex;
    align-items: center;
    gap: 1em;
}
.y_m_d_wrap .select_wrap {
    border-radius: 3px;
}
.y_m_d_wrap select {
    padding: .6rem 3rem .6rem 1rem;
}

/* 確認画面 */
.form_confirmation .y_m_d_wrap {
    gap: 0;
}
.form_confirmation .apply_form_bg dl {
    padding-bottom: 1.5rem;
}


@media (max-width: 750px) {
    .apply_form .bg {
        padding: 1.5em;
    }
    .num_people input {
        width: 50%;
    }
    .y_m_d_wrap {
        flex-wrap: wrap;
    }
    .y_m_d_wrap > div {
        width: 100%;
    }
    .y_m_d_wrap .select_wrap {
        width: calc(100% - 2em);
    }
    .form_confirmation .y_m_d_wrap > div {
        width: auto;
    }
}


.y_m_d_wrap.wpcf7-not-valid select {
    border-color: #E62A2B;
}
