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

/*
########################################################
  top
########################################################
*/

/* mainvisual
--------------------------------------------- */
#page-top #wrap-mainvisual {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.49)),url("../img/top/mainvisual.jpg");
	background-position: center bottom,center center;
	background-repeat: no-repeat,no-repeat;
	background-size: auto,cover;
	width: 100vw;
	height: 80vh;
	position: relative;
	margin-bottom: 10vh;
}

#page-top #wrap-mainvisual h2 {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-B);
	font-size: clamp(1.25rem, 0.114rem + 5.68vw, 4.375rem);
	color: #fff;
	font-weight: 100;
	position: absolute;
	bottom: 30px;
	left: 15%;
}

@media screen and (max-width: 960px) {
	#page-top #wrap-mainvisual {
		background-size: auto,auto 100%;
	}
	
	#page-top #wrap-mainvisual h2 {
		bottom: 20px;
		left: 20px;
	}
}

/* intro
--------------------------------------------- */
#page-top #wrap-intro {
	background-image: url("../img/top/intro_img.png"),url("../img/top/intro_bg.png");
	background-position: center bottom 50px,center center;
	background-repeat: no-repeat,no-repeat;
	background-size: 70% auto,100% 100%;
	width: 70%;
	margin: 0 auto;
	margin-bottom: 15vh;
	padding: 100px 70px 200px 70px;
}

#page-top #wrap-intro h2 {
	font-size: var(--font-size-38);
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-B);
	color: #6F4747;
	text-align: center;
	line-height: 1.8;
	margin-bottom: 50px;
}

#page-top #wrap-intro h2 span {
	border-radius: 50%;
	padding: 10px;
	color: #fff;
	font-weight: bold;
}

#page-top #wrap-intro h2 span.child01 {
	background: #5CAED3;
}

#page-top #wrap-intro h2 span.child02 {
	background: #5CCED3;
}

#page-top #wrap-intro h2 span.child03 {
	background: #5C8ED3;
}

#page-top #wrap-intro p {
	width: 50%;
	margin: 0 auto;
	text-align: center;
	line-height: 1.8;
}

@media screen and (max-width: 960px) {
	#page-top #wrap-intro {
		width: 90%;
	}
}

@media screen and (max-width: 640px) {
	#page-top #wrap-intro {
		background-image: url("../img/top/intro_img.png"),url("../img/top/intro_bg.png");
		background-position: center bottom 30px,center center;
		background-repeat: no-repeat,no-repeat;
		background-size: 70% auto,auto 100%;
		width: 100%;
		margin: 0 auto;
		margin-bottom: 15vh;
		padding: 100px 30px 200px 30px;
	}
	#page-top #wrap-intro p {
		width: 80%;
	}
}

@media screen and (max-width: 480px) {
	#page-top #wrap-intro {
		background-image: url("../img/top/intro_img.png"),url("../img/top/intro_bg.png");
		background-position: center bottom 30px,center center;
		background-repeat: no-repeat,no-repeat;
		background-size: 70% auto,auto 100%;
		width: 100%;
		margin: 0 auto;
		margin-bottom: 15vh;
		padding: 80px 20px 150px 20px;
	}
	#page-top #wrap-intro p {
		width: 90%;
	}
}

/* about
--------------------------------------------- */
#page-top #wrap-about .inner {
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}

#page-top #wrap-about .inner div {
	width: 100%;
}

#page-top #wrap-about .inner div h3 {
	font-size: var(--font-size-34);
	color: var(--main-color);
	margin-bottom: 20px;
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-M);
}

@media screen and (max-width: 480px) {
	#page-top #wrap-about .inner {
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
}

/* recruit
--------------------------------------------- */
#page-top #wrap-recruit dl a {
	display: block;
	padding: 30px 40px 20px;
	margin-bottom: 30px;
	color: #333;
	transition: 0.3s;
	position: relative;
}

#page-top #wrap-recruit dl a:hover {
	border-radius: 30px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.35);
}

#page-top #wrap-recruit dl a::after {
	content: "　";
	background: url("../img/top/arrow.png") center right no-repeat;
	background-size: cover;
	width: 56px;
	height: 55px;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	right: 40px;
	transition: 0.3s;
}

