@charset "utf-8";

/* CSS Document */
/*----------------*/
/*----template----*/
/*----------------*/
body {
	font-size: 14px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #525252;
	margin: 0;
}
.mw {
    width: 1140px;
    min-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
}
.r90 {
	text-decoration: none;
	font-style: normal;
	-webkit-transform: rotateZ(270deg);
	transform: rotateZ(270deg);
	display: inline-block;
	font-size: 90%;
}
.gradient_txt {
    background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
    background: -webkit-linear-gradient(0deg, #d041a9, #ff71ad 30%, #ffc357);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.caferun_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	background: rgb(255, 135, 169);
	background: linear-gradient(to bottom, rgb(255 91 137) 0%, rgba(255, 91, 137, 1) 41%, rgba(255, 157, 27, 1) 100%);
	color: #FFFFFF;
	text-decoration: none;
	font-size: 26px;
	text-shadow: 0px 2px 1px #B27734ba;
	border-radius: 8px;
	overflow: hidden;
	/* box-shadow: 0 2px 4px 0px rgb(0 0 0 / 17%); */
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
}

.caferun_btn:hover {
	opacity: 1;
}

.caferun_btn::after {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	background-image:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 4px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 6px),
		repeating-linear-gradient(315deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 4px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 6px);
	box-shadow: inset 0 0 19px 0px rgb(255 255 255 / 80%);
	z-index: 1;
}

.caferun_btn::before {
	content: '';
	display: block;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	width: 110%;
	position: absolute;
	height: 110%;
	z-index: 2;
	top: -60%;
}

.caferun_btn>span {
	position: relative;
	z-index: 3;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	box-sizing: border-box;
}

.caferun_btn>span::after {
	content: '';
	position: absolute;
	display: block;
	left: 1px;
	top: 1px;
	border: solid 1px #FFFFFF;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border-radius: 7px;
}

.caferun_btn>span::before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	transition: all 300ms 0s ease;
	box-shadow: inset 0 0 0px 0px #ffffff;
}

.caferun_btn:active>span::before,
.caferun_btn:focus>span::before,
.caferun_btn:hover>span::before {
	box-shadow: inset 0 0 20px 0px #ffffff;
	top: 0%;
}


/* 丸ボタンの時のCSS */
.caferun_btn.round,
.caferun_btn.round>span::after,
.caferun_btn.round>span::before {
	border-radius: 500px;
}

/* Mサイズ */
.caferun_btn.size_m {
	font-size: 18px;
}

.caferun_btn.size_m span {
	padding: 12px 0;
}

/* Sサイズ */
.caferun_btn.size_s {
	font-size: 16px;
}

.caferun_btn.size_s span {
	padding: 8px 0;
}

/* ----------------------------------------- */
/* 共通ヘッダー */
/* ----------------------------------------- */
header * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

header {
	background-image: url(/assets/front/pc/img/global/navigation.webp);
	background-position: center;
	border-bottom: solid 1px #efe1d8;
}

header .header_nav_area {
	background-color: #ffe9a3;
	background-image: linear-gradient(120deg, #ffe9a3 0%, #ffcfc1 100%);
	padding: 10px 0;
	box-shadow: 0 0 4px 0 rgb(0 0 0 / 22%);
}

header .header_nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1100px;
	margin: 0 auto;
}

header .header_nav dt {
	font-weight: bold;
	color: #6a3522;
}

header .header_nav_list {
	display: flex;
	list-style: none;
	font-size: 14px;
}

header .header_nav_list li {
	display: flex;
}

header .header_nav_list li::after {
	content: '｜';
}

header .header_nav_list li:last-child::after {
	content: '';
}

header .header_nav_list li a {
	color: #650d0d;
	text-decoration: none;
}

header .header_nav_list li a:hover {
	text-decoration: underline;
}

header .header_body {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

header .header_logo {
	padding: 20px 0;
	margin-right: 20px;
}

header .header_logo img {
	display: block;
}

header .header_info {
	padding: 15px 0;
	font-size: 18px;
}

header .header_info p {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 3px;
}

header .header_info_count {
	display: flex;
}

header .header_info_count dl {
	display: flex;
	margin-right: 20px;
	align-items: flex-end;
	line-height: 1;
}

header .header_info_count dl dt {
	margin-right: 5px;
}

header .header_info_count dl dd strong {
	font-size: 24px;
	color: #ff2965;
	background: linear-gradient(transparent 65%, #FFED00 65%, #FFED00 85%, transparent 85%);
}

header .header_shop_nav {
	margin-left: auto;
	display: flex;
}

header .header_shop_nav dt {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 2px;
}

header .header_shop_nav .shop_search_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	border: solid 6px #e1d2bd;
	background-color: #bea581;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	margin-left: 15px;
	padding: 0 10px;
	box-shadow: 2px 3px 4px 0 rgb(0 0 0 / 30%);
}

header .header_shop_nav .shop_search_btn i.r90 {
	margin-left: 10px;
}

header .shop_btn {
	display: flex;
	list-style: none;
}

header .shop_btn li {
	width: 140px;
	margin-right: 10px;
}

header .shop_btn li:last-child {
	margin-right: 0;
}

header .shop_btn li .caferun_btn {
	background: linear-gradient(to bottom, rgb(86 135 255) 0%, rgb(38 138 250) 41%, rgb(1 27 193) 100%);
}

.wrapper.ad_item {
	margin-bottom: 100px;
}

.nav.navbar-nav.float-right.login-block .btn-g {
	position: relative;
	font-size: 15px;
	color: #ffffff;
	width: 154px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(/assets/front/pc/img/global/btn_global_manu.webp);
	background-size: cover;
	background-repeat: no-repeat;
}

.nav.navbar-nav.float-right.login-block .btn-g:after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -10px;
	content: "";
	display: inline-block;
	width: 34px;
	height: 20px;
	background: url(/assets/front/pc/img/global/btn_right_01.webp);
	background-repeat: no-repeat;
}

.btn-wrapper.border-radius-5 {
	background: url(/assets/front/pc/img/global/btn_rogin_02.webp);
}

.wrapper {
	width: 1140px;
	min-width: 1141px;
	padding: 0 20px;
	margin: 0 auto;
}

.first_bold {
	font-size: 14px;
	font-weight: bold;
	color: #525252;
	width: 66px;
	display: inline-block;
}

.under_yellow {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fee793));
	background: linear-gradient(transparent 50%, #fee793 50%);
	font-weight: bold;
}

/* footer */
footer {
	background-image: url(/assets/front/pc/img/global/navigation.webp);
	border-top: solid 1px #f2e6ca;
}

footer .concafe {
	padding: 30px 0;
}

footer .footer_inner .ttl_box {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

footer .link_ttl {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid #b99966;
	position: relative;
	margin-bottom: 20px;
}

footer .link_ttl:before {
	content: "";
	display: inline-block;
	width: 45px;
	height: 37px;
	background-repeat: no-repeat;
	background: url(/assets/front/pc/img/global/ttl_cafe_logo.webp);
}

footer .link_ttl:after {
	position: absolute;
	right: 0;
	bottom: 0;
	content: "";
	display: inline-block;
	width: 100px;
	height: 35px;
	background-repeat: no-repeat;
	background: url(/assets/front/pc/img/global/ttl_right_logo.webp);
}

footer .logo_ttl {
	display: block;
	margin-right: 20px;
}

footer .sub_ttl {
	font-size: 12px;
	font-weight: bold;
	display: block;
}

footer .f-arealink {
	background-image: url(/assets/front/pc/img/global/footer.webp);
	background-repeat: no-repeat;
	flex: 1;
	margin-top: -14px;
	position: relative;
	padding-bottom: 92px;
}

footer .f-arealink .castrun_img {
	position: absolute;
	right: 50px;
	top: -72px;
}

footer .f-link {
	padding: 0;
	margin: 0px 0;
	display: flex;
	justify-content: center;
	list-style: none;
}

footer .f-link a {
	font-weight: bold;
	color: #333333;
	border-right: 1px solid #b99966;
	padding-right: 12px;
	margin-right: 12px;
	line-height: 1;
	display: block;
}

footer .f-link li:last-child a {
	border-right: none;
}

footer .f-found_link {
	padding: 0;
	margin: 0 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}

footer .f-found_link li:nth-child(2),
footer .f-found_link li:nth-child(5),
footer .f-found_link li:nth-child(8) {
	width: 186px;
}

footer .f-found_link li:nth-child(3n) {
	width: 160px;
}

footer .f-found_link a {
	display: block;
	width: 216px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 22px;
}

footer .f-found_link li {
	width: 178px;
	margin-bottom: 10px;
}

footer .f-found_link li:last-child {
	margin-bottom: 0;
}

footer .f-found_link a {
	display: inline;
	font-weight: bold;
	color: #333333;
}

footer .f-link li {
	font-size: 14px;
}

.concafe_footer {
	display: flex;
}

.footer_inner>span {
	display: block;
}

.footer_inner {
	margin-right: 26px;
	flex: 1;
}

footer small {
	display: flex;
	justify-content: center;
	background-color: #525252;
	font-size: 14px;
	padding: 10px 0;
	color: #ffffff;
}

footer .btn {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

footer .btn .btn-g,
.btn-blue {
	font-size: 15px;
	font-weight: bold;
	position: relative;
	width: 242px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(/assets/front/pc/img/global/btn_footer.webp);
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	margin-right: 12px;
}

footer .btn .btn-g:after,
.btn-blue::after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -9px;
	content: "";
	display: inline-block;
	width: 34px;
	height: 19px;
	background: url(/assets/front/pc/img/global/btn_right_01.webp);
	background-repeat: no-repeat;
}

footer .f-arealink dl {
	margin-top: 64px;
}

footer .f-arealink .tc {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #525252;
	margin-bottom: 18px;
}

footer .f-arealink dd {
	margin-left: 34px;
}

footer .f-arealink .fx-w {
	display: flex;
	flex-wrap: wrap;
}

footer .f-arealink .fx-w a {
	font-size: 12px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f2ebe5;
	color: #333333;
	width: 142px;
	height: 34px;
	margin-bottom: 10px;
	margin-right: 20px;
	position: relative;
}

footer .f-arealink .fx-w a:after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -7px;
	content: "";
	display: inline-block;
	width: 30px;
	height: 15px;
	background: url(/assets/front/pc/img/global/footer_right.webp);
	background-repeat: no-repeat;
}

