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

/*----------------------------------------------------------------------
root
------------------------------------------------------------------------*/
:root {
    --color-main: #E34478;
    --color-main-text: #333;
    --color-text-01: #555;
    --color-text-02: #777;
    --color-text-03: #999;
    --color-link-text: #E34478;
    --color-accent-01: #FEDF32;
    --color-accent-02: #F79A26;
    --color-accent-03: #50B6D0;
    --color-accent-04: #D341FF;
    --color-accent-05: #6A5946;
    --color-bg: #f5f5f5;
    --color-bg-main: #fff4f8;
    --color-bg-01: #fffbe8;
    --color-bg-02: #FFF7ED;
    --color-border: #ddd;
    --color-cv: #8EBE24;
    --color-red: #ED1446;
    --color-white: #fff;
    --color-black: #333;
}

/*----------------------------------------------------------------------
common
------------------------------------------------------------------------*/
html {
	font-family: 'Helvetica', 'Noto Sans JP', '游ゴシック', 'YuGothic', 'Yu Gothic', sans-serif;
}

body {
	font-size: 16px;
	color: var(--color-main-text);
	line-height: 1.6;
	letter-spacing: 0.08em;
	-webkit-text-size-adjust: none;
	background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	font-weight: bold;
}

a,
a:active {
    text-decoration: underline;
	color: var(--color-link-text);
}

a:hover {
	opacity: .85;
	transition: .3s;
	cursor: pointer;
}

img, object, embed, video {
	object-fit: cover;
	max-width: 100%;
	height: auto;
}

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
	border: 0;
}

li {
	list-style-type: none;
}

.inner {
    height: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

.pc {
	display: inline !important;
}

.sp {
	display: none !important;
}

.alignC {
	align-items: center;
}

.dB {
	display: block;
}

.dIB {
	display: inline-block;
}

.fL {
    float: left !important;
}

.fR {
    float: right !important;
}

.tC {
    text-align: center !important;
}

.tL {
    text-align: left !important;
}

.tR {
    text-align: right !important;
}

.pR {
	position: relative !important;
}

.row {
	flex-direction:row-reverse !important;
}

.auto {
	margin-left: auto;
	margin-right: auto;
}

.linkBox {
	position: relative;
}

.link {
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	text-indent: -9999px;
	font-size: 0;
}

.-a {
	font-weight: bold;
	color: var(--color-red);
}

.-b {
	font-weight: bold !important;
}

.-c {
    background:linear-gradient(transparent 50%, #fbeb64 50%);
}

.-m {
	color: var(--color-main);
}

.-bk {
	color: var(--color-black);
}

.-wh {
	color: var(--color-white);
}

.-pr > img {
	display: block;
}

.close > section:nth-child(n + 6),
.close table tbody tr:nth-child(n + 6) {
	display: none;
}

.kome {
	position: relative;
	margin-top: 12px;
	padding-left: 10px;
	font-size: 13px;
}

.kome::before {
	content: "※";
	position: absolute;
    top: -2px;
    left: 0;
}

.btn {
	margin: 8px auto 0;
	width: 80%;
	max-width: 600px;
}

.btn a {
	display: block;
	position: relative;
	line-height: 1.3;
	padding: 32px 3px 30px;
	text-decoration: none;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: var(--color-white);
	background-color: var(--color-cv);
	border-radius: 50px;
	box-shadow: 0px 8px 0px 0px rgba(109, 154, 11, 1.0);
}

.btn._shiny a {
	overflow: hidden;
	transition: 300ms;
}

.btn._shiny a::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #c9f172;
	transition: 300ms;
	animation: shinyshiny 3.5s ease-in-out infinite;
}

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

/* 点滅 */
.blink {
	animation: blinking 1.5s ease-in-out infinite alternate;
}

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

/* 左右移動 */
.animationLR {
	animation: animationLR 5.0s infinite ease-in-out;
}

@keyframes animationLR {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
}

@media screen and (max-width: 768px) {
body {
	font-size: 14px;
}

.inner {
	padding: 0 10px;
}

.pc {
	display: none !important;
}

.sp {
	display: inline !important;
}

.kome {
	margin-top: 8px;
	font-size: 11px;
}

.btn {
	width: 95%;
	margin-top: 4px;
}

.btn a {
	font-size: 17px;
}
}

@media screen and (max-width: 576px) {
.btn._shiny a::before {
	top: -120px;
	width: 20px;
}
}

/*----------------------------------------------------------------------
header
------------------------------------------------------------------------*/
#header {
	padding: 20px 1.0em;
}

#header h1 {
	float: left;
}

#header h1 img {
	/*max-width: 243px;*/
	max-width: 140px;
}

#header .txt {
	float: left;
	margin: 5px 0 0 30px;
	font-size: 13px;
	font-weight: 500;
}

#header .txt span {
	color: var(--color-main);
}

@media screen and (max-width: 768px) {
#header h1 img {
	/*max-width: 154px;*/
	max-width: 100px;
}

#header .txt {
	margin: 1px 0 0 15px;
	letter-spacing: 0;
	font-size: 10px;
}
}

/*----------------------------------------------------------------------
footer
------------------------------------------------------------------------*/
#footer {
	margin-top: 64px;
	padding: 20px 0;
	background-color: var(--color-main);
}

#footer ul {
	display: flex;
    justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

#footer ul li {
}

#footer ul li a {
	display: block;
    padding: 5px 20px;
	font-size: 14px;
    color: var(--color-white);
    text-decoration: none;
}

#footer ul li a:hover {
	opacity: 1;
    text-decoration: underline;
}

#footer .copy {
	display: block;
	text-align: center;
	font-size: 13px;
	color: var(--color-white);
}

@media screen and (max-width: 768px) {
#footer {
	margin-top: 48px;
	padding: 15px 0;
}

#footer ul li a {
	padding-left: 8px;
	padding-right: 8px;
	font-size: 12px;
}

#footer .copy {
	font-size: 10px;
}
}

/* popup */
.popup {
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	display: none;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity .5s ease;
}

.popup.show {
	display: flex;
	opacity: 1;
	animation: fadeIn .5s ease forwards;
}

.popup.hide {
	opacity: 0;
	animation: fadeOut .5s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.popup-banner {
	position: relative;
	max-width: 85%;
	background-color: #fff;
}

.popup-banner > p {
	margin: 0;
    padding: 16px 4px 12px;
	text-align: center;
	letter-spacing: .03em;
    font-size: 1.5em;
    font-weight: 600;
}

.popup-banner > p span {
	color: var(--color-main);
}

.popup-banner a > img {
	width: 100%;
	max-width: 500px;
}

.popup-banner button {
	position: absolute;
    top: -20px;
    right: -20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	font-size: 1.5em;
	color: #fff;
	background-color: #000;
	border: none;
	border-radius: 50%;
}

@media screen and (max-width: 576px) {
.popup-banner > p {
    font-size: 1.2em;
}
}

/*----------------------------------------------------------------------
パンくず
------------------------------------------------------------------------*/
#breadcrumb {
	padding: 20px 1.0em;
	border-top: solid 1px var(--color-border);
}

#breadcrumb ul {
    overflow-x: scroll;
    white-space: nowrap;
    display: block;
}

#breadcrumb ul li {
	position: relative;
	display: inline-flex;
	padding: 0 4px 0 18px;
	font-size: 13px;
}

#breadcrumb ul li a {
	display: block;
	text-decoration: none;
	color: var(--color-main-text);
}

#breadcrumb ul li a:hover {
	text-decoration: underline;
	color: var(--color-main);
}

#breadcrumb ul li:first-child {
	padding-left: 0;
}

#breadcrumb ul li::before {
	content: ">";
	position: absolute;
	top: 0;
    left: 0;
}

#breadcrumb ul li:first-child:before {
	content: none;
}

/*----------------------------------------------------------------------
MV
------------------------------------------------------------------------*/
.mv {
	background: url(../../common/image/mv.webp) no-repeat center center;
	background-size: cover;
}

