@charset "utf-8";
/* CSS Document */

/*--------------------------------------------
共通
----------------------------------------------*/
html > * {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
	font-family: 'M PLUS 1p', sans-serif;
	color: #333;
	line-height: 1.5;
	background-image: linear-gradient(45deg, rgba(251, 213, 251, 0.7), rgba(149, 233, 243, 0.7));
	font-size: 16px;
	-moz-user-select:none;
	-webkit-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-select:none;
	-khtml-user-drag:none;	
	user-select:none;/*コピペ禁止*/
}
#bg{
    max-width: 920px;
    margin: auto;
    background-color: white;
    padding: 0 30px;
    overflow: hidden;
    box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.5);
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
#bg {
    max-width: 400px;
    margin: auto;
    background-color: white;
    padding: 0 10px;
    overflow: hidden;
    box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.5);
}}


/*強調*/

b2 {
    font-weight: 600;
    font-size: 0.8em;
}

strong_r {
	font-weight: bold;
    color: red;
	background: linear-gradient(transparent 40%,#fef49b 40%);
}

red {
    color: red;
    font-size: 120%;
    margin-right: 3px;
    margin-left: 3px;

}

p_red {
    color: red;
    font-size: 100%;
}

/* 点滅 */
strong_b {
	font-weight: bold;
    font-size: 4vmin;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    color: red;
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
    animation: blinking 1s ease-in-out infinite alternate;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
strong_b {
	font-weight: bold;
    font-size: 5vmin;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    color: red;
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
    animation: blinking 1s ease-in-out infinite alternate;
}}
 
/* 点滅 */
strong_b2 {
	font-weight: bold;
    font-size: 3vmin;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    color: red;
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
    animation: blinking 1s ease-in-out infinite alternate;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
strong_b2 {
	font-weight: bold;
    font-size: 4vmin;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    color: red;
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
    animation: blinking 1s ease-in-out infinite alternate;
}}

/* 点滅 */
strong_b3 {
	font-weight: bold;
    font-size: 30px;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    color: red;
	background: linear-gradient(transparent 40%,#fef49b 40%);
    animation: blinking 1s ease-in-out infinite alternate;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
strong_b3 {
	font-weight: bold;
    font-size: 24px;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    color: red;
	background: linear-gradient(transparent 40%,#fef49b 40%);
    
}}

@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*蛍光のみ*/

back_y {
    background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
}

back_yellow {
    background: linear-gradient(transparent 40%,#fef49b 40%);
    
}

back_form {
    background: linear-gradient(transparent 70%,#fef49b 40%);
    
}

strong_y {
	font-weight: bold;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
}

strong_p {
	font-weight: bold;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    font-size: 3.5vmin;
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
strong_p {
	font-weight: bold;
	/*color: #ee0000;*/
	/*color: #ff3d0a;*/
	/*background-color: #ff6;*/
    font-size: 5vmin;
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
    }}


hr {
	border-bottom: 1px solid #d5d5d5;
	margin: 0 0 15px 0;
}

/*リスト表示*/
li {
	list-style: none;
}

/*リンク*/
a {
	color: black;
}

a:hover {
	color: #777;
}

/*点線*/
hr.line{
  border: none;
  border-top: 1px dotted #999;
}

/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

p.aria_text {
    font-size: 4px;
    text-decoration: underline;
    margin-top: 5px;
}

/* 
=======================================================
First view
=======================================================
*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
        /* padding: 10px 0 10px; */
        padding-bottom: 1em;
    }

}


/*文字寄せ
---------------------------------------*/
/*右寄せ*/
.txt_right {
	text-align: right;
}
/*左寄せ*/
.txt_left {
	text-align: left;
}

.tbl_top_left {
	float: left;
}

.tbl_top_right {
	float: right;
	vertical-align: bottom;
	margin: 0;
	padding: 12px 0 0 0;
}

/*戻るボタン
---------------------------------------*/

#backGuide, #backGuide p {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
#backGuide {
display: none;
position: fixed !important;
background-color: #333;
z-index: 9999;
}
#backGuide p {
display: block;
width: 300px;
height: 263px;
line-height: 80px;
margin: auto;
cursor: pointer;
font-weight: bold;
}

/*文字サイズ調整
---------------------------------------*/
/*小さく*/
.txt_small {
	font-size: 12px;
}

.txt_middle {
	font-size: 14px;
}


/*文字サイズ調整*/
.txt_verysmall {/*小さく*/
	font-size: 10px !important;
}

.text_verysmall {
	font-size: 10px;
}

/*大きく*/
.txt_large {
	font-size: 16px;
}

.txt_verylarge {
	font-size: 20px;
}

.txt_superlarge {
	font-size: 32px;
}


.gray_text {
	color: gray;
	margin: 0px 0px 15px 0px;
	padding: 10px;
	background: #f1f1f1;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
}

.bisque_text {
	margin: 0px;
	padding: 8px;
	background: #fff8dc;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	width: 100%;
}

.yellow_text {
	margin: 0px;
	padding: 8px;
	background: #FFFFCC;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	width: 100%;
}
.green_text {
	margin: 0px;
	padding: 8px;
	background: #CCFFCC;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	width: 100%;
}

.yellow_marker {
	background: linear-gradient(180deg,#fff 0%,#fff 10%,#ff6 10%,#fff 100%);
}

.evidence {
    color: black;
    font-weight: bolder;
	margin: 15px 0px 15px 0px;
	padding: 10px;
	background: white;
	border: 2px solid #e1e1e1;
	border-radius: 4px;
}

.privacy {
    color: black;
    font-weight: 200;
	margin: 15px 0px 15px 0px;
	padding: 10px;
	background: white;
	border-radius: 4px;
}

.realtime {
    font-size: 2.5vmin;
    text-align: right;
    font-weight: bolder;
    margin-bottom: 0px;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
.realtime {
    font-size: 4vmin;
    text-align: right;
    font-weight: bolder;
    }}

.realtime_rank {
    font-size: 3vmin;
    text-align: right;
    font-weight: bolder;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
.realtime_rank {
    font-size: 4vmin;
    text-align: right;
    font-weight: bolder;
    }}

/*文章内
--------------------------------------------*/
.yohaku{
	padding: 0 10px;
	width: 100%;
	margin: 0 auto;
}

.text_link{
	text-decoration: underline;
	color: #1a0dab;
}

.yajirushi {
	margin: -25px 0 0 0;
    font-size: 24px;
    font-weight: bold;
	color:#333;
    text-align: center;
}

.padding3{
	padding: 0 0 3px 0;
}

/*注釈
-------------------------------------*/
/*背景色（灰色）*/
.annotation_gray {
	padding: 10px;
	font-size: 12px;
	background: #f1f1f1;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
}

.hosoku_left{
	text-align: left;
	font-size: 10px;
	margin: 0;
	padding: 0px 0px 0px 0px;
	background-color: #fff;
}

.hosoku_right {
	display: block;
	text-align: right;
	margin: 0;
	padding: 0px 0px 0px 0px;
	background-color: #fff;
}


/*見出し背景色
---------------------------------------*/
.orange {
	background: #F90;
}

.red {
	color: #E5293C;
}

.green {
	background: #00b0f0;
}

.blue {
	background: #3683C9;
}

.pink {
	background: #F2719A;
}

.yellow {
	background: #F7B210;
}

.navy {
	background: #222e3d;
}

/*テーブルセル色変更（trに付与）
---------------------------------------*/
/*背景色黄色*/
.cell_yellow {
	background: #FAFFB5;
}

/*背景色オレンジ色*/
.cell_orange {
	background: #FCEDC3;
}

/*Clearfix*/
.cf {
	content: "";
	display: block;
	clear: both;
}

img {
	vertical-align: bottom;
}

.img_sentence{
	max-width: 400px;
}

/*プラポリ
-------------------------------------------------*/
#company {
    text-align: left;
    padding: 20px 10px;
    margin: 50px 0;
}

#company .company-top {
    text-align: center;
}


/*バナーヘッダー
-------------------------------------------------*/

.banner_header {
    width: auto;
    height: auto;
    margin: auto;
}

.top_header {
    width: 100%;
    height: auto;
}


/*並べ替え
-------------------------------------------------*/

.sort {
    display: flex;
    width: auto;
    height: auto;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    padding: 10px;;
    
}

.sort_text {
color: white;
}