footer .f-arealink .fx-w li:nth-child(3n) a {
	margin-bottom: 0;
	margin-right: 0;
}

.caution-msg {
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
}

.template_ttl {
	position: relative;
	font-size: 35px;
	font-weight: bold;
	border-bottom: 1px #9b9b9b dashed;
	margin-top: 0;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	color: #525252;
	background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
    background: -webkit-linear-gradient(0deg, #d041a9, #ff71ad 30%, #ffc357);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.template_ttl:before {
	content: "";
    display: inline-block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    /* background: url(/assets/front/pc/img/global/ttl_cafe.png); */
    background-image: url(/assets/img/head_icon.webp);
    margin-right: 5px;
    margin-bottom: 0px;
    position: relative;
    top: -10px;
}

.template_ttl:after {
	position: absolute;
	right: 0;
	bottom: 0;
	content: "";
	display: inline-block;
	width: 100px;
	height: 36px;
	background-repeat: no-repeat;
	background: url(/assets/front/pc/img/global/ttl_right.webp);
	opacity: 0.6;
}

.template_ttl .sub_ttl {
	font-size: 29px;
	color: #ff9e8b;
	margin-left: 14px;
}

.template_ttl_02 {
	position: relative;
	font-size: 46px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 30px 0;
	color: #525252;
    background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
    background: -webkit-linear-gradient(0deg, #d041a9, #ff71ad 30%, #ffc357);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.template_ttl_02>span {
	display: block;
}

.template_ttl_02 .sub_ttl {
	font-size: 27px;
    color: #ff9e8b;
	line-height: 1;
    background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
    background: -webkit-linear-gradient(0deg, #d041a9, #ff71ad 30%, #ffc357);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.template_ttl_02 .ttl_body {
	font-size: 22px;
	color: #333333;
    background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
    background: -webkit-linear-gradient(0deg, #d041a9, #ff71ad 30%, #ffc357);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mgb100 {
	margin-bottom: 100px;
}

.experi_img {
	position: relative;
}

.ps_tape_01 {
	position: absolute;
	top: -30px;
	left: -10px;
}

.ps_tape_02 {
	position: absolute;
	right: -20px;
	bottom: -36px;
}

/*-----------------*/
/*マーキー*/
/*-----------------*/
.head-traffic {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.marquee {
	width: 930px;
	overflow: hidden;
	position: relative;
}

.marquee a {
	color: #333333;
}

.marquee a:hover {
	color: #ff628a;
}

.marquee::after {
	content: "";
	white-space: nowrap;
	display: inline-block;
}

.marquee>.marquee-inner {
	font-size: 14px;
	position: absolute;
	top: 0;
	white-space: nowrap;
	-webkit-animation-name: marquee;
	animation-name: marquee;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-duration: 20s;
	animation-duration: 20s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes marquee {
	0% {
		left: 80%;
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	100% {
		left: 0;
		-webkit-transform: translate(-100%);
		transform: translate(-100%);
	}
}

@keyframes marquee {
	0% {
		left: 80%;
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	100% {
		left: 0;
		-webkit-transform: translate(-100%);
		transform: translate(-100%);
	}
}

.marquee::after {
	content: "";
	white-space: nowrap;
	display: inline-block;
}


/*----------------*/
/*-navigation 下層-*/
/*----------------*/

.concept_cafe .navbar-nav {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	flex-flow: wrap;
}

.concept_cafe .navbar-nav li {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #333333;
	line-height: 1;
	margin-bottom: 10px;
}


.concept_cafe .float-right.login-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.concept_cafe .navbar-nav li:last-child {
	margin-right: 0;
	border-right: none;
}

.concept_cafe .h-nav_outer {
	background-image: url(/assets/front/pc/img/global/navigation.webp);
}

.concept_cafe .h-nav {
	font-size: 12px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1100px;
	min-width: 1100px;
	margin: 0 auto;
	padding: 16px 0;
}

.concept_cafe .h-nav a {
	color: #333333;
	display: block;
}

.concept_cafe .header_subttl {
	font-size: 14px;
	margin: 0;
}

.concept_cafe .navbar-nav.nav_list {
	margin-bottom: 6px;
}

.concept_cafe .header_list {
	background-image: url(/assets/front/pc/img/global/navigation.webp);
	display: flex;
}

.concept_cafe .inner_wrapper h1 {
	padding-right: 22px;
}

.concept_cafe .inner_wrapper {
	width: 1100px;
	min-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.concept_cafe .h-nav .sub_ttl {
	font-size: 12px;
	display: block;
}

.navbar-nav.float-right.login-block li:first-child {
	border-right: 1px solid #333333;
	margin-right: 10px;
	padding-right: 10px;
	line-height: 1;
}

.concept_cafe .login-block .header-btn-wrapper:last-child .btn-g {
	margin-right: 0;
}

.concept_cafe .login-block .btn-g {
	position: relative;
	font-size: 15px;
	color: #ffffff;
	width: 145px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(/assets/front/pc/img/global/btn_global_manu02.webp);
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 18px;
}

.concept_cafe .login-block .btn-g:after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -10px;
	content: "";
	display: inline-block;
	width: 34px;
	height: 20px;
	background: url(/assets/front/pc/img/global/btn_right_01.webp);
	background-repeat: no-repeat;
}

/*-----パンくず-----*/
.b-list {
	width: 1100px;
	min-width: 1100px;
	margin: 0 auto;
}

.b-list .mw a {
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}

.b-list .mw span {
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}

.b-list ul li:after {
	font-family: FontAwesome;
	content: '\f105';
	margin: 0 8px;
	width: 4px;
	display: inline-block;
}

.b-list ul li:last-child:after {
	display: none;
}

.b-list .mw {
	width: 100%;
	-webkit-overflow-scrolling: touch;
	display: flex;
	align-items: center;
	height: 30px;
	padding: 20px 0;
}

/* btn */
.pickup_btn {
	font-size: 14px;
	color: #ff628a;
}

.btn {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: center;
}

.concept_cafe .btn_pink {
	position: relative;
	width: 262px;
	height: 94px;
	color: #ffffff;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/global/area_btn.webp);
	background-size: cover;
	background-repeat: no-repeat;
}

.concept_cafe .btn_pink {
	margin-bottom: 22px;
}

.concept_cafe .btn_pink:after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -13px;
	content: "";
	display: inline-block;
	width: 46px;
	height: 25px;
	background: url(../img/global/btn_right_02.webp);
	background-repeat: no-repeat;
}

.concept_cafe .detailed_page {
	position: relative;
	color: #b99966;
	width: 216px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-repeat: no-repeat;
	background: #ffffff;
	background: -webkit-linear-gradient(top, #ffffff 0%, #f9f6ef 100%);
	border: solid 1px #b99966;
	box-shadow: 0 0 0 1px #FFFFFF,
		0 0 0 2px #b99966;
	border-radius: 200px;
}

.concept_cafe .apply,
.btn-pink {
	position: relative;
	font-size: 15px;
	color: #ffffff;
	width: 216px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/global/btn_03.webp);
	background-size: cover;
	background-repeat: no-repeat;
}

.concept_cafe .apply:after,
.btn-pink::after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -10px;
	content: "";
	display: inline-block;
	width: 34px;
	height: 20px;
	background: url(../img/global/btn_right_04.webp);
	background-repeat: no-repeat;
}



/*---tag---*/
.tag_keyword {
	display: flex !important;
	margin-bottom: 12px;
}

.tag_keyword .tags {
	font-size: 14px;
	font-weight: bold;
	color: #b99966;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #b99966;
	background-color: #ffffff;
	border-radius: 20px;
	margin-right: 10px;
	padding: 6px 14px;
	line-height: 1;
}

.terms_tag {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.terms_tag .tags {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
	justify-content: center;
	align-items: center;
	box-shadow: inset 0 0 0 2px #61b4fe, inset 0 0 0 3px #ffffff;
	background-color: #61b4fe;
	line-height: 1;
	width: 132px;
	height: 36px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.terms_tag .tags.inactive {
	opacity: 0.4;
}

/*icon~fontawsome*/
.ic1 {
	background-image: url(../img/global/icon1.webp);
}

.ic2 {
	background-image: url(../img/global/icon2.webp);
}

.ic1 {
	width: 37px;
	height: 39px;
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
}

.ic2 {
	width: 14px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
	background-size: contain;
}

.ic1,
.ic2 {
	margin-right: 12px;
}


/*-----------------*/
/*----what_new----*/
/*-----------------*/
.what_new {
	padding: 80px 0 100px 0;
	background-color: #fbf8f1;
	border-bottom: solid 1px #f2e6ca;
}

.what_new .shop_list li {
	display: flex;
}

.what_new .shop_list_inner {
	display: block;
	width: 100%;
}

.what_new .shop_box {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ffe2dd;
}

.what_new .shop_box .shop_info {
	min-width: 420px;
	max-width: 420px;
}

.what_new .shop_box .work_style {
	max-width: 244px;
	margin-top: 10px;
}

.what_new .shop_box .work_style .price_time {
	margin-bottom: 10px;
}

.what_new .shop_list li {
	margin-bottom: 30px;
	padding: 20px;
	background: #FFF;
	border: solid 1px #ffe2dd;
}

.what_new .shop_list li:last-child {
	margin-bottom: 0;
}

.what_new .shop_img {
	margin-right: 20px;
	min-width: 160px;
	max-width: 160px;
	width: 160px;
}

.what_new .castrun_img {
	position: absolute;
	top: -70px;
	right: 0;
	margin-right: 75px;
}

.what_new .shop_info>span {
	display: block;
}

.what_new .work_style>span {
	display: block;
}

.what_new_inner {
	display: flex;
	width: 100%;
}

.what_new_inner .shop_info>span {
	display: block;
}

.what_new_inner .work_style>span {
	display: block;
}

.what_new .shop_comment {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.what_new .shop_name {
	font-size: 16px;
	font-weight: bold;
}

.what_new .shop_info .up_date {
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	background-color: #fba0a7;
	color: #373737;
	border-radius: 16px;
	padding: 5px 16px;
	margin-bottom: 14px;
	line-height: 1;
}

.what_new .shop_box>span {
	flex: 1;
	line-height: 1.2;
}

.what_new .area_name {
	margin-bottom: 8px;
}

.what_new .detail_page,
.btn-white {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	color: #b99966;
	width: 216px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/global/btn_02.webp);
	background-size: cover;
	background-repeat: no-repeat;
}

.btn-white::after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -8px;
	content: "";
	display: inline-block;
	width: 34px;
	height: 20px;
	background: url(../img/global/btn_right_03.webp);
	background-repeat: no-repeat;
}


/*--------------------*/
/*--otheruser_history--*/
/*--------------------*/
.otheruser_history .shop_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

.otheruser_history .shop_list li {
	width: calc(100% / 4 - 26px);
	border: 1px solid #fcefd1;
	background-color: #fbf8f1;
	/*margin-right: 34px;*/
}

.otheruser_history .shop_list li:last-child {
	margin-right: 0;
}

.otheruser_history .ad_item {
	margin-bottom: 100px;
}

.otheruser_history .ad_item .ad_bg {
	margin-bottom: 30px;
	display: block;
}

.otheruser_history .ad_item .ad_bg:last-child {
	margin-bottom: 0;
}

.otheruser_history .shop_list img {
	width: 100%;
	display: block;
}

.otheruser_history .shop_list a>span {
	display: block;
}

.otheruser_history .shop_list .history_inner {
	max-width: 247px;
	padding: 18px;
	display: block;
}

.otheruser_history .shop_list .history_inner .area_name {
	font-size: 12px;
	line-height: 1;
	margin-bottom: 6px;
}

.otheruser_history .shop_list .history_inner .shop_name {
	font-size: 16px;
	font-weight: bold;
	color: #525252;
}


.page-shoplist .otheruser_history {
	padding: 40px 0 0 0;
}



@media screen and (min-width: 768px) {
	.sp-head {
		display: none;
		-webkit-box-shadow: 2px 3px 6px rgba(173, 173, 173, 0.2);
		box-shadow: 2px 3px 6px rgba(173, 173, 173, 0.2);
	}
}

/*--------------------ここまでtemple-------------------------*/



/*----------------*/
/*---shoplist---*/
/*----------------*/

/*---main_visual---*/
.page-shoplist .main_visual {
	background-image: url(../img/global/mainvisual_bg.webp);
	padding: 50px 0;
}

.page-shoplist .main_visual .inner_wrap {
	width: 1100px;
	min-width: 1100px;
	margin: 0 auto;
}

.page-shoplist .main_visual .search_block {
	overflow: hidden;
	border: solid 1px #bc8f76;
	border-radius: 12px;
}

.page-shoplist .main_visual dl {
	display: flex;
	margin: 0;
}

.page-shoplist .main_visual .area_choice {
	border-bottom: 1px solid #fcefd1;
}

.page-shoplist .main_visual dt {
	background-color: #fbf8f1;
	min-width: 200px;
	width: 200px;
	padding: 16px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
}

.page-shoplist .main_visual .inner_wrap dd {
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	margin: 0;
	background-color: #ffffff;
	width: 100%;
	align-items: center;
}

.page-shoplist .main_visual .inner_wrap .area_choice dd {
	border-radius: 0 10px 0 0;
}

.page-shoplist .main_visual .inner_wrap .type_choice dd {
	border-radius: 0 0 10px 0;
}

.page-shoplist .main_visual .inner_wrap .area_choice dd ul,
.page-shoplist .main_visual .inner_wrap .type_choice dd ul {
	display: flex;
	flex-wrap: wrap;
}

.page-shoplist .main_visual .inner_wrap .area_choice dd ul li {
	margin: 5px 10px 5px 0;
	width: 113px;
}

.page-shoplist .main_visual .inner_wrap .area_choice dd ul li.long {
	width: 170px;
}

.page-shoplist .main_visual .inner_wrap .type_choice dd ul li {
	margin: 5px 10px 5px 0;
	width: 150px;
}

.page-shoplist .main_visual .inner_wrap dd dt {
	border-radius: 0;
	padding: 0;
	font-size: 16px;
	min-width: 140px;
	width: 140px;
	background-color: transparent;
}

.page-shoplist .main_visual .inner_wrap dd dd {
	padding: 0;
}

.page-shoplist .slider-wrapper {
	display: none;
}

.pagination>ul {
	box-sizing: border-box;
	display: flex;
	list-style: none;
}

.concept_cafe.page-shoplist .btn_pink {
	position: relative;
	width: 250px;
	height: 90px;
	color: #ffffff;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/page/list/shoplist/area_btn.webp);
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 40px;
}

.concept_cafe.page-shoplist .btn_pink {
	margin-bottom: 0;
}

.concept_cafe.page-shoplist .area_choice .btn_pink:nth-child(1),
.concept_cafe.page-shoplist .area_choice .btn_pink:nth-child(2),
.concept_cafe.page-shoplist .area_choice .btn_pink:nth-child(3) {
	margin-bottom: 22px;
}

.concept_cafe.page-shoplist .btn_pink:nth-child(3n) {
	margin-right: 0;
}


/* エリアクリア・ジャンルクリア */
.deselection_title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}

.deselection_btn {
	position: relative;
	color: #b99966;
	width: 154px;
	height: 32px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/global/btn_02.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
*/
/********************/
.page-shoplist .main_visual {
	font-size: 18px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-image: none;
}

.page-shoplist .slider-wrapper {
	margin-bottom: 160px;
}


/*---pagination---*/
.page-shoplist .pagination.pagination_top {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	margin-bottom: 26px;
}

.page-shoplist .pagination.pagination_bottom {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
	margin-top: -30px;
}

.page-shoplist .pageing {
	display: flex;
}

.page-shoplist .pagination.pagination_top .p-number {
	margin-right: 10px;
	font-weight: normal;
}

.page-shoplist .pagination.pagination_top strong {
	font-size: 24px;
	font-weight: bold;
	color: #ff628a;
}

.page-shoplist .pagination>ul>li>a {
	background-color: rgba(255, 255, 255, 1.00);
	margin-left: 5px;
	text-align: center;
	padding: 3px 9px;
	font-size: 16px;
	color: #2D2D2D;
	border: 1px solid #bbbbbb;
}

.page-shoplist .pagination>ul>li:first-child a {
	margin-left: 0;
	opacity: 0.4;
	background-color: #999;
}

.page-shoplist .pagination>ul>li:first-child a:hover {
	color: unset;
	background-color: #999;
}

.page-shoplist .pagination>ul>li>a:hover,
.page-shoplist .pagination>ul>li>a.active {
	background-color: #b99966;
	color: #FFF;
}

/*--paid_shoplist--*/
.page-shoplist .paid_shop .bg_icon {
	position: absolute;
	right: 28px;
}

.page-shoplist .paid_shop .bg_icon02 {
	position: absolute;
	left: 12px;
	top: 12px;
}

.page-shoplist .paid_shop .bg_icon03 {
	position: absolute;
	right: 12px;
	top: 12px;
}

.page-shoplist .paid_shop .bg_icon04 {
	position: absolute;
	left: 12px;
	bottom: 12px;
}

.page-shoplist .paid_shop .bg_icon05 {
	position: absolute;
	right: 12px;
	bottom: 12px;
}

.page-shoplist .paid_shop {
	margin-bottom: 74px;
	border: 2px solid #fcefd1;
}

.page-shoplist .paid_shop .ttl_box {
	display: flex;
	padding: 20px;
	background-image: url(/assets/front/pc/img/page/list/shoplist/shop_ttl_bg01.webp);
	line-height: 1;
	position: relative;
}

.page-shoplist .paid_shop .ttl_box_inner>span {
	display: block;
	line-height: 1;
}

.page-shoplist .paid_shop .ttl_box .shop_img {
	width: 96px;
	min-width: 96px;
	max-width: 96px;
	margin-right: 28px;
}

.page-shoplist .paid_shop .ttl_box_inner {
	max-width: 796px;
}

.paid_shop .tags:last-child {
	margin-right: 0;
}

.page-shoplist .paid_shop .shop_infobox {
	background-color: #fbf8f1;
	padding: 20px;
}

.page-shoplist .paid_shop .discription_box {
	display: flex;
	margin-bottom: 30px;
}

.page-shoplist .paid_shop .discription_box .shop_img {
	width: 515px;
	min-width: 515px;
	max-width: 515px;
	margin-right: 30px;
}

.page-shoplist .paid_shop .shop_info_dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	border-top: 2px solid #ffd7e1;
	border-left: 2px solid #ffd7e1;
	border-right: 2px solid #ffd7e1;
	width: 100%;
}

.page-shoplist .paid_shop .shop_info_dl dt {
	font-size: 14px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18%;
	height: auto;
	margin: 0;
	background-color: #ffb0c4;
	border-bottom: 2px solid #ffd7e1;
}

.page-shoplist .paid_shop .shop_info_dl dd {
	display: flex;
	align-items: center;
	font-size: 14px;
	margin: 0;
	height: auto;
	width: 82%;
	background-color: #ffffff;
	padding: 10px 20px;
	border-bottom: 2px solid #ffd7e1;
}

.page-shoplist .paid_shop .shop_comment {
	font-size: 14px;
	line-height: 34px;
	border-bottom: 1px dotted #b7b7b7;
	display: inline;
	padding: 0 2px 4px;
	margin: 0;
}

.page-shoplist .paid_shop .shop_pr_box {
	padding: 15px 15px;
	background-color: #ffffff;
	position: relative;
	margin-bottom: 26px;
}

.page-shoplist .paid_shop .shop_pr_box:before {
	position: absolute;
	left: 0;
	top: -10px;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 0 510px;
	border-color: transparent transparent transparent #fcefd1;
}

.page-shoplist .paid_shop .shop_pr_box:after {
	position: absolute;
	right: 0;
	bottom: -10px;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 510px 10px 0;
	border-color: transparent #fcefd1 transparent transparent;
}

.page-shoplist .paid_shop .shop_pr {
	font-size: 18px;
	font-weight: bold;
	color: #ff628a;
	display: block;
	border-bottom: 2px solid #dcccb2;
	padding-bottom: 14px;
	margin-bottom: 14px;
}

.page-shoplist .paid_shop .experience_shop {
	display: flex;
	justify-content: flex-start;
	padding-left: 170px;
	align-items: center;
	background-image: url(/assets/front/pc/img/page/list/shoplist/experience.webp);
	background-size: contain;
	height: 94px;
	position: relative;
	margin-bottom: 30px;
}

.page-shoplist .paid_shop .experience_ttl {
	display: block;
	margin-right: 52px;
}

.page-shoplist .paid_shop .experience_shop .hourly_pay {
	font-size: 26px;
	font-weight: bold;
	color: #f44040;
}

.page-shoplist .paid_shop .experience_shop .price {
	font-size: 34px;
}

.page-shoplist .paid_shop .experience_shop .cafemin {
	position: absolute;
	left: 50px;
}

.shop_list_box .event_icon {
	position: absolute;
	right: 25px;
}

.concept_cafe.page-shoplist .detailed_page {
	font-size: 23px;
	position: relative;
	color: #b99966;
	width: 313px;
	height: 79px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(/assets/front/pc/img/page/list/shoplist/btn_01.webp);
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 40px;
}

.concept_cafe.page-shoplist .apply {
	font-size: 23px;
	position: relative;
	color: #ffffff;
	width: 313px;
	height: 79px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(/assets/front/pc/img/page/list/shoplist/btn_02.webp);
	background-size: cover;
	background-repeat: no-repeat;
}

.concept_cafe.page-shoplist .detailed_page:after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -10px;
	/* content: ""; */
	display: inline-block;
	width: 44px;
	height: 21px;
	background-image: url(/assets/front/pc/img/page/list/shoplist/btn_right01.webp);
	background-repeat: no-repeat;
}

.concept_cafe.page-shoplist .apply:after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -12px;
	content: "";
	display: inline-block;
	width: 48px;
	height: 25px;
	background-image: url(/assets/front/pc/img/page/list/shoplist/btn_right02.webp);
	background-repeat: no-repeat;
}

.concept_cafe.page-shoplist .paid_shop .terms_tag .tags {
	width: 159px;
	height: 40px;
	margin-right: 16px;
}

/*--free_shoplist--*/
.page-shoplist .free_shop {
	margin-bottom: 74px;
	border: 1px solid #c7c7c7;
}

.page-shoplist .free_shop .ttl_box {
	display: flex;
	padding: 32px;
	/* background-image: url(/assets/front/pc/img/page/list/shoplist/shop_ttl_bg03.png); */
	line-height: 1;
	position: relative;
}

.page-shoplist .free_shop .ttl_box_inner>span {
	display: block;
	line-height: 1;
}

.page-shoplist .free_shop .shop_img {
	display: block;
	width: 96px;
	min-width: 96px;
	max-width: 96px;
	margin-right: 28px;
}

.page-shoplist .free_shop .ttl_box_inner .area_name {
	font-size: 18px;
	margin-bottom: 6px;
}

.page-shoplist .free_shop .shop_name {
	font-size: 28px;
	font-weight: bold;
	color: #ff628a;
	display: block;
}

.page-shoplist .free_shop .shop_infobox {
	padding: 30px;
}

.page-shoplist .free_shop .discription_box {
	display: flex;
	margin-bottom: 30px;
}

.page-shoplist .free_shop .shop_info_dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	border-top: 1px solid #c7c7c7;
	border-right: 1px solid #c7c7c7;
	width: 100%;
}

.page-shoplist .free_shop .shop_info_dl dt {
	font-size: 14px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 11%;
	margin: 0;
	background-color: #f9f9f9;
	border-right: 1px solid #c7c7c7;
	border-left: 1px solid #c7c7c7;
	border-bottom: 1px solid #c7c7c7;
	padding-top: 10px;
	padding-bottom: 10px;
}

.page-shoplist .free_shop .shop_info_dl dd {
	font-size: 14px;
	display: flex;
	align-items: center;
	margin: 0;
	width: 89%;
	background-color: #ffffff;
	padding: 10px 20px;
	border-bottom: 1px solid #c7c7c7;
}

.page-shoplist .free_shop .shop_comment {
	font-size: 14px;
	line-height: 34px;
	border-bottom: 1px dotted #b7b7b7;
	display: inline;
	padding: 0 2px 4px;
	margin: 0;
}

.page-shoplist .free_shop .shop_pr_box {
	padding: 30px;
	background-color: #f9f9f9;
	position: relative;
	margin-bottom: 26px;
}

.page-shoplist .free_shop .shop_pr {
	font-size: 18px;
	font-weight: bold;
	color: #ff628a;
	display: block;
	border-bottom: 1px solid #c7c7c7;
	padding-bottom: 14px;
	margin-bottom: 14px;
}

.page-shoplist .free_shop .experience_shop {
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	position: relative;
	margin-bottom: 30px;
}

.page-shoplist .free_shop .experience_ttl {
	display: block;
	margin-right: 52px;
}

.page-shoplist .free_shop .experience_shop .hourly_pay {
	font-size: 26px;
	font-weight: bold;
	color: #f44040;
}

.page-shoplist .free_shop .experience_shop::before,
.page-shoplist .free_shop .experience_shop::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	margin: 0 auto;
	text-align: center;
	background-image: linear-gradient(left, transparent, #c7c7c7 25%, #c7c7c7 75%, transparent);
	background-position: center;
	background-repeat: no-repeat;
}

.page-shoplist .free_shop .experience_shop::before {
	top: 0;
}

.page-shoplist .free_shop .experience_shop::after {
	bottom: 0;
}

/*-----------------*/
/*----rules----*/
/*-----------------*/
.page-rules .colmun.wrapper {
	margin-bottom: 80px;
}

/*-----------------*/
/*--page-shopinfo--*/
/*navitto*/
/*-----------------*/
.page-navitto .shop_info_box {
	background-color: #fbf8f1;
	padding: 50px 0;
	margin-bottom: 76px;
}

.page-navitto .ttl_box {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}

.page-navitto .ttl_box_inner {
	max-width: 680px;
	margin-right: 20px;
	flex: 1;
}

.page-navitto .shop_info_box .shop_img {
	margin-right: 30px;
	width: 156px;
	min-width: 156px;
	max-width: 156px;
}

.page-navitto .shop_info_box .btn {
	display: block;
}

.page-navitto .discription_box {
	display: block;
}

.page-navitto .shop_info_dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	border-top: 2px solid #fcefd1;
	border-left: 2px solid #fcefd1;
	border-right: 2px solid #fcefd1;
	border-radius: 10px;
}

.page-navitto .shop_info_dl dt {
	font-size: 18px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 17%;
	height: 70px;
	margin: 0;
	background-color: #f0e2ca;
	border-bottom: 2px solid #fcefd1;
	position: relative;
}

.page-navitto .shop_info_dl dd {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin: 0;
	height: 70px;
	width: 83%;
	background-color: #ffffff;
	padding-left: 30px;
	border-bottom: 2px solid #fcefd1;
}

.page-navitto .ttl_box_inner .area_name {
	font-size: 18px;
	margin-bottom: 6px;
}

.page-navitto .ttl_box_inner .shop_name {
	font-size: 28px;
	font-weight: bold;
	color: #ff628a;
}

.page-navitto .shop_info_box .btn .detailed_page {
	margin-bottom: 16px;
}




/*newボタン調整-----------------*/
.part_job_btn_1:after,
.part_job_btn_2:after,
.part_job_btn_2_long:after,
.part_job_btn_3:after,
.part_job_btn_4:after {
	content: none !important;
}


.part_job_btn_1 {
	background-size: 100% 100% !important;
	position: relative;
}

.ranking_job_btn_1 {
	padding: 1.5vw 0;
}

/* 背景画像pettern */
.part_job_btn_2 {
	background-image: url(/assets/front/pc/img/page/list/shoplist/part_time_btn2.webp) !important;
	background: url(/assets/front/pc/img/page/list/shoplist/part_time_btn2.webp) !important;
	background-size: 100% 100% !important;
}



/*サイズが難しいものに色塗りパターンで対応*/
.part_job_btn_bgc {
	position: relative;
	background: linear-gradient(to bottom, rgb(255 87 173) 0%, rgb(255 78 167) 41%, rgb(255 47 107) 100%) !important;
}

.part_job_btn_bgc:after {
	content: "";
	right: initial !important;
	top: initial !important;
	bottom: initial !important;
	margin-top: initial !important;
	display: block !important;
	height: 100% !important;
	width: 100% !important;
	position: absolute !important;
	background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 4px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 6px), repeating-linear-gradient(315deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 4px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 6px) !important;
	box-sizing: none !important;
	z-index: 1 !important;
}

.part_job_btn_bgc::before {
	content: '';
	display: block;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	width: 110%;
	position: absolute;
	height: 110%;
	z-index: 2;
	top: -60%;
}

.part_job_btn_bgc span:after,
.part_job_btn_bgc.apply:after {
	content: '';
	position: absolute;
	display: block;
	left: 1px;
	top: 1px;
	border: solid 1px #FFFFFF;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
}


.part_job_btn_bgc._radius {
	border-radius: 500px;
}

.part_job_btn_bgc._radius:before {
	border-radius: 50%;
}

.part_job_btn_bgc._radius span:after {
	border-radius: 500px;
}


.part_job_btn_2_long {
	background-image: url(/assets/front/pc/img/page/list/shoplist/part_time_btn2_long.webp) !important;
	max-width: 420px;
	width: 100% !important;
	background-size: 100% 100% !important;
}

.part_job_btn_3 {
	background-image: url(/assets/front/pc/img/page/list/shoplist/part_time_btn3.webp) !important;
	background-size: 100% 100% !important;
}

.part_job_btn_4 {
	background-image: url(/assets/front/pc/img/page/list/shoplist/part_time_btn4.webp) !important;
	background-size: 100% 100% !important;
	border-radius: 0;
}


/* 個別対応 */

.part_btns .caferun_btn {
	background: linear-gradient(to bottom, rgb(255 97 178) 0%, rgba(255, 100, 178, 1) 41%, rgba(247, 99, 142, 1) 100%);
	;
}

/*ショップトップ*/
.btn_area .part_job_btn_2_long {
	max-width: 420px;
}

.btn_divide {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
}

.btn_divide .btn a {
	width: 200px;
	background-size: 100% 100% !important;
}

.btn_divide .btn:nth-child(2) {
	margin-left: 20px;
}

/*topページのサイズを微調整*/

.btn_divide._top {
	justify-content: space-between;
}

.btn_divide._top .btn a {
	width: 220px;
}

._top_long {
	margin-top: 20px;
}

._top_long .part_job_btn_2_long {
	max-width: initial;
	width: 100%;
}

/*ショップリスト*/
.concept_cafe.page-shoplist .apply.part_job_btn_3 {
	margin-left: 40px;
}

/*ランキングリスト*/
.caferun_btn.part_job_btn_4:after {
	background-image: none;
	box-shadow: none;
}

.caferun_btn.part_job_btn_4:before {
	background-color: initial !important;
}

.caferun_btn.part_job_btn_4 span:after {
	border: none;
}

.caferun_btn.part_job_btn_4:hover {
	opacity: 0.8;
}

.caferun_btn.part_job_btn_4:hover>span::before {
	box-shadow: none !important;
}

.ranking_btns_wrap {
	display: flex;
	flex-shrink: 0;
}

.ranking_gest_box {
	width: 100px;
	height: 100px;
	background-image: url(/assets/front/pc/img/page/list/shoplist/ranking_gest_box.webp) !important;
	background-size: 100% 100%;
	margin-left: 10px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.ranking_gest_box span {
	font-size: 16px;
	color: #fff;
	font-weight: bold;
}

/*--------------new_btn調整ここまで------------------*/




/*********** ナビットのお仕事体験日記（個別） ***********/
#navitto_report_header {
	background-image: url(/assets/front/pc/img/page/navitto/img_004.webp);
	background-repeat: no-repeat;
	width: 1100px;
	height: 80px;
}

#navitto_report_header.report-header .report-shop-name {
	left: 386px
}

