/* -----------------------------------------------
= reset
----------------------------------------------- */
html {
	-webkit-text-size-adjust: 100%
}
body, h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li,
figure, figcaption {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: 500;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
a {
	color: inherit;
	text-decoration: none;
}
a img {
	border: none;
}
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
button {
	cursor: pointer;
}
input {
	border: none;
	border-radius: 0;
	font: inherit;
}
select {
	font: inherit;
}
iframe {
	border: none;
}
/*--------------------------------------------------
= font
--------------------------------------------------*/
@font-face { /* normal */
	font-family: "GenJyuuGothic";
	src: url(../font/GenJyuuGothic-Regular.woff) format("woff");
	font-weight: normal;
	font-display: swap;
}
@font-face { /* medium */
	font-family: "GenJyuuGothic-medium";
	src: url(../font/GenJyuuGothic-Medium.woff) format("woff");
	font-weight: 600;
	font-display: swap;
}
@font-face { /* bold */
	font-family: "GenJyuuGothic-bold";
	src: url(../font/GenJyuuGothic-Bold.woff) format("woff");
	font-weight: bold;
	font-display: swap;
}
/* -----------------------------------------------
= variable
----------------------------------------------- */
:root {
	--red: #d73e4f;
	--orange: #ec7a4a;
	--pink: #e45a97;
	--fontM: "GenJyuuGothic-medium";
	--fontB: "GenJyuuGothic-bold";
	--filterRed: invert(32%) sepia(100%) saturate(1053%) hue-rotate(323deg) brightness(88%) contrast(91%);
	--filterGray: invert(86%) sepia(0%) saturate(261%) hue-rotate(149deg) brightness(84%) contrast(90%);
	--filterWhite: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transition: opacity .8s;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	color: #0d0d0d;
	font-family: "GenJyuuGothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: .04em;
}
.is-pc {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #e9e9e8;
}
.header .inner {
	display: flex;
	align-items: center;
}
.header .logo {
	flex: 1;
	padding: 4px 4px 0 14px;
}
.header .logo a {
	display: flex;
	align-items: center;
}
.header .logo img {
	width: 23px;
}
.header .logo span {
	margin: 0 0 7px 7px;
	font-size: 11px;
	font-family: var(--fontB);
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: 0;
}
.header .logo .is-tb {
	display: none;
}
.header .access {
	width: 60px;
}
.header .access a {
	display: grid;
	place-content: end center;
	position: relative;
	height: 60px;
	border-left: 1px solid #e9e9e8;
	font-size: 9px;
	font-family: var(--fontM);
	font-weight: 600;
	line-height: 30px;
	text-align: center;
}
.header .access a::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 23px;
	background: url(../img/shared/icon_access.svg) no-repeat 50% / cover;
	filter: var(--filterRed);
}
.header .is-sp {
	display: block;
}
.header .is-pc {
	display: none;
}
@media print, screen and (min-width: 1100px) {/* PC */
.header .is-sp {
	display: none;
}
.header .is-pc {
	display: block;
}
.header {
	min-height: 186px;
	border-bottom: none;
	transition: min-height .3s;
}
.header.is-shrink {
	min-height: 136px;
}
.header .inner {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
}
.header .logo {
	max-width: 420px;
	padding: 11px 0 0 40px;
}
.header .logo img {
	width: 42px;
}
.header .logo span {
	margin: 0 0 12px 14px;
	font-size: 21px;
}
.header .logo .is-tb {
	display: block;
}
.header .set {
	display: flex;
	align-items: center;
	position: absolute;
	top: 24px;
	right: 300px;
}
.header .access {
	width: auto;
}
.header .access a {
	display: inline-block;
	height: auto;
	padding-left: 18px;
	border-left: none;
	font-size: min(20px, calc(1.5rem / 1.6));
	line-height: 2;
	text-align: left;
}
.header .access a:hover {
	color: var(--red);
}
.header .access a .is-pc {
	display: inline;
}
.header .access a::before {
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 11px;
	height: 15px;
}
.header .recruit {
	margin-left: 20px;
}
.header .recruit a {
	position: relative;
	padding-left: 28px;
	font-size: min(20px, calc(1.5rem / 1.6));
	font-family: var(--fontM);
	font-weight: 600;
	line-height: 2;
}
.header .recruit a:hover {
	color: var(--red);
}
.header .recruit a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 20px;
	height: 15px;
	background: url(../img/shared/icon_recruit.svg) no-repeat 50% / cover;
	filter: var(--filterRed);
}
.header .size {
	display: flex;
	margin-left: 25px;
	font-size: min(20px, calc(1.5rem / 1.6));
	font-family: var(--fontM);
	font-weight: 600;
	line-height: 2;
}
.header .size dt {
	margin-right: 5px;
}
.header .size dd {
	display: flex;
}
.header .size button {
	width: calc(2.3rem / 1.6);
	height: calc(2.3rem / 1.6);
}
.header .size button.is-active {
	color: #fff;
	background: var(--red);
	border-radius: 50%;
	line-height: calc(2.3rem / 1.6);
	text-align: center;
}
}/* @media */
@media print, screen and (min-width: 1200px) {/* PC */
.header .logo .is-tb {
	display: none;
}
}/* @media */
@media print, screen and (min-width: 1300px) {/* PC */
.header .set {
	right: 360px;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.nav_btn {
	position: relative;
	width: 60px;
	height: 60px;
	color: #fff;
	background: var(--red);
}
.nav_btn::before,
.nav_btn::after,
.nav_btn span::before {
	content: "";
	position: absolute;
	left: 18px;
	height: 2px;
	background: #fff;
}
.nav_btn::before {
	top: 12px;
	width: 28px;
}
.nav_btn::after {
	top: 20px;
	width: 23px;
}
.nav_btn span::before {
	top: 29px;
	width: 18px;
}
.nav_btn span::after {
	content: "MENU";
	position: absolute;
	left: 0;
	bottom: 12px;
	width: 100%;
	font-size: 10px;
	font-family: var(--fontM);
	font-weight: 600;
	line-height: 1;
}
.nav_btn[aria-expanded="true"]::before {
	top: 19px;
	left: 18px;
	width: 24px;
	transform: rotate(-45deg);
}
.nav_btn[aria-expanded="true"]::after {
	left: 18px;
	transform: rotate(45deg);
}
.nav_btn[aria-expanded="true"] span::before {
	display: none;
}
.nav_btn[aria-expanded="true"] span::after {
	content: "CLOSE";
}
.nav {
	position: absolute;
	top: 61px;
	left: 0;
	z-index: -1;
	width: 100%;
	max-height: 100svh;
	background: #fff;
	overflow-y: auto;
	overscroll-behavior: contain;
}
.nav.is-close {
	display: none;
}
.nav .recruit {
	margin: 20px 0;
	text-align: center;
}
.nav .recruit a {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	font-size: calc(1.6rem / 1.6);
	font-family: var(--fontM);
	font-weight: 600;
}
.nav .recruit a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 23px;
	height: 17px;
	background: url(../img/shared/icon_recruit.svg) no-repeat 50% / cover;
	filter: var(--filterRed);
}
.nav .search {
	position: relative;
	margin: 0 18px 20px;
	display: flex;
	font-size: calc(1.3rem / 1.6);
}
.nav .search::before {
	content: "";
	position: absolute;
	top: 13px;
	left: 14px;
	width: 14px;
	height: 14px;
	background: url(../img/shared/icon_search.svg) no-repeat 50% / cover;
	filter: var(--filterGray);
}
.nav .search input {
	flex: 1;
	padding: 12px 10px 12px 33px;
	background: #f6f6f5;
	border-radius: 3em 0 0 3em;
	-webkit-appearance: none;
	appearance: none;
}
.nav .search button {
	width: 68px;
	padding: 12px 0;
	color: #fff;
	background: var(--red);
	border-radius: 0 3em 3em 0;
	font-size: calc(1.3rem / 1.6);
}
.nav .menu {
	padding: 0 18px 20px;
}
.nav .menu li {
	border-top: 1px dashed #eac0c4;
	font-size: calc(1.6rem / 1.6);
	font-family: var(--fontB);
	font-weight: bold;
}
.nav .menu li:last-child {
	border-bottom: 1px dashed #eac0c4;
}
.nav .menu li a {
	display: block;
	position: relative;
	padding: 17px 40px 17px 53px;
}
.nav .menu li a::before,
.nav .menu li a::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.nav .menu li a::before {
	left: 0;
	width: 53px;
	height: 28px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: auto 100%;
}
.nav .menu li:nth-child(1) a::before {
	background-image: url(../img/shared/icon_nav_outline.svg);
}
.nav .menu li:nth-child(2) a::before {
	background-image: url(../img/shared/icon_nav_life.svg);
}
.nav .menu li:nth-child(3) a::before {
	background-image: url(../img/shared/icon_nav_stay.svg);
}
.nav .menu li:nth-child(4) a::before {
	background-image: url(../img/shared/icon_nav_interview.svg);
}
.nav .menu li:nth-child(5) a::before {
	background-image: url(../img/shared/icon_nav_blog.svg);
}
.nav .menu li:nth-child(6) a::before {
	background-image: url(../img/shared/icon_nav_faq.svg);
}
.nav .menu li a::after {
	right: 13px;
	width: 17px;
	height: 17px;
	background: url(../img/shared/icon_nav_arrow.svg) no-repeat 50% / cover;
	filter: var(--filterRed);
}
.nav .is-pc {
	display: none;
}
.nav_btn.is-sp {
	display: block;
}
@media print, screen and (min-width: 1100px) {/* PC */
.nav .is-sp {
	display: none;
}
.nav .is-pc {
	display: block;
}
.nav_btn.is-sp {
	display: none;
}
.nav {
	position: absolute;
	top: 78px;
	left: 0;
	z-index: 1;
	width: 100%;
	max-height: none;
	background: #fff;
	overflow-y: visible;
}
.nav.is-close {
	display: block;
}
.nav .search {
	position: absolute;
	top: -57px;
	right: 40px;
	width: 240px;
	margin: 0;
}
.nav .search::before {
	top: 9px;
	left: 10px;
	width: 16px;
	height: 16px;
}
.nav .search input {
	width: 145px;
	padding: 5px 5px 5px 30px;
	font-size: calc(1.4rem / 1.6);
}
.nav .search button {
	width: 60px;
	padding: 5px 0;
	font-size: calc(1.6rem / 1.6);
}
.nav .menu {
	display: flex;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 40px 22px;
}
.nav .menu li {
	width: 100%;
	border-top: none;
	border-left: 1px dashed #eac0c4;
	font-size: min(21px, calc(1.8rem / 1.6));
	text-align: center;
}
.nav .menu li:last-child {
	border-bottom: none;
	border-right: 1px dashed #eac0c4;
}
.nav .menu li a {
	padding: 59px 0 0;
	transition: padding .3s;
}
.nav .menu li a::before {
	top: 0;
	left: 50%;
	width: 44px;
	height: 44px;
	transform: translate(-50%, 0);
	transition: transform .3s, opacity .3s;
}
.nav .menu li a::after {
	display: none;
}
.nav .menu li a:hover {
	color: var(--red);
}
.nav .menu li a:hover::before {
	transform: translate(-50%, 0) rotate(-20deg);
}
.header.is-shrink .nav .menu li a {
	padding: 4px 0;
}
.header.is-shrink .nav .menu li a::before {
	opacity: 0;
}
}/* @media */
@media print, screen and (min-width: 1300px) {/* PC */
.nav .search {
	right: 100px;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	margin-top: 60px;
}
@media print, screen and (min-width: 1100px) {/* PC */
.main {
	margin-top: 186px;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer {
	padding: 35px 0 0;
	color: #fff;
	background: var(--red);
}
.footer .inner {
	margin: 0 16px;
}
.footer .name {
	margin-bottom: 15px;
	font-size: calc(1.8rem / 1.6);
	font-family: var(--fontB);
	font-weight: bold;
	text-align: center;
}
.footer .address {
	margin-bottom: 22px;
	font-size: calc(1.3rem / 1.6);
	text-align: center;
}
.footer .map {
	margin-bottom: 30px;
}
.footer .map iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 334 / 220;
}
.footer .menu ul {
	display: flex;
	flex-wrap: wrap;
	padding: 14px 0 20px;
	border-top: 1px dotted rgba(255,255,255,.5);
}
.footer .menu ul li {
	width: 50%;
	padding: 8px 0;
	font-size: calc(1.3rem / 1.6);
}
.footer .menu ul + ul {
	display: block;
}
.footer .menu ul + ul li {
	width: auto;
}
.footer .menu a[target="_blank"] {
	position: relative;
	padding-right: 20px;
}
.footer .menu a[target="_blank"]::after {
	content: "";
    display: inline-block;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url(../img/shared/icon_external.svg);
    background-size: contain;
    position: relative;
    vertical-align: middle;
	width: 12px;
	height: 12px;
	margin-top: -4px;
	margin-left: 5px;
}
.footer .copyright {
	padding: 20px 18px;
	color: #8c8c8c;
	background: #fff;
	font-size: calc(1.3rem / 1.6);
	text-align: center;
}
.footer .pagetop {
	position: fixed;
	right: 18px;
	bottom: 40px;
	z-index: 5;
	width: 38px;
	height: 38px;
	background: #fff;
	border: 1px solid var(--red);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.footer .pagetop.is-page_scrolled {
	opacity: 1;
	pointer-events: auto;
}
.footer .pagetop::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 12px;
	height: 10px;
	background: var(--red);
	clip-path: polygon(50% 0,100% 100%,0 100%);
}
@media print, screen and (min-width: 768px) {/* PC */
.footer {
	padding: 40px 0 0;
}
.footer .inner {
	display: flex;
	max-width: 1100px;
	margin: 0 auto 40px;
	padding: 0 20px;
}
.footer .set {
	flex: 1;
	padding-right: 70px;
}
.footer .name {
	font-size: calc(2.6rem / 1.6);
	text-align: left;
}
.footer .address {
	font-size: calc(1.6rem / 1.6);
	text-align: left;
}
.footer .map {
	margin-bottom: 0;
}
.footer .map iframe {
	aspect-ratio: 460 / 300;
}
.footer .menu {
	display: flex;
}
.footer .menu ul {
	display: block;
	min-width: 256px;
	max-width: 320px;
	padding: 0 15px 0 30px;
	border-top: none;
	border-left: 1px dotted rgba(255,255,255,.5);
}
.footer .menu ul li {
	width: auto;
	padding: 8px 0;
	font-size: calc(1.6rem / 1.6);
}
.footer .menu a[target="_blank"]::after {
	width: 14px;
    height: 14px;
    margin: -.3em 0 0 6px;
}
.footer .menu ul li a:hover {
	text-decoration: underline;
}
.footer .copyright {
	padding: 28px 20px;
	font-size: calc(1.6rem / 1.6);
}
.footer .pagetop {
	right: 26px;
	bottom: 26px;
	width: 58px;
	height: 58px;
}
.footer .pagetop::before {
	width: 18px;
	height: 15px;
}
.footer .pagetop:hover {
	background: #e25262;
}
.footer .pagetop:hover::before {
	background: #fff;
}
}/* @media */
@media print, screen and (max-width: 1000px) and (min-width: 768px) {/* TABLET */
.footer .menu {
	display: block;
}
}/* @media */
/* -----------------------------------------------
= btn
----------------------------------------------- */
.btn {
	display: block;
	position: relative;
	z-index: 1;
	width: 250px;
	margin: 0 auto;
	padding: 13px 0;
	color: var(--red);
	background: #fff;
	border: 1px solid #d47c81;
	border-radius: 3em;
	box-shadow: 0 2px 0 #e3e3e3;
	font-size: calc(1.6rem / 1.6);
	font-family: var(--fontB);
	font-weight: bold;
	text-align: center;
}
.btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background: url(../img/shared/icon_nav_arrow.svg) no-repeat 50% / cover;
	filter: var(--filterRed);
}
@media print, screen and (min-width: 768px) {/* PC */
.btn {
	width: calc(34rem / 1.6);
	padding: 18px 0;
	box-shadow: 0 4px 0 #e3e3e3;
	font-size: calc(2.2rem / 1.6);
}
.btn:hover {
	color: #fff;
	background: var(--red);
}
.btn::after {
	right: 17px;
	width: 26px;
	height: 26px;
}
.btn:hover::after {
	filter: var(--filterWhite);
}
}/* @media */
/* -----------------------------------------------
= interview
----------------------------------------------- */
.interview {
	margin: 10px 0;
	background: url(../img/index/interview_bg_sp.jpg) no-repeat 50% 0 / 100% auto;
	text-align: center;
}
.interview .swiper {
	margin-bottom: 40px;
}
.interview .swiper-slide {
	width: 250px;
	height: auto;
	margin: 0 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
}
.interview .swiper-slide a {
	display: block;
	height: 100%;
}
.interview .img img {
	border-radius: 20px;
}
.interview .category span {
	display: inline-block;
	min-width: 80px;
	margin: 16px 5px 10px;
	padding: 2px 5px;
	color: #fff;
	border-radius: 3em;
	font-size: calc(1.3rem / 1.6);
	font-family: var(--fontB);
	font-weight: bold;
}
.interview .category.nursery_teacher span {
	background: #ec82b0;
}
.interview .category.master span {
	background: #8fc31f;
}
.interview .category.nurse span {
	background: #88abda;
}
.interview .category.cook span {
	background: #f19149;
}
.interview .text {
	font-size: calc(1.3rem / 1.6);
	font-family: var(--fontB);
	font-weight: bold;
}
.interview.__other {
    margin-top: 60px;
    padding: 0;
	background: unset;
}
.interview.__other .interview_ttl {
	background-image: linear-gradient(to right, #cccccc, #cccccc 3px, transparent 3px, transparent 6px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    background-position: left top;
	color: #d73e4f;
	line-height: 1.5;
	text-align: center;
	font-family: var(--fontB);
	margin-bottom: 10px;
	padding: 16px 0;
	font-size: calc(2.1rem / 1.6);
}
.interview.__other .swiper {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
}
@media print, screen and (min-width: 768px) {/* PC */
.interview {
	margin: -78px 0 0;
	padding: 35px 0 0;
	background: url(../img/index/interview_bg_pc.png) no-repeat 50% 0 / 1500px auto;
}
.interview .swiper {
	margin-bottom: 60px;
}
.interview .swiper-slide a .img {
	border-radius: 20px;
	overflow: hidden;
}
.interview .swiper-slide a .img img {
	transition: transform .3s;
}
.interview .swiper-slide a:hover .img img {
	transform: scale(1.05);
}
.interview .category span {
	min-width: 90px;
	margin: 12px 5px 10px;
	padding: 2px 5px;
	font-size: calc(1.5rem / 1.6);
}
.interview .text {
	font-size: calc(1.6rem / 1.6);
}
.interview .swiper-slide a:hover .text {
	color: var(--red);
}
.interview .btn {
	width: calc(40rem / 1.6);
}
.interview.__other {
    margin-top: 80px;
}
.interview.__other .interview_ttl {
	margin-bottom: 0;
	padding: 40px 0 44px;
	line-height: 1;
	font-size: calc(3.6rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= notPostTxt
----------------------------------------------- */
.el_notPostTxt {
	position: relative;
	background-image: linear-gradient(to right, #d9d9d9, #d9d9d9 3px, transparent 3px, transparent 6px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    background-position: left top;
	width: 100%;
	text-align: center;
    font-weight: 600;
	padding: 1.2rem 0;
	font-size: calc(1.6rem / 1.6);
}
.el_notPostTxt::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #d9d9d9, #d9d9d9 3px, transparent 3px, transparent 6px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
}
@media print, screen and (min-width: 768px) {/* PC */
	.el_notPostTxt {
		padding: 1.7rem 0;
		font-size: calc(2rem / 1.6);
	}
}