@charset "UTF-8";

/* ==========================================================================
   お問い合わせフォーム
   ========================================================================== */
.tm {
    text-align: center;
}

.tm span {
    font-size: 1.7rem;
    font-weight: 700;
    transform: rotate(.03deg);
    margin-bottom: 20px;
    display: block;
}

.tm p {
    font-size: 1.1rem;
    transform: rotate(.03deg);
    margin-bottom: 40px;
}

.mail_alert {
    border: solid 4px var(--color-primary);
    background: #fff;
    padding: 30px 40px;
    border-radius: 14px;
    width: 70%;
    margin: 0 auto;
}

.mail_alert .tm_s {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
	
.tm{
	text-align: left;
}

.tm span{
	font-size: 5.6vw;
    font-weight: 700;
    transform: rotate(.03deg);
    margin-bottom: 20px;
	display: block;
	line-height: 1.3;
}

.tm p{
	font-size: 4.2vw;
	transform: rotate(.03deg);
    margin-bottom: 30px;
}

.mail_alert{
	border: solid 4px var(--color-primary);
    background: #fff;
    padding:20px 20px;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
}

.mail_alert .tm_s{
	font-size: 1.1rem;
    font-weight: 700;
	margin-bottom:20px;
}

.mail_alert p{
	font-size: 1rem;
	transform: rotate(.03deg);
}
	
input[type="date"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    min-height: 44px;
    line-height: normal;
}
	
}
/* ------------------------------------------------------------------
   プログレスバー
   ------------------------------------------------------------------ */

.p-form__head {
    width: 100%;
}

.p-form-progress {
    max-width: 540px;
    margin: 10px auto 30px auto;
}

.p-form-progress__list {
    list-style-type: none;
    display: table;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #e1e1e1;
    border-radius: 5px;
}

.p-form-progress__item {
    display: table-cell;
    position: relative;
    background: #f3f2f0;
    padding: 14px 0.5em 14px 10px;
    color: #333;
    width: 50%;
    border: 1px solid #e1e1e1;
    font-size: 16px;
    text-align: center;
    line-height: 22px;
}

.p-form-progress__item span {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background: #fff;
    color: #333;
    text-align: center;
    font-size: 16px;
    margin-right: 7px;
    border-radius: 3px;
}

.p-form-progress__item:last-child {
    padding-right: 1em;
}

.p-form-progress__item:last-child::before,
.p-form-progress__item:last-child::after {
    display: none;
}

.p-form-progress__item::before,
.p-form-progress__item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
}

.p-form-progress__item::before {
    top: -15px;
    right: -0.85em;
    border-style: solid;
    border-color: transparent transparent transparent #e1e1e1;
    border-width: 40px 0 40px 1em;
    z-index: 10;
}

.p-form-progress__item::after {
    top: -15px;
    right: -0.8em;
    border-style: solid;
    border-color: transparent transparent transparent #f3f2f0;
    border-width: 40px 0 40px 1em;
    z-index: 10;
}

.p-form-progress__item.is-current {
    background: #0268CC;
    color: #fff;
    border: 1px solid #0268CC;
}

.p-form-progress__item.is-current span {
    background: #403835;
    color: #fff;
}

.p-form-progress__item.is-current::after {
    border-color: transparent transparent transparent #0268CC;
}


/* ------------------------------------------------------------------
   フォームレイアウト
   ------------------------------------------------------------------ */

.p-form-wrapper {
    /*margin-top: 55px;*/
}

.p-form {
    /*padding: 25px 40px 40px;
    background-color: #F3F1F0;
    border-radius: 6px;*/
}

.p-form__body {
    padding: 35px 30px 40px;
    border: 1px solid #F3F1F0;
    border-radius: 6px;
    background-color: #fff;
	position: relative;
}


body.recruit .p-form__body {
    padding: 35px 0px 40px;
    border: none;
    border-radius: 0px;
    background-color: rgba(0,0,0,0);
}


/* ------------------------------------------------------------------
   フォーム見出し
   ------------------------------------------------------------------ */

.p-form-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.39;
}

.p-form-heading--18 {
    font-size: 1.125rem;
	margin-bottom: 10px;
}

.p-form-heading__note {
    font-size: 0.9375rem;
    font-weight: 400;
}

.p-form-heading__required {
    color: #f63122;
}


/* ------------------------------------------------------------------
   フォームフィールド
   ------------------------------------------------------------------ */