.topic-navitto .this-go-round-shop-info.topic-shop-info-box {
	background-color: #fff7fb;
	box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset;
	-webkit-box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset;
	-moz-box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset;
	border: 1px solid #ffd3e7;
	border-radius: 5px;
}

.topic-navitto .this-go-round-shop {
	border-color: #ffd5e8
}

.topic-navitto .this-go-round-shop:before {
	border-color: rgba(255, 211, 231, 0);
	border-top-color: #ffd5e8;
}

.topic-navitto .shop-photo-thumbnail {
	border-color: #ffd5e8
}

.topic-navitto .this-go-round-shop-info .hot-shop-header {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffd5e8;
}

#navitto_main_content {
	font-size: 16px;
}

#navitto_top_message {
	position: absolute;
	top: 124px;
	left: 67px;
	background-image: url(/assets/front/pc/img/page/navitto/img_006.webp);
	background-repeat: no-repeat;
	width: 947px;
	height: 290px;
}

.special-topic-content .photo-list {
	text-align: center;
}

.special-topic-content .photo-list .topic-photo {
	display: inline-block;
}

.topic-photo {
	width: 280px;
	position: relative;
	padding: 6px;
	background-color: #FFF;
	box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 6px 3px;
}

.topic-photo i {
	position: absolute;
	display: block;
	left: 25%;
	top: -15px;
}