#page-top #wrap-recruit dl a:hover::after {
	right: 10px;
}

#page-top #wrap-recruit dl dt {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-B);
	font-size: var(--font-size-38);
	margin-bottom: 5px;
}

#page-top #wrap-recruit dl div a p:first-child {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-M);
	font-size: var(--font-size-34);
	margin-bottom: 10px;
}

#page-top #wrap-recruit dl div:nth-child(1) a {
	background-color: #D1D0FF;
}

#page-top #wrap-recruit dl div:nth-child(2) a {
	background-color: #8BD9E2;
}

#page-top #wrap-recruit dl div:nth-child(3) a {
	background-color: #FAE072;
}

@media screen and (max-width: 480px) {
	#page-top #wrap-recruit dl a {
		display: block;
		padding: 20px 20px 10px;
		margin-bottom: 10px;
		color: #333;
		transition: 0.3s;
		position: relative;
	}
	
	#page-top #wrap-recruit dl a::after {
		top: 20px;
		transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		right: 20px;
		}
}

/* work
--------------------------------------------- */
#page-top #wrap-work .inner {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 30px;
}

#page-top #wrap-work .category {
	font-size: 1.4rem;
	color: #fff;
	line-height: 1;
	margin: 0 0 5px 0;
	padding: 5px;
	display: inline-block;
}

#page-top #wrap-work .category.cat_houmon {
	background-color: #EA7E69;
}

#page-top #wrap-work .category.cat_care {
	background-color: #5B9DDB;
}

#page-top #wrap-work h3 {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-M);
	font-size: 1.7rem;
	margin: 5px 0;
}

#page-top #wrap-work .btn a {
	justify-content: flex-end;
}

#page-top #wrap-work img {
	border: 1px solid #ccc;
}

@media screen and (max-width: 640px) {
	#page-top #wrap-work .inner {
		display: grid;
		grid-template-columns: repeat(2, auto);
		gap: 20px;
	}
}

@media screen and (max-width: 480px) {
	#page-top #wrap-work .inner {
		gap: 10px;
	}
}

/*
########################################################
  about
########################################################
*/

/* overview
--------------------------------------------- */
#page-about #wrap-overview table th,
#page-about #wrap-overview table td {
	border-bottom: 1px solid #b1b1b1;
}

#page-about #wrap-overview table ul {
	margin-bottom: 1em;
}

/* work
--------------------------------------------- */
#page-about #wrap-work {
	margin-bottom: 10vh;
}

#page-about #wrap-work .inner h4 {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-B);
	font-size: var(--font-size-34);
	text-align: center;
	padding: 100px 0;
	margin-bottom: 10vh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

#page-about #wrap-work .inner_box {
	margin: 5vh 0;
}

#page-about #wrap-work .inner_box h5 {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-B);
	font-size: var(--font-size-34);
	position: relative;
	z-index: 1;
	padding-left: 20px;
	margin-bottom: 30px;
}

#page-about #wrap-work .inner_box h5::before {
	content: "　";
	background-position: left bottom;
	background-position: no-repeat;
	background-size: 100% auto;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	width: 50px;
	height: 50px;
	display: inline-block;
}

#page-about #wrap-work .inner_box dl,
#page-about #wrap-work .inner_box ul {
	padding-left: 20px;
}

#page-about #wrap-work .inner_box dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}

#page-about #wrap-work .inner_box dl div {
	margin-bottom: 30px;
}

#page-about #wrap-work #block-work-houmon {
	background-color: #ffe8e8;
}

#page-about #wrap-work #block-work-houmon h4 {
	background-image: url("../img/about/houmon_bg_circle.png");
}

#page-about #wrap-work #block-work-houmon ul {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 30px;
	margin-top: 30px;
}

#page-about #wrap-work #block-work-houmon ul h5 {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-M);
	font-size: 1.7rem;
	color: #EF8585;
	margin-bottom: 5px;
}

#page-about #wrap-work #block-work-houmon .inner_box h5::before {
	background-image: url("../img/about/houmon_bg_circle.png");
}