.sort_contents01,.sort_contents02,.sort_contents03 {
    
    background: -moz-linear-gradient(bottom, #549FF0, #0A7EC7);
    background: -webkit-linear-gradient(bottom, #549FF0, #0A7EC7);
    background: linear-gradient(to top, #549FF0, #0A7EC7);
    color: white;
    padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 0px;
        padding-left: 0px;
    width: 45%;
    margin: auto;
    text-align: center;
    border-radius: 5px;
    border: solid 4px #0C7CF7;
    font-size: 24px;
    
}


@media screen and (max-width: 480px) {
    
    .sort_contents01,.sort_contents02,.sort_contents03 {
    background: -moz-linear-gradient(bottom, #549FF0, #0A7EC7);
    background: -webkit-linear-gradient(bottom, #549FF0, #0A7EC7);
    background: linear-gradient(to top, #549FF0, #0A7EC7);
    color: white;
    padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 0px;
        padding-left: 0px;
    width: 45%;
    margin: auto;
    text-align: center;
    border-radius: 5px;
    border: solid 4px #0C7CF7;
        font-size: 16px;
    }
}

/*比較表
-------------------------------------------------*/
.no1,.no2,.no3 {
    width: 100%;
}

.no4,.no5,.no6,.no7,.no8 {
    display: none;
}

.button_top {
    font-size: 18px;
    color: #00b0f0;
    margin: auto;
    margin-bottom: -10px;
}

@media screen and (max-width: 479px) {
 
    .button_top {
        font-size: 15px;
    }
}

.text {
	width: 100%;
	margin: 0 auto;
	padding: 0 5px 0 5px;
}
.text_amazon {
	font-size: 13px;
}

.frame_text {
    font-size: 12px;
    text-decoration: underline;
    margin: 10px auto 0;
    font-weight: bolder;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.frame_text4 {
    font-size: 12px;
}

.frame_text_reg {
    font-size: 13px;
    text-decoration: underline;
    margin: 10px auto 0;
}


/*ピックアップ求人
-------------------------------------------------*/

.hikaku_reco {
    
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 20px;
    border: solid 1px 
}

.hikaku_reco_banner {
    background-image: url(../img/parts/hikaku_recommend_PC.webp);
    background-size: 100% ;
    background-repeat: no-repeat;
    width: 100%;
    height: 370px;
    margin: auto;
}

@media screen and (max-width: 480px) {
    
    .hikaku_reco {
    width: 90%;
    height: auto;
    margin: auto;
        margin-top: 20px;
        text-align: center;
     
}
    
    .hikaku_reco_banner {
        background-image: url(../img/parts/hikaku_recommend.webp);
    background-size: 100% ;
    background-repeat: no-repeat;
    width: 100%;
    height: 285px;
    margin: auto;
        border: solid 1px
    }
}

/*=========　編集長おすすめ　===============*/

.recommend_board {
    background-image: url(../img/asset/recommend_agent.webp);
    background-size: 900px 150px;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    position: relative;
    top: 0;
    left: -5px;
    top: 28px;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 20px;
}

.note {
    text-align: right;
}

@media screen and (max-width:480px) {
    .recommend_board {
    background-image: url(../img/asset/recommend_agent.webp);
    background-size: 99% 99%;
    background-repeat: no-repeat;
    width: 375px;
    height: 60px;
    position: relative;
    top: 0;
    left: 1px;
    top: 0px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

.note {
    font-size: 0.6rem;
    text-align: right;
}
}

.recommend_box {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-width: 4px;
    width: 100%;
    height: auto;
    margin: auto;
    border-left: solid 2px #DEDEDE;
    border-right: solid 2px #DEDEDE;
    border-bottom: solid 2px #DEDEDE;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #CCF0EF;
}

@media screen and (max-width:480px) {
    .recommend_box {
    display: flex;
    flex-direction: column;
    border-width: 4px;
    width: 100%;
    height: auto;
    margin: auto;
    border-left: solid 2px #DEDEDE;
    border-right: solid 2px #DEDEDE;
    border-bottom: solid 2px #DEDEDE;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
}


.recommend_agent {
    display: flex;
    border-width: 4px;
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 10px;
}

@media screen and (max-width:480px) {
    .recommend_agent {
    margin: 10px;
    display: block;
    flex-direction: row;
    border-width: 4px;
    width: 100%;
    height: auto;
}
}

.recommend_agent01 {
    box-sizing: border-box;
    border-width: 4px;
    width: 100%;
    height:auto;
    margin: 0 auto;
    border: solid 2px #DEDEDE;
    float: left;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.recommend_agent02 {
    box-sizing: border-box;
    border-width: 4px;
    width: 100%;
    height:auto;
    margin: 0 auto;
    border: solid 2px #DEDEDE;
    float: left;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:480px) {
    .recommend_agent01 {
    width: 100%;
    height:auto;
    margin: 0 auto;
    border: solid 2px #DEDEDE;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: white;
}

.recommend_agent02 {
    width: 100%;
    height:auto;
    margin: 0 auto;
    border: solid 2px #DEDEDE;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: white;
}
}

.recommend_image {
    display:flex;
    padding: 5px;
    width: 90%;    
    justify-content: center;
}

.recommend_comment {
    border-width: 4px;
    height:auto;
    border-radius: 10px;
    font-size: 1.0em;
    font-weight: bolder;
    padding: 10px;
    background-color: white;
}

@media screen and (max-width:480px) {
    .recommend_comment {
    padding: 10px;
    width: 100%;
    height:auto;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bolder;
    background-color: white;
    margin: 0;
}
}

.recommend_under {
    border-bottom: solid 2px #00b0f0;
}

.agent_name {
    background-color: #EE7891;
    margin: auto;
    padding: inherit;
    font-size: 1em;
    font-weight: bolder;
    color: white;
    text-align: center;
    width: 100%;
}

.agent_detail {
    font-size: 0.8em;
    border-radius: 5px;
    margin: 5px;
    font-weight: bolder;
    padding: 5px;
}

@media screen and (max-width:480px) {
    .agent_detail {
    font-size: 0.7em;
    border-radius: 5px;
    margin: 5px;
    font-weight: bolder;
}
}

.button02 {
	display: block;
	position: relative;
	background-color: #06C3B8;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 1px 1px;
	overflow: hidden;
	width: 90%;
	margin: 5px auto 5px;
}

@media screen and (max-width:480px) {
.button02 {
	display: block;
	position: relative;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 12px 10px;
	overflow: hidden;
	width: 80%;
	margin: 5px auto 5px;
}
}
    
.button_text02 {
    color:white;
    font-size: 18px;
    text-align: center;
    font-weight: bolder;
    line-height: 1.1em;
    margin: 5px;
}

@media screen and (max-width:480px) {
    .button_text02 {
    color:white;
    font-size: 0.8em;
    margin: auto;
    text-align: center;
    font-weight: bolder;
}
}

.plus {
    display: flex;
    align-items: center;
    font-size: 3em;
    font-weight: bolder;
    color: #EE7891;
}

@media screen and (max-width:480px) {
    .plus {
    display: flex;
    align-items: center;
    font-size: 3em;
    font-weight: bolder;
    }
}

/*=========　おすすめエージェント　=========*/

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

@media screen and (max-width: 480px) {
    .recommend_wrap {
    display: block;
        
}
    
    .center-icon {
        text-align: center;
        font-size: 15px;
        margin: 0;
    }
}

    

.recommend {
    background-color: #ffffff;
    border: solid #dadbd8;
    margin: 20px 0;
    text-align: center;
}

.thumbnail {
    margin: 10px auto;
    width: 90%;
    
}

.plus {
    margin: 10px;    
}

.site_name {
    text-align: center;
    background-color: #00b0f0;
    color: #ffffff;
}

.column {
    width: 100%;
}

/* 1024px以上だと2カラム */
@media (min-width: 1024px) {
    .column {
        width: 50%;
    }
}

.submit2 {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 90%;
    max-width: 400px;
    margin: 5px auto;
    padding: 0.5rem 1rem;
    font-weight: bold;
    border-radius: 100vh;
    border-bottom: 7px solid #42595C;
    background: #ed2f2f;
    color: #fff;
    font-size: 18px;
}

.submit:hover {
    margin-top: 6px;
    border-bottom: 1px solid #b73a63;
    color: #fff;
}

@media screen and (max-width: 480px) {
    .submit2 {
        width: 90%;
        border-radius: 50vh;
        padding: 10px 0;
        font-size: 14px;
        margin: 10px auto;
    }
 

.site_name {
    text-align: center;
    background-color: #00b0f0;
    color: #ffffff;
    margin: auto;
}
    }



/*ピックアップ求人
-------------------------------------------------*/

.pickup_main_title {
    background-color: #00b0f0;
    font-size: 1.5em;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
    color: white;
}

.pickup {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: auto;
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow-x: scroll;
    
}

.pickup_box {
    box-sizing: border-box;
    border: 1px solid black;
    width: 30%;
    height: auto;
    padding: 10px;
    margin: auto;
    margin-left: 10px;
    flex-shrink: 0;
}

.pickup_title {
    background-color:#00b0f0;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 0.8em;
}

.pickup_detail {
    font-weight: 700;
}

.pickup_logo {
    width:100%;
    display: flex;
    align-items: center;
}

.pickup_logo_img {
    background: url(../img/parts/logo.png) no-repeat left;
    background-size: 100%;
    width: 50%;
    height: 20px;
    margin: auto;
    
}

.pickup_logo_img01 {
    background: url(../img/parts/will-of-logo.png) no-repeat left;
    background-size: 100%;
    width: 30%;
    height: 45px;
    margin: auto;
    
}

.pickup_logo_img02 {
    background: url(../img/parts/kirakea-kaigo-logo.jpeg) no-repeat left;
    background-size: 100%;
    width: 40%;
    height: 45px;
    margin: auto;
    
}

.pickup_logo_img03 {
    background: url(../img/parts/kaigo-garden-logo.png) no-repeat left;
    background-size: 100%;
    width: 40%;
    height: 45px;
    margin: auto;
    
}

.pickup_logo_img04 {
    background: url(../img/parts/kaigo-job-logo.png) no-repeat left;
    background-size: 100%;
    width: 40%;
    height: 45px;
    margin: auto;
}


.pickup_logo_img06 {
    background: url(../img/parts/logo_staff.png) no-repeat left;
    background-size: 100%;
    width: 35%;
    height: 45px;
    margin: auto;
}




.button10 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 5px 5px;
	overflow: hidden;
	width: 100%;
	margin: auto;
}

.th_pickup {
    width: 50%;
}

.pickup_scroll {
    text-align: center;
    font-weight: 700;
    background-color: white;
}

@media screen and (max-width: 480px) {
    
    .pickup_box {
    box-sizing: border-box;
    border: 1px solid black;
    width: 60%;
    height: auto;
    padding: 10px;
    margin: auto;
    margin-right: 10px;
    flex-shrink: 0;
}

.pickup_title {
    background-color:#00b0f0;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 0.8em;
}

.pickup_detail {
    font-weight: 700;
}

.pickup_logo {
    width:100%;
    display: flex;
}

    
}


.button10 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 5px 5px;
	overflow: hidden;
	width: 100%;
	margin: auto;
	
}


    .th_pickup {
    
        width: 50%;
        font-size: 0.7em;
}
    
    .td_pickup {
        font-size: 0.7em;
    }
    


/*ランキング
-------------------------------------------------*/
.best01,.best02,.best03,.best04,.best05,.best06,.best07,.best08,.best09,.best10,.best11 {
	padding: 2px 0 0 46px;
	line-height: 44px;
    
}

.best99 {
	padding: 2px 0 0 0px;
	line-height: 44px;
}

/*1位表示*/
.best01 {
	background: url(../img/parts/ranking-crown-no1.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
    
}
/*2位表示*/
.best02 {
	background: url(../img/parts/ranking-crown-no2.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*3位表示*/
.best03 {
	background: url(../img/parts/ranking-crown-no3.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*4位表示*/
.best04 {
	background: url(../img/parts/rank04.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*5位表示*/
.best05 {
	background: url(../img/parts/rank05.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*6位表示*/
.best06 {
	background: url(../img/parts/rank06.jpg) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*7位表示*/
.best07 {
	background: url(../img/parts/rank07.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*8位表示*/
.best08 {
	background: url(../img/parts/rank08.jpg) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*9位表示*/
.best09 {
	background: url(../img/parts/rank09.jpg) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*10位表示*/
.best10 {
	background: url(../img/parts/rank10.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*11位表示*/
.best11 {
	background: url(../img/parts/rank11.png) no-repeat left;
	background-size: 40px;
    padding-left: 50px;
}
/*以降*/
.best99 {
	background-size: 1px;
}

/*ランキングコメント
-------------------------------------------------*/
/*1位コメント表示*/
.best01-comment {
	background: url(../img/animal/dog_2.png) no-repeat left;
	background-size: 40px;
    margin-top: 5px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}



/*口コミ
---------------------------------------------------*/
.kuchikomi-sk {
	background: url(../img/animal/cow_2.png) no-repeat left;
	background-size: 35px;
    margin-top: 5px;
    padding-top: 10px;
    padding-left: 10px;
}

.kuchikomi-box01 {
    display:flex;
    padding: 5px;
    background-color: aliceblue;    
    margin-top: 5px;
    align-items: center;
    border-radius: 10px;
}

.kuchikomi-women {
    width: 20%;
    padding: 15px;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
.kuchikomi-women {
    width: 32%;
    padding: 10px;
}
}

.kuchikomi-name {
	border-bottom : solid 1px #000;
	display: block;
	text-align: center;
}

.kuchikomi-text {
    font-size: 2.0vmin;
    padding:inherit; 
    font-weight: bolder;
    width:90%;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
    .kuchikomi-text {
    font-size: 2.5vmin;
    padding:inherit; 
    font-weight: bolder;
    width:90%;
    }}

/*リストアイコン
---------------------------------------------------*/
.li_icon li{
	margin: 0 0 5px 0;
	padding: 2px 0 0 26px;
	height: 24px;
}
.inspection{
	background: url(/img/items/inspection-24.png) no-repeat;
}
.bank {
	background: url(/img/items/bank-24.png) no-repeat;
}
.attention {
	background: url(/img/items/attention-24.png) no-repeat;
}
.search {
	background: url(/img/items/search-24.png) no-repeat;
}
.bank_robbery {
	background: url(/img/items/bank_robbery-24.png) no-repeat;
}
.queen {
	background: url(/img/items/queen_gb-24.png) no-repeat;
}
.fine_print {
	background: url(/img/items/fine_print-24.png) no-repeat;
}

/*-----------------------------------------
レイアウト
---------------------------------------------*/
#wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

/*---------------------------------------------
ヘッダー
-----------------------------------------------*/
header {
/*	position: fixed;*/
/*	-webkit-backface-visibility: hidden;*/
	position: relative;
	width: 100%;
	height: 40px;
	z-index: 100;
}

h1 img {
	max-width: 100%;
}

@media screen and (max-width: 479px) {
h1 img  {
    width: 60%;
}
}

#head_area {
	position: relative;
	margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

#head_area::after {
	content: "";
	display: block;
	clear: both;
}


/*ナビゲーション
--------------------------------------------*/
#top_nav {
	background: #fff;
	box-sizing: border-box;
	margin: 0 auto;
	width: 860px;
}

@media screen and (max-width: 979px) {
#top_nav {
    width: 700px;
}
}

@media screen and (max-width: 767px) {
#top_nav {
    width: 90%;
    max-width: 700px;
}
}

@media screen and (max-width: 479px) {
#top_nav  {
    width: 100%;
}
}

#top_nav::after {
	content: "";
	display: block;
	clear:both;
}

#top_nav ul {
	display: table;
	table-layout: fixed;
	width: 100%;
}

#top_nav li {
	display:table-cell;
	height: 40px;
	font-size: 12px;
	text-align: center;
	border-right: 1px solid #d1d1d1;
	vertical-align: middle;
	box-sizing: border-box;
}

#top_nav li a {
	display: block;
	/*padding: 3px 0;*//*iOSで高さが変わる…*/
}

#top_nav li:last-child {
	box-shadow: none;
}

#top_nav li:first-child {
	width: 60%;
}

#top_nav li:last-child {
	width: 20%;
}

@media screen and (max-width: 479px) {
    #top_nav li {
        font-size: 10px
    }
}

.t_nav {
	padding: 3px 0 3px 20px;
}

.icon01 {
	background: url(/img/items/icon_ranking.png) no-repeat;
	background-size: 16px;
}

.icon02 {
	background: url(/img/items/icon_soku.png) no-repeat;
	background-size: 16px;
}

.icon03 {
	background: url(/img/items/search-24.png) no-repeat;
	background-size: 16px;
}

.nav_btn{
    background-color: #e0edff;
}


/*ロゴ
--------------------------------------------------*/
#logo {
    text-align: left;
    padding: 15px 0px 15px 0;   
}

@media screen and (max-width: 479px) {
#logo {
    text-align: left;
    padding: 15px 0px 15px 10px;   
}
}

.img_waku {
    width: 70%;
}

.img_waku2 {
    width: 50%;
}

@media screen and (max-width: 479px) {
    .img_waku {
    width: 90%;
}
}

/*----------------------------------------------
メニューボタン
------------------------------------------------*/
/*アイコンレイアウト*/
.menu_icon {
	background: #f1f1f1;
}

.menu_icon span {
	display: block;
}


@media screen and (min-width: 768px) {
.toggle-menu {
	display: none !important;
}
}


/*---------------------------------------------
コンテンツ
-----------------------------------------------*/
#contents {
	margin: 40px auto 0 auto;
	width: 860px;
}

@media screen and (max-width: 979px) {
#contents {
    margin: 30px auto 0 auto;
    width: 700px;
}
}

@media screen and (max-width: 767px) {
#contents {
    width: 90%;
    max-width: 700px;
}
}

@media screen and (max-width: 479px) {
#contents {
    width: 100%;
}
}


/*ヘッダーバナーエリア
----------------------------------------------*/
.head_banner .title {
    font-size: 22px;
    font-weight: bold;
    line-height: 24px;
    margin: 15px auto 5px;
    width: 95%;
}

.mv_copy{
    padding: 5px;
    letter-spacing: 0.3em;
    display: block;
    border-top: 2px solid #00b0f0;
    border-bottom: 2px solid #00b0f0;
    margin: 55px 0 15px 0;
    font-weight: bold;
    color: #00b0f0;
}

.bk{
    color: #333;
    font-size: 1.2em;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.mv_pc { display: block !important; }
.mv_sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .mv_pc { display: none !important; }
    .mv_sp { display: block !important; }
}


/*見出し
----------------------------------------------*/
.col1 h2,.col2 h2,.kobetsu001 h2,
.kuchikomi_box h2,.categoli h2,.text h2,.occupation h2,.age h2 {
	font-size: 20px;
	margin: 40px 0 0 0;
	padding: 6px;
	text-align: center;
	color: #FFFFFF;
}

.col h3 {
	text-align: center;
	font-size: 22px;
}

/*アイコン付見出し*/
.kobetsu001 h3 {
	font-size: 18px;
}

/*見出し
----------------------------------------------*/
.kobetsu002 h2 {
    border-left: 5px solid #f7b210;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    line-height: 22px;
    padding-left: 10px;
    vertical-align: middle;
	margin: 20px 3px 3px;
}
.kobetsu002 h2 + span {
	display: inline-block;
	vertical-align: middle;
	margin: 20px 0 3px 10px;
	color: #aaa;
	font-size: 16px;
}
.kobetsu002 h3 {
	border-bottom: 3px dotted #00b0f0;
	border-left: 4px solid #00b0f0;
	margin: 15px 0 15px;
	padding: 3px 10px;
	font-size: 19px;
	clear: both;
	margin-left: 5px;
}
.kobetsu002 h4 {
	font-size: 17px;
}
.kobetsu002 p {
	margin: 3px 8px;
}

.kobetsu002 .titleBox {
	margin: 25px 0px 7px;
	padding: 0 10px;
}

.kobetsu002 .maru {
	display: inline-block;
	vertical-align: middle;
	color: #f7b210;
	font-size: 18px;
}

.kobetsu002 .title {
	display: inline-block;
	padding-left: 1px;
	vertical-align: middle;
	font-weight: bold;
	font-size: 18px;
}

.kobetsu002 em {
	background: linear-gradient(transparent 60%, #ff0 0%);
	font-weight: bold;
	font-size: 16px;
}

.kobetsu002 .section {
	border:2px dotted #d1d1d1;
	width: 90%;
	margin: 20px auto 10px;
}

.kobetsu002 .bullet {
	width: 100%;
}

/*----------------------------------------------*/

/*バナーヘッダー*/
#catch {
	width: 100%;
	border: 3px solid #f1f1f1;
}

#subcatch {
	width: 100%;
}

/*=========　転職動向　=========*/

.trend {
    box-sizing: border-box;
    border: solid 2px #D6524B;
    align-items: center;
    margin: auto;
    margin-top: 30px;
    width: 90%;
    padding: 0px;
}

.trend_title {
    background-color: #D6524B;
    color: white;
    text-align: center;
    font-weight: bolder;
    padding: 5px;
    margin: 0px;
}

.trend_comment {
    padding: 20px;
    font-weight: bolder;
    margin: 0;
    background-color: white;
}

@media screen and (max-width:480px) {
    
    .trend {
        box-sizing: border-box;    
        border: solid 2px #D6524B;  
        font-size: 0.9em;
        align-items: center;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 95%;
        padding: 0px;
}
    
    .trend_comment {
    padding: 12px;
    font-weight: bolder;
    margin: 0;
    background-color: white;
}
}

/*=========　応募ステップ　=========*/

.flow {
    box-sizing: border-box;
    width: 100%;
    margin-top: 20px;
}

.flow_title {
    background-color: #00b0f0;
    color: white;
    font-size: 1.5em;
    font-weight: 400;
    text-align: center;
    border-radius: 15px 15px 0 0;    
}

.flow_step {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 3px solid #00b0f0;
    background-color: white;
    border-radius: 0 0 15px 15px;
    margin-bottom: 40px;    
}

.flow1,.flow2,.flow3,.flow4 {
    display: block;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: auto;
    padding: 5px;
    margin: auto
}

.flow1_illust {
    background-image: url(../img/parts/megane_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:70px;
    height: 70px;
    position: relative;
    bottom: 0px;
    left: 17px;
    margin-top: 0px;
}

.flow2_illust {
    background-image: url(../img/parts/tenbin_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:70px;
    height: 70px;
    position: relative;
    bottom: 0px;
    left: 22px;
    margin-top: 0px;
}

.flow3_illust {
    background-image: url(../img/parts/form_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:70px;
    height: 70px;
    position: relative;
    bottom: 0px;
    left: 29px;
    margin-top: 0px;
}

.flow4_illust {
    background-image: url(../img/parts/check_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:70px;
    height: 70px;
    position: relative;
    bottom: 0px;
    left: 29px;
    margin-top: 0px;
}



.flow1_title,.flow2_title,.flow3_title,.flow4_title {
    color: #333;
    font-size: 0.9em;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}



.arrow_right {
    background-image: url(../img/parts/arrow_right.png);
    background-size: 80% ;
    background-repeat: no-repeat;
    width:48px;
    height: 48px;
    position: relative;
    left: 3px;
    opacity: 0.3;
}

@media screen and (max-width:480px) {
    
    .flow_step {
    
        display: flex;
        flex-flow: column;    
        align-items: center;    
        justify-content: center;
        padding: 10px;
        border: 4px solid #00b0f0;
    
}
    .arrow_right {
    background-image: url(../img/parts/arrow_down.png);
    background-size: 80% ;
    background-repeat: no-repeat;
    width:48px;
    height: 48px;
    position: relative;
    bottom: -5px;
    left: 3px;
        
        
}
    .flow {
        display: none;
    box-sizing: border-box;
    width: 90%;
        margin: auto;
    margin-top: 20px;
}
    
    .flow1,.flow2,.flow3,.flow4 {
    display: block;
    justify-content: center;
    align-items: center;
    border: 2px solid #00b0f0;
    width: 200px;
    height: auto;
    padding: 5px;
    margin: auto
    
}
    
    .flow1_illust {
    background-image: url(../img/parts/megane_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:90px;
    height: 90px;
    position: relative;
    bottom: 0px;
    left: 47px;
    margin-top: 0px;
}

.flow2_illust {
    background-image: url(../img/parts/tenbin_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:90px;
    height: 90px;
    position: relative;
    bottom: 0px;
    left: 47px;
    margin-top: 0px;
}

.flow3_illust {
    background-image: url(../img/parts/form_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:90px;
    height: 90px;
    position: relative;
    bottom: 0px;
    left: 57px;
    margin-top: 0px;
}

.flow4_illust {
    background-image: url(../img/parts/check_icon.png);
    background-size: 100% ;
    background-repeat: no-repeat;
    width:90px;
    height: 90px;
    position: relative;
    bottom: 0px;
    left: 57px;
    margin-top: 0px;
}
}
    


/*=========　検索フォーム　=========*/

.form_box {
    width: 100%;
    margin: 10px auto 30px;
    padding: 20px;
    background: #eee;
    border-radius: 25px;    
}

.form_box h3 {
    text-align: center;
	margin: 0px 0 5px;
	padding: 10px 10px;
	font-size: 19px;
	clear: both;
    color: white;
    background-color: #00b0f0;
    border-radius: 15px 15px 0 0;
}

.form_title {
    background-color: #00b0f0;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    text-align: center;
    color: white;
    font-size: 1.2em;
    font-weight: bolder;

}

.form_table {
    border-collapse:separate;
    border-spacing: 10px;
    width: 100%;
    margin-bottom: 0px;
}

.th_form {
    width: 30%;
    font-size: 1.4em;
    height: auto;
    vertical-align: middle;
    
}

.td_form02 {
    background-color: white;
    border: none;
    padding: 0px;
    height: auto;
    vertical-align: middle;
    font-size: 0.9em;
    flex-wrap: wrap;
    font-weight: bolder;
    border-radius: 0px;
}

label {
    margin: 10px;
}

@media screen and (max-width:480px) {
    .th_form {
    width: 30%;
    font-size: 0.8em;
    height: auto;
    vertical-align: middle;
    }

    .form_box {
        padding: 5px;
    }
}

.td_form {
    background-color: #C2F9C7;
    border: none;
    padding: 0px;
    height: 40px;
    vertical-align: middle;
}

.td_form02 {
    background-color: white;
    border: none;
    padding: 0px;
    height: auto;
    vertical-align: middle;
    font-size: 0.9em;
    flex-wrap: wrap;
    font-weight: bolder;
    border-radius: 0px;
}


.td_form03 {
    background-color: #FFE6E6;
    border: none;
    padding: 0px;
    height: 40px;
    vertical-align: middle;
    font-size: 0.9em;
    flex-wrap: wrap;
}

.td_form02 ul {
    list-style: none;
}

.ul_form {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    padding: 10px
}

@media screen and (max-width:480px) {
    .ul_form {
    display: flex;
    flex-wrap: wrap;
    height: 70px;
    padding: 10px
}
}

    
    
.ul_form li {
    margin: auto;
}



.styled-select {
  overflow: hidden;
  width: 90%;
  margin: 2em auto;
  font-weight: bolder;
  height: 40px;
}

.styled-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.styled-select select::-ms-expand {
    display: none;
}
.styled-select.sl01 {
    position: relative;
    border-radius: 2px;
    border: 2px solid #00b0f0;
    border-radius: 50px;
    background: #ffffff;
    font-size: 1.3em;
    text-align: center;
}
.styled-select.sl01::before {
  position: absolute;
  top: 1.0em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #00b0f0;
  pointer-events: none;
}

.styled-select.sl01 select {
  padding: 8px 38px 8px 8px;
  color: black;
}


/*さらに検索
---------------------------------------------------*/
#acMenu::after {
	content: "";
	display: block;
	clear: both;
}

#acMenu dt{
	float: right;
    display:block;
    width:85px;
	line-height: 24px;
	margin: 5px 5px 5px 0;
	padding: 2px 0 0 28px;
	font-size: 12px;
    border: 1px solid #d1d1d1;
    cursor:pointer;
    background:url(/img/items/plus_icon-40.png) no-repeat 5px 4px;
	background-size: 20px;
}
#acMenu dd{
    width:100%;
    height:auto;
    display:none;
}
#acMenu dt.active{
    background:url(/img/items/minus_icon-40.png) no-repeat 5px 4px;	
	background-size: 20px;
}

.open {
	display: none;
}

/*検索ボタン*/
.btn_form {
}

/*検索フォームボタン*/
.btn_kensaku img{
	width: 85%;
	display: block;
	margin-left: auto;
	margin-right: auto;
/*	margin: 0 auto 15px;*/
	text-align: center;
}

/*フォーム 20151028改修版
---------------------------------------------*/
.form_box02 {

}
.form_box02 > ul {
	display: table;
	width: 100%;
	font-size: 12px;
	margin: 0 0 5px 0;
}

.form_box02 > ul > li {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 10px;
    background-color: #00b0f0;
    border: solid 1px #00b0f0;
}

.form_box02 > ul > li > ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.form_box02 > ul > li > ul > li {
	list-style:none;
	padding: 1px 5px 1px 5px;
    width: 40%;
}

.form_box02 > ul > li:first-child {
	width: 20%;
	padding: 0 5px 0 0;
    background-color: #00b0f0;
    text-align: center;
}

.form_box02 > ul > li:last-child {
	width: 80%;
	padding: 10px;
    background-color: white;
    text-align: center;
    
}


.form_box02 p{
    font-size: 15px;
    font-weight: bolder;
    color: white;
}

.form_box02 li label:hover {
    background-color: gold;
}

.form_koumoku ul {
	display: inline;
}

.form_koumoku li {
	list-style:none;
	padding: 1px 5px 1px 5px;
    width: 40%;
}


.form_koumoku label {
	vertical-align: middle;
    color: black;
}



@media screen and (max-width: 480px) {
    .form_box02 > ul {
	display: table;
	width: 100%;
	margin: 0 0 5px 0;
	border: 1px solid #d1d1d1;
}

.form_box02 > ul > li {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 10px;
    background-color: #00b0f0;
    border: solid 1px #00b0f0;
}
    
.form_box02 > ul > li > ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
}

.form_box02 > ul > li > ul > li {
	list-style:none;
	padding: 1px 5px 1px 5px;
    width: 50%;
}

.form_box02 > ul > li:first-child {
	width: 15%;
	padding: 0 5px 0 0;
    background-color: #00b0f0;
    text-align: center;
    font-size: 15px;
}

.form_box02 > ul > li:last-child {
	width: 80%;
	padding: 5px;
    background-color: white;
    text-align: center;
    font-size: 10px;
}

.form_box02 p{
    font-size: 13px;
    font-weight: bolder;
    color: white;
}

.form_box02 li label:hover {
    background-color: gold;
}

.form_koumoku ul {
	display: flex;
    flex-wrap: wrap;
}

.form_koumoku li {
    list-style: none;
	display: flex;
    flex-wrap: wrap;
	padding: 1px 5px 1px 5px;
}


.form_koumoku label {
	vertical-align: middle;
    color: black;
    white-space: nowrap;
}
}

#btn-click  {
	width: 100%;
}


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

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 5px;
  margin-bottom: 20px;
  font: 14px/20px 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  font-weight: bolder;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media screen and (max-width:480px) {
    
 input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 1.1em/20px 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  font-weight: bolder;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
     
    }
}   

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #00b0f0;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*=========　チェックボックスここまで　=========*/

/*-----------------------------------------
特集ページ（パネル）
-------------------------------------------*/
.feature_panel {
	padding: 10px 5px 0 5px;
}

.feature_panel ul {
	display: table;
	width: 100%;
	padding: 0 0 10px 0;
}
.feature_panel li{
	display: table-cell;
	width: 33%;
	text-align: center;
	padding: 0 5px;
}

.feature_panel li:last-child {
}

.feature_panel img {
	width: 100%;
}

/*-----------------------------------------
職種別ランキング
-------------------------------------------*/

.occu_rank ul {
    list-style:none;/*デフォルトの指定解除*/
    display:flex;
    flex-wrap:wrap; /*要素を折り返す*/
    padding: 5px;
}

.occu_rank li {
}

.occu_rank img {
    width: 32%;
    padding: 5px;
}

/*-----------------------------------------
カテゴリ別ランキング
-------------------------------------------*/

.cate_rank ul {
    list-style:none;/*デフォルトの指定解除*/
    display:flex;
    flex-wrap:wrap; /*要素を折り返す*/
    padding: 5px;
}

.cate_rank li {
}

.cate_rank img {
    width: 32%;
    padding: 5px;
}

    .list {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }
    .item {
      background-color: gray;
      color: white;
      margin: 5px;
      float: left;
      width: calc(50% - 10px);
    }

/*-----------------------------------------
3つのポイント
-------------------------------------------*/
.point-banner {
    padding-top: 5px;
    padding-bottom: 2px;    
}

.point-box00 {
    background-color: white;
    border: solid 3px white;    
    padding: 5px
}

.point-box01 {
    padding: 0.5em 1em;
    margin: 8px 0;
    font-weight: bold;
    border: solid 3px #00b0f0;    
    border-radius: 10px;
    background-color: #00b0f0;
}

.point-box01 h6{
    font-size: 2.5vmin ;
    color: white;
}

.point-box02 {
    padding: 0.5em 1em;
    margin: 8px 0;
    font-weight: bold;
}

.point-box02 p{
    font-size: 2.5vmin;
    color: black;
}

@media screen and (max-width: 480px) {
    .point-box01 h6{
    font-size: 4vmin ;
    color: white;
}
    
    .point-box02 p{
    font-size: 4vmin;
    color: black;
}
}


/*-----------------------------------------
年代別ランキング
-------------------------------------------*/

.age_rank ul {
    list-style:none;/*デフォルトの指定解除*/
    display:flex;
    flex-wrap:wrap; /*要素を折り返す*/
    padding: 5px;
}

.age_rank li {
}

.age_rank img {
    width: 32%;
    padding: 5px;
}

/*業者紹介（共通・スペック表）
---------------------------------------------*/
.t_space {
	margin: 5px 3px;
	padding: 0px;
/*	border-bottom: 1px solid #d1d1d1;*/
}


.t_space:last-child {
	border-bottom: none;
}

.t_space h3 {
	font-size: 20px;
}

@media screen and (max-width: 480px) {
    .ribbon1-wrapper h3 {
	font-size: 4vmin;
	margin: 8px 0 5px; 
    }}
    

.t_space h3 a {
	text-decoration: underline;
}

/*.t_space h4 {
	width: 100%;
	text-align: center;
	margin: 0 0 5px 0;
	padding: 4px 30px;
	font-size: 16px;
	height: 30px;
	background-color: #ffd700;
}*/

.t_space h4 {
	width: 100%;
	margin: 5px 5px 5px ;
	padding: 4px 30px;
	/*padding: 6px 30px;*/
	font-size: 18px;
	height: 30px;
/*	background-color: #ffffff;*/
}

.t_space h5 {
	width: 100%;
	margin: 5px 5px 5px ;
	padding: 4px 30px;
	/*padding: 6px 30px;*/
	font-size: 2.6vmin;
	height: auto;
/*	background-color: #ffffff;*/
}

@media screen and (max-width: 480px) {
    .t_space h5 {
	width: 100%;
	margin: 5px 5px 5px ;
	padding: 4px 30px;
	/*padding: 6px 30px;*/
	font-size: 3.5vmin;
	height: auto;
/*	background-color: #ffffff;*/
    }}

.t_img {
	display: block;
	max-width: 100%;
	margin: 0 auto 5px;
	padding: 1px;
	border: 1px solid #d5d5d5;
}

.t_space p,.t_space03 p {
	/*margin: 0 0 10px 0;*/
	line-height: 1.3;
}

.t_space p a,t_space02 p a,.t_space03 p a {
	color: blue;
	text-decoration: underline;
}

.t_space .appeal_point {
	font-size: 17px;
}

.t_space .img_media {
    list-style:none;/*デフォルトの指定解除*/
    display:flex;
    padding: 5px 5px 5px 5px;
    margin: 5px;
    border: 0;
    align-items: center;
    justify-content: center;
}

.t_space .img_banner {
    width: 100%;   
    display: flex;
    align-items: center;
}

.t_space .img_banner a {
    display: flex;
    width: 100%;
}

.t_space .img_para {
    width: 45%;
    display:flex;

}

@media screen and (max-width: 480px) {
    .t_space .img_para {
    width: 40%;
    display:flex;
    margin: auto;

    }}

.star {

    display: flex;
    justify-content: left;
    align-items: center;
}

.t_space02 {
	margin: 5px 5px 10px 5px;
	padding: 0 5px 10px;
/*	border-bottom: 1px solid #d1d1d1;*/
}



.t_space02:last-child {
	border-bottom: none;
}

.t_space02 h3 {
	font-size: 20px;
	margin: 8px 0 5px; 
}

.t_space02 h3 a {
	text-decoration: underline;
}


.t_space02 h4 {
	width: 100%;
	margin: 5px 5px 5px ;
	padding: 6px 30px;
	font-size: 18px;
	height: 30px;
	background-color: #ffffff;
}

.t_img {
	display: block;
	max-width: 100%;
	margin: 0 auto 5px;
	padding: 1px;
	border: 1px solid #d5d5d5;
}

.t_space p,.t_space03 p {
	/*margin: 0 0 10px 0;*/
	line-height: 1.3;
}

.t_space02 p a,t_space02 p a,.t_space03 p a {
	color: blue;
	text-decoration: underline;
}

.t_space02 .appeal_point {
	font-size: 17px;
}

.t_space02 .img_card {
	text-align : center;
	width: 100%;
	margin: 15px auto 5px;
}

.point_red {
    color: red ;
}


/*おすすめ２社
-------------------------------------------------*/

#recommend2 {
    position: relative;
	border-color: #00b0f0;
	border-style: solid;
	border-width: 8px;
	margin: 15px 0;
	padding: 1rem;
    width:100%;
}

#recommend2 .recommend2_banner{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/
    
    #recommend2 .recommend2_banner{
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}}

#recommend2 .recommend2_text p{
    font-weight: bolder;
}