.ico_global-icon_047 {
	background-position: -60px -196px;
	height: 31px;
	width: 149px;
}

.ico_global-icon_047 {
	background-image: url(http://caferun.webla.jp/assets/front/pc/img/global/tape_01.webp);
	background-repeat: no-repeat;
}

.special-topic-content .accent-text-blue {
	color: #47afff;
	font-size: 30px;
	font-weight: bold;
}

.text-blue {
	color: #78bffc;
}

.float-right {
	float: right;
}

.float-left {
	float: left;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.special-topic-content .footer {
	position: absolute;
	bottom: 27px;
}

#navitto_top_message .message-box {
	position: absolute;
	top: 50px;
	left: 323px;
	width: 600px;
}

#navitto_main_header {
	background-image: url(/assets/front/pc/img/page/navitto/img_013.webp);
	background-repeat: no-repeat;
	width: 1108px;
	height: 422px;
}

#navitto_main_header .area-genre-info {
	position: absolute;
	top: 58px;
	right: 55px;
	font-size: 12px;
	font-weight: bold;
	color: #ff3db4;
	text-align: center;
	line-height: 1;
	padding-top: 13px;
	background-image: url(/assets/front/pc/img/page/navitto/img_005.webp);
	background-repeat: no-repeat;
	width: 348px;
	height: 45px;
}