.p-form-field {
    border-bottom: 1px solid #e1e1e1;
    margin-top: 15px;
}

.p-form-field__item {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e1e1e1;
}

.p-form-field__term {
    padding: 0.8em 1.3em 0.6em;
    display: flex;
    align-items: center;
    width: 23.077%;
    _background-color: #F3F1F0;
}

.p-form-field__desc {
    padding: 0.6em 1.3em;
    width: 76.923%;
}

.p-form-field__select-wrap {
    padding: 0.6em 1.3em;
    width: 76.923%;
}

.p-form-field__label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.2;
	_width: 100px;
}

.c-list-12.row .p-form-field__label {
	width: 100px;
}

.p-form-field__label--mg {
    display: block;
    margin-top: 10px;
    padding-left: 1em;
    text-indent: -1em;
}

.p-form-field__label--error {
    display: none;
}

.is-required-txt .p-form-field__label--error {
    display: block;
    color: #f63122;
}

.p-form-field__required {
    color: #f63122;
    display: inline-block;
}

.p-form-field__desc-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.p-form-field__desc-wrap--link {
    gap: 11px;
    margin-top: 20px;
}

/* エラーメッセージ */
ul.err_message {
    margin: 20px 0;
    color: #f63122;
    list-style: disc;
    padding-left: 20px;
    font-size: 15px;
}

ul.err_message li {
    margin-bottom: 10px !important;
    color: #f63122 !important;
    float: none !important;
    box-shadow: none !important;
    width: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    min-height: auto !important;
    margin-right: 0 !important;
    line-height: 1.3 !important;
}


/* ------------------------------------------------------------------
   入力欄
   ------------------------------------------------------------------ */

.p-form-input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.p-form-input input.cal {
    position: relative;
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
    background: url(../images/icon_calender.png) right center no-repeat;
    background-size: 21px 20px;
    background-position: top 6px right 5px;
    padding-right: 35px;
}

.c-list-12.row.indent .p-form-input {
	display: block;
	margin-bottom:20px;
}

.c-list-12.row.indent .p-form-input.cal {
	padding-left: 16px;
}

.c-list-12.row.indent .p-form-input .p-form-field__label {
    width: 100%;
}

.p-form-input .p-form-txt{
	line-height: 1.6;
    padding: 5px 0;
}

.p-form-input__field {
    border: 1px solid #e1e1e1;
    padding: 0.5rem 1rem;
    background-color: #fff !important;
    border-radius: 3px;
}

/* is-required 時の入力欄スタイル */
.is-required .p-form-input__field:required,
.is-required .p-form-input__field.check {
    border: 1px solid #f2c1c1;
    background-color: #ffeff0 !important;
}

.p-form-input__field--670 {
    width: 600px;
}

.p-form-input__field--400 {
    width: 400px;
}

@media screen and (max-width: 750px) {
    .p-form-input__field--670,
	.p-form-input__field--400{
    width: 100%;
}
	
}

.p-form-input__field--200 {
    width: 200px;
}

.p-form-input__field--tel {
    width: 215px;
}

/* hover時のボーダー */
.p-form-input__field:hover {
    border: 1px solid #FF9178 !important;
}


/* ------------------------------------------------------------------
   セレクトボックス
   ------------------------------------------------------------------ */

.p-form-select {
    position: relative;
}

.p-form-select__input {
    border: 1px solid #cccccc;
    border-radius: 2px;
    height: 40px;
    padding: 0 30px 0 10px;
    width: 340px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    box-shadow: 0px -1px 3px 0px rgba(228, 228, 228, 0.7) inset;
    font-size: 1rem;
}

/* is-required 時のセレクト */
.is-required .p-form-select__input:required,
.is-required .p-form-select__input.check {
    border: 1px solid #f2c1c1;
    background-color: #ffeff0 !important;
}

.p-form-select__input:hover {
    border: 1px solid #0268CC !important;
}


/* ------------------------------------------------------------------
   チェックボックス
   ------------------------------------------------------------------ */


.wpcf7 form .wpcf7-response-output,
.wpcf7 form .wpcf7-not-valid-tip{
  display: none;
}

/*チェックボックスのカスタマイズ*/

.wpcf7-form-control.wpcf7-checkbox{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 20px;
}

.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label{
position: relative;
    display: inline-block;
    cursor: pointer;
}