@media screen and (max-width: 640px) {
	#page-about #wrap-work #block-work-houmon ul {
		display: grid;
		grid-template-columns: repeat(2, auto);
		gap: 20px;
	}
}

@media screen and (max-width: 480px) {
	#page-about #wrap-work #block-work-houmon ul {
		gap: 10px;
	}
}

#page-about #wrap-work #block-work-care {
	background-color: #DEEFFF;
	padding-bottom: 5vh;
}

#page-about #wrap-work #block-work-care h4 {
	background-image: url("../img/about/care_bg_circle.png");
}

#page-about #wrap-work #block-work-care .wrapper > h5 {
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-M);
	font-size: 1.8rem;
	color: #5C9DDB;
	margin-bottom: 20px;
}

#page-about #wrap-work #block-work-care .inner_box {
	margin-bottom: 0;
}

#page-about #wrap-work #block-work-care .inner_box h5::before {
	background-image: url("../img/about/care_bg_circle.png");
}

/*
########################################################
  recruit
########################################################
*/

#page-recruit #main_title {
	background-image: linear-gradient(90deg, #dce3e6 50%, transparent),url("../img/recruit/title_img.jpg");
}

#page-recruit .block-item h3 {
	position: relative;
	margin-bottom: 8vh;
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight-B);
	font-size: var(--font-size-34);
	color: var(--main-color);
	text-align: center;
}

#page-recruit .block-item h3:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--main-color);
  border-radius: 2px;
}

#page-recruit .block-item table {
	table-layout: fixed;
}

#page-recruit .block-item table th,
#page-recruit .block-item table td {
	border: 1px solid #999;
	padding: 20px;
}

#page-recruit .block-item table th {
	width: 230px;
	background: rgba(235,235,235,1.00);
}

@media only screen and (max-width:600px){
	#page-recruit .block-item table {
		table-layout: auto;
	}

	#page-recruit .block-item table th {
		width: 100%;
	}
	
	#page-recruit .block-item table th,
	#page-recruit .block-item table td {
		border: none;
	}
}

#page-recruit .recruit_btn {
	width: 80%;
	margin: 0 auto;
	margin-top: 3vh;text-align: center;
}

#page-recruit .recruit_btn > span {
	font-family: var(--main-font-family);
	font-size: clamp(1.8rem, 1.618rem + 0.91vw, 2.3rem);
    line-height: 1.8;
    text-decoration: none;
    color: #EA7E69;
    font-weight: var(--main-font-weight-B);
	 border-radius: 9999px;
	 padding: 20px 30px;
	 border: 2px solid #EA7E69;
	 display: block;
}

#page-recruit .recruit_btn > span > span {
	display: block;
}

#page-recruit .recruit_btn a > span {
    background: #EA7E69;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    
    padding: 30px 30px;
    font-family: var(--main-font-family);
	font-size: clamp(1.8rem, 1.618rem + 0.91vw, 2.3rem);
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    font-weight: var(--main-font-weight-B);
    border-bottom: solid 5px #CB6753;
    transition: 0.3s ease-in-out;
}

#page-recruit .recruit_btn a > span:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 40px;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 16px;
  height: 16px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
#page-recruit .recruit_btn a > span:hover:after {
  right: 30px;
}
#page-recruit .recruit_btn a > span:hover {
  background: #F0694F;
  color: #FFF;
  border-bottom: solid 5px #CB6753;
  transform: translateY(3px);
}

#page-recruit .recruit_btn a > span > span {
	display: none;
}

#page-recruit .recruit_btn p {
  font-size: clamp(1.8rem, 1.727rem + 0.36vw, 2rem);
  position: relative;
  margin-bottom: .5rem;
  text-align: center;
  color: #EA7E69;
}

#page-recruit .recruit_btn p:before {
  margin-right: 1rem;
  content: '＼';
}

#page-recruit .recruit_btn p:after {
  margin-left: 1rem;
  content: '／';
}

@media only screen and (max-width:480px){
	#page-recruit .recruit_btn {
		width: 90%;
		margin: 0 auto;
	}
}