#navitto_main_body {
	width: 1109px;
	padding-right: 31px;
	padding-left: 39px;
	background-image: url(/assets/front/pc/img/page/navitto/page_navitto_bg_001.webp);
}

#navitto_main_body .content-wrapper {
	background-image: url(/assets/front/pc/img/page/navitto/page_navitto_bg_003.webp);
	background-repeat: repeat-y;
}

#navitto_main_content .chapter-block {
	position: relative;
	padding-bottom: 30px;
	padding-left: 40px;
	padding-right: 40px;
	font-size: 20px;
}

#navitto_main_content .chapter-block .main-content-block {
	width: 620px
}

#navitto_main_content .chapter-block .footer {
	text-align: right;
	right: 334px;
}

#navitto_main_content .chapter-block .footer i {
	display: inline-block
}

.navitto-shop-access {
	padding-top: 30px
}

.navitto-job-info .header {
	margin-bottom: 0px
}

.to-entry-form {
	line-height: 1;
	padding-left: 50px;
	padding-top: 10px;
	margin-right: 10px;
	margin-left: 13px;
	background-image: url(/assets/front/pc/img/page/navitto/img_008.webp);
	background-repeat: no-repeat;
	width: 225px;
	height: 46px;
	color: #333333;
}

.to-entry-form.min {
	padding-top: 13px;
	background-image: url(/assets/front/pc/img/page/navitto/img_011.webp);
	width: 124px;
	height: 46px;
}