.mv.image01 { background-image: url(../../common/image/page/mv/01.webp); }
.mv.image02 { background-image: url(../../common/image/page/mv/02.webp); }
.mv.image03 { background-image: url(../../common/image/page/mv/03.webp); }
.mv.image04 { background-image: url(../../common/image/page/mv/04.webp); }
.mv.image05 { background-image: url(../../common/image/page/mv/05.webp); }
.mv.image06 { background-image: url(../../common/image/page/mv/06.webp); }
.mv.image07 { background-image: url(../../common/image/page/mv/07.webp); }
.mv.image08 { background-image: url(../../common/image/page/mv/08.webp); }
.mv.image09 { background-image: url(../../common/image/page/mv/09.webp); }
.mv.image10 { background-image: url(../../common/image/page/mv/10.webp); }
.mv.image11 { background-image: url(../../common/image/page/mv/11.webp); }
.mv.image12 { background-image: url(../../common/image/page/mv/12.webp); }
.mv.image13 { background-image: url(../../common/image/page/mv/13.webp); }
.mv.image14 { background-image: url(../../common/image/page/mv/14.webp); }
.mv.image15 { background-image: url(../../common/image/page/mv/15.webp); }

.mvArea {
	position: relative;
}

.mvArea .pr {
	position: absolute;
	top: 20px;
	right: 0;
	line-height: 0;
}

.mvArea .pr img {
	max-width: 28px;
}

.mvArea .date {
	position: absolute;
	top: 0;
	left: 51%;
	min-width: 120px;
	padding: 13px 0 30px;
	background: url(../../common/image/mv_date.webp) no-repeat center bottom;
	background-size: 120px;
}

.mvArea .date p {
	line-height: 1.3;
	letter-spacing: 0;
	text-align: center;
	font-size: 21px;
	font-weight: bold;
	color: var(--color-main);
}

.mvArea .date p span {
	font-size: 13px;
}

.mvBox {
	width: 50%;
	padding: 64px 0 48px;
	filter: drop-shadow(0 0 30px #fff);
}

.mvBox h1 {
	margin-top: 24px;
}

.mvBox h2 {
	margin-top: 24px;
	margin-bottom: 32px;
}

.mvBox .pr-txt {
	margin-top: -8px;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
}

.mvBox .txt {
	margin-bottom: -4px;
    text-align: center;
}

.mvBox .txt p {
	display: inline-block;
	line-height: 1.3;
	padding: 0 32px;
    letter-spacing: .03em;
    font-size: 32px;
    font-weight: 600;
	background: url(../../common/image/mv_txt_l.webp) no-repeat left center,url(../../common/image/mv_txt_r.webp) no-repeat right center;
	background-size: 16px;
}

.mvBox .txt p span {
    font-weight: bold;
	color: var(--color-main);
}

@media screen and (max-width: 992px) {
.mvBox .pr-txt {
	font-size: 11px;
}

.mvBox .txt p {
    font-size: 27px;
}
}

@media screen and (max-width: 768px) {
.mv {
	background-image: url(../../common/image/mv-sp.webp);
}

.mv.image01 { background-image: url(../../common/image/page/mv/01-sp.webp); }
.mv.image02 { background-image: url(../../common/image/page/mv/02-sp.webp); }
.mv.image03 { background-image: url(../../common/image/page/mv/03-sp.webp); }
.mv.image04 { background-image: url(../../common/image/page/mv/04-sp.webp); }
.mv.image05 { background-image: url(../../common/image/page/mv/05-sp.webp); }
.mv.image06 { background-image: url(../../common/image/page/mv/06-sp.webp); }
.mv.image07 { background-image: url(../../common/image/page/mv/07-sp.webp); }
.mv.image08 { background-image: url(../../common/image/page/mv/08-sp.webp); }
.mv.image09 { background-image: url(../../common/image/page/mv/09-sp.webp); }
.mv.image10 { background-image: url(../../common/image/page/mv/10-sp.webp); }
.mv.image11 { background-image: url(../../common/image/page/mv/11-sp.webp); }
.mv.image12 { background-image: url(../../common/image/page/mv/12-sp.webp); }
.mv.image13 { background-image: url(../../common/image/page/mv/13-sp.webp); }
.mv.image14 { background-image: url(../../common/image/page/mv/14-sp.webp); }
.mv.image15 { background-image: url(../../common/image/page/mv/15-sp.webp); }

.mvArea .pr {
	top: 10px;
}

.mvArea .pr img {
	max-width: 22px;
}

.mvArea .date {
	top: 10px;
	left: 0;
	min-width: auto;
	padding: 6px 12px;
	background: var(--color-accent-01);
	border-radius: 4px;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, .1);
}

.mvArea .date p {
	text-align: center;
	font-size: 14px;
}

.mvArea .date p span {
	font-size: 10px;
}

.mvBox {
	width: 70%;
	padding-bottom: 32px;
}

.mvBox h1 {
	margin-top: 16px;
}

.mvBox h2 {
	margin-top: 16px;
	margin-bottom: 18px;
}
}

@media screen and (max-width: 576px) {
.mvBox .pr-txt {
	margin-top: 5px;
	font-size: 9px;
}

.mvBox .txt p {
	padding: 0 20px;
    font-size: 19px;
	background-size: 12px;
}
}

/*----------------------------------------------------------------------
TOP比較表
------------------------------------------------------------------------*/
.topSub {
	margin-top: 24px;
	text-align: center;
}

.topSub p {
	position: relative;
    display: inline-block;
	line-height: 1.3;
	padding: 12px 30px 10px;
	font-weight: 500;
	color: var(--color-white);
	background-color: var(--color-accent-02);
	border-radius: 50px;
}

.topSub p span {
	font-size: 22px;
}

.topSub p::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid var(--color-accent-02);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.topTitle {
	margin: 6px 0;
	text-align: center;
}

.topTitle h2 {
    display: inline-block;
	line-height: 1.2;
	padding: 20px 60px;
	font-size: 40px;
	background: url(../../common/image/topTitle_l.webp) no-repeat left center,url(../../common/image/topTitle_r.webp) no-repeat right center;
	background-size: 44px;
}

.topTitle h2 span {
	padding-right: 3px;
	color: var(--color-main);
}

.topTitle h2 .number {
	letter-spacing: -.03em;
	font-size: 44px;
}

@media screen and (max-width: 768px) {
.topSub {
	display: none;
	margin-top: 16px;
}

.topSub p {
	position: relative;
	padding: 8px 25px 7px;
}

.topSub p span {
	font-size: 17px;
}

.topTitle {
	margin: 0;
}

.topTitle h2 {
	padding: 20px 50px;
	font-size: 28px;
}

.topTitle h2 span {
	display: block;
	padding-right: 0;
}

.topTitle h2 .number {
	font-size: 30px;
}
}

/* entry */
.entry {
	padding: 20px 0 16px;
	text-align: center;
	letter-spacing: .03em;
}

.entry h1:not([class]) {
	position: relative;
	display: inline-block;
	line-height: 1.0;
    padding: 0 20px 0 24px;
	font-size: 21px;
	font-weight: 600;
}

.entry h1:not([class]) span {
	color: var(--color-main);
}

.entry h1:not([class]) span:not([class]) {
	padding: 0 1px;
	letter-spacing: .02em;
	font-size: 32px;
	font-weight: bold;
}

.entry > div {
	position: relative;
	display: inline-block;
}

.entry h1:not([class])::before,
.entry h1:not([class])::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--color-main-text);
    border-radius: 3px;
}

.entry h1:not([class])::before {
    left: 0;
    transform: rotate(-35deg);
}

.entry h1:not([class])::after {
    right: 0;
    transform: rotate(35deg);
}

.entry .week {
	font-size: 13px;
}

@media screen and (max-width: 768px) {
.entry {
	padding: 12px 0 10px;
}

.entry h1:not([class]) {
    padding: 0 12px 0 16px;
	font-size: 16px;
}

.entry h1:not([class]) span:not([class]) {
	font-size: 26px;
}

.entry .week {
	font-size: 11px;
}
}