input[type="checkbox"] {
    display: none;
}
.wpcf7-list-item-label {
    position: relative;
    display: inline-block;
    padding-left: 34px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
	top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #e1e1e1;
    border-radius: 3px;
}

.wpcf7-list-item.first.last .wpcf7-list-item-label:before{
   border: 1px solid #f2c1c1;
	background-color: #ffeff0;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    display: block;
    position: absolute;
    top: 44%;
    left: 5px;
    transform: translate(0, -50%);
    content: "";
    width: 15px;
    height: 13px;
    background: url(../images/icon_check_cheked.svg) 0 0 no-repeat;
    background-size: 100% 100%;
    opacity: 1;
	line-height: 20px;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
	border-color: var(--color-primary)!important;
    background-color: var(--color-primary)!important;
}

.c-checkbox-2__mark:hover,
.c-radio__txt:hover::before,
.c-checkbox-3__txt:hover::before,
.wpcf7-list-item-label:hover::before,
.c-input-txt__input:hover,
.c-txtarea:hover,
.c-select-1__wrap:hover,
.c-select-2__wrap:hover {
    border: 1px solid var(--color-primary) !important;
}


input[type="checkbox"] {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline-offset: 8px;
    border-radius: 4px;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
}


/**/

.p-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.p-form-checkbox__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.p-form-checkbox__mark {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #e1e1e1;
    border-radius: 3px;
    background-color: #fff;
    flex-shrink: 0;
}

/* is-required 時のチェックボックス */
.is-required .p-form-checkbox__mark {
    border-color: #f2c1c1;
}

.p-form-checkbox__mark:hover {
    border: 1px solid #0268CC !important;
}

.p-form-checkbox__input:checked + .p-form-checkbox__mark {
    border-color: #0268CC;
    background-color: #0268CC;
}

.p-form-checkbox__input:checked + .p-form-checkbox__mark::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 10px;
    background: url(../images/icon_check_cheked.svg) 0 0 no-repeat;
    background-size: 100% 100%;
}

.p-form-checkbox__label {
    font-size: 0.9375rem;
    user-select: none;
}


/* ------------------------------------------------------------------
   ラジオボタン　.c-list-11__list　→ p-form-field__item
   ------------------------------------------------------------------ */
.p-form-field__item dd {
    font-size: 16px;
}

.p-form-field__item dd .choice {
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0;
}

.p-form-field__item dd .wpcf7-radio label {
    position: relative;
    padding-right: 25px;
    cursor: pointer;
}

.p-form-field__item dd input[type="radio"] {
    display: none;
}

.p-form-field__item dd input {
    border: 1px solid #e1e1e1;
}

.p-form-field__item dd .wpcf7-list-item-label {
    line-height: 30px;
    margin: 0;
}

.wpcf7-list-item-label {
    position: relative;
    display: inline-block;
    padding-left: 34px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.p-form-field__item dd .wpcf7-radio input[type=radio] ~ span.wpcf7-list-item-label::before {
    position: absolute;
    top: calc(50% - 6px);
    left: 6px;
    display: block;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    content: '';
    border: none !important;
}

.p-form-field__item dd .wpcf7-radio input[type=radio] ~ span.wpcf7-list-item-label::after {
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    display: block;
    width: 26px;
    height: 26px;
    border: 3px solid #F2C1C1;
    border-radius: 50%;
    content: '';
}

/* ラジオボタン：チェック済み - 外側の丸 */
.p-form-field__item dd .wpcf7-radio input[type=radio]:checked ~ span.wpcf7-list-item-label::after {
    border: 3px solid #0268CC;
}

/* ラジオボタン：チェック済み - 内側の塗り */
.p-form-field__item dd .wpcf7-radio input[type=radio]:checked ~ span.wpcf7-list-item-label::before {
    background-color: #0268CC;
}

/* いずれかがチェック済みの時、未チェック側の色を変更 */
.p-form-field__item dd .wpcf7-radio:has(input[type=radio]:checked) input[type=radio]:not(:checked) ~ span.wpcf7-list-item-label::before {
    _background-color: #e1e1e1;
}

.p-form-field__item dd .wpcf7-radio:has(input[type=radio]:checked) input[type=radio]:not(:checked) ~ span.wpcf7-list-item-label::after {
    border: 3px solid #e1e1e1;
}


/* ------------------------------------------------------------------
   ラジオボタン　.c-list-11__list　→ p-form-field__item
   ------------------------------------------------------------------ */

.c-list-12 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 20px;
}