@media screen and (max-width: 480px) {
    /*　画面サイズが480pxまではここを読み込む　*/

    #recommend2 .recommend2_banner th{
    font-weight: bolder;
    font-size: 2.5vmin;
        
    }}

.recommend2_title {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;

}

#recommend2 .recommend2_banner01{
    padding: 10px;
    width: 100%;
}

#recommend2 .recommend2_banner02{
    padding: 10px;
    width: 100%;
}

#recommend2 .recommend2_plus {
    width: 10%;
}

#recommend2 .recommend2_button {
    background-color: white;
}

#recommend2 .recommend2_button a {
    color: white;
}




/*DB結果
-------------------------------------------------*/

.db_banner {
    display: none;
    position: relative;
    border-color: #008000;
    border-style: solid;
    border-width: 5px;
    margin: 2px 0;
    width: 100%;
}



/*コメント隠す
-------------------------------------------------*/

.readmore-wrap {
  position: relative;
}
.readmore-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -55px;
  width: 160px;
  margin: 0 auto;
  padding: 10px;
  background-color: #eee;
  color: #333;
  border: 1px solid #aaa;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  z-index:10;
}
.readmore-text {
  position: relative;
  height: 25px; /*テキストが1行のみ表示される状態*/
}
.readmore-check {
  display: none; /*チェックボックスは常に非表示にしておきます*/
}
.readmore-check:checked + .readmore-btn {
  display: none; /*チェックが入るとボタンを非表示にします*/
}
.readmore-check:checked ~ .readmore-text {
  height: auto; /*チェックが入るとテキストの高さ制限をなくします*/
}