.navitto-job-concept.chapter-block .main-content-block {
	padding-bottom: 0px
}

/** お店の人からのメッセージ **/
#shop_message {
	background-image: url(/assets/front/pc/img/page/navitto/page_navitto_bg_002.webp);
	background-repeat: repeat;
	border: 7px solid #FFF;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px 0px;
	margin: auto;
	width: 950px;
	padding-top: 75px;
	padding-right: 35px;
	padding-bottom: 35px;
	padding-left: 35px;
	color: #765844;
	position: relative;
	word-break: break-word;
}

#shop_message .shop-message-ttl {
	display: block;
	position: absolute;
	top: -18px;
	left: 18px;
}

#shop_message .welcome-icon {
	display: block;
	position: absolute;
	top: 14px;
	right: 38px;
}

#navitto_main_content .chapter-block.navitto-epilogue {
	padding-bottom: 0px
}

.navitto-thanx-icon {
	display: block
}

#navitto_footer {
	background-image: url(/assets/front/pc/img/page/navitto/img_014.webp);
	background-repeat: no-repeat;
	width: 1108px;
	height: 84px;
}

.special-topic-content .accent-text {
	color: #fe6baf;
	font-size: 30px;
	font-weight: bold;
}

.topic-photo img {
	width: 266px;
}

.item-box {
	display: block;
	position: relative;
	word-break: break-all;
	line-height: 1.6;
}

.ttl_box .shop_name {
	font-size: 28px;
	font-weight: bold;
	color: #ff628a;
}

.ttl_box .area_name {
	font-size: 18px;
	margin-bottom: 6px;
}

/*-----------------*/
/*--page-shopinfo--*/
/*404 notfound*/
/*-----------------*/
.error_404 {
	background-image: url(/assets/front/pc/img/global/404.webp);
	background-repeat: no-repeat;
	background-size: cover;
}

.block-404.clearfix {
	position: relative;
	height: 546px;
	padding: 120px 0;
}

.error_detail {
	margin-left: 120px;
	width: 540px;
}

.error_detail_top {
	padding: 30px;
	margin-bottom: 20px;
	background-color: #fff;
}

.block-404 img {
	position: absolute;
	bottom: 10px;
	right: 110px;
}

.page-404 h2 {
	font-size: 32px;
}

.page-404 p {
	font-size: 18px;
}

/*-----------------*/
/*-recommendation-*/
/*-----------------*/
.recommendation {
	margin-bottom: 70px;
}

.recommendation .shop_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 126px 0;
}

.recommendation .shop_list .shop_img {
	width: 340px;
	min-width: 340px;
	max-width: 340px;
}

.recommendation .shop_list li {
	width: 31%;
	border: 1px solid #fcefd1;
	background-color: #fbf8f1;
	margin-bottom: 34px;
	margin-right: 38px;
}

.recommendation .shop_list li:nth-child(3n) {
	margin-right: 0;
}

.recommendation .shop_list img {
	width: 100%;
	display: block;
}

.recommendation .shop_list a>span {
	display: block;
}

.recommendation .shop_list .history_inner {
	padding: 20px;
	display: block;
}

.recommendation .shop_list .history_inner .area_name {
	font-size: 14px;
	margin-bottom: 10px;
}

.recommendation .shop_list .history_inner .shop_name {
	font-size: 18px;
	font-weight: bold;
	color: #525252;
	margin-bottom: 16px;
	padding-bottom: 16px;
	display: block;
	line-height: 1;
	border-bottom: 1px solid #fcefd1;
}

.recommendation .shop_list .history_inner>span {
	display: block;
}

.recommendation .senior_comment {
	position: relative;
	padding: 32px;
	display: flex;
	border: 1px solid #fcefd1;
	background-color: #fbf8f1;
	box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
}

.recommendation .senior_comment .info .cast_comment {
	font-size: 14px;
	font-weight: bold;
	line-height: 34px;
	margin: 40px 0 14px 0;
	border-bottom: 1px dotted #b7b7b7;
	display: inline;
	padding: 0 2px 4px;
}

.tab_list {
	display: flex !important;
}

.tab {
	overflow: hidden;
}

.hide {
	display: none;
}

.recommendation .senior_comment .senior_inner {
	padding: 30px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #fcefd1;
	position: absolute;
	bottom: 0;
}

.recommendation .senior_comment .discription {
	margin-right: 26px;
	padding-right: 26px;
	border-right: 1px solid #fadce9;
	max-width: 290px;
}

.recommendation .senior_comment .work_shop {
	position: relative;
	font-size: 15px;
	color: #ffffff;
	width: 307px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/global/btn_04.webp);
	background-size: cover;
	background-repeat: no-repeat;
}