/* tableArea */
.table .-btn {
	margin-top: 24px;
}

.scrollTxt {
	margin-bottom: 8px;
	font-size: 13px;
}

.table-wrap {
    overflow-x: scroll;
	padding-bottom: 8px;
}

.table-wrap::-webkit-scrollbar {
	height: 16px;
}

.table-wrap::-webkit-scrollbar-track {
	background-color: var(--color-bg);
	border-radius: 20px;
}

.table-wrap::-webkit-scrollbar-thumb {
	background: var(--color-border);
	border-radius: 20px;
}

.tableArea {
	width: 100%;
	border-collapse: inherit;
}

.tableArea .-srv { min-width: 200px; }
.tableArea .-ft { min-width: 186px; }

.tableArea .fixed {
	z-index: 2;
	position: sticky;
	top: 0;
	left: 0;
}

.tableArea th,
.tableArea td {
	min-width: 100px;
	line-height: 1.5;
	text-align: center;
	vertical-align: middle;
}

.tableArea th {
	padding: 6px 5px 4px;
	letter-spacing: .03em;
	text-align: center;
	font-weight: bold;
	background-color: var(--color-bg);
}

.tableArea th:not(:first-child) {
	border-left: solid 2px var(--color-border);
}

.tableArea td {
	position: relative;
	padding: 12px 18px;
	background-color: var(--color-white);
	border-bottom: solid 1px var(--color-border);
}

.tableArea td:not(:first-child) {
    border-left: dotted 2px var(--color-border);
}

.tableArea td:not(:first-child)::before {
    content: '';
    position: absolute;
    display: block;
	left: -2px;
    top: 0px;
    width: 2px;
    height: 12px;
    background-color: var(--color-white);
}

.tableArea td:not(:first-child)::after {
    content: '';
    position: absolute;
    display: block;
	left: -2px;
    bottom: 0px;
    width: 2px;
    height: 12px;
    background-color: var(--color-white);
}

.tableArea tbody tr td:first-child::before {
	content: "";
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 36px solid transparent;
	border-left: solid 36px #bdbdbd;
}

.tableArea tbody tr td:first-child::after {
	content: "";
	z-index: 3;
	position: absolute;
	display: block;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
	top: 3px;
	left: 0;
	line-height: 1;
	letter-spacing: -.08em;
	font-size: 14px;
	font-weight: bold;
	color: var(--color-white);
}

.tableArea tbody tr:nth-child(1) td:first-child::before { border-left-color: #FCB03B; }
.tableArea tbody tr:nth-child(1) td:first-child::after { content: "1"; }
.tableArea tbody tr:nth-child(2) td:first-child::before { border-left-color: #508ed3; }
.tableArea tbody tr:nth-child(2) td:first-child::after { content: "2"; }
.tableArea tbody tr:nth-child(3) td:first-child::before { border-left-color: #C67B42; }
.tableArea tbody tr:nth-child(3) td:first-child::after { content: "3"; }
.tableArea tbody tr:nth-child(4) td:first-child::after { content: "4"; }
.tableArea tbody tr:nth-child(5) td:first-child::after { content: "5"; }
.tableArea tbody tr:nth-child(6) td:first-child::after { content: "6"; }
.tableArea tbody tr:nth-child(7) td:first-child::after { content: "7"; }
.tableArea tbody tr:nth-child(8) td:first-child::after { content: "8"; }
.tableArea tbody tr:nth-child(9) td:first-child::after { content: "9"; }
.tableArea tbody tr:nth-child(10) td:first-child::after { content: "10"; }
.tableArea tbody tr:nth-child(11) td:first-child::after { content: "11"; }
.tableArea tbody tr:nth-child(12) td:first-child::after { content: "12"; }
.tableArea tbody tr:nth-child(13) td:first-child::after { content: "13"; }
.tableArea tbody tr:nth-child(14) td:first-child::after { content: "14"; }
.tableArea tbody tr:nth-child(15) td:first-child::after { content: "15"; }
.tableArea tbody tr:nth-child(16) td:first-child::after { content: "16"; }
.tableArea tbody tr:nth-child(17) td:first-child::after { content: "17"; }
.tableArea tbody tr:nth-child(18) td:first-child::after { content: "18"; }
.tableArea tbody tr:nth-child(19) td:first-child::after { content: "19"; }
.tableArea tbody tr:nth-child(20) td:first-child::after { content: "20"; }

.tableArea tbody tr:first-child td {
	background-color: var(--color-bg-01);
	border-top: solid 4px var(--color-accent-01);
    border-bottom: solid 4px var(--color-accent-01);
}

.tableArea tbody tr:first-child td:first-child {
	border-left: solid 4px var(--color-accent-01);
}

.tableArea tbody tr:first-child td:last-child {
	border-right: solid 4px var(--color-accent-01);
}

.tableArea tbody tr:first-child td:not(:first-child) {
	border-color: var(--color-accent-01);
}

.tableArea tbody tr:first-child td:not(:first-child)::before,
.tableArea tbody tr:first-child td:not(:first-child)::after {
    background-color: var(--color-bg-01);
}

.tableArea tbody tr:first-child td:first-child::before {
	top: -4px;
	left: -4px;
}

.tableArea tbody tr:first-child td:first-child::after {
	top: -1px;
	left: -4px;
}

@media screen and (max-width: 768px) {
.table .-btn {
	margin-top: 16px;
}

.scrollTxt {
	font-size: 11px;
}

.tableArea .-srv { min-width: 115px; }
.tableArea .-ft { min-width: 120px; }

.tableArea th,
.tableArea td {
	min-width: 75px;
	font-size: 12px;
}

.tableArea td {
	position: relative;
	padding: 6px 8px;
}

.tableArea td:not(:first-child)::before,
.tableArea td:not(:first-child)::after {
    height: 6px;
}

.tableArea tbody tr td:first-child::before {
	border-bottom-width: 24px;
	border-left-width: 24px;
}

.tableArea tbody tr td:first-child::after {
	top: 2px;
    width: 12px;
    height: 12px;
	font-size: 11px;
}
}

/* サービス */
.tableArea td:first-child figure {
	margin-top: 2px;
}

.topAttention {
    margin: 4px 0 -4px;
    text-align: center;
}

.topAttention p {
    position: relative;
    display: inline-block;
	line-height: 1.3;
    padding: 0 12px;
	letter-spacing: .03em;
    font-size: 13px;
    font-weight: bold;
    color: var(--color-main);
}

.topAttention p::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--color-main);
    border-radius: 3px;
    transform: rotate(-25deg);
}

.topAttention p::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--color-main);
    border-radius: 3px;
    transform: rotate(25deg);
}

.tableArea td:first-child .btn {
	width: 100%;
	margin-top: 4px;
	margin-bottom: 2px;
}

.tableArea td:first-child .btn a {
	padding-top: 10px;
    padding-bottom: 8px;
	font-size: 16px;
	box-shadow: 0px 4px 0px 0px rgba(109, 154, 11, 1.0);
}

@media screen and (max-width: 768px) {
.tableArea td:first-child figure {
	margin-top: 4px;
}

.topAttention {
    margin: 1px 0 -4px;
    text-align: center;
}

.topAttention p {
	padding-left: 6px;
	padding-right: 6px;
    font-size: 9px;
}

.tableArea td:first-child .btn a {
	font-size: 12px;
}
}

/* 口コミ評価 */
.tableArea .star {
	margin-left: 0;
	letter-spacing: -.03em;
}

.tableArea .-pt {
	line-height: 1.2;
	font-weight: bold;
}

.tableArea .-pt span {
	padding-right: 3px;
	letter-spacing: 0;
	font-size: 28px;
	color: var(--color-red);
}

.tableArea .-re {
	margin-top: 6px;
}

.tableArea .-re a {
	position: relative;
	padding-left: 24px;
}

.tableArea .-re a::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url(../../common/image/icon_comment.webp) no-repeat left center;
	background-size: 20px;
}