/*業者特徴
-------------------------------------------------*/
.point {
	margin-bottom: 2%;
	padding: 5px;
	background: #F9F9AC;
}

.point li {
	padding: 1px 0 0 22px;
	background: url(/img/items/check_green.png) no-repeat;
	background-size: 20px;
}


/*業者詳細ページ
-------------------------------------------------*/

.th_company {
    font-weight: bolder;
}

.detail-banner {
    padding-top: 5px;
    padding-bottom: 2px;    
}

.detail-box00 {
    background-color: white;
    border: solid 3px white;    
    padding: 5px
}

.detail-box01 {
    padding: 10px;
    margin: 15px 0 0px 0;
    font-weight: bold;
    border: solid 3px #00b0f0;    
    border-radius: 10px;
    background-color: #00b0f0;
}

.detail-box01 h6{
    font-size: 2.5vmin ;
    color: white;
}

.detail-box02 {
    padding: 0.5em 1em;
    margin: 8px 0;
    font-weight: bold;
}

.detail-box02 p{
    font-size: 2.5vmin;
    color: black;
}

@media screen and (max-width: 480px) {
    .detail-box01 h6{
    font-size: 4vmin ;
    color: white;
}
    
    .detail-box02 p{
    font-size: 4vmin;
    color: black;
}
}