.recommendation .senior_comment .work_shop:after {
	position: absolute;
	right: -12px;
	top: 50%;
	bottom: 50%;
	margin-top: -10px;
	content: "";
	display: inline-block;
	width: 34px;
	height: 20px;
	background: url(../img/global/btn_right_04.webp);
	background-repeat: no-repeat;
}

.recommendation .tag_title {
	position: absolute;
	top: -86px;
	left: 0;
	margin: 0;
	margin-left: -70px;
}

.recommendation .senior_comment .cast_box {
	margin: 60px 0 22px 0;
}

.recommendation .senior_comment .discription>span {
	display: block;
}

.recommendation .senior_comment .info {
	margin-right: 26px;
	position: relative;
	flex: 1;
}

.recommendation .senior_comment .shop_img {
	width: 326px;
	min-width: 326px;
	max-width: 326px;
	display: block;
	transform: rotate(2deg) scale(1);
	position: relative;
}

.recommendation .senior_comment .area_name {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 12px;
	line-height: 1;
}

.recommendation .senior_comment .shop_name {
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}

/*-----------------*/
/*-experience_diary-*/
/*-----------------*/
.experience_diary {
	margin-bottom: 100px;
}

.experience_diary .shop_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 74px;
}

.experience_diary .shop_list li {
	display: flex;
	width: calc(100% / 2 - 18px);
	border: 1px solid #fcefd1;
	background-color: #fbf8f1;
	margin-bottom: 34px;
	padding: 26px;
}

.experience_diary .shop_list li .shop_img {
	max-width: 150px;
	min-width: 150px;
	width: 150px;
	margin-right: 16px;
}

.experience_diary .shop_list img {
	width: 100%;
	display: block;
}

.experience_diary .shop_list a>span {
	display: block;
}

.experience_diary .shop_list .history_inner {
	display: block;
}

.experience_diary .shop_list .area_name {
	font-size: 14px;
	margin-bottom: 10px;
}

.experience_diary .shop_list .shop_comment {
	font-size: 16px;
}

.experience_diary .shop_list .history_inner>span {
	display: block;
}

.experience_diary .shop_list li .shop_name {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 16px;
	padding-bottom: 16px;
	display: inline-block;
	border-bottom: 1px solid #fcefd1;
}

.features.common_02,
.features.common_04 {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.wrp-types span {
	display: inline-block;
}

.wrp-types span::after {
	content: "/"
}

.wrp-types span:last-child::after {
	content: none
}

.wrp-page {
	padding: 50px 0;
}

.mail_alert {
	background: #F00;
	padding: 15px 15px 20px;
	color: #fff;
	font-size: 14px;
	margin: 15px auto;
}

/*photolist*/
.wrp-photo_list {
	margin: 0 -15px 60px;
}

.item-plist {
	width: 25%;
	padding: 15px;
}

.item-plist .item-inner {
	border: 1px solid #ddd;
}

.item-plist .item-body {
	padding: 15px 10px;
}

.item-plist .area_name {
	display: block;
	margin-bottom: 5px;
}

/*-----------------*/
/*browser*/
/*-----------------*/
/*個別ページその他*/
.inner-link {
	background: #fff7fb;
	border-radius: 5px;
	border: 1px solid #ffd5e8;
	padding: 10px;
}

.inner-link a {
	padding-right: 10px;
}

.icon-position1 {
	margin-right: 5px;
	position: relative;
	top: 1px;
	display: inline-block;
}

.top--1 {
	top: -1px !important;
}

.parent_area {
	padding-bottom: 5px;
	display: inline-block;
}

.link-area-child {
	border-bottom: 1px dotted #ccc;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.link-area-child a {
	display: inline-block;
	margin-right: 10px;
}

.sitemap-block a {
	display: block;
	float: left;
	width: 208px;
	margin-bottom: 5px;
}

.now-browser img {
	float: left;
	margin-right: 15px;
}

.now-browser .arrow_box {
	padding: 10px;
	float: left;
	margin-top: 18px;
	border-radius: 5px;
	border-color: #f6da85;
	background: #fffdf1;
}

.now-browser .arrow_box:before {
	border-color: rgba(246, 218, 133, 0);
	border-right-color: #f6da85;
}

.now-browser .arrow_box:after {
	border-color: rgba(246, 218, 133, 0);
	border-right-color: #fffdf1;
}

.get-adobe {
	position: relative;
}

.get-adobe_a a.adobe_banner {
	position: relative;
	;
}

.get-adobe_a {
	position: relative;
	display: block;
}

.get-adobe_a img {
	position: absolute;
	left: 0px;
	bottom: 5px;
}

.aboutjob-u18 {
	background: url("/assets/default/pc/img/page/aboutjob_001.webp") no-repeat scroll 0 0;
	height: 140px;
	width: 860px;
	position: relative;
	color: #62451a;
}

.aboutjob-u18-left {
	width: 280px;
	position: absolute;
	left: 20px;
	top: 24px;
	font-size: 13px;
}

.aboutjob-u18-left span {
	color: red;
	text-decoration: underline;
}

.aboutjob-u18-right {
	width: 515px;
	position: absolute;
	left: 344px;
	top: 18px;
	line-height: 1.4
}

.aboutjob-btblock {
	background: url("/assets/default/pc/img/page/aboutjob_002.webp") no-repeat scroll 0 0;
	height: 150px;
	width: 611px;
	position: relative;
	color: #62451a;
	margin: auto;
}

.aboutjob-btblock .aboutjob-u18-right {
	width: 270px;
	left: 320px;
}

.aboutjob-btblock .button {
	width: 270px;
	padding: 25px 0;
}

.aboutjob-btblock p {
	background: #fff;
	border-radius: 5px;
	text-align: center;
	padding: 5px;
}

.area-topic-ttl {
	padding-left: 27px;
	line-height: 1.3;
}

.topic-ttl.area-topic-ttl:before {
	content: '';
	height: 24px;
	width: 5px;
	display: block;
	position: absolute;
	top: 6px;
	left: 13px;
	background-color: #ff6baf;
}

.content-block {
	padding: 30px;
	border: 1px solid #ccc;
}

.topic-ttl {
	font-size: 14px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d0d0d0;
	padding-bottom: 10px;
	position: relative;
	font-weight: bold;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding-left: 19px;
	padding-top: 10px;
	margin-bottom: 0px;
	display: block;
}

.topic-ttl.index-topic-ttl:before {
	content: '';
	height: 15px;
	width: 5px;
	display: block;
	position: absolute;
	top: 12px;
	left: 4px;
	background-image: url(/assets/front/pc/img/global/bg_pink_dot.webp);
	background-repeat: repeat;
}

.bg-gray {
	background-color: #f8f8f8;
}

.area-topic-ttl {
	padding-left: 27px;
	line-height: 1.3;
}

.link-brown {
	color: #c29969;
}

.inner-link a {
	padding-right: 10px;
	color: #333333;
}

a.no-style {
	color: #333333;
}

.link-hover-pink:hover {
	color: #fd50a0;
}

.border-gray {
	border: 1px solid #d0d0d0;
}

/************* page-company ***************/
.caution-text {
	color: #F00
}

.form-table {
	width: 100%;
	border: 1px solid #d0d0d0;
	font-size: 14px;
}

.form-table th {
	background-color: #fff6fa;
	padding: 15px;
	height: 34px;
	width: 180px;
	min-width: 180px;
	vertical-align: top;
}

.form-table th.valign-middle {
	vertical-align: middle;
}

.form-table td {
	padding: 15px;
	position: relative;
}

.form-table th,
.form-table td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d0d0d0;
	text-align: left;
}

.form-table tr:last-child th,
.form-table tr:last-child td {
	border-bottom: none;
}

td.valign-top {
	vertical-align: top;
}

td.submit-area {
	padding-left: 0;
}

.form-table .form-email.unregist-email {
	width: 554px;
}

.form-table .required {
	position: relative;
	display: inline-block;
	font-size: 10px;
	font-weight: bold;
	color: #F00;
	vertical-align: text-top;
	top: -3px;
}

.form-table .form-email,
.form-table .form-text {
	padding: 4px 5px 4px 5px
}

.form-table .form-textarea {
	font-size: 12px;
	width: 100%;
	padding: 4px 5px 4px 5px;
}

.form-table .form-textarea.textarea-height-108 {
	height: 108px
}