@media screen and (max-width: 768px) {
.tableArea .-pt span {
	font-size: 24px;
}

.tableArea .-re a {
	padding-left: 18px;
}

.tableArea .-re a::before {
	top: 0;
	width: 16px;
	height: 16px;
	background-size: 16px;
}
}

/* 求人数 */
.tableArea .-ar {
	font-weight: bold;
}

.tableArea .-ar img {
	max-width: 16px;
	margin: 0 0 5px 2px;
}

.tableArea .-num {
	margin-top: 3px;
	line-height: 1.0;
	font-weight: bold;
	color: var(--color-red);
}

.tableArea .-num:last-letter {
	color: var(--color-main-text);
}

.tableArea .-num span:not([class]) {
	padding-right: 1px;
	letter-spacing: 0;
	font-size: 28px;
}

.tableArea .-num .-pvt {
	font-size: 22px;
}

.tableArea .kome {
	display: inline-block;
	margin-top: 0;
	letter-spacing: 0;
}

.-fac img {
	display: block;
    width: auto;
    max-height: 540px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
.tableArea .-ar img {
	max-width: 13px;
	margin: 0 0 3px 1px;
}

.tableArea .-num span:not([class]) {
	font-size: 18px;
}

.tableArea .-num .-pvt {
	font-size: 16px;
}

.tableArea .kome {
	font-size: 9px;
}
}

/* 年代 */
.tableArea ul.-age li {
	display: inline-block;
	line-height: 1.3;
	margin: 0 auto;
	padding: 2px 2px 0;
	letter-spacing: 0;
	font-weight: 500;
	background-color: var(--color-accent-01);
	border: solid 2px var(--color-accent-01);
	border-radius: 4px;
}

.tableArea ul.-age li:not(:nth-child(-n+2)) {
	margin-top: 4px;
}

.tableArea ul.-age li.off {
	color: var(--color-text-03);
	background-color: var(--color-bg);
	border-color: var(--color-border);
}

/* 雇用形態 */
.tableArea ul.-ty li {
	line-height: 1.3;
	margin: 0 auto;
	padding: 2px 2px 0;
	font-weight: bold;
	color: var(--color-main);
	background-color: var(--color-bg-main);
	border: solid 2px var(--color-main);
	border-radius: 4px;
}

.tableArea ul.-ty li:not(:first-child) {
	margin-top: 4px;
}

.tableArea ul.-ty li.off {
	color: var(--color-text-03);
	background-color: var(--color-bg);
	border-color: var(--color-border);
}

/* 職種 */
.tableArea ul.-occ li {
	text-align: left;
}

.tableArea ul.-occ li:not(:first-child) {
	margin-top: 2px;
}

.tableArea ul.-occ li::first-letter {
	margin-right: 3px;
	padding: 2px 2px 1px;
	color: var(--color-white);
	background-color: var(--color-main);
	border-radius: 4px;
} 

.tableArea ul.-occ li.li01::first-letter { background-color: var(--color-main); }
.tableArea ul.-occ li.li02::first-letter { background-color: var(--color-accent-03); }
.tableArea ul.-occ li.li03::first-letter { background-color: var(--color-accent-02); }
.tableArea ul.-occ li.li04::first-letter { background-color: var(--color-accent-04); }

/* 連絡手段 */
.tableArea ul.-ctc li {
	position: relative;
	padding-left: 30px;
	text-align: left;
	font-weight: 500;
}

.tableArea ul.-ctc li:not(:first-child) {
	margin-top: 6px;
}

.tableArea ul.-ctc li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background-size: 24px;
	background-repeat: no-repeat;
	background-position:  left center;
}

.tableArea ul.-ctc li.tel::before {
	background-image: url(../../common/image/icon_tel.webp);
	background-color: #d33a3a;
	border-radius: 4px;
}
.tableArea ul.-ctc li.mail::before {
	background-image: url(../../common/image/icon_mail.webp);
	background-color: #1f6ad2;
	border-radius: 4px;
}
.tableArea ul.-ctc li.line::before { background-image: url(../../common/image/icon_line.webp); }

@media screen and (max-width: 768px) {
.tableArea ul.-ctc li {
	padding-left: 22px;
}

.tableArea ul.-ctc li:not(:first-child) {
	margin-top: 4px;
}

.tableArea ul.-ctc li::before {
	width: 18px;
	height: 18px;
	background-size: 18px;
}
}

/* サポート力・非公開求人 */
.tableArea .-eva img {
	max-width: 32px;
	margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
.tableArea .-eva img {
	max-width: 24px;
	margin-bottom: 4px;
}
}

/*----------------------------------------------------------------------
モーダルウィンドウ（TOP比較表）
------------------------------------------------------------------------*/
.modal {
	z-index: 999;
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
}

.modal .modal-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	width: 86%;
	max-width: calc(960px - 4%);
	margin: 0 auto;
	padding: 32px 2%;
	text-align: left;
	background-color: var(--color-white);
	border-radius: 40px;
	animation-name: modalopen;
	animation-duration: 1s;
}

.modal .modalClose {
	z-index: 2;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -20px;
	right: -20px;
	width: 50px;
	height: 50px;
	text-decoration: none;
	font-size: 20px;
	color: var(--color-white);
	background: var(--color-black);
	border-radius: 50%;
	cursor: pointer;
}

.modal .modalClose:hover {
	opacity: 1;
}

.modal .modalClose::before {
	content: "×";
}