/*求人例
-------------------------------------------------*/

.th_job {
    font-weight: bolder;    
}

.td_job {
    font-weight: bolder; 
    background-color: white;
	border: 2px solid #cccccc;
	text-align: left;
	font-size: 14px;
	padding: 1px 1px 2px;
}

.job_text {
    font-size: 12px;
}

/*ボタンレイアウト
------------------------------------------*/
/*1個配置*/
.btn_koushiki_one {
	margin: 10px 0 10px 0;
	text-align: center;
}

.img_btn_one {
	width: 320px;
	max-width: 95%;
}


/*ボタン*/
.button01:hover,.button02:hover,.button03:hover,.button04:hover,.button05:hover,
.button06:hover,.button07:hover,.button08:hover,.button09:hover,.button10:hover,.button11:hover {
  background: #fa6d6d;
  color: #ff701e;
  cursor: pointer;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}


.button-box {
    width: 100%;
    display: flex;
    margin: 0px 20px;
    text-align: center;
    cursor: pointer; /* カーソルを指に */
}

.button-box01 {
    width: 25%;
    text-align: center;
    cursor: pointer; /* カーソルを指に */
}
.button-box02 {
    width: 75%;
    text-align: center;
    cursor: pointer; /* カーソルを指に */
}

.button-box03 {
    width: 100%;
    text-align: center;
    cursor: pointer; /* カーソルを指に */
}

.button-box a {
    text-decoration: none !important;
}

.button01 {
    /*position: relative;
    display: inline-block;*/
    margin-left: 12px;
    margin-right: 12px;
    padding: 10px 20px;
    border-radius: 5px;
    /*box-shadow: 0px 5px 14px 1px #858585;*/
    background: #79c733;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    
}

.button02 {
    /*position: relative;
    display: inline-block;*/
    margin-left: 15px;
    margin-right: 15px;
    padding: 10px 20px;
    border-radius: 5px;
   /* box-shadow: 0px 5px 14px 1px #858585;*/
   background-color: #ed2f2f;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);       
}

.button03 {
    text-align: center;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border-radius: 5px;
    /*box-shadow: 0px 5px 14px 1px #858585;*/
    background-color: #ed2f2f;
    width: 100%;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);        
}

.button03 span {
    display: block;
    color: #fff;
    font-weight: bold;
    letter-spacing: -0.06em;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}


.post a.button {
    text-decoration: none;
}

.button01 span {
    display: block;
    color: #fff;
    font-weight: bold;
    letter-spacing: -0.06em;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.button02 span {
    display: block;
    color: #fff;
    font-weight: bold;
    letter-spacing: -0.06em;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.span {
    display: block;
    color: #fff;
    font-weight: bold;
    letter-spacing: -0.06em;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}


.button04 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 19px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 5px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 12px 10px;
	overflow: hidden;
	width: 100%;
	margin: 5px 1px;
	border-radius: 40px;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    	
}

.button05 {
	display: block;
	position: relative;
	background-color: rgb(92,177,99);
	border-radius: 4px;	
	color: #fff;
	line-height: 52px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 12px 10px;
	overflow: hidden;
	width: 90%;
	margin: 15px auto 20px;
	border-radius: 40px;	
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    	
}

.button06 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 52px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 6px 6px;
	overflow: hidden;
	width: 100%;
	margin: 5px auto 1px;
	border-radius: 40px;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    	
}

.button07 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 5px 5px;
	overflow: hidden;
	width: 90%;
	margin: 10px auto 10px;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    	
    border-radius: 30px;
}

.button08 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 12px 10px;
	overflow: hidden;
	width: 90%;
	margin: 10px auto 10px;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    	
}

.button09 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 12px 10px;
	overflow: hidden;
	width: 100%;
	margin: 10px auto 10px;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    	
}

.button_text {
    color: #fff  !important;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
    font-weight: bolder;
}

.button_text2 {
    color: #fff  !important;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 15px;
    text-align: center;
    font-weight: bolder;
    line-height: 1.3em;
}


.reflection {
	background-color: #fff;
	height: 100%;
	width: 30px;
	top: -180px;
	left: 0;
	position: absolute;
    opacity: 0;
	transform: rotate(45deg);
	animation: reflection 3s ease-in-out infinite;
	-webkit-transform: rotate(45deg);
	-webkit-animation: reflection 3s ease-in-out infinite;
	-moz-transform: rotate(45deg);
	-moz-animation: reflection 3s ease-in-out infinite;
	-ms-transform: rotate(45deg);
	-ms-animation: reflection 3s ease-in-out infinite;
	-o-transform: rotate(45deg);
	-o-animation: reflection 3s ease-in-out infinite;
}

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


/*補足テキストエリア*/
.hosoku_gray {
	padding: 10px;
	font-size: 12px;
	background: #f1f1f1;
	color: #aaa;
}

.hosoku_gray li {
	/*list-style: inside;*/
}

/*個別ページ遷移*/

.agent_detail {
    display: flex;
    justify-content: center;
    padding: 5px;
}

.agent_detail p{
    font-size: 1.5vmin;
    font-weight: 100;
}

/*個別ページテキストエリア*/
.txt_area001 {
	margin: 5px;
	padding: 10px;
	border: 1px solid #c5c5c5;
}

.txt_area002 {
	margin: 5px;
	padding: 5px;
}

.txt_area001 p, .txt_area002 p {
	margin: 0 0 10px 0;
}

.txt_area001 p:last-child, .txt_area002 p:last-child {
	margin: 0;
}

.txt_area001 ul, .txt_area002 ul {
	margin: 0 0 10px 0;
}

.txt_area001 a, .txt_area002 a {
	color: blue;
	text-decoration: underline;
}

.button-comment {
    text-align: center;
    font-weight: bolder;
}

/*画像レイアウト
------------------------------------------*/
.img_area {
	display: block;
	margin: 10px auto;
	max-width: 95%;
}


/*--------------------------------------------
画像スライド
----------------------------------------------*/
.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 90px;
  height     : 57px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  left       : -100%;
  animation  : slideAnime 12s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 3s }
.slide img:nth-of-type(3) { animation-delay: 6s }
.slide img:nth-of-type(4) { animation-delay: 9s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { left: -100% }
   3% { left: 0     }
  22% { left: 0     }
  25% { left: 100%  }
 100% { left: 100%  }
}

/*フッター
--------------------------------------------------*/
footer {
	padding: 20px 0;
	background: #008000;
	color: #fff;
}

.foot_menu {
	margin: 0 0 10px 0;
	text-align: center;
}

.foot_menu li {
	padding: 0 5px;
	display: inline-block;
}

.foot_menu li:last-child {
}

.foot_menu li a {
	display: inline-block;
	color: #fff;
	text-decoration: underline;
}

#copy {
	text-align: center;
}

#footer {
	clear: both;
	padding: 30px 0 0 0;
	background-color: #c2ff66;
	box-shadow: 2px 0 3px #b5b5b5;
	behavior: url(/PIE.htc);
	font-size: 14px;
}

.footer_contents {
	width: 980px;
	margin: 0 auto;
	padding: 0 0 30px 40px;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
.footer_contents {
	width: 540px;
}
}
@media screen and (max-width: 479px) {
.footer_contents {
	width: 100%;
}
}