.c-list-12.row {
	margin-top:10px;
	display: flex;
	flex-wrap: unset;
	}

.c-list-12.row.indent {
	align-items: flex-start;
}

.c-list-12.row.indent .p-form-field__label {
    padding-top:10px;
	width: 100px;
	margin-right: 0;
}

@media screen and (max-width: 750px) {
    .c-list-12 {
        _gap: 10px 16px;
    }
	
	.c-list-12.row {
		_margin-top:10px;
	display: flex;
	flex-wrap: unset;
	}
	
}
.c-list-12__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ------------------------------------------------------------------
   プルダウン
   ------------------------------------------------------------------ */

.p-form-field__item dd.ul {
    padding: 0.6em 1.3em 1rem 1.3rem;
}

@media screen and (max-width: 750px) {
.p-form-field__item dd.ul {
    padding: 0 0 0.6em 0;
}
}

.p-form-field__item dd.ul span.wpcf7-form-control-wrap {
    overflow: hidden;
    width: 182px;
    _margin: 2em auto;
    border-radius: 4px;
    padding: 5px 0;
    position: relative;
}

.p-form-field__item dd.ul span.wpcf7-form-control-wrap::before {
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
    z-index: 1;
}

.p-form-field__item dd.ul span.wpcf7-form-control-wrap::after {
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    width: 0px;
    content: '';
    border-left: 1px solid #cccccc;
}

.p-form-field__item dd.ul select {
    border: 1px solid #cccccc;
    border-radius: 2px;
    height: 40px;
    padding: 0 30px 0 10px;
    _width: 340px;
	width:100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    box-shadow: 0px -1px 3px 0px rgba(228, 228, 228, 0.7) inset;
}

@media screen and (max-width: 750px) {
	.p-form-field__item dd.ul select {
		width: 100%;
	}
}

.p-form-field__item {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e1e1e1;
}

/* ------------------------------------------------------------------
   郵便番号
   ------------------------------------------------------------------ */

.p-btn-1#getAddressButton,
.p-btn-1#getAddressButton2{
    width: auto;
}

.p-btn-1 {
    font-size: 15px;
    line-height: 1;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
    height: 50px;
    width: 100%;
	padding: 13px 10px 11px;
    display: flex;
    align-items: center;
    font-variant-position: normal;
}

.p-form-input__field--post {
    width: 155px;
}


/* ---------------------------------------------
*   p-form-field
--------------------------------------------- */
.p-form-field {
    border-bottom: 1px solid #e1e1e1;
    margin-top: 15px;
}
.p-form-field__list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e1e1e1;
}
@media screen and (max-width: 750px) {
    .p-form-field__list {
        width: 100%;
    }
}
.p-form-field__term {
    padding: 0.8em 1.3em 0.6em;
    display: flex;
    align-items: center;
    width: 23.0769230769%;
    background-color: #f6f6f6;
}
@media screen and (max-width: 750px) {
    .p-form-field__term {
        padding: 0.8em 0.5em 0.6em;
        width: 33.3076923077%;
    }

}
.p-form-field__desc {
    padding: 0.6em 1.3em;
    width: 76.9230769231%;
}
@media screen and (max-width: 750px) {
    .p-form-field__desc {
        padding: 0.6em 0.7em 0.5em;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
        width: 66.6923076923%;
    }
}

.p-form-field__desc-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}
@media screen and (max-width: 750px) {
    .p-form-field__desc-wrap {
        gap: 10px;
    }
}
.p-form-field__desc-wrap--link {
    gap: 11px;
}
@media screen and (max-width: 750px) {
    .p-form-field__desc-wrap--link {
        gap: 12px;
    }
}
.p-form-field__txt {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.2;
}
@media screen and (max-width: 750px) {
    .p-form-field__txt {
        font-size: 0.9375rem;
        line-height: 1.0714285714;
    }
}
.p-form-field__txt--mg {
    display: block;
    margin-top: 10px;
	padding-left:1em;
text-indent:-1em;
}
.p-form-field__txt--required {
    display: none;
}
.is-required-txt .p-form-field__txt--required {
    display: block;
    color: #f63122;
}