.modal .modal-box > li {
	overflow-y: auto;
	max-height: 85vh;
	margin-top: -10px;
	padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
.modal .modal-box {
	padding: 16px 4%;
	border-radius: 30px;
}

.modal .modalClose {
	top: -18px;
    right: -8px;
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.tableArea .modal .rankingAttention {
	margin-top: 0;
}

.tableArea .modal .btn a {
	margin-top: 0;
	padding-top: 18px;
	padding-bottom: 16px;
}
}

/*----------------------------------------------------------------------
TOP3
------------------------------------------------------------------------*/
.topRankArea {
	display: flex;
	/*justify-content: space-between;*/
	margin-top: 48px;
}

.topRankArea .col {
	/*flex-basis: calc(19.0% - 24px);*/
	position: relative;
	width: -webkit-fill-available;
	padding: 40px 12px 20px;
	background-color: var(--color-white);
	border: solid 2px var(--color-border);
	border-radius: 20px;
	box-shadow: 0px 5px 2px 0px rgba(0, 0, 0, .1);
}

.topRankArea .col:not(:first-child) {
	margin-left: 1.0%;
}

.topRankArea .logo {
	max-width: 160px;
	margin: 0 auto 24px;
}

.topRankArea .col::before {
	content: "";
    position: absolute;
    top: -28px;
	left: calc(50% - 40px);
    width: 80px;
    height: 20%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 80px;
}

.topRankArea .col:nth-child(1)::before { background-image: url(../../common/image/icon_crown_01.webp); }
.topRankArea .col:nth-child(2)::before { background-image: url(../../common/image/icon_crown_02.webp); }
.topRankArea .col:nth-child(3)::before { background-image: url(../../common/image/icon_crown_03.webp); }
.topRankArea .col:nth-child(4)::before { background-image: url(../../common/image/icon_crown_04.webp); }
.topRankArea .col:nth-child(5)::before { background-image: url(../../common/image/icon_crown_05.webp); }
.topRankArea .col:nth-child(6)::before { background-image: url(../../common/image/icon_crown_06.webp); }
.topRankArea .col:nth-child(7)::before { background-image: url(../../common/image/icon_crown_07.webp); }

.topRankArea .btn {
	width: 100%;
}

.topRankArea .btn a {
	font-size: 15px;
}

@media screen and (max-width: 767px) {
.topRankArea {
	width: 160%;
	margin-top: 16px;
}

.topRankArea .col {
	/*flex-basis: calc(19.0% - 1.0em);*/
	padding: 26px .5em 14px;
	font-size: 12px;
}

.topRankArea .logo {
	margin-bottom: 16px;
}

.topRankArea .col::before {
    top: -20px;
	left: calc(50% - 32px);
    width: 56px;
    background-size: 56px;
}

.topRankArea .btn {
	margin-top: 8px;
}

.topRankArea .btn a {
	padding: 17px 3px 15px;
	font-size: 13px;
	border-radius: 20px;
}
}

/*----------------------------------------------------------------------
早見表
------------------------------------------------------------------------*/
.choose {
	margin-top: 42px;
}

.choose .txt {
	padding-right: 80px;
	background: url(../../common/image/choose_query.webp) no-repeat right top;
	background-size: 80px;
	padding-right: 0 !important;
	background: none !important;

}

.choose .txt h2 {
	margin-bottom: 16px;
	font-size: 32px;
}

.choose .txt h2 span {
	display: block;
	margin-bottom: 3px;
	font-size: .75em;
	color: var(--color-main);
}

.choose p:not([class]) {
	margin-top: .5em;
}

.choose img {
	display: block;
	width: 100%;
	max-width: 640px;
	margin: 24px auto 0;
}

@media screen and (max-width: 768px) {
.choose {
	margin-top: 32px;
}

.choose .txt h2 {
	margin-bottom: 8px;
	font-size: 22px;
}

.choose img {
	margin-top: 12px;
}
}

@media screen and (max-width: 576px) {
.choose .txt {
	padding-right: 60px;
	background-position-y: 8px;
	background-size: 60px;
}
}

/*----------------------------------------------------------------------
おすすめ人気ランキング！
------------------------------------------------------------------------*/
.ranking {
	position: relative;
	margin: 32px 0;
}

.rankingBest {
	margin-bottom: 32px;
	text-align: center;
}

.rankingBest img {
	width: 80%;
	max-width: 410px;
}

.rankingBest h2 {
	margin-top: 8px;
	font-size: 40px;
}

.rankingBest h2 .number {
	font-size: 42px;
}

.rankingBest h2 span:not([class]) {
	font-size: 24px;
	font-weight: 500;
}

.rankingBest h2 span:not([class]):first-child {
	padding-right: 6px;
}

.rankingBest h2 span:not([class]):last-child {
	padding-left: 6px;
	letter-spacing: -.08em;
}

@media screen and (max-width: 768px) {
.ranking {
	margin: 24px 0;
}

.rankingBest {
	margin-bottom: 26px;
}

.rankingBest img {
	max-width: 320px;
}

.rankingBest h2 {
	margin-top: 4px;
	font-size: 27px;
}

.rankingBest h2 .number {
	font-size: 29px;
}

.rankingBest h2 span:not([class]) {
	font-size: 17px;
}

.rankingBest h2 span:not([class]):first-child {
	padding-right: 1px;
}

.rankingBest h2 span:not([class]):last-child {
	display: none;
	padding-left: 4px;
}
}

/*----------------------------------------------------------------------
TAB（おすすめ人気ランキング！）
------------------------------------------------------------------------*/
.tab {
	z-index: 99;
	position: sticky;
    top: 0;
	display: flex;
	justify-content: space-between;
	margin-bottom: -12px;
}

.tab .tab-btn {
	flex-basis: 24.5%;
}

.tab .tab-btn a {
	position: relative;
	display: block;
	cursor: pointer;
}

.tab .tab-btn a:hover {
	opacity: 1;
}

.tab .tab-btn a .on,
.tab .tab-btn a.is-active .off {
	display: none;
}

.tab .tab-btn a.is-active .on {
	display: block;
}

.tab-contents-item {
	display: none;
	width: 100%;
}

.tab-contents-item.is-active {
	display: block;
}

.tab-contents-item > .tab-menu {
	opacity: 0;
}

.tab-contents-item.is-active > .tab-menu {
	animation:  fadeinAnime .5s forwards;
}

@keyframes fadeinAnime{
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
}

@media screen and (max-width: 768px) {
.tab {
	margin-top: calc(64px - -24px);
}

.tab img.image {
	position: absolute;
	top: calc(-64px - 1px);
	left: calc(50% - 32px);
	max-width: 64px;
}
}

/*----------------------------------------------------------------------
ランキングエリア
------------------------------------------------------------------------*/
.rankingArea > section {
	margin: 32px 0 5px;
	padding: 40px 40px 45px;
	background-color: var(--color-white);
	border: solid 2px var(--color-border);
	border-radius: 40px;
	box-shadow: 0px 5px 2px 0px rgba(0, 0, 0, .1);
}

.rankingTitle {
	position: relative;
	min-height: 77px;
	padding-left: 92px;
}

.rankingTitle p {
	line-height: 1.3;
	font-weight: bold;
	color: var(--color-main);
}

.rankingTitle h1 {
	margin-top: 4px;
	font-size: 40px;
}

.rankingTitle h1 .-ss {
	font-size: 18px;
}

.rankingTitle h1 a {
	text-decoration: none;
	color: var(--color-main-text);
}

.rankingArea > section .rankingTitle h1::before {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    color: var(--color-main);
}

.rankingArea > section:nth-child(-n+3) .rankingTitle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 72px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 72px;
}

.rankingArea > section:nth-child(1) .rankingTitle::before { background-image: url(../../common/image/icon_badge_01.webp); }
.rankingArea > section:nth-child(2) .rankingTitle::before { background-image: url(../../common/image/icon_badge_02.webp); }
.rankingArea > section:nth-child(3) .rankingTitle::before { background-image: url(../../common/image/icon_badge_03.webp); }

.rankingArea > section:nth-child(n+4) .rankingTitle::before {
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
    left: 5px;
    width: 65px;
    height: 65px;
	line-height: 1;
	letter-spacing: -.04em;
    font-size: 36px;
    font-weight: 500;
    color: var(--color-white);
    background-color: #bdbdbd;
    border-radius: 50%;
}

.rankingArea > section:nth-child(4) .rankingTitle::before { content: "4"; }
.rankingArea > section:nth-child(5) .rankingTitle::before { content: "5"; }
.rankingArea > section:nth-child(6) .rankingTitle::before { content: "6"; }
.rankingArea > section:nth-child(7) .rankingTitle::before { content: "7"; }
.rankingArea > section:nth-child(8) .rankingTitle::before { content: "8"; }
.rankingArea > section:nth-child(9) .rankingTitle::before { content: "9"; }
.rankingArea > section:nth-child(10) .rankingTitle::before { content: "10"; }
.rankingArea > section:nth-child(11) .rankingTitle::before { content: "11"; }
.rankingArea > section:nth-child(12) .rankingTitle::before { content: "12"; }
.rankingArea > section:nth-child(13) .rankingTitle::before { content: "13"; }
.rankingArea > section:nth-child(14) .rankingTitle::before { content: "14"; }
.rankingArea > section:nth-child(15) .rankingTitle::before { content: "15"; }
.rankingArea > section:nth-child(16) .rankingTitle::before { content: "16"; }
.rankingArea > section:nth-child(17) .rankingTitle::before { content: "17"; }
.rankingArea > section:nth-child(18) .rankingTitle::before { content: "18"; }
.rankingArea > section:nth-child(19) .rankingTitle::before { content: "19"; }
.rankingArea > section:nth-child(20) .rankingTitle::before { content: "20"; }

.rankingDetail {
	display: flex;
	margin-top: 24px;
}

.rankingDetail .colImage {
	width: 27.3%;
	margin-right: 4%;
}

.rankingDetail .colTable {
	width: 68.7%;
}

.rankingDetail .colImage figure {
	display: flex;
	justify-content: center;
    align-items: center;
	min-height: 164px;
}

.rankingDetail .colTable table {
	width: 100%;
}

.rankingDetail .colTable table th,
.rankingDetail .colTable table td {
	line-height: 1.3;
	padding: 5px;
	vertical-align: middle;
}

.rankingDetail .colTable table th {
	width: 30%;
	font-weight: bold;
	text-align: center;
	background-color: var(--color-bg);
	border-bottom: solid 1px var(--color-white);
}