.footer_contents a {
	color: #333;
	text-decoration: none;
}

.footer_contents .sitename {
	font-size: 110%;
	font-weight: bold;
	padding: 0 0 5px 0;
}
@media screen and (max-width: 767px) {
.footer_contents .sitename {
	font-size: 16px;
}
}
@media screen and (max-width: 479px) {
.footer_contents .sitename {
	font-size: 14px;
}
}

.footer_contents .mokuji_waku {
	float: left;
	margin: 0 20px 0 5px;
	padding: 0 20px;
}

.footer_contents .groupname {
	margin: 0 0 0 0;
	padding: 0;
	border-bottom: 1px dotted #333;
	font-size: 95%;
	font-weight: bold;
}

.footer_contents li {
	margin: 5px 0 0 0;
	padding: 0 10px 0px 0;
	font-size: 80%;
	list-style:none;
}
@media screen and (max-width: 767px) {
.footer_contents li {
	font-size: 12px;
}
}
@media screen and (max-width: 479px) {
.footer_contents li {
	font-size: 10px;
}
}

.copylights {
	display: block;
	padding: 10px 0;
	text-align: center;
	font-size: 90%;
	/*background: #f8f8f8;*/
	background: #fff;
}

address {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 85%;
	background: #f8f8f8;
}

address a {
	color: #039;
}

.mokuji_waku {
	float: left;
}


/*=========　フッター　=========*/

.footer {
 color: white;
 background: #00b0f0;
 text-align: center;
 padding: 30px;
 margin-top: 30px;
 font-weight: bolder;
margin-right: calc(50% - 50vw);
margin-left: calc(50% - 50vw);
}
.footer a {
 color: white;
 text-decoration: none;
}
.footer a:hover {
 text-decoration: underline;
}
.footer .menu {
 margin: 0;
 padding: 0;
 list-style: none;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
}

.footer .menu li {
 margin: 0;
 padding: 0 20px;
}

.menu li::before {
   content: "｜";
   padding-right: 30px;
   color: white;
}

.menu .after_line ::after {
    content: "｜";
    padding: 0 30px 0;
}

.footer .copyright {
 margin: 0;
 padding: 20px 0 0 0;
}

@media screen and (max-width:480px) {
.footer .menu {
 margin: 0;
 padding: 0;
 display: block;
}
.footer .menu li {
 margin: 0 0 10px 0;
 padding: 0 20px;
}
.menu li::before {
    content: "";
    padding: 0;
}

.menu .after_line ::after {
    content: "\A";
    padding: 0;
}
}

.footer_logo img{
    width: 30%;
    display: block;
    margin: 50px auto 0;    
}

@media screen and (max-width:480px) {
.footer_logo img {
    width: 60%;
    display: block;
    margin: 50px auto 0;
}
}

/*ページトップ*/
#topcontrol {
z-index: 9999;
}
/*#pagetop {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 10px;
}
#pagetop a {
	display: block;
	width: 60px;
	height: 60px;
	line-height: 60px;
}*/

/*ランキング内ポイント
--------------------------------------------*/
.ribbon1-wrapper {  
  display: block;
  position: relative;
  margin: 5px auto;
  padding: 5px 0;
  width: 90%;
  background: #f1f1f1;
  border-radius: 15px;
  }

.ribbon1 {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 5px 0;
  margin: 10px 0 0 -20px;
  width: calc(100% + 20px);
  color: white;
  background: #00b0f0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.ribbon1 h3{
  margin: 0;
  padding: 5px 30px 5px 15px;
  border-top: dashed 1px #FFF;
  border-bottom: dashed 1px #FFF;
  font-size: 3vmin;
  line-height: 20px;
}

.ribbon1:after {
  position: absolute;
  content: '';
  z-index: 1;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-width: 20px 20px 20px 0px;
  border-color: transparent #f1f1f1 transparent transparent;
  border-style: solid;
}

.ribbon1:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #808080;
}

.flex-box01 {
	list-style: none;
    padding: 20px;
}

.flex-box02 {
	list-style: none;
    padding: 15px;
    margin-top: 10px;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
}

.flex-box01 ul {
	list-style: none;
}

.flex-box01 li {
	background: url(../img/parts/check.png) left 0px top 3px no-repeat;	line-height: px;
	background-size: 16px;
	padding-left: 20px;
	margin-bottom: 10px;
}

.flex-box02 ul {
	list-style: none;
}

.flex-box02 li {
	background: url(../img/parts/check.png) left 0px top 4px no-repeat;	line-height: px;
	background-size: 20px;
	padding-left: 25px;
    padding-top: 0px;
}


.flex-box01 h1 {
    font-size: 3vmin;
    width: auto;
}

.flex-box02 h1 {
    font-size: 3vmin;
    width: auto;
}

.search_box_text {
    font-size: 1.1em;
    font-weight: bolder;
    line-height: 25px
}


@media screen and (max-width: 480px) {
    
    .flex-box02 {
	list-style: none;
    padding: 10px;
    margin-top: 10px;
        margin-right: 5px;
        margin-left: 5px;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
}
    
    .flex-box01 h1 {
    font-size: 4vmin;
    width: auto;
    }
    
    .flex-box02 h1 {
    font-size: 4vmin;
    width: auto;
    }
    
    .search_box_text {
        font-size: 0.8em;
        font-weight: bolder;
        line-height: 17px
}
    
    .flex-box02 li {
	background: url(../img/parts/check.png) left 0px top 3px no-repeat;	line-height: px;
	background-size: 16px;
	padding-left: 20px;
    padding-top: 0px;
}


}

/*検索フォームに戻る
--------------------------------------------*/

.search_back {
    
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    padding: 10px;
}

.button11 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 5px 5px;
	overflow: hidden;
	width: 85%;
	margin: auto;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);    	
}


/*テーブル関係
--------------------------------------------*/
/*TOP業者スペック表*/
.spec01,.spec03,.spec04 {
	width: 100%;
	margin: 0 0 5px 0;
	font-size: 12px;
	text-align: center;
}

.spec01 th,.spec01 td {
	width: 20%;
	padding: 0 3px;
	border: 1px solid #c5c5c5;
}

.spec01 th {
	background: #e8e8e8;
}

/*業者スペック（検索結果ページ）
------------------------------------------*/
.spec02 {
	width: 75%;
	margin: 0;
	font-size: 14px;
	text-align: center;
	/*border-collapse: separate;
	border-spacing: 0 1px;*/
}

.spec02 th,.spec02 td {
	padding: 0 3px;
	border: 1px solid #c5c5c5;
}

.spec02 th {
	background: #f1f1f1;
}

/*業者スペック（詳細ページ）
-------------------------------------------*/
.spec03 th,.spec03 td {
	padding: 3px 6px;
	border: 1px solid #c5c5c5;
}
.spec03 th {
	width: 30%;
	background: #f1f1f1;
}

.spec03 td {
	width: 70%;
	text-align: left;
}

/*業者スペック（詳細ページ）
-------------------------------------------*/
.spec04 th,.spec04 td {
	padding: 3px 6px;
	border: 1px solid #c5c5c5;
}
.spec04 th {
	width: 30%;
	background: #f1f1f1;
}

.spec04 td {
	width: 20%;
	text-align: center;
}

/*個別ページ
------------------------------------------*/
.tbl001 {
	width: 100%;
	margin: 0 0 10px 0;
	text-align: center;
}

.tbl001 th,.tbl001 td {
	padding: 3px 6px;
	border: 1px solid #c5c5c5;
}

.tbl001 th {
	background: #f1f1f1;
}

/*テーブルヘッダー（Green）*/
.tbl_green {
	width: 100%;
	margin: 0 0 10px 0;
	text-align: center;
}
.tbl_green th,.tbl_green td {
	padding: 3px 6px;
	border: 1px solid #777;
}
.tbl_green th {
	color: #fff;
	background: #693;
	border: 1px solid #363;
}

/*業者リスト
------------------------------------------*/
.tbl_spec001 {
	width: 100%;
	margin: 10px 0 10px 0;
	text-align: center;
}

.tbl_spec001 th,.tbl_spec001 td {
	padding: 3px 6px;
	border: none;
/*	border: 1px solid #777;*/
	text-align: center;
	vertical-align: baseline;
}

.tbl_spec001 th {
	background: #f1f1f1;
}

.tbl_spec001 a {
	color: blue;
	text-decoration: underline;
}

/*比較表用の記号
------------------------------------------*/
.tbl_nijuu_maru {
	background-image: url(/img/parts/nijuu_maru.png);
	background-repeat: no-repeat;
	background-position: center center;
	font-weight: bold;
}

