body {
    min-height: 100vh;
	font-family:'メイリオ', 'Meiryo', sans-serif !important;
}

body.entry-form-entered {
    background-color: #afafaf;
}

.pl-entry-form {

}

.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 0 !important;
}

.mw_wp_form .horizontal-item {
	margin-bottom: 10px;
	display: block;
}


.pl-entry-form__progress {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.pl-entry-form__progress-steps {
    width: 200px;
    font-weight: bold;
}

.pl-entry-form__progress-steps span {
    font-size: 2.4rem;
    font-weight: bold;
    margin-right: 12px;
}

.pl-entry-form__progress-bar {
    display: flex;
    align-items: center;
    width: calc(100% - 200px);
    border: 1px solid #ccc;
    background-color: #fafafa;
}

.pl-entry-form__progress-bar span {
    display: block;
    height: 30px;
    width: 0;
    background-color: #ffc107;
}

.pl-entry-form__page {
	opacity: 0;
    display: none;
	transition: opacity 0.6s ease;
}

.pl-entry-form__page.current {
    display: block;
	opacity: 1;
}

.pl-entry-form label.form-label {
    display: inline-block;
    min-width: 100%;
	margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
    .pl-entry-form label.form-label {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1000px) {
	.pl-entry-form__page.current {
		display: block;
		opacity: 1;
	}
}

.pl-entry-form__question {
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 1.1rem;
    font-weight: bold;
}

.pl-entry-form__question small {
    display: inline-block;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.pl-entry-form__answer {
    font-weight: bold;
}

.pl-entry-form input, select, textarea {
    max-width: 100%;
}

.pl-entry-form input[type=submit] {
    display: none;
}

.pl-entry-form input[type=radio] {
    display: none;
}

.pl-entry-form input[type=checkbox] {
    display: none;
}

.pl-entry-form input[type=text] {
    width: auto;
}

.pl-entry-form input[type=text].hidden {
    display: none;
}

.pl-entry-form select {
    width: auto;
}

.pl-entry-form textarea {
    width: 100%;
}

.pl-entry-form .mwform-checkbox-field label,
.pl-entry-form .mwform-radio-field label {
    display: block;
    border: 2px solid #333333;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

body.entry-form-entered .pl-entry-form .mwform-checkbox-field label,
body.entry-form-entered .pl-entry-form .mwform-radio-field label{
    background-color: #afafaf;
}

.pl-entry-form input[type=text].entered,
.pl-entry-form textarea.entered {
    background-color: #f6b6b6 !important;
}

.pl-entry-form select.selected {
    background-color: #f6b6b6 !important;
}

.pl-entry-form .mwform-checkbox-field label.checked,
.pl-entry-form .mwform-radio-field label.checked {
    background-color: #f6b6b6 !important;
}

.pl-entry-form__buttons {
    display: flex;
    align-items: center;
}

.pl-entry-form__back {
	font-family: 'Noto Sans JP';
    position: relative;
    background: #eee;
    color: #999;
    border-color: transparent;
    padding: 10px;
	padding-left: 0;
    width: 260px;
	min-height: 60px;
    font-size: 1rem;
    letter-spacing: 4px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
}

.pl-entry-form__submit,
.pl-entry-form__next {
	font-family: 'Noto Sans JP';
    position: relative;
    cursor: pointer;
    padding: 10px;
    width: 260px;
	min-height: 60px;
    background-color: #e87c2a;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 4px;
    border: none;
    border-radius: 4px;
    overflow: hidden;
	box-shadow: 0px 6px 0px #d05f0b;
}

.pl-entry-form__submit {
	width: 60% !important;
	box-shadow: 0px 6px 0px #d05f0b;
}

@media screen and (max-width: 576px) {
	.pl-entry-form__submit {
		width: 300px !important;
	}
}


.pl-entry-form__submit-wrapper {
	text-align: center;
}

.form-submit-btn-icon {
	margin-left: 0.4em;
}

.pl-entry-form__submit:hover,
.pl-entry-form__next:hover {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.pl-entry-form__submit::before,
.pl-entry-form__next::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #f7d1b4;
    transition: all 0.3s ease;
    animation: shiny 2.5s ease-in-out infinite;
}

.pl-entry-form__next:disabled {
	background-color: #cccccc; /* 背景色をグレーに変更 */
	color: #666666; /* 文字の色をグレーに変更 */
	cursor: not-allowed; /* カーソルを「禁止」スタイルに変更 */
	opacity: 0.6; /* 半透明にする */
	box-shadow: none;
}

.pl-entry-form__next:disabled::before {
	animation: none;
}

.pl-entry-form__submit:disabled {
	background-color: #cccccc; /* 背景色をグレーに変更 */
	color: #666666; /* 文字の色をグレーに変更 */
	cursor: not-allowed; /* カーソルを「禁止」スタイルに変更 */
	opacity: 0.6; /* 半透明にする */
	box-shadow: none;
}

.pl-entry-form__submit:disabled::before {
	animation: none;
}

@-webkit-keyframes shiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}



/* 最終調整上書き */
/* body {
    min-height: unset;
}
body.entry-form-entered {
    background-color: unset;
}
body.entry-form-entered .pl-entry-form .mwform-checkbox-field label, body.entry-form-entered .pl-entry-form .mwform-radio-field label {
    background-color: unset;
}

body:not(.entry-form-entered) .pl-entry-form__next{
    opacity: 0.4;
    cursor: no-drop;
}
body:not(.entry-form-entered) .pl-entry-form__next::before{
	display:none;
}
 */
.pl-entry-form select {
    cursor: pointer;
	width:240px;
}
.device-pc .pl-entry-form select {
    font-size: 18px;
}
.pl-entry-form select.selected{
	background:unset;
}
.pl-entry-form input[type=text] {
    width: 100%;
}

@media (max-width: 992px) { 
	input, textarea, select {
		font-size:16px !important;
	}
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Mikke追加分
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.pl-entry-form__sendlog tr td:first-child {
    color: #777;
    width: 20%;
    min-width: 120px;
}

.border-radi-10 {
	border-radius: 10px !important;
}

.back-btn {
	background-color: transparent !important;
	color: #333333 !important;
	width: 90px !important;
}

.flex-1 {
	flex: 1 !important;
}

.display-on {
	display: block !important;
}

.display-off {
	display: none !important;
}

.pl-entry-form {
	margin-top: 30px;
}

.fade-in-form {
	opacity: 0;
}

.form-right-fadein {
    transform: translateX(100%);
	transition: opacity 0.5s ease;
	animation: fadeIn 0.5s ease-in-out forwards;	
}

.form-left-fadein {
	transform: translateX(-100%);
	transition: opacity 0.5s ease;
	animation: fadeIn 0.5s ease-in-out forwards;	
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.current-income {
	width: 50% !important;
	margin-right: 10px !important;
}

.vk_outer_container {
	display: flex;
	justify-content:center;
	background-color: transparent;
	flex-direction: column;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  アンケートフォーム
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.income-form-wrapper {
	display: flex;
	align-items: center;
}

.pl-entry-form__question {
	display: flex;
	align-items: center;
}


.err-msg {
	color: #e34850;
    align-items: center;
	margin-left: 4px;
	display: none;
}

.mw_wp_form .error {
	color: #333333 !important;
}

.errMsg-icon {
	width: 14px;
	height: 14px;
	display: inline-block;
	margin-right: 3px;
	background-image: url(https://mikkeg.co.jp/lp/wp-content/uploads/72a2690d1b65b55562e7f2b52a44ad7f.png);
	background-size: contain;
}

.prefecture-form.error {
	border: 2px solid #e34850;
}

.prefecture-errMsg.msg-on {
	display: inline-block !important;
}

.current-income-form.error {
	border: 2px solid #e34850;
}

.current-income-errMsg.msg-on {
	display: inline-block !important;
}

.desired-income-form.error {
	border: 2px solid #e34850;
}

.desired-income-errMsg.msg-on {
	display: inline-block !important;
}

.name-form.error {
	border: 2px solid #e34850;
}

.name-errMsg.msg-on {
	display: inline-block !important;
}

.furigana-form.error {
	border: 2px solid #e34850;
}

.furigana-errMsg.msg-on {
	display: inline-block !important;
}

.birth-form.error {
	border: 2px solid #e34850;
}

.birth-errMsg.msg-on {
	display: inline-block !important;
}

.birth-form-wrapper {
	display: flex;
	align-items: center;
}

.birth-form {
	margin-right: 10px !important;
}

.tel-form.error {
	border: 2px solid #e34850;
}

.tel-errMsg.msg-on {
	display: inline-block !important;
}

.email-form.error {
	border: 2px solid #e34850;
}

.email-errMsg.msg-on {
	display: inline-block !important;
}

.require-label {
	background: #eb5556;
    color: #fff;
    font-size: 10px;
    padding: 2px 7px 2px;
    border-radius: 71px;
	margin-left: 12px;
}

.company-logo-sp {
	padding-left: 10px;
    margin-top: 10px;
    width: 100px;
	display: none;
}

.birth-form {
	width: 50% !important;
}

@media (max-width: 990px) {
	.company-logo-sp {
		display: block;
	}
	
		.pl-entry-form__progress {
	    margin-bottom: 0;
	}
	
	.pl-entry-form__progress-steps span {
		font-size: 1.8rem;
        margin-right: 6px;
	}
	
	.pl-entry-form__progress-bar {
		height: 10px;
	}
	
	.pl-entry-form__progress-bar span {
		height: 10px;
	}
	
	.fade-in-form {
		margin-top: 10px;
	}
	
	.pl-entry-form .mwform-checkbox-field label,
	.pl-entry-form .mwform-radio-field label {
    	padding: 10px 20px;
	}
	
	#job_type_another {
		padding: 10px 20px !important;
		margin-top: -20px;
	}
	
	#experience_another {
		padding: 10px 20px !important;
		margin-top: -20px;
	}
	
	.mwform-checkbox-field {
		display: block;
		margin-bottom: 10px;
		margin-left: 0 !important;
	}
	
	.pl-entry-form__buttons {
		margin-top: -10px;
	}
}

.form-comlete-label {
	width: 100%;
	background: #ffb126;
	padding: 15px 0;
	color: #fff;
	position: relative;
	margin-bottom: 0 !important;
}

.form-comlete-label:after {
	content: "";
	border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 20px solid #ffb126;
    bottom: -26%;
    right: 48%;
	position: absolute;
}

@media (max-width: 990px) {
	.form-comlete-label:after {
      right: 44%;
	}
}

@media (max-width: 768px) {
	.form-comlete-label:after {
      right: 41%;
	}
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  アンケートフォームのFV
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.wp-block-cover.teaser {
	padding: 0;
}

.teaser {
	width: 100%;
	margin-bottom: 30px;
}

.teaser_left {
	padding: 3rem 3rem 0.5rem 3rem;
}

.h1-word-wrapper {
	margin-top: 2.5rem;
}

.teaser_form span.h1-word {
	font-size: 1.2rem;
	border: 2px solid #feec02;
} 

.wp-block-cover {
	min-height: 0 !important;
}

.teaser figure {
	top: -8% !important;
}

 .wp-block-vk-blocks-outer.vk_outer .vk_outer_container {
	 min-height: 0;
}

.form-fv-wrapper {
	width: 80%;
	margin: auto;
}

span.h1-cathcopy {
	padding-top: 0;
}

@media (max-width: 992px) { 
	.wp-block-cover.teaser_form {
		width: 100% !important;
	}
	
	.teaser_form span.h1-cathcopy {
		padding-top: 3rem;
		font-size: 2rem;
	}
	
	span.h1-cathcopy {
		margin-bottom: 0;
	}
	
	.h1-word-wrapper {
		display: flex;
		margin-top: 2rem;
	}
	
	.h1-word-box {
		padding-left: 30px;
	}
	
	span.h1-word {
		
	}
	.wp-block-cover.teaser_form {
		margin-left: 0;
	}
	
	.teaser_form span.h1-word {
		margin-right: 10px;
	}
}

@media (max-width: 600px) {
	.teaser {
		margin-bottom: 10px;
	}
	
	.h1-word-box {
		padding-left: 30px;
	}
	
	.h1-word-wrapper {
		flex-direction: column;
	}
	
	.teaser_form span.h1-word {
		margin-right: 5px;
		padding: 7px 10px;
	}
	
	.teaser_form span.h1-cathcopy {
		padding-top: 2rem;
		font-size: 2rem;
		text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
	}
	
	.teaser_form span.h1-word {
		font-size: 1.2rem;
	}
	
	.h1-word-wrapper {
		margin-top: 2rem;
	}
	
	.h1-word-box {
		margin-bottom: 2rem;
	}
	
	 .wp-block-cover.teaser {
		height: 300px !important;
	}
	
	.teaser_form figure {
		width: 100%;
		right: -122px; 
		top: 7% !important;
	}
	
	.teaser_form figure img {
		width: 220px !important;
	}
	
	.container {
		padding: 0;
	}
	
	.pl-entry-form {
		padding: 0 10px;
	}
}

@media (max-width: 500px) {
	
	.wp-block-cover.teaser {
		height: 270px !important;
	}
	
	.teaser_form figure img {
		width: 170px !important;
	}
	
	.teaser_form figure {
		top: 15% !important;
		right: -185px;
	}
	
	.h1-word-box {
		padding-left: 20px;
	}
	
	.teaser_form span.h1-cathcopy {
		padding-top: 1rem;
		font-size: 1.9rem;
	}
}

@media (max-width: 400px) {
	.teaser_form span.h1-word {
		font-size: 1.1rem;
	}
	
	.teaser_form figure {
		top: 15% !important;
		right: -190px;
	}
	
	.teaser_form span.h1-cathcopy {
		font-size: 1.7rem;
	}
	.h1-word-box {
		padding-left: 15px;
	}
}
	

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  アンケートフォームのモーダル
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.before-first-quesiton-over-view {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
    transition: opacity 0.3s ease;
	opacity: 0;
	z-index: 9999;
}

.before-first-quesiton-modal {
	background: rgb(255, 255, 255);
	border-radius: 4px;
	padding: 40px 100px 30px;
	width: 500px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
	
}

.before-first-quesiton-button-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.before-first-quesiton-button {
	margin-bottom: 20px;
	display: block;
    border: 2px solid #333333;
    border-radius: 5px;
    background-color: #ffffff;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 2px;
	width: 300px;
	border: none;
	color: #ffffff;
	box-shadow: black 1px 1px 4px 0px;
}

.before-first-quesiton-button.button-2 {
	 background-color: #5A9ED4;
	 border-bottom: 2px solid #4185bb;
}

.before-first-quesiton-button.button-1 {
	 background-color: #ff783f;
	 border-bottom: 2px solid #e54705;
}

.before-first-quesiton-button.button-2:hover {
 	color: #ffffff;
  	background: #4185bb;
}

.before-first-quesiton-button.button-1:hover {
 	color: #ffffff;
	background-color: #e54705;
}

.before-first-quesiton_title {
	margin-bottom: 30px;
	font-size: 1.2rem;
	text-align: center;
	font-weight: bold;
	position: relative;
}

.before-first-quesiton_subtitle {
	display: inline-block;
	margin-bottom: 5px;
	font-size: 0.8rem;
	font-weight: normal;
	border-bottom: none;
}

.before-first-quesiton_title::after {
	content: "";
	position: absolute;
	bottom: -6%;
	height: 3px;
	border-radius: 3px;
	background: #FEEC02;
	display: inline-block;
    right: 24px;
    width: 253px;
}


@media (max-width: 990px) {
	.before-first-quesiton-modal {
	}
	
	.before-first-quesiton_title::after {
		right: 39px;
		width: 223px;
	}
}

@media (max-width: 600px) { 
	.before-first-quesiton-modal {
		width: 300px;
		padding: 40px 30px 30px;
	}
	
	.before-first-quesiton_title::after {
		right: 9px;
	}
	
	.before-first-quesiton-button {
		width: 100%;
	}
	.pl-entry-form {
		margin-top: 0;
	}
	
	.pl-entry-form__answer {
		margin-bottom: 0;	
	}
}

.modal-on {
	display: flex !important;
	opacity: 1 !important;
	overflow: hidden !important;
}

.modal-off {
	display: none !important;
	opacity: 0 !important;
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  アンケートフォームのブラウザバックモーダル
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.browser-back-view {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
    transition: opacity 0.3s ease;
	opacity: 0;
	z-index: 9999;
}

.browser-back-modal {
	background: rgb(255, 255, 255);
	border-radius: 4px;
	width: 500px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
	border-radius: 8px;
}

.browser-back-content {
	display: flex;
	padding: 0 10px 0 30px;
	font-weight: bold;
}

.browser-back-header {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FEC702;
	padding: 10px 0;
	border-radius: 8px 8px 0 0;
}

.browser-back-header__inner {
	display: flex;
	align-items: center;
}

.browser-back-header__text {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
	padding-left: 15px;
	line-height: 1.5;
}

.browser-back-content__text-bold {
	font-size: 1.8rem;
}

.soudan {
	margin-left: -4px;
	margin-right: -4px;
}

.browser-back-content__left {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
	font-size: 1.5rem;
	white-space: nowrap;
}

.browser-back-content__right {
	position: relative;
}

.browser-back-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 30px;
}

.browser-back-footer__btn {
	background-color: #303230;
	color: #ffffff;
	border-radius: 10px;
	width: 100%;
    padding: 10px;
    font-size: 1.3rem;
    font-weight: bold;
	margin: 0 30px 0 30px;
	box-shadow: #303230 2px 2px 6px 0px;
	letter-spacing: 2px;
	transition: 0.3s;
	position: relative;
}

.browser-back-footer__btn::after {
	content: '';
	position: absolute;
	border-top: 4px solid #ffffff;
	border-left: 4px solid #ffffff;
	transform: rotate(135deg);
	transition: 0.3s;
	top: 34%;
    right: 4%;
    width: 13px;
    height: 13px;
}

.browser-back-footer__btn:hover {
	color: #303230;
	background: #ffffff;
	border-color: #ffffff;
}

.browser-back-footer__btn:hover::after {
	border-color: #303230;
	right: 8%;
}

.browser-back-content__img {
	width: 250px;
}

@media (max-width: 600px) { 
	.browser-back-modal {
		width: 300px;
	}
	
	.browser-back-header__text {
		font-size: 1rem;
	}
	
	.browser-back-header__icon {
		width: 25px;
	}
	
	.browser-back-content {
		padding: 10px 10px 0 20px;
	}
	
	.browser-back-content__text {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}

	.browser-back-content__text-bold {
		font-size: 1.5rem;
	}
	
	.browser-back-footer__btn {
		margin: 0 20px 0 20px;
	}
}

.loading-view {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #c9c7c7;
    opacity: 0.5;
}

.loading {
  width: 5em;
  height: 5em;
  border-radius: 50%;
  border: 0.25em solid rgba(0,0,0,.08);
  border-top-color: #fff;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  完了画面
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  mikkeができること
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
 .strengths-card {
	padding: 6.5rem 15px !important;
	border-radius: 20px !important;
	box-shadow: 0px 5px 12px -7px #777777 !important;
	margin-left: 15px;
    margin-right: 15px;
	margin-bottom: 100px !important;
	position: relative;
	overflow: visible !important;
}

.st-card {
	border: none !important;
	background: transparent !important;
}

.st-card-wrapper {
	display: flex;
	justify-content: center;
	align-items: end;
	flex: 1;
}

.st-card-wrapper figure {
	width: 200px;
	height: 200px;
	border: 1px solid #cacaca;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
	box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.29);
	background: #fff;
	margin-bottom: 0 !important;
}

.st-card-img3 {
	width: 100px !important;
}

.strengths-card-text-marker {
	background: linear-gradient(transparent 70%, #feec02 70%);
}

.wp-block-vk-blocks-card-item {
	border: none !important;
	background: transparent !important;
}

.wp-block-vk-blocks-card-item .card-body {
	display: flex;
	flex-direction: column;
}



.strengths-card-h {
	margin-bottom: 15px;
	font-size: 1.5rem;
	border-bottom: 2px solid #cacaca;
	padding-bottom: 15px;
	text-align:center;
}

.strengths-card-number {
	position: absolute;
	display: inline-block;
	width: 88px;
  	height: 88px;
  	line-height: 88px;
	border-radius: 50%;
	background: #FEEC02;
	color: #fff;
	text-align: center;
    font-size: 25px;
    font-weight: bold;
	top: -10%;
    left: 36%;
}

.strengths-card-text {
	font-size: 1.5rem;
	text-align: center;
	line-height: 1.4 !important;
}


.strengths-card-wrapper img {
	width: 120px;
}

.strengths-card-img {
	position: absolute;
	width: 150px;
	bottom: -9%;
    left: 28%;
}

.card-img-3 {
	width: 100px !important;
	left: 36% !important;
}

.strengths-card-text-bold {
	font-weight: bold;
	font-size: 2.3rem;
	text-align: center;
	color: #5A9ED4;
	
}


.border-0 {
	border: none !important;
}

.strengths-card-text-small {
	font-size: 1.2rem;
	text-align: center;
}

.strengths-bottom-text {
	font-size: 1.5rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
}

.strengths-bottom-text-bold {
	font-size: 2.5rem;
	color: #ff783f;
	font-weight: bold;
}

.st-card-inner {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

@media screen and (max-width: 991px) {
	.st-card-wrapper {
		margin-top: 2rem !important;
	}
	
	.strengths-card-text {
		font-size: 1.7rem;
	}
	
	.strengths-card-h {
		width: 80%;
	}
	
	.wp-block-vk-blocks-card-item .card-body {
		align-items: center;
	}
	
	.strengths-bottom-text {
		margin-top: 2rem;
	}
	
	.st-card-inner {
		margin-bottom: 0 !important;
	}
}


@media screen and (max-width: 991px) {
	.strengths-card {
		margin-bottom: 120px !important;
	}
	
	.strengths-card-text {
		margin-bottom: 0 !important;
	}
	
	.strengths-card-img {
		width: 150px;
		bottom: -17%;
        left: 36%;
	}
	
	.strengths-card-number {
    	left: 41%;
	}
	
	.strengths-card-text {
		text-align: center;
		font-size: 1.7rem;
	}
	
	.strengths-card-text-bold {
		text-align: center;
	}

	.strengths-card-text-small {
		text-align:center;
	}
	
	.card-img-3 {
		left: 43% !important;
	}
}

@media screen and (max-width: 576px) {
	
	.strengths-card {
		padding-top: 4rem !important;
		margin-bottom: 80px !important;
	}
	
	.st-card-wrapper figure {
		width: 170px;
		height: 170px;
	}
	
	.st-card-wrapper figure img {
		width: 130px;
	}
	
	.st-card-img3 {
		width: 100px !important;
	}
	
	
	.strengths-card-h {
		width: 100%;
	}
	
	.strengths-bottom-text {
		font-size: 1.1rem;
		line-height: 1.5;
	}
	
	.strengths-card-text-small {
		font-size: 0.9rem;

	}

	.strengths-bottom-text-bold {
		font-size: 1.7rem;
		font-weight: bold;
	}
	
	.strengths-card-number {
		width: 60px;
		height: 60px;
		line-height: 60px;
		text-align: center;
		font-size: 25px;
		left: 43%;
        top: -12%;
	}

	.strengths-card-text {
		font-size: 1.3rem;
	}
	
	.strengths-card-text-bold {
		font-size: 1.7rem;
	}
	
	.strengths-card-img {
		left: 33%;
		width: 130px;
	}
	
	.card-img-3 {
		left: 41% !important;
		width: 85px !important;
	}
}

@media screen and (max-width: 400px) {
	.strengths-card-img {
		left: 30%;
	}
	
	.card-img-3 {
		left: 37% !important;
	}
	
		
	.strengths-card-number {
    	left: 41%;
	}
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  募集求人の例
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.job_txt{
	background-color:var(--vk-color-primary);
	width:285px;
	height:285px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	align-content:center;
	border-radius:50%;
	position:absolute;
	top:-140px;
	left:20px;
}
.job_txt1{
	font-size:28px;
}
.job_txt2{
	font-size:22px;
}
.job_txt2 strong{
	font-size:28px;
}
.offer_box{
	overflow:visible !important;
}
.job_box .vk_slider_item .vk_slider_item-background-area{
	
	border-radius:20px;
	margin-right:20px;
}
.job_box .vk_slider_item{
	padding:30px 40px 30px 20px!important;
	width:270px;
}
.job_box .vk_slider_item_container {
	padding:0px!important;
	height: 100%;
}
.swiper-container {
    padding-bottom: 50px;
}

.vk_slider_item_container .wp-block-group {
	height: 100%;
}

.vk_slider_item_container .wp-block-group .wp-block-group__inner-container {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.jobs-content {
	flex: 1;
}

.job-title {
	margin-bottom: 0;
	font-size: 1.6rem;
}

.job-title-wrapper span {
	font-size: 1.2rem;
}

.job-title-wrapper {
	margin-bottom: 10px;
}

.jobs-content table {
	border: none !important;
}



.job_box.vk_slider .swiper-button-next,
.job_box.vk_slider .swiper-button-prev {
    margin: 0 20px;
    background: #333;
    color: #fff;
    font-weight: bold;
}

.job_box2{
	padding:30px;
}
.job_box2 h3{
	width:20%;
}
.job_box2 figure{
	width:15%;
	padding-left:20px;
}
.job_box2 p{
	width:60%;
}
.job_box2 a{
	color:#2B2B2B
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  mikkeの特徴
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.difference-card-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
}

.difference-card-row {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 3rem;
	position: relative;
}

.difference-card-wrapper {
	display: flex;
	flex-direction: column;
	width: 40%;
	justify-content: center;
	align-items: center;
}

.difference-card {
	border: 1px solid rgba(0, 0, 0, .125);
	width: 40%;
	padding: 1rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	text-align: center;
}

.difference-card.left {
	border-right: none;
}

.difference-card-title {
	margin-bottom: 15px;
    font-size: 1.5rem;
	font-weight: bold;
}

.difference-card-first {
	border: 1px solid rgba(0, 0, 0, .125);
	width: 100%;
	padding: 1rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.3rem;
	text-align: center;
}

.difference-card-first.left {
	border-right: none;
	flex: 1;
}

.difference-card-first.mikke {
	border: 6px solid #FEEC02;
	box-shadow: none !important;
}

.difference-card.mikke {
	border: 6px solid #FEEC02;
	box-shadow: none !important;
}

.difference-arrow-wrapper {
	display: flex;
	align-items: center;
	margin: 0 30px;
	position: absolute;
    top: 30%;
    right: 42%;
}

.difference-arrow {
	display: inline-block;
	width: 87px;
    height: 64.5px;
	background: linear-gradient(90deg, #ffe100 0%, #ff5d00 100%);
	clip-path: polygon(0 31%, 63.2% 31%, 63.2% 0, 100% 50%, 63.2% 100%, 63.2% 69%, 0 69%);
}

.difference-card-img {
	width: 200px;
}

@media screen and (max-width: 992px) {
	.difference-card-row {
		flex-direction: column;
		align-items: center;
	}
	
	.difference-card-wrapper {
		width: 80%;
	}
	
	.difference-card-first.left {
		border: 1px solid rgba(0, 0, 0, .125);
		margin-bottom: 5px;
	}
	
	.difference-arrow {
		transform: rotate(90deg);
		width: 70px;
        height: 90px;
	} 
	
	.difference-arrow-wrapper {
		position: unset;
		margin-bottom: 5px;
	}
	
	.arrow-wrapper-2 {
		top: 42% !important;
	}
	
	.difference-card-first.mikke {
		margin-bottom: 20px;
	}
	
	.difference-card-title {
    	font-size: 2rem;
	}
	
	.difference-card-first {
		font-size: 1.7rem;
	}
	
	.is-style-af-heading-reverse .vk_heading_subtext{
		font-size:2.5rem !important;
	}
}

@media screen and (max-width: 600px) {
	.difference-card-title {
    	font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}
	
	.difference-card-first {
		font-size: 1.3rem;
	}
	
	.difference-card-img {
		width: 150px;
	}
	
	.difference-arrow {
		width: 40px;
        height: 60px;
	}
	
	.difference-card-box {
		margin-bottom: 1rem;
	}
	
}



.wp-block-column.is-vertically-aligned-top {
    align-self: flex-end !important;
}

.flow-no {
	font-size: 1rem !important;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  登録フロー
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.process {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    font-size: 1.2rem;
    list-style: none;
}

.process > li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1em 3em 1em 1.5em;
    margin: 0px;
    width: 14em;
    height: 10em;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
	
}
.process > li:nth-child(1)::before,
.process > li:nth-child(1)::after{
	background-color:#fdff80;
}
.process > li:nth-child(2)::before,
.process > li:nth-child(2)::after{
	background-color:#fcf162;
}
.process > li:nth-child(3)::before,
.process > li:nth-child(3)::after{
	background-color:#fbe443;
}
.process > li:nth-child(4)::before,
.process > li:nth-child(4)::after{
	background-color:#fad625;
}
.process > li:nth-child(5)::before,
.process > li:nth-child(5)::after{
	background-color:#f9c806;
}

.process > li::before,
.process > li::after {
    position: absolute;
    content: "";
}
.process > li::before {
    top: 50%;
    right: -1.5em;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.5) rotate(45deg);    
    width: 16em;
    height: 16em;
    border-left: none;
    border-bottom: none;
	background-color:#FFFF5A;
}
.process > li::after {
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    width: 7em;
    border-right: none;
	background-color:#FFFF5A;
}
.process > li span{
	position:absolute;
	left:10px;
	top:10px;
	font-family:var(--en);
	font-size:0.8rem;
	font-weight:600;
}


@media screen and (max-width: 991px) {
	ol.process {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2em;
		padding: 0 15px;
	}
	.process > li {
		width: 100%;
		display: flex;
		flex-direction: row;
		height: unset;
		font-size: 1.2rem;
		align-items: center;
		justify-content: flex-start;
		overflow: unset;
	}
	.process > li span {
		position: static;
		border-right: solid 1px;
		margin-right: 2em;
		padding-right: 2em;
	}
	.process > li::before {
		width: 30px;
		height: 30px;
		top: auto;
		bottom: -5px;
		right: 50%;
		border: 0;
		transform: rotate(45deg);
	}
	.process > li br {
		display: none;
	}
	.process > li::after {
		width: 100%;
	}
}

footer.site-footer {
	margin-bottom: 0 !important;
}

.complete-cv-btn {
	display: flex !important;
	justify-content: center;
}

.complete-cv-btn a {
	padding: 15px 20px !important;
	width: 300px !important;
}

.has-text-align-center {
	font-size: 1.2rem;
}


.privacy-checkbox-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	margin-top: 30px;
}

#privacy_policy_checkbox {
	display: flex !important;
	margin-right: 5px;
	width: 25px;
	height: 25px;
}

.privacy_policy_label {
	display: flex;
	align-items: center;
}

.scroll-box {
	border: 1px solid #dfdfdf;
	margin-inline: auto;
	width: 80%; 
	height: 100px;
	overflow: scroll;
	padding: 0 0 0 0.5rem;
	border-radius: 5px;
	transition: height 0.5s ease;
	
	&::-webkit-scrollbar {
		display: none;
 	}
}

.scroll-box.open {
	height: 250px;
}

.scroll-box.close {
	height: 100px;
}



.wp-block-list {
	padding-left: 1.5rem !important;
}

.privacy_policy_label {

}

.privacy-checkbox-inner {
	width: 60%;
	display: flex;
	justify-content: center;
}

.privacy_policy-wrapper {
	display: flex;
}



@media screen and (max-width: 576px) {
	.privacy-checkbox-wrapper {
		display: flex;
		justify-content: center;
		margin-bottom: 0px;
		margin-top: 30px;
	}
	
	.privacy-checkbox-inner {
		width: 300px;
	}

	#privacy_policy_checkbox {
		display: flex !important;
		margin-right: 5px;
		width: 25px;
		height: 25px;
	}

	.privacy_policy_label {
		display: flex;
		align-items: center;
	}

	.scroll-box {
		height: 80px;
	}
	
	.scroll-box.open {
	height: 200px;
	}

	.scroll-box.close {
		height: 80px;
	}

	.wp-block-list {
		padding-left: 1.5rem !important;
	}

	.privacy_policy_label {

	}

	.privacy-checkbox-inner {
		width: 300px;
		display: flex;
		justify-content: center;
	}

	.privacy_policy-wrapper {
		display: flex;
	}
} 


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  転職成功者のお声
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

 .customer-voice_bottom {
	width: 100%;
}

.customer-voice_upper {
	width: 100%;
}

.customer-voice_upper-right {
	flex: 1;
}

.customer-voice_bottom-right {
	flex: 1;
}

.customer-voice_before-box {
	border: 1px solid #cacaca;
	border-radius: 10px;
	padding: 1rem;
	width: 30%;
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.29);
}

.customer-voice_after-box {
	border: 1px solid #cacaca;
	border-radius: 10px;
	padding: 1rem;
	width: 45%;
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.29);
	border: 5px solid #feec02;
}

.customer-voice_yazirushi {
	display: inline-block;
    width: 39px;
    height: 40px;
    background: linear-gradient(90deg, #ffe100 0%, #ff5d00 100%);
    clip-path: polygon(0 31%, 63.2% 31%, 63.2% 0, 100% 50%, 63.2% 100%, 63.2% 69%, 0 69%);
	margin: 0 20px 0 10px !important;
}

.customer-voice_btn a {
	box-shadow: 3px 4px 0px #c1bd01;
}

.voice_box_inner {
	padding: 40px 30px !important;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.29);	
}

.voice_box_inner  figure{
	width:180px;
}

.voice_box_inner  img{
    border-radius: 100%;
    border: 1px solid #cacaca;
}

.customer-voice_modal {
	position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
	opacity: 0;
}

.customer-voice_modal.display-off {
	display: none !important;
	opacity: 0 !important;
}

.customer-voice_modal.display-on {
	display: flex !important;
	opacity: 1 !important;
}

.customer-voice_modal-kuchikomi {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 5%;
    left: 0;
    margin: auto;
    width: 60%;
    height: 70%;
    background-color: #fff;
	display: flex;
	flex-direction: column;
}

.customer-voice_modal-close-btn {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: black;
	color: white;
	text-align: center;
	font-size: 1.5rem;
	cursor:pointer;
	font-weight: bold;
}

.customer-voice_modal-close-btn:hover {
	opacity: 0.8;
}

.customer-voice_modal-kuchikomi_inner {
	padding: 2rem 2.5rem;
	flex: 1;
	overflow-y: scroll;
}

.customer-voice_modal-kuchikomi_inner h4 {
	font-weight: bold;
	font-size: 1.8rem;
}

.customer-voice_modal-kuchikomi_inner p {
	font-size: 1.2rem;
}

.customer-voice_upper {
	margin-bottom: 15px !important;
}

.customer-voice_upper figure {
	margin-bottom: 5px !important;
}

.customer-voice_upper h3 {
	margin-bottom: 5px !important;
}

.customer-voice_upper-box h3 {
	text-align: center;
}

@media screen and (max-width: 500px) {
	
	
	.voice_box_inner  figure{
		width:120px;
	}
	
	.customer-voice_upper {
		flex-direction: column;
	}
	
	.customer-voice_upper figure {
		
	}
	
	.customer-voice_bottom {
		flex-direction: column;
	}
	
	.customer-voice_bottom figure {
		margin-bottom: 15px;
	}
	
	.customer-voice_before-box {
		border: 1px solid #cacaca;
		border-radius: 10px;
		padding: 1rem;
		width: 90%;
		box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.29);
	}

	.customer-voice_after-box {
		border: 1px solid #cacaca;
		border-radius: 10px;
		padding: 1rem;
		width: 90%;
		box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.29);
		border: 5px solid #feec02;
	}
	
	.customer-voice_yazirushi {
		transform: rotate(90deg);
		margin: 5px 0 5px 0 !important;
	}
	
	.customer-voice_modal-kuchikomi {
		width: 90%;
	}
	
	.customer-voice_upper-box h3 span {
		font-size: 1.5rem !important;
	}
	
	.customer-voice_modal-close-btn {
		min-height: 50px;
	}
	
	.customer-voice_before-box p {
		font-size: 1.2rem;
	}
	
	.customer-voice_upper {
		margin-bottom: 15px !important;
	}
	
	.customer-voice_upper figure {
		margin-bottom: 5px !important;
	}
	
	.customer-voice_upper h3 {
		margin-bottom: 5px !important;
	}
}