.form-box .form-verifi-btn {
	width: 214px;
	height: 48px;
	border-radius: 5px;
	color: #ff3389;
	font-size: 14px;
	text-align: center;
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
	font-weight: bold;
	border: 1px solid #ff9dc6;
	background-color: #ffeaf3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffeaf3));
	background-image: linear-gradient(to bottom, #ffffff 0%, #ffeaf3 100%);
}

.form-box .form-submit-btn {
	width: 214px;
	height: 48px;
	border-radius: 5px;
	color: #FFF;
	font-size: 14px;
	padding: 4px 20px 3px;
	text-align: center;
	text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.4);
	font-weight: bold;
	text-decoration: none;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ff81b6), to(#ff4493));
	background-image: linear-gradient(to bottom, #ff81b6 0%, #ff4493 100%);
	border: 1px solid #ff3489;
	-webkit-box-shadow: 0 0 0 1px #ffb7d5 inset;
	box-shadow: 0 0 0 1px #ffb7d5 inset;
}

.form-box .form-submit-btn:hover {
	opacity: .5
}

.form-box .verifi-box {
	display: none
}

label.error {
	color: #F00;
	display: block;
	font-weight: bold !important;
	margin-top: 4px;
}

.form-box .unregist-btn {
	width: 90px;
	height: 33px;
	border-radius: 5px;
	color: #ff3389;
	font-size: 14px;
	text-align: center;
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
	font-weight: bold;
	border: 1px solid #ff9dc6;
	background-color: #ffeaf3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffeaf3));
	background-image: linear-gradient(to bottom, #ffffff 0%, #ffeaf3 100%);
}

.hide-label {
	display: none;
}

.no-check-label {
	display: none;
}

.no-check-label.show-label {
	display: inline-block;
}

.form-verifi-btn.entry-disabled {
	color: #ccc;
	background-color: #f0f0f0;
	background-image: none;
	border-color: #e3e3e0;
	cursor: default;
}

.page-company a {
	color: #337ab7;
}

.text-4a4a4a {
	color: #4a4a4a;
}

.page-sitemap .f-found_link a {
	text-decoration: underline;
}

.page-sitemap footer .f-found_link a {
	text-decoration: none;
}

.page-sitemap .f-found_link li {
	margin-bottom: 10px;
}

.page-sitemap .f-found_link li:last-child {
	margin-bottom: 0;
}

.page-sitemap .topic-ttl {
	margin-bottom: 10px;
}

.f-found_link a {
	color: #4a4a4a;
}

.f-found_link a:hover {
	color: #fd50a0;
}

/* guideline */
.jobreport-attention {
	background: #fd839d;
	border: 1px solid #fff;
	border-radius: 5px;
	position: relative;
	padding: 15px 15px 15px 70px;
	color: #fff;
	-webkit-box-shadow: 0px 0px 0px 1px #fd839d;
	box-shadow: 0px 0px 0px 1px #fd839d;
}

.aboutjob-u18 {
	background: url(/assets/front/pc/img/global/aboutjob_001.webp) no-repeat scroll 0 0;
	height: 140px;
	width: 860px;
	position: relative;
	color: #62451a;
}

.aboutjob-btblock {
	background: url(/assets/front/pc/img/global/aboutjob_002.webp) no-repeat scroll 0 0;
	height: 150px;
	width: 611px;
	position: relative;
	color: #62451a;
	margin: auto;
}

.aboutjob-btblock p {
	background: #fff;
	border-radius: 5px;
	text-align: center;
	padding: 5px;
	margin: 0 0 12px 0;
}

a.btn-g-2,
.btn-g-2 {
	border-radius: 5px;
	color: #ff3389;
	font-size: 14px;
	text-shadow: 0px 1px 1px rgba(255, 255, 255, 1);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

.btn-g-pink-2 {
	border: 1px solid #ff9dc6;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffeaf3));
	background-image: linear-gradient(to bottom, #ffffff 0%, #ffeaf3 100%);
}

.aboutjob-btblock .button {
	display: flex;
	justify-content: center;
	padding: 25px 0;
}

#shop_jobinquiry_form {
	padding-bottom: 80px;
}

/* non-reults */
.non-results {
	padding-top: 80px;
	text-align: center;
	margin-bottom: 250px;
	font-size: 18px;
	line-height: 1.8;
}

/* shop small card */
.shop_list.history_list li.shop_list__item .history_inner {
	width: 230px;
}

.shop_list.history_list .history_inner .shop_name {
	font-size: 16px;
}

.shop_list.history_list .shop_list__item .shop_img {
	width: 124px;
	min-width: 124px;
}

.shop_list.history_list li.shop_list__item {
	height: unset;
}

.history_list .first_bold {
	font-size: 12px;
	color: unset;
}

.history_list .job__details {
	line-height: 1;
	font-size: 12px;
	color: #585858;
	border-top: solid #d6d6d6 1px;
	padding-top: 8px;
	display: flex;
	flex-direction: column;
}

.history_list .job__details>span {
	margin-bottom: 8px;
}

.history_list .job__details>span:last-of-type {
	margin-bottom: 0;
}

.shop_list.history_list {
	display: flex;
}

.shop_list__item {
	background-color: #fbf8f1;
	display: flex;
	flex-direction: row;
	margin-right: 28px;
}

.shop_list.history_list>.shop_list__item:last-of-type {
	margin-right: 0;
}

.shop_list .shop_list__item .shop_img {
	width: 100px;
	min-width: 100px;
	max-width: unset;
	display: block;
}

.shop_list li.shop_list__item {
	border: solid 1px #ffe2dd;
	width: 348px;
	height: 104px;
}

.shop_list li.shop_list__item .history_inner {
	width: 250px;
	padding: 10px 20px;
}

.shop_list__item .area_name {
	font-size: 12px;
	margin-bottom: 2px;
}

.shop_list__item .shop_name {
	margin-bottom: 4px;
}

/* RECENT JOBS */
.what_new .shop_box .work_place {
	margin-bottom: 10px;
}

.what_new .shop_box .work_style {
	padding-right: 10px;
}

.bnr_regist {
	width: 1100px;
	display: block;
	margin: 0 auto 100px;
}

.bnr_regist img {
	display: block;
}

.mymodal__telbtn {
	position: relative;
}

.mymodal__telbtn .tel_number {
	position: absolute;
	color: #FFF;
	left: 50%;
	margin-left: -100px;
	bottom: 21px;
	font-size: 18px;
	width: 200px;
	font-weight: bold;
}

/*みんなの反応*/
.job-reactions li {
	display: none
}

.job-reactions {
	display: flex;
	padding: 20px 0 0;
	position: relative
}

.job-reactions::before,
.jobsearch__job-reactions::before {
	content: "";
	background: url(/assets/front/sm/img/global/ico_reactions.webp) no-repeat scroll 0 0 / 100% auto;
	display: block;
	min-width: 72px;
	margin-right: 10px;
	height: 56px;
}

.job-reactions__inner {
	margin-top: 10px;
	width: 100%;
	background-color: #fff;
	border: solid 1px #D0D0D0;
	border-radius: 8px;
	color: #3D3D3D;
	max-height: 100%;
	font-size: 14px;
	position: relative;
	line-height: 1;
	overflow: hidden;
	height: 36px;
}

.news_ticker {
	overflow: hidden
}

.job-reactions__inner .news_ticker {
	height: 42px !important;
}

.news_ticker__inner {
	position: relative;
	left: 20px;
	top: 0
}

.job-reactions__inner .news_ticker__inner {
	top: 10px
}

.jobsearch__job-reactions {
	display: flex;
	padding-top: 20px;
}

.jobsearch__job-reactions__inner {
	margin-top: 10px;
	width: 100%;
	background-color: #fff;
	border: solid 1px #D0D0D0;
	border-radius: 8px;
	color: #3D3D3D;
	max-height: 100%;
	position: relative;
	line-height: 1;
	height: 36px
}

.jobsearch__job-reactions__inner>p {
	line-height: 1;
	padding: 10px 0 10px 15px;
	font-size: 14px;
	margin: 0;
}

.jobsearch__job-reactions.tpl-shop_list {
	padding: 0 0 25px 0px;
}

.jobsearch__job-reactions__inner::before,
.job-reactions .i-tri::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8.5px 9px 8.5px 0;
	border-color: transparent #fff transparent transparent;
	position: absolute;
	left: -8px;
	margin-top: -5px;
	z-index: 1;
}

.jobsearch__job-reactions__inner::after,
.job-reactions .i-tri::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9.5px 11px 9.5px 0;
	border-color: transparent #d0d0d0 transparent transparent;
	position: absolute;
	left: -11px;
	margin-top: -5.5px;
	z-index: 0;
}

.job-reactions .i-tri {
	position: absolute;
	left: 83px;
	top: 56%
}

.jobsearch__job-reactions__inner::after,
.jobsearch__job-reactions__inner::before {
	top: 40%;
}

#shop_detail_ac .job-reactions-common {
	margin-bottom: 30px;
	padding-top: 0;
}