.tbl_maru {
	background-image: url(/img/parts/maru.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.tbl_sankaku {
	background-image: url(/img/parts/sankaku.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.tbl_batsu {
	background-image: url(/img/parts/batsu.png);
	background-repeat: no-repeat;
	background-position: center center;
}


特集ページ（パネル）
------------------------------------------*/
.feature_panel {
	padding: 10px 5px 0 5px;
}

.feature_panel ul {
	display: table;
	width: 100%;
	padding: 0 0 10px 0;
}
.feature_panel li{
	display: table-cell;
	width: 33%;
	text-align: center;
	padding: 0 5px;
}

.feature_panel li:last-child {
}

.feature_panel img {
	width: 100%;
}

おすすめ介護求人サイト
------------------------------------------*/

.reco_space {
    position:relative;
    border:1px solid #ff6a00;
}

.recommened {
  display: flex; /*横並び*/
  padding: 5px;
}

.best_reco {
	border-color: #008000;
	border-style: solid;
	border-width: 8px;
	margin: 15px 0;
	padding: 0 10px 10px 10px;
    display: flex;
    align-items: center;

}

.best_reco .image {
  width: 50%; /*画像サイズ指定*/
  margin: 0;
  padding: 0;
}
.best_reco .image img {
  width: 100%;
  height: auto;
}
.best_reco .right {
  width: 50%;
  margin: 0 0 0 0px;
  padding: 5px;
}
.best_reco .title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
}
.best_reco .text {
  margin: 10px 0 0;
  padding: 0;
  font-size: 3vmin;
}

@media screen and (max-width: 480px) {
    .best_reco .text {
  margin: 10px 0 0;
  padding: 0;
  font-size: 3.5vmin;
    }}


/*詳細ページ
------------------------------------------*/
.campaign_waku {
	padding: 20px 10px;
	border: 1px solid #c1c1c1;
	background-color: #FEFEEB;
	/*font-size: 100%;*/
	/*font-weight: bold;*/
	/*color: #F33;*/
}

.company_pont {
	font-size: 16px;
	margin: 3px 0px;
	text-align: center;
}

/*テーブル作成　2022.10.04
------------------------------------------*/

.td_main {
    padding: 5px;
    
}

@media screen and (max-width: 767px) {

.td_main {
    padding: 5px;    
}
}

/*========= バナー ===============*/

.banner-box {
    margin: 20px 100px;
    text-align: center;
    border: solid 1px #00b0f0;
    padding: 0px;
    
}

.banner-box_top {
    margin: 10px 15px;
    text-align: center;
    border: solid 1px #00b0f0;
    
}

.offer-banner {
    width: 100%;
}

.offer-banner_top {
    width: 100%;
}

@media screen and (max-width: 480px) {
    .banner-box {
    margin: 10px;
    
}
    
    .offer-banner {
    width: 100%;
}
}


/*========= 吹き出し ===============*/

.balloon1 {
  position: relative;
  display: inline-block;
  margin-top: 15px;
    margin-bottom: 0px;
  padding: 7px 10px;
  width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: 220px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

.balloon1:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}


.balloon1 p {
  margin: 0;
  padding: 0;
    text-align: center;
    font-weight: bolder;
}

@media screen and (max-width: 480px) {
    
    .balloon1 {
        position: relative;
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 7px;
        margin-right: 5px;
        margin-left: 5px;
  padding: 7px 10px;
  width: 97%;
  color: #555;
  font-size: 13px;
  background: #e0edff;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: 130px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

.balloon1:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: 0px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}


.balloon1 p {
  margin: 0;
  padding: 0;
    text-align: center;
    font-weight: bolder;
}
}
    

/*========= 比較表のタブ ===============*/

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:0px 0;
    margin-top: 20px;
}

@media screen and (max-width: 479px) {
    .tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:0px 0;
    margin-top: 10px;
        margin-right: 1px;
        margin-left: 1px;
    }}
    

.tab-wrap:after {
  content: '';
  width: 100%;
  height: 10px;
  background: #00b0f0;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: #ccc;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 15px 15px 0 0;
  flex: 1;
    margin: 0px;
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked+.tab-label {
  background:   #00b0f0;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 0px;
  opacity: 1;
  transition: .5s opacity;
  border: solid 3px #00b0f0;
  border-radius: 0 0 15px 15px ;  
  }
.tab-switch {
  display: none;
}


/*----テーブル----*/

table {
	text-align: center;
	clear: both;
	width: 100%;
	margin: 13px auto;/*10px auto 15px*/
}


th.table_button {
    background-color: white;
    border: 1px solid #cccccc;
    padding: 0px;
    margin: auto;
}

@media screen and (max-width: 767px) {
th.table_button {
    background-color: white;
    border: 1px solid #cccccc;
    }}

@media screen and (max-width: 479px) {
th.table_button {
    background-color: white;
    border: 1px solid #cccccc;
    }}

.table_hikaku{
    border-collapse: collapse;
	display: block;
    width: 100%;
    margin: 0;
    margin-top: 0px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}


.ranking_content_02 table {
	margin: 0;
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #808080;
}

.btn {
	border: 1px solid #000;
}

thead {
  position: sticky;
  z-index: 10;
  top: 0;
}

th {
	background-color: #00b0f0;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
    color: white;
}

.basic_info th{
	font-size: 12px;
}

@media screen and (max-width: 767px) {
th {
	background-color: #00b0f0;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
}
.thtd_sp_hidden {
	display: none;
}
}

@media screen and (max-width: 479px) {
th {
	background-color: #00b0f0;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
}
}
.th_hikaku {
	background-color: #00b0f0;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
}

@media screen and (max-width: 767px) {
.th_hikaku {
	background-color: #00b0f0;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
}
}

@media screen and (max-width: 479px) {
.th_hikaku {
	background-color: #00b0f0;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
	padding: 2px 2px 2px 2px;
}
}

.th_hikaku2 {
	background-color: white;
	align-items: center;
    display: flex;
    justify-content: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
    width: 100%;
    height: auto;
}



@media screen and (max-width: 767px) {
.th_hikaku2 {
	background-color: white;
	text-align: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
    width: auto;
}
}

@media screen and (max-width: 479px) {
.th_hikaku2 {
	background-color: white;
	text-align: center;
	font-size: 14px;
	padding: 2px 2px 2px 2px;
    width: auto;
}
}



.right_table th {
	background-color: #dcdcdc;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
	padding: 0;
}

@media screen and (max-width: 767px) {
.right_table th {
	background-color: #dcdcdc;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
	padding: 0;
}
.thtd_sp_hidden {
	display: none;
}
}

@media screen and (max-width: 479px) {
.right_table th {
	background-color: #dcdcdc;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
	padding: 0;
}
}


td {
    background-color: white;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	padding: 1px 1px 2px;
}

.td_sub2 {
    background-color: white;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
    font-weight: bolder;
    text-align: left;
	padding: 1px 1px 2px;
    padding: 10px;
}

.td_sub3 {
    background-color: white;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
    font-weight: bolder;
    text-align: center;
	padding: 1px 1px 2px;
    padding: 10px;
}

.sub3_in{
    display: inline-block;
    text-align: left;
}

.sub3_tag {    
    box-sizing: border-box;
    width: auto;
    height: 25px;
    padding: 0 10px;
    margin: 0 5px 5px 0;
    border-radius: 20px;
    background-color: #A18808;
    font-size: 1.2em;
    font-weight: bolder;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
}

.td_sub4 {
    background-color: white;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
    font-weight: bolder;
    text-align: left;
	padding: 1px 1px 2px;
    padding: 10px;
}

.icon {
    width: 80px;
}

@media screen and (max-width: 479px) {
    
    .td_sub {
        background-color: white;    
        border: 1px solid #cccccc;
        text-align: center;
        font-size: 14px;
        padding: 1px 1px 2px;
    }
    
    .td_sub2 {
    background-color: white;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 11px;
    font-weight: bolder;
    text-align: left;
	padding: 1px 1px 2px;
    padding: 2px;
        
    
}
    .icon {
    width: 100%;
}
    .td_sub3 {
    background-color: white;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
    font-weight: bolder;
	padding: 0px;
}

.sub3_in{
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

    .td_sub4 {
    background-color: white;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
    font-weight: bolder;
    text-align: left;
	padding: 1px 1px 2px;
    padding: 10px;
}
    
    .sub3_tag {    
    box-sizing: border-box;
    width: auto;
    height: 20px;
    padding: 0 10px;
    margin: 0 5px 5px 0;
    border-radius: 20px;
    background-color: #A18808;
    font-size: 0.9em;
    font-weight: bolder;
    line-height: 20px;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
}
}
    


.right_table td {
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
	padding: 0 0 1px;
}

@media screen and (max-width: 767px) {
.right_table td {
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
	padding: 0 0 1px;
}
.thtd_sp_hidden {
	display: none;
}
}

@media screen and (max-width: 479px) {
.right_table td {
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 12px;
	padding: 0 0 1px;
}
}

.contents {
	background-color: #ebebeb;

}

.content {
	background-color: #ffffff;
	margin: 0 12px 20px;
	padding: 17.5px 15px 16px;
        border: solid 1px #000000;/*線*/
        border-radius: 10px;/*角の丸み*/

}

.box {
    padding: 0.5em 1em;
    margin: 16px 0;
    border: double 5px #cccccc;
}
.box p {
    margin: 0; 
    padding: 0;
}

.box02 {
    padding: 0.5em 1em;
    margin: 8px 0;
    font-weight: bold;
    border: solid 3px #b8ff4d;
}
.box02 p {
    margin: 0; 
    padding: 0;
}

.combination {
	margin: 5px 0;
	align: center;
	width: 33%;
	float: left;

}

.combination p {
	text-align: center;
}

.combination img {
	align: center;
}

.campaign {
    position: relative;	
    margin: 10px 0;
    padding: 0 5px 5px 5px;
    border: solid 3px #1aff1a;

}
.campaign .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #ffaf1a;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0; 


   /* font-size: 1.2em;
    background: #ffaf1a;
    padding: 2px;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;*/
}
.campaign p {
    padding: 10px 20px;
    margin: 0;

}


.points {
    padding: 0.5em 1em;
    margin: 2em 0;
    border: solid 1px #000000;
}
.points li {
    margin: 0; 
    padding: 0;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
}

.flex-box img {
  vertical-align: top;
  horizontal-align: left;
}




.flex-box02 {
  display: flex;
  flex-wrap: wrap;
}

.thumnail-box {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thumnail-box li {
  width: 33%;
  margin: 0 0 0 auto;
}

.thumnail-box li img {
  width: 100%;
  margin: 0 0 auto;
  padding: 20px 20px; 
  border: 1px solid #ccc;
}

.thumnail-box li p {
  text-align: center;
  width: 100%;
  margin: 0 0 2px auto;
  background-color: #faebd7;
  border: 1px solid #ccc;
}

/*注釈*/
.annotation_gray {/*背景色（灰色）*/
	padding: 10px;
	font-size: 14px !important;
	background: #f1f1f1;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
}

.best_01 {
    position: relative;
	border-color: #00b0f0;
	border-style: solid;
	border-width: 8px;
	margin: 25px 0;
	padding:20px;
    width:auto;
	border-radius: 15px;
}

.best_01:not(.agent_detail) .link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.best_02 {
    position: relative;
	border-color: #00b0f0;
	border-style: solid;
	border-width: 8px;
	margin: 25px 0;
	padding: 20px;
	border-radius: 15px;
}

.best_02 .link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.best_03 {
    position: relative;
	border-color: #00b0f0;
	border-style: solid;
	border-width: 8px;
	margin: 25px 0;
	padding: 20px;
	border-radius: 15px;
}

.best_03 .link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.best_04,.best_05,.best_06,.best_07,.best_08,.best_09 {
	position: relative;
    border-color: #00b0f0	;
	border-style: solid;
	border-width: 8px;
	margin: 25px 0;
	padding: 20px;
	border-radius: 15px;
}

.best_10,.best_11,.best_99 {
	position: relative;
    border-color: #00b0f0	;
	border-style: solid;
	border-width: 8px;
	margin: 25px 0;
	padding: 20px;
	border-radius: 15px;	
}

.best_04 .link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.best_05 .link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.open {
	display: none;
}
.ranking_top {
    width: 100%;
    display: flex;
    margin: 5px 0 13px;
    text-align: center;
}

.ranking_content_01 {
	width: 60%;
	text-align: center;
	margin: 0 8px;
	padding: 1px 0 0 0;
}

.ranking_content_02 {
	text-align: center;
	width: 40%;
	margin: 0 8px;
}

.ranking_content_03 {
	width: 33%;
	text-align: center;
}

/*ローディング
------------------------------------------*/
#re-load {
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 50px 50px;
    background-color: white;
}

#re-load-in {
    padding: inherit;
}

#re-load-logo img {
    width: 50%;
}

#re-load-text {
    font-size: 2vmin;
}

#re-load-title {
    padding: 10px 10px;
    font-size: 3vmin;

}

#re-load-link span{
    font-size: 2vmin;
    color: blue;
    text-decoration:underline;
}