@media screen and (min-width: 751px) {
    .p-form-field__txt-small {
        font-size: 0.875rem;
    }
}
@media screen and (max-width: 750px) {
    .p-form-field__txt-small {
        font-weight: 400;
    }
}
.p-form-field__acc {
    color: #f63122;
    display: inline-block;
}
@media screen and (max-width: 750px) {
    .p-form-field__link-txt {
        font-size: 0.875rem;
    }
}
.p-form-field__btn-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
}
@media screen and (max-width: 750px) {
    .p-form-field__btn-wrap {
        gap: 17px;
    }
}
@media screen and (max-width: 750px) {
    .p-form-field--colomn {
        position: relative;
        border-bottom: none;
        margin-top: 0;
    }
    .p-form-field--colomn::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        display: block;
        width: 100vw;
        height: 1px;
        background-color: #e1e1e1;
        transform: translate(-50%, 0);
        display: none;
    }
}
@media screen and (max-width: 750px) {
    .p-form-field--colomn .p-form-field__desc-wrap {
        gap: 6px;
    }
    .p-form-field--colomn .p-form-field__desc-wrap--link {
        gap: 12px;
		align-items: flex-start;
    display: flex;
    }
}
.firefox .p-form-field--colomn .p-form-field__link {
    padding-top: 3px;
}

@media screen and (max-width: 750px) {
    .p-form-field--colomn .p-form-field__link {
        line-height: 1.0714285714;
    }
}
@media screen and (max-width: 750px) {
    .p-form-field--colomn .p-form-field__list {
        position: relative;
        border-top: none;
		padding: 8px 0;
    }
    .p-form-field--colomn .p-form-field__list::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        display: block;
        width: calc(100vw - 6%);
        height: 1px;
        background-color: #e1e1e1;
        transform: translate(-50%, 0);
    }
	
}
@media screen and (max-width: 750px) {
    .p-form-field--colomn .p-form-field__term {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        background-color: #fff;
    }
    .p-form-field--colomn .p-form-field__term .p-form-field__txt {
        font-weight: 700;
    }
}
@media screen and (max-width: 750px) {
    .p-form-field--colomn .p-form-field__desc {
        padding: 0 0 0.6em;
        gap: 5px;
        width: 100%;
    }

}
/* ------------------------------------------------------------------
   プライバシーポリシー
   ------------------------------------------------------------------ */

.p-form-privacy {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    padding: 20px;
    /*margin-bottom: 30px;*/
}

.p-form-privacy__body {
    line-height: 1.4;
}

.p-form-privacy__body p {
    margin-bottom: 15px;
}

.p-form-privacy__list > li {
    margin: 0 0 2rem 0;
}