.rankingDetail .colTable table td {
	width: 70%;
	padding-left: 15px;
	text-align: left;
	border-bottom: solid 1px var(--color-border);
}

.rankingDetail .colTable table td a {
	margin-left: 4px;
}

.rankingDetail .colTable ul {
	overflow: hidden;
	margin-top: -6px;
}

.rankingDetail .colTable ul li {
	float: left;
	margin-top: 6px;
	margin-right: 6px;
	padding: 3px 8px 2px;
	letter-spacing: .03em;
	font-size: 14px;
	font-weight: 500;
	border-style: solid;
	border-width: 1px;
	border-radius: 10px;
}

.rankingDetail .colTable ul li.off {
	color: var(--color-text-03);
    background-color: var(--color-bg) !important;
    border-color: var(--color-border) !important;
}

.rankingDetail .colTable ul.-y li {
	background-color: #FFF2AA;
	border-color: #FFF2AA;
}

.rankingDetail .colTable ul.-p li {
	background-color: #E5F7BB;
	border-color: #E5F7BB;
}

.rankingDetail .colTable ul.-g li {
	background-color: #FFD8E5;
	border-color: #FFD8E5;
}

.rankingFeature {
	position: relative;
	margin-top: 48px;
	padding: 35px 20px 10px;
	background-color: var(--color-bg-01);
	border: solid 5px var(--color-accent-01);
	border-radius: 10px;
}

.rankingFeature h2 {
	position: absolute;
    top: -25px;
    left: -5px;
	display: inline-block;
	line-height: 50px;
	padding: 0 20px 0 40px;
	font-size: 22px;
	background-color: var(--color-accent-01);
	border-radius: 10px 0 0 0;
}

.rankingFeature h2::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent var(--color-accent-02);
	position: absolute;
	top: 0;
	left: 20px;
	bottom: 0;
	margin: auto;
}


.rankingFeature h2::after {
	content: '';
	position: absolute;
	top: 0;
	right: -30px;
	background: url(../../common/image/rankingFeatureTitle.webp) no-repeat center center;
	background-size: 30px;
	width: 30px;
	height: 50px;
}

.rankingFeature ul li {
	padding: 8px 0 8px 30px;
	background: url(../../common/image/icon_check.webp) no-repeat left top 10px;
	background-size: 22px;
}

.rankingArea .rankingReview {
	margin-top: 16px;
}

.rankingReview h2 {
	padding: 16px 0 16px 55px;
    font-size: 26px;
    background: url(../../common/image/icon_review.webp) no-repeat left center;
    background-size: 44px;
}

.rankingReview h2::after {
	font-size: 17px;
	color: var(--color-main);
}

.rankingArea.-up .rankingReview h2::after { content: "（年収アップ）"; }
.rankingArea.-day .rankingReview h2::after { content: "（日勤のみ）"; }
.rankingArea.-zero .rankingReview h2::after { content: "（残業ゼロ）"; }
.rankingArea.-ok .rankingReview h2::after { content: "（ブランク・未経験）"; }

.rankingReview .swiper-pagination {
	position: inherit;
	margin-top: 32px;
}

.rankingReview .swiper-pagination-bullet {
	opacity: 1;
	width: 16px;
	height: 16px;
	margin: 0 5px !important;
	background-color: var(--color-border);
}

.rankingReview .swiper-pagination-bullet-active {
	background-color: var(--color-main);
}

.reviews_slide .swiper .swiper-slide {
	position: relative;
	height: auto;
	background-color: var(--color-bg-main);
    border-radius: 10px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, .1);
	outline: 2px solid var(--color-main);
	outline-offset: -4px;
}

.reviews_slide .swiper .swiper-slide .refer {
	position: absolute;
	bottom: 16px;
	right: 30px;
	letter-spacing: .05em;
    font-size: 12px;
}

.reviews_slide .swiper .swiper-slide .refer a {
	text-decoration: underline;
	color: var(--color-main-text);
}

.reviewArea {
	padding: 30px 30px 45px;
}

.reviewArea .main {
	display: flex;
	margin-bottom: 24px;
}

.reviewArea .main .txt {
	position: relative;
	width: 40.8%;
	align-content: center;
	min-height: 90px;/**/
	margin-right: 2.5%;
	padding-left: 94px;
}

.reviewArea .main .txt.only {
	width: 100%;
	margin-right: 0;
}

.reviewArea .main .txt .occ {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 500;
}

.reviewArea .main .job {
	display: flex;
	width: 56.7%;
}

.reviewArea .main .txt::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 90px;/**/
	background-image: url(../../common/image/woman_age_30.webp);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 80px;
}

.swiper-slide.-a20 .reviewArea .main .txt::before { background-image: url(../../common/image/woman_age_20.webp); }
.swiper-slide.-a30 .reviewArea .main .txt::before { background-image: url(../../common/image/woman_age_30.webp); }
.swiper-slide.-a40 .reviewArea .main .txt::before { background-image: url(../../common/image/woman_age_40.webp); }
.swiper-slide.-a50 .reviewArea .main .txt::before { background-image: url(../../common/image/woman_age_50.webp); }

.reviewArea h3 {
	margin-bottom: 8px;
	font-size: 19px;
	font-weight: bold;
	color: var(--color-main);
}

/* start rating */
.rating {
	line-height: 1;
	letter-spacing: 0;
	font-size: 14px;
	font-weight: bold;
}

.rating .rate {
	margin-left: 5px;
	color: var(--color-red);
}

.star {
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	margin-left: 4px;
	font-size: 18px;
	color: var(--color-border);
}

.star:before, .star:after {
	content: '★★★★★';
}

.star:after {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #ffbc2a;
}

.star[data-rate="5.0"]:after{ width: 100%; }
.star[data-rate="4.5"]:after{ width: 90%; }
.star[data-rate="4.0"]:after{ width: 80%; }
.star[data-rate="3.5"]:after{ width: 70%; }
.star[data-rate="3.0"]:after{ width: 60%; }
.star[data-rate="2.5"]:after{ width: 50%; }
.star[data-rate="2.0"]:after{ width: 40%; }
.star[data-rate="1.5"]:after{ width: 30%; }
.star[data-rate="1.0"]:after{ width: 20%; }
.star[data-rate="0.5"]:after{ width: 10%; }
.star[data-rate="0"]:after{ width: 0%; }
/* end rating */

.reviewArea .main .job .be,
.reviewArea .main .job .af {
	position: relative;
	min-height: 65px;
	line-height: 1.3;
	padding: 8px 2px;
	letter-spacing: 0;
	align-content: center;
	border-radius: 4px;
	text-align: center;
	font-size: 13px;
}

.reviewArea .main .job .be {
	width: 42.4%;
	margin-right: 6.0%;
	background-color: var(--color-white);
	border: solid 1px var(--color-border);
}

.reviewArea .main .job .af {
	width: 51.6%;
	background-color: var(--color-bg-01);
	border: solid 3px var(--color-accent-02);
}

.reviewArea .main .job .be::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent var(--color-accent-02);
    position: absolute;
    top: 0;
    right: -12.0%;
    bottom: 0;
    margin: auto;
}

.reviewArea .main .job .af.up::before {
	content: "";
	position: absolute;
	left: -8px;
	top: -8px;
	width: 43px;
	height: 33px;
	background: url(../../common/image/icon_up.webp) no-repeat left top;
	background-size: 43px;

}

.reviewArea .main .job .be .aas {
	margin-bottom: 2px;
	font-weight: bold;
}

.reviewArea .main .job .be .aas span {
	font-size: 22px;
}

.reviewArea .main .job .af .aas {
	font-weight: bold;
	color: var(--color-red);
}

.reviewArea .main .job .af .aas span {
	font-size: 26px;
}

.rankingAttention {
	margin-top: 16px;
	text-align: center;
}

.rankingAttention p {
    position: relative;
    display: inline-block;
    padding: 0 24px;
	font-size: 20px;
	font-weight: 500;
}

.rankingAttention p span {
	color: var(--color-main);
}
       