.loader {
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #00b0f0, 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.5), -1.8em -1.8em 0 0em rgba(83,173,92, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.7), 1.8em -1.8em 0 0em #00b0f0, 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.5), 1.8em -1.8em 0 0em rgba(83,173,92, 0.7), 2.5em 0em 0 0em #00b0f0, 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.5), 2.5em 0em 0 0em rgba(83,173,92, 0.7), 1.75em 1.75em 0 0em #00b0f0, 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.5), 1.75em 1.75em 0 0em rgba(83,173,92, 0.7), 0em 2.5em 0 0em #00b0f0, -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.5), 0em 2.5em 0 0em rgba(83,173,92, 0.7), -1.8em 1.8em 0 0em #00b0f0, -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.5), -1.8em 1.8em 0 0em rgba(83,173,92, 0.7), -2.6em 0em 0 0em #00b0f0, -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.5), -2.6em 0em 0 0em rgba(83,173,92, 0.7), -1.8em -1.8em 0 0em #00b0f0;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #00b0f0, 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.5), -1.8em -1.8em 0 0em rgba(83,173,92, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.7), 1.8em -1.8em 0 0em #00b0f0, 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.5), 1.8em -1.8em 0 0em rgba(83,173,92, 0.7), 2.5em 0em 0 0em #00b0f0, 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.5), 2.5em 0em 0 0em rgba(83,173,92, 0.7), 1.75em 1.75em 0 0em #00b0f0, 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.5), 1.75em 1.75em 0 0em rgba(83,173,92, 0.7), 0em 2.5em 0 0em #00b0f0, -1.8em 1.8em 0 0em rgba(83,173,92, 0.2), -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.5), 0em 2.5em 0 0em rgba(83,173,92, 0.7), -1.8em 1.8em 0 0em #00b0f0, -2.6em 0em 0 0em rgba(83,173,92, 0.2), -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.5), -1.8em 1.8em 0 0em rgba(83,173,92, 0.7), -2.6em 0em 0 0em #00b0f0, -1.8em -1.8em 0 0em rgba(83,173,92, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(83,173,92, 0.2), 1.8em -1.8em 0 0em rgba(83,173,92, 0.2), 2.5em 0em 0 0em rgba(83,173,92, 0.2), 1.75em 1.75em 0 0em rgba(83,173,92, 0.2), 0em 2.5em 0 0em rgba(83,173,92, 0.2), -1.8em 1.8em 0 0em rgba(83,173,92, 0.5), -2.6em 0em 0 0em rgba(83,173,92, 0.7), -1.8em -1.8em 0 0em #00b0f0;
  }
}


/* ホワイトボード風　タイトル　3 */
.wboard-w3 {
 position: relative;
 margin: 1em auto;
 padding: 3em 1em 1em;
 width: 85%; /* ボックス幅 */
 background-color: #fff; /* ボックス背景色 */
 color: #000000; /* 文章色 */
 border: 5px solid #c6c6c6; /* 枠線 */
 box-shadow: 0 0 8px #333, 0 0 2px #555 inset;
}
.wboard-w3::before,
.wboard-w3::after {
 position: absolute;
 content: '';
 bottom: 4px;
 width: 25px; 
 border-radius: 2px;
 box-shadow: 1px 1px 3px #666;
} 
.wboard-w3::before {
 right: 60px;
 border: solid 3px #333; /*飾ペン黒 */
 transform: rotate(2deg); /*飾ペン角度 */
}
.wboard-w3::after {
 right: 22px;
 border: solid 3px #ff0000; /*飾ペン赤 */
 transform: rotate(9deg); /*飾ペン角度 */
}
.title-w3 {
 position: absolute;
 left: 1em;
 top: .5em;
 font-weight: bold;
 font-size: 1.1em; /* 文字サイズ */
 color: #ff0000; /* タイトル文字色 */
 border-style: none none solid;
 border-color: #ff0000; /*タイトル下線 */
 border-width: 3px;
}


.board_banar {
    max-width: 860px;
    margin: 0 auto;
}

.board_banar img {
    width: 100%;
}


/*-----------------------------------------
バナーヘッダー
------------------------------------------*/

.banner_header {
    border: 1px solid #00b0f0;
}


/*-----------------------------------------
求人カード
------------------------------------------*/

.offer {
    margin: 20px auto;
}

.offer h4 {
    font-size: 18px;
    text-align: center;
    background-color: #00b0f0;
    color: white;
    padding: 10px;
    margin: 10px auto;
}

.pickup_main_title {
    background-color: #EE7891;
    font-size: 1.5em;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
    color: white;
}

.pickup {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: auto;
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow-x: scroll;
    
}

.pickup_box {
    box-sizing: border-box;
    border: 1px solid black;
    width: 30%;
    height: auto;
    padding: 10px;
    margin: auto;
    margin-left: 10px;
    flex-shrink: 0;
}

.pickup_title {
    background-color:#00b0f0;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 0.8em;
}

.pickup_detail {
    font-weight: 700;
}

.pickup_detail table{
    width: 100%;
    margin: 10px 0px;
    border-spacing: 0px;
    border-radius: 0px;
}

.pickup_logo {
    width:100%;
    display: flex;
    align-items: center;
}

.pickup_logo_img {
    background: url(../img/parts/rihamori_logo.png) no-repeat left;
    background-size: 100%;
    width: 50%;
    height: 20px;
    margin: auto;
    
}

.pickup_logo_img01 {
    background: url(../img/parts/logo_adeco.png) no-repeat left;
    background-size: 100%;
    width: 50%;
    height: 45px;
    margin: auto;
    
}

.pickup_logo_img02 {
    background: url(../img/parts/logo_adeco.png) no-repeat left;
    background-size: 100%;
    width: 50%;
    height: 45px;
    margin: auto;
    
}

.pickup_logo_img03 {
    background: url(../img/parts/logo_pasona.png) no-repeat left;
    background-size: 100%;
    width: 50%;
    height: 45px;
    margin: auto;
    
}

.pickup_logo_img04 {
    background: url(../img/parts/logo_temp.png) no-repeat left;
    background-size: 100%;
    width: 50%;
    height: 45px;
    margin: auto;
}

.pickup_logo_img05 {
    background: url(../img/parts/randstad_logo.webp) no-repeat left;
    background-size: 100%;
    width: 50%;
    height: 45px;
    margin: auto;
}

.pickup_logo_img06 {
    background: url(../img/parts/logo_recsta.png) no-repeat left;
    background-size: 100%;
    width: 45%;
    height: 45px;
    margin: auto;
}

.pickup_logo_img07 {
    background: url(../img/parts/logo_staff.png) no-repeat left;
    background-size: 100%;
    width: 30%;
    height: 45px;
    margin: auto;
}
.pickup_logo_img08 {
    background: url(../img/parts/logo_jobnet.jpg) no-repeat left;
    background-size: 100%;
    width: 30%;
    height: 45px;
    margin: auto;
}





.button11 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	overflow: hidden;
	width: 100%;
	margin: auto;
}

.th_pickup {
    background-color: #00b0f0;
    width: 50%;
    border-radius: 0px;
    border-spacing: 0px;
    font-size: 12px;
}

.td_pickup {
    padding: 5px;
    width: auto;
    border-radius: 0px;
    border-spacing: 0px;
    font-size: 12px;
}


.pickup_scroll {
    text-align: center;
    font-weight: 700;
    background-color: white;
}

@media screen and (max-width: 480px) {
    
    .pickup_box {
    box-sizing: border-box;
    border: 1px solid black;
    width: 60%;
    height: auto;
    padding: 10px;
    margin: auto;
    margin-right: 10px;
    flex-shrink: 0;
}

.pickup_title {
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 0.8em;
}

.pickup_detail {
    font-weight: 700;
}

.pickup_logo {
    width:100%;
    display: flex;
}
    
    .button11 {
        font-size: 14px;
        
    }
    
    .th_pickup {
        font-size: 10px;
    }
    
    .td_pickup {
        font-size: 10px;
        vertical-align: middle;
    }

    
}


.button10 {
	display: block;
	position: relative;
	background-color: #ed2f2f;
	border-radius: 4px;	
	color: #fff;
	line-height: 11px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #bbb;/*0e8c73*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 5px 5px;
	overflow: hidden;
	width: 100%;
	margin: auto;
}



/*-----------------------------------------
利用者数
------------------------------------------*/
.num_user_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.num_user_wrap p{
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    color: #5e4604;
    z-index: 100;
}

.num_user_wrap p::before{
    content: "";
	width: 75%;
    height: 80%;
	position: absolute;
    top: 40%;
	left:5% ;
    margin: 0 2rem;
    background: linear-gradient(transparent 0%, #fef49b 30% 60%, transparent 60%);
    z-index: -10;
}
.num_user_main {
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.num_user_number{
    text-align: center;
}

.laurel_img img{
    height: 6rem;
}

.laurel_img.left {
    margin-right: 0.5rem;
}

.laurel_img.right {
    margin-left: 0.5rem;
}

.num_user_number h2{
    font-size: 3rem;
    color: transparent;
	background: linear-gradient(0deg, #B67B03 10%, #DAAF08 35%, #FEE9A0 60%, #DAAF08 75%, #B67B03 80% 100%); 
    background-clip: text;
	-webkit-background-clip: text;

}

.attention {
    font-size: 10px;
}

@media screen and (max-width: 480px) {
    .num_user_wrap {
        margin-top: 10px;
    }

    .num_user_number h2{
        font-size: 2rem;
    }
}

.num_user_number .toppa {
    font-size: 2.3rem;
    margin-left: 1rem;
    color: #D6524B;

}

.num_user_number .hito {
    font-size: 1.7rem;
    font-weight: bold;
    color: #5e4604;
}

@media screen and (max-width: 480px) {
    .num_user_number .toppa {
        font-size: 1.7rem;
    }
    
    .num_user_number .hito {
        font-size: 1.2rem;
    }
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: sans-serif;
}
.dialogue {
    margin-bottom: 30px;
}
.message {
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 85%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.seeker {
    margin-left: auto;
    background-color: #f5f9ff;
    color: #2c5282;
    border: 1px solid #e2e8f0;
    font-weight: bold;
}
.editor {
    background-color: #f8fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    font-weight: bold;
}
.point-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 35px 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.point-title {
    color: #2b6cb0;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ebf8ff;
}
.point-list {
    padding-left: 20px;
}
.point-list p {
    margin: 15px 0;
    padding-left: 10px;
    font-size: 18px;
}
.emphasis {
    font-weight: bold;
    color: #3182ce;
    padding: 2px 6px;
    border-radius: 4px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.dialogue {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 25px 1rem 0;
}

.message-container {
    display: flex;
    gap: 15px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
}

.message {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.ribon-wrap {
    padding: 20px;
}

.seeker-container {
    flex-direction: row;
}

.editor-container {
    flex-direction: row-reverse;
}

.seeker {
    background-color: #f0f0f0;
}

.editor {
    background-color: #e3f2fd;
}

.point-box {
    margin: 0px 70px;
    padding: 15px;
    border: 2px solid #2196F3;
    border-radius: 10px;
}

.point-title {
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 10px;
}

.point-list p {
    margin: 5px 0;
}

.emphasis {
    color: #f44336;
    font-weight: bold;
}

.cta_buttom {
    background-image: linear-gradient(170deg, #00B0F0, #C8EDF9);
    color: #fff;
    border-radius: 100px;
    text-align: center;
    width: 90%;
    display: flex;
    padding: 10px;
    box-shadow: 0 3px 0 #bbb;
    font-size: 1.5rem;
    margin: 20px auto;
    align-items: center;
    font-weight: bold;
    justify-content: center;
    gap: 5%;
}

.cta_buttom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    left: 10px;
    top: 8px;
    transform: rotate(45deg);
}

.recommend2_text p {
    font-size: 18px;
    line-height: 1.8;
}


.company-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.company-name {
    font-size: 1.3em;
    color: #1976d2;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1976d2;
}

.feature-list {
    margin: 15px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 18px;
}

.highlight {
    background: linear-gradient(transparent 60%, #fef49b 40%);
    font-weight: bold;
}

.summary-box {
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 30px;
}

.summary-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.summary-box p {
    font-size: 18px;
}

.emphasis {
    color: #e65100;
    font-weight: bold;
}

.check-icon {
    color: #2196f3;
    margin-right: 10px;
    font-weight: bold;
}

@media screen and (max-width: 480px) {

    .message {
        font-size: 12px;
    }

    .point-box {
        margin: 0px;
    }

    .cta_buttom {
        font-size: 1rem;
    }

}