.p-form-privacy__title {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.p-form-privacy__sublist {
    padding-left: 40px;
    margin-bottom: 20px;
}

.p-form-privacy__sublist li {
    list-style: disc !important;
    margin: 0;
}


/* ------------------------------------------------------------------
   送信ボタン
   ------------------------------------------------------------------ */

.p-form__btn-wrap {
    margin: 35px auto 0;
    text-align: center;
    position: relative;
}

.p-form-submit {
    display: inline-block;
    padding-bottom: 4px;
    border-radius: 2em;
    background-color: #005cb6;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s;
}

.p-form-submit:hover {
    opacity: 0.6;
}

.p-form-submit[disabled] {
    pointer-events: none;
    opacity: 0.5;
}

.p-form-submit__inner {
    padding: 12px 107px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0268CC;
    height: 53px;
}

.p-form-submit__txt {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
}


/* ------------------------------------------------------------------
   column レイアウト（縦積み）
   ------------------------------------------------------------------ */

.p-form-field--column {
    position: relative;
    border-bottom: none;
    margin-top: 0;
	background: #fff;
    border-bottom: 1px solid #e1e1e1;
}

.p-form-field--column .p-form-field__item {
    /*position: relative;
    border-top: none;
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1;*/
	border-top: 1px solid #e1e1e1;
    display: flex;
    flex-wrap: wrap;
}

.p-form-field--column .p-form-field__term {
    /*padding-left: 0;
    padding-right: 0;
    width: 100%;
    background-color: #fff;*/
	padding: 0.8em 1.3em 0.6em;
    display: flex;
    align-items: center;
    width: 23.0769230769%;
    _background-color: #F3F1F0;
}

.p-form-field--column .p-form-field__item.nobordertop {
	border-top: none;
}

.p-form-field--column .p-form-field__term .p-form-field__label {
    font-weight: 700;
}

.p-form-field--column .p-form-field__desc {
    /*padding: 0;
    width: 100%;*/
	padding: 0.6em 1.3em;
}

.p-form-field--column .p-form-field__select-wrap {
    /*padding: 0;
    width: 100%;*/
	padding: 0.6em 1.3em;
}

.p-form-field--column .p-form-field__desc-wrap {
    gap: 6px;
}

/* ------------------------------------------------------------------
   プライバシーポリシー
   ------------------------------------------------------------------ */
    .scroll-box h3 {
        text-align-last: center;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #333;
    }

    .scroll-box p {
        margin-bottom: 20px;
        font-size: 0.9rem;
        color: #333;
        margin-left: 1em;
    }

    .scroll-box h4 {
        font-size: 15px;
        margin-bottom: 10px;
		font-weight: 500;
    }



/* ==========================================================================
   スマホ
   ========================================================================== */

@media (max-width: 767px) {

    /* プログレスバー */
    .p-form-progress {
        margin: 0 auto 0px auto;
        padding: 0 12px;
    }

    .p-form__head {
        padding-bottom: 20px;
    }

    .p-form-progress__item {
        padding: 11px 0 11px 30px;
        font-size: 1rem;
    }

    .p-form-progress__item span {
        position: absolute;
        top: 11px;
        left: 23px;
        display: block;
        font-size: 0.9rem;
    }

    .p-form-progress__item:first-child span {
        left: 10px;
    }

    .p-form-progress__item::before {
        top: -18px;
        right: -0.95em;
    }

    .p-form-progress__item::after {
        top: -18px;
    }

    /* フォーム本体 */
    .p-form {
        position: relative;
        /*z-index: 1;
        padding: 20px 0;
        border-radius: 0;*/
    }

    .p-form::before {
        content: "";
        z-index: -1;
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: 100%;
        height: 100%;
        background-color: #F3F1F0;
        transform: translate(-50%, 0);
    }

    .p-form__body {
        padding: 25px 10px 50px !important;
        margin: 0 auto;
    }
	

    .p-form-heading {
        font-size: 1rem;
        line-height: 1.09;
		margin-bottom: 10px;
    }

    /* フィールド */
    .p-form-field__item {
        width: 100%;
    }

    .p-form-field__term {
        padding: 0.8em 0.5em 0.6em;
        width: 33.3%;
    }

    .p-form-field__label {
        font-size: 0.9375rem;
        line-height: 1.07;
		width:auto;
		_margin-right:10px;
    }
	
	.c-list-12.row .p-form-field__label {
		_white-space: nowrap;
		width:100px;
	}
	
	dd.ul .c-list-12.row .p-form-field__label {
	width: auto;
}

    .p-form-field__desc {
        padding: 0.6em 0.7em 0.5em;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
        width: 66.7%;
    }

    .p-form-field__select-wrap {
        padding: 0.6em 0;
        width: 66.7%;
    }
	
	.p-form-field__item dd .wpcf7-radio label {
    position: relative;
    padding-left: 0px;
    cursor: pointer;
		padding-right:25px;
}

    /* column レイアウト */
    .p-form-field--column {
        border-bottom: none;
        margin-top: 0;
    }

    .p-form-field--column .p-form-field__item {
        _border-top: none;
        padding: 8px 0;
    }

    .p-form-field--column .p-form-field__item::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        display: block;
        width: calc(100vw - 40px);
        height: 1px;
        background-color: #e1e1e1;
        transform: translate(-50%, 0);
    }

    .p-form-field--column .p-form-field__term {
        width: 100%;
        background-color: #fff;
		padding-left: 0;
    padding-right: 0;
    }
	
	body.recruit .p-form-field--column .p-form-field__term {
        width: 100%;
        background-color: rgba(0,0,0,0);
		padding-left: 0;
    padding-right: 0;
    }
	
	body.recruit .p-form-field--column .p-form-field__term.sp_none{
		display: none;
	}

    .p-form-field--column .p-form-field__desc {
        padding: 0 0 0.6em;
        gap: 5px;
        width: 100%;
    }

    .p-form-field--column .p-form-field__select-wrap {
        padding: 0 0 0.6em;
        width: 100%;
    }

    .p-form-field--column .p-form-field__desc-wrap--link {
        gap: 12px;
        align-items: center;
        display: flex;
    }

    /* 送信ボタン */
    .p-form__btn-wrap {
        margin-top: 35px;
    }

    .p-form-submit__inner {
        padding: 18px 110px 12px;
    }

    .p-form-submit__txt {
        font-size: 1rem;
    }

}