.rankingAttention p:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--color-main-text);
    border-radius: 3px;
    transform: rotate(-25deg);
}
       
.rankingAttention p:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--color-main-text);
    border-radius: 3px;
    transform: rotate(25deg);
}

@media screen and (max-width: 768px) {
.rankingArea > section {
	margin-top: 24px;
	padding: 24px 10px 30px;
}

.rankingTitle {
	min-height: 54px;
	padding-left: 64px;
}

.rankingTitle p {
	font-size: 13px;
}

.rankingTitle h1 {
	font-size: 26px;
}

.rankingTitle h1 .-ss {
	font-size: 12px;
}

.rankingArea > section .rankingTitle h1::before {
    font-size: 13px;
}

.rankingArea > section:nth-child(-n+3) .rankingTitle::before {
	width: 52px;
	background-size: 52px;
}

.rankingArea > section:nth-child(n+4) .rankingTitle::before {
    left: 3px;
    width: 45px;
    height: 45px;
    font-size: 26px;
}

.rankingDetail {
	display: block;
	margin-top: 10px;
}

.rankingDetail .colImage {
	width: 100%;
	max-width: 300px;
	margin: 0 auto 16px;
}

.rankingDetail .colTable {
	width: 100%;
}

.rankingDetail .colImage figure {
	max-width: 90%;
	min-height: auto;
	margin: 0 auto;
	padding: 0;
}

.rankingDetail .colImage figure a {
	display: block;
}

.rankingDetail .colTable table {
	font-size: 13px;
}

.rankingDetail .colTable table th {
	width: 25%;
}

.rankingDetail .colTable table td {
	width: 75%;
	padding-left: 10px;
}

.rankingDetail .colTable ul {
	margin-top: -4px;
}

.rankingDetail .colTable ul li {
	margin-top: 4px;
	margin-right: 4px;
	padding: 5px 5px 4px;
	font-size: 12px;
}

.rankingFeature {
	margin-top: 42px;
	padding: 30px 10px 10px;
}

.rankingFeature h2 {
    top: -30px;
	line-height: 50px;
	padding: 0 5px 0 25px;
	font-size: 16px;
	background-color: var(--color-accent-01);
	border-radius: 10px 0 0 0;
}

.rankingFeature h2::before {
	left: 10px;
}

.rankingFeature ul li {
	padding: 5px 0 5px 30px;
	background-position: left top 6px;
}

.rankingArea .rankingReview {
	margin-top: 8px;
}

.rankingReview h2 {
	padding: 12px 0 12px 40px;
    font-size: 18px;
    background-size: 32px;
}

.rankingReview h2::after {
	display: block;
	margin-top: 4px;
	font-size: 12px;
}

.rankingArea.-up .rankingReview h2::after { content: "年収アップを叶えた看護師たちの声"; }
.rankingArea.-day .rankingReview h2::after { content: "日勤のみで転職した看護師たちの声"; }
.rankingArea.-zero .rankingReview h2::after { content: "残業ゼロへ転職した看護師たちの声"; }
.rankingArea.-ok .rankingReview h2::after { content: "ブランク・未経験から転職した看護師たちの声"; }

.rankingReview .swiper-pagination {
	margin-top: 24px;
}

.rankingReview .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 4px !important;
}

.reviews_slide .swiper .swiper-slide .refer {
	bottom: 8px;
	right: 15px;
    font-size: 10px;
}

.reviewArea {
	padding: 20px 15px 30px;
}

.reviewArea .main {
	display: block;
	margin-bottom: 8px;
}

.reviewArea .main .txt {
	width: calc(100% - 56px) !important;
	min-height: 54px;/**/
	margin-right: 0;
	padding-left: 56px;
}

.reviewArea .main .txt .occ {
	margin-top: 4px;
	font-size: 11px;
}

.reviewArea .main .job {
	width: 100%;
	margin-top: 8px;
}

.reviewArea .main .txt::before {
	width: 48px;
	height: 54px;/**/
	background-size: 48px;
}

.reviewArea h3 {
	margin-bottom: 4px;
	font-size: 16px;
}

.rating {
	font-size: 12px;
}

.star {
	font-size: 15px;
}

.reviewArea .main .job .be,
.reviewArea .main .job .af {
	min-height: auto;
	font-size: 10px;
}

.reviewArea .main .job .be::before {
    right: -10.0%;
}

.reviewArea .main .job .af.up::before {
	width: 33px;
	height: 23px;
	background-size: 33px;
}

.reviewArea .main .job .be .aas {
	margin-bottom: 2px;
}

.reviewArea .main .job .be .aas span {
	font-size: 17px;
}

.reviewArea .main .job .af .aas span {
	font-size: 20px;
}

.rankingAttention {
	margin-top: 6px;
}

.rankingAttention p {
    padding: 0 16px;
	font-size: 15px;
}
}

@media screen and (max-width: 576px) {
.rankingTitle h1 .-ss {
	display: block;
}

.reviewArea .main .job .be::before {
    right: -13.0%;
}
}

/*----------------------------------------------------------------------
content
------------------------------------------------------------------------*/
.content {
	margin: 64px 0;
}

.content h1:not([class]) {
	position: relative;
    margin: 64px 0 32px;
	font-size: 36px;
}

.content h2:not([class]) {
	position: relative;
    margin: 80px 0 48px;
    padding-bottom: 24px;
    border-bottom: solid 2px var(--color-border);
	font-size: 32px;
}

.content h2:not([class]) span {
	font-size: 32px;
	color: var(--color-main);
}

.content h2:not([class])::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 15%;
    height: 2px;
    background: var(--color-main);
}

.content h3:not([class]) {
	position: relative;
	margin: 48px 0 32px;
	padding: 5px 0 3px 20px;
	font-size: 24px;
	font-weight: bold;
	border-left: 5px solid var(--color-main);
}

.content h3:not([class])::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: #F4BDCF;
}

.content h4:not([class]) {
	margin: 32px 0 24px;
	font-size: 20px;
	font-weight: bold;
}

.content h5:not([class]) {
	margin: 24px 0 16px;
	font-size: 18px;
	font-weight: bold;
}

.content h6:not([class]) {
	margin: 24px 0 16px;
	font-weight: bold;
}

.content p:not([class]) {
	line-height: 1.8;
	margin: .8em 0;
}

.content span:not([class]) {
	font-weight: bold;
}

.content img:not([class]) {
	display: block;
	max-width: 80%;
	margin: 2.0em auto;
}

.content ul:not([class]),
.content ol:not([class]) {
    margin: 1.5em 0;
    padding: .75em 1.25em .75em 2.0em;
    border: dotted 2px var(--color-main);
    border-radius: 10px;
}

.content ul:not([class]) li,
.content ol:not([class]) li {
	position: relative;
    margin: .75em 0;
}

.content ul:not([class]) li { list-style-type: disc; }
.content ol:not([class]) li { list-style-type: decimal; }

.content ul:not([class]) li::marker,
.content ol:not([class]) li::marker {
	color: var(--color-main);
}

.content .table-wrap {
    overflow-x: scroll;
    margin: 1.5em 0;
}

.content .table-wrap table {
    margin-top: 0;
    margin-bottom: 0;
}

.content .table-wrap::-webkit-scrollbar {
	height: 0;
}

.content table {
	width: 100%;
    margin: 1.5em 0;
    font-size: inherit;
}

.content table th,
.content table td {
    min-width: 50px;
    padding: 1.0em 1.0em .75em 1.0em;
	vertical-align: middle;
	border: solid 1px var(--color-border);
	border-color: hsla(0, 0%, 80%, .3);
}

.content table th {
    padding-top: .25em;
    padding-bottom: .25em;
	background-color: var(--color-bg);
}

#toc {
	margin: 2.5em auto;
    padding: 1.5em 2em;
    font-size: 100%;
    background-color: var(--color-bg);
    border: none;
    border-radius: 10px;
}

#toc > p {
    font-size: 125%;
	font-weight: 700;
}

ul.toc li a {
	position: relative;
    display: block;
    width: 100%;
    padding: .5em 0 .5em 1.5em;
	text-decoration: none;
	font-weight: 500;
	color: var(--color-main-text);
}

ul.toc li a:hover {
	text-decoration: underline;
}

ul.toc li a::before {
    content: '';
	position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 8px;
    border: 0;
    border-bottom: solid 2px var(--color-main);
    border-right: solid 2px var(--color-main);
    transform: rotate(45deg);
}


.-btn {
	max-width: 480px;
	margin: 48px auto 0;
}

.-btn a {
	display: block;
	position: relative;
	line-height: 1.3;
	padding: 26px 13px 24px 3px;
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: var(--color-main);
	background-color: var(--color-white);
	border: solid 2px var(--color-main);
	border-radius: 50px;
}

.-btn a::after {
	content: '';
	position: absolute;
	width: 9px;
	height: 9px;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
	border: 0;
	border-top: solid 3px var(--color-main);
	border-right: solid 3px var(--color-main);
	transform: rotate(45deg);
}

.-btn.up a::after {
	transform: rotate(-45deg);
}

.-btn.down a::after {
	transform: rotate(135deg);
}


.-btn span {
	margin-left: 5px;
	font-size: 22px;
}

.topListTitle {
	display: inline-block;
	margin-top: 16px;
	padding: 10px 20px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: var(--color-white);
	background-color: var(--color-accent-02);
	border-radius: 10px;
}

.topList {
	margin-top: -23px;
	padding: 43px 20px 20px 20px;
	background-color: var(--color-bg-02);
	border: dotted 2px var(--color-accent-02);
	border-radius: 10px;
}

.topList li {
	margin-left: 20px;
}

.topList li a {
	display: block;
	line-height: 2.0;
	text-decoration: none;
	color: var(--color-main-text);
}

.topList li a:hover {
	opacity: 1;
	text-decoration: underline;
	color: var(--color-main);
}

ul.topList li {
	list-style-type: disc;
}

ol.topList li {
	list-style-type: decimal;
}

/* accordion start */
.toggle {
	display: none;
}
.accordion {
	position: relative;
	margin-bottom: 1.2em;
}

.accordion_label,
.accordion_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.accordion_label {
	padding: 1.2em 2em 1.2em 1em;
	display: block;
	background-color: var(--color-bg-main);
	border-radius: 10px;
	cursor: pointer;
}

.accordion_label::after,
.accordion_label::before {
	content: "";
	position: absolute;
	right: 1.25em;
	top: calc(50% - 6px);
	width: 3px;
	height: 0.85em;
	background-color: var(--color-main);
	transition: all 0.3s;
}

.accordion_label::after {
transform: rotate(90deg);
}

.accordion_content {
	max-height: 0;
	overflow: hidden;
}

.toggle:checked + .accordion_label + .accordion_content {
	max-height: 10000px;
	transition: all 1.5s;
}

.toggle:checked + .accordion_label::before {
	transform: rotate(90deg) !important;
}

.faqTitle {
	position: relative;
	padding-left: 35px;
	font-size: 20px;
	font-weight: bold;
}

.faqTitle::before {
	content: "Q";
	position: absolute;
	top: -7px;
	left: 0;
	font-size: 28px;
	color: var(--color-main);
}

.faqTxt {
	margin-top: 24px;
}
/* accordion end */

@media screen and (max-width: 768px) {
.content {
	margin: 48px 0;
}

.content h1:not([class]) {
	position: relative;
	margin: 48px 0 24px;
	font-size: 32px;
}

.content h2:not([class]) {
	margin: 64px 0 32px;
    padding-bottom: 16px;
	font-size: 27px;
}

.content h2:not([class]) span {
	font-size: 30px;
}

.content h3:not([class]) {
	position: relative;
	margin: 32px 0 24px;
	padding-left: 12px;
	font-size: 20px;
	border-left-width: 3px;
}

.content h3:not([class])::before {
	width: 3px;
}

.content h4:not([class]) {
	margin: 24px 0 16px;
	font-size: 17px;
}

.content h5:not([class]) {
	margin: 16px 0 12px;
	font-size: 15px;
}

.content h6:not([class]) {
	margin: 16px 0 12px;
}

.content img:not([class]) {
	max-width: 100%;
}

.-btn {
	width: 80%;
	margin-top: 32px;
}

.-btn a {
	padding-top: 16px;
	padding-bottom: 14px;
	font-size: 16px;
}

.-btn span {
	display: block;
	margin-left: 0;
	font-size: 18px;
}

.topListTitle {
	margin-top: 8px;
	padding: 8px 10px;
	font-size: 15px;
}

.topList {
	margin-top: -21px;
	padding: 31px 10px 10px 10px;
}

.faqTitle {
	padding-left: 25px;
	font-size: 15px;
}

.faqTitle::before {
	top: -4px;
	font-size: 21px;
}

.faqTxt {
	margin-top: 16px;
}

}



































/*----------------------------------------------------------------------
口コミ書き換え後に削除
------------------------------------------------------------------------*/
.title_h2 {
	position: relative;
	min-height: 41px;
	margin: 48px 0 24px;
	padding: 10px 0 12px 50px;
	font-size: 28px;
	font-weight: bold;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 40px;
	border-bottom: solid 1px var(--color-border);
}

.title_h2 span {
	font-size: 32px;
	color: var(--color-main);
}

.title_h2.-trophy {	background-image: url(../../common/image/icon_trophy.webp);}

@media screen and (max-width: 768px) {
.title_h2 {
	min-height: 31px;
	margin-top: 24px;
	margin-bottom: 12px;
	padding-left: 40px;
	font-size: 20px;
	background-size: 30px;
}

.title_h2 span {
	font-size: 24px;
}
}

.reviewArea .-in h3 {
	float: left;
    margin-right: 10px;
}

.reviewArea ul {
	overflow: hidden;
	margin-bottom: 8px;
}

.reviewArea ul li {
	float: left;
	line-height: 1;
	margin-right: 6px;
	padding: 4px 6px 3px;
	font-weight: 500;
	color: var(--color-main);
	border: solid 1px var(--color-main);
	border-radius: 10px;
}

.rating {
	margin-bottom: 6px;
}

.rankingReview h2 span {
	font-size: 17px;
	color: var(--color-main);
}

@media screen and (max-width: 768px) {
.reviewArea .-in h3 {
	float: none;
    margin-right: 0;
}

.reviewArea ul li {
	margin-right: 4px;
	padding-left: 5px;
	padding-right: 5px;
}

.rankingReview h2 span {
	font-size: 12px;
}
}



/* scroll-hint */
.scroll-hint-icon-wrap {
	z-index: 3;
}

.scroll-hint-icon {
    left: calc(50% - 65px);
    width: 130px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
	opacity: .9;
}

.scroll-hint-icon-white {
	box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

/* simplebar用 */
.simplebar-track {
	position: absolute;
	bottom: auto;
    top: -32px;/**/
	background: var(--color-bg);
	border-radius: 10px;
}

.simplebar-track.simplebar-horizontal {
	height: 24px;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
	opacity:1;
}

.simplebar-track .simplebar-scrollbar::before {
	height: 14px;
    top: 5px;
    bottom: 5px;
	left: 5px;
	right: 5px;
	background: var(--color-main);
}

.scroll-area {
	height: auto;
	margin-top: 32px;/**/
}

/* start レバウェル看護 */
/*
.rankingArea > section.levwell .rankingTitle h1::before { content: "非公開求人数が業界トップクラス"; }
.rankingArea.-up > li.levwell .rankingTitle h1::before { content: "年収アップを実現！非公開求人多数"; }
.rankingArea.-day > li.levwell .rankingTitle h1::before { content: "日勤のみの好条件求人が満載！"; }
.rankingArea.-zero > li.levwell .rankingTitle h1::before { content: "残業ゼロで年収アップ！交渉も代行"; }
.rankingArea.-ok > li.levwell .rankingTitle h1::before { content: "未経験・ブランクOK！非公開求人多数"; }
*/
/* end レバウェル看護 */