@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*  全体 font  */
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.my-font01 {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base_color01 {
  /*--メイン文字カラー--*/
  color: #000;
}
.base_back01 {
  /*--メイン背景カラー--*/
  background: #fff;
}
.point_color01 {
  /*--ポイント文字カラー ブルー --*/
  color: #02c9fb;
}
.point_color02 {
  /*--ポイント文字カラー ピンク --*/
  color: #ff90a3;
}
.point_back01 {
  /*--ポイント背景カラー ブルー --*/
  background: #02c9fb;
}
.point_back02 {
  /*--ポイント背景カラー ピンク--*/
  background: #ff90a3;
}
.point_back03 {
  /*--アクセント背景カラー 薄グレー--*/
  background: #f8f9f9;
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
.btn01 {
	width: 380px;
    height: 80px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
	cursor: pointer;
}
.btn02 {
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
  min-width: 330px;
  border-radius: 140px;
  padding: 22px 0 21px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 650px) {
  .btn01 {
	width: 100%;
	height: 50px;
	font-size: 14px;
  }
  .btn02 {
	width: 100%;
	min-width: inherit;
	padding: 16px 0 15px
  }
}

.btn_gray {
    color: #8d8e8e;
    background: #eceded;
}
.btn_blue {
    color: #fff;
    background: #02c9fb;
	border: 1px solid #02c9fb;
}
.btn_blue_brd {
    color: #02c9fb;
    background: #fff;
	border: 1px solid #02c9fb;
}
.btn_pink {
    color: #fff;
    background: #ff90a3;
	border: 1px solid #ff90a3;
}
.btn_pink_brd {
    color: #ff90a3;
    background: #fff;
	border: 1px solid #ff90a3;
}
.btn_pink_brd::after {
	content: "";
    display: inline-block;
    width: 12px;
    height: 10px;
    background: url(../images/arrow01_pink.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .mywidth {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}
.section_wrap {
	background: #fff;
    padding: 3em 3em;
	border-radius: 25px;
    overflow: hidden;
}
.section_wrap + .section_wrap {
	margin-top: 3.5em;
}
@media screen and (max-width: 650px) {
	.section_wrap {
		padding: 1.5em 1.0em;
		overflow: inherit;
	}
	.section_wrap + .section_wrap {
		margin-top: 2.0em;
	}
}


/* title */
.content_title01 {
  color: #333;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.content_title01::before {
  content: attr(data-text) "";
  color: #ccc;
  font-size: 60px;
  line-height: 1.0em;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.content_title02 {
    font-size: 22px;
    padding: 3px 0.5em 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.content_title03 {
    font-size: 20px;
    margin: 10px 0 20px;
}

@media screen and (max-width: 650px) {
	.content_title01 {
		margin-bottom: 20px;
	}
	.content_title01::before {
		font-size: 7.5vw;
		margin-bottom: 5px;
	}
	
	.content_title02 {
		font-size: 16px;
		padding: 6px 0.5em 8px;
		margin-bottom: 10px;
		display: block;
	}
}

.text {
    font-size: 16px;
    line-height: 1.8em;
}
@media screen and (max-width: 650px) {
	.text {
		font-size: 14px;
		line-height: 1.6em;
	}
}
.ellipsis01 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.ellipsis02 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.ellipsis03 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}



/*----------------------------------------------------
	main_v
----------------------------------------------------*/
.main_v {
  height: 650px;
  background: url(../images/mv.png) no-repeat center / contain;
  background-position: right;
  margin-bottom: 3.5em;
  position: relative;
}
.main_v .outer {
  width: 1380px;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main_v .inner {
  width: 590px;
}
.main_v .inner + .inner {
  margin-top: 50px;
}

.main_v .main_title {
    color: #ff90a3;
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
	font-size: 50px;
    line-height: 1.5em;
    font-weight: 500;
    padding: 0 0.25em 8px;
    margin-bottom: 15px;
    display: inline-block;
}
.main_v .main_text {
  font-size: 22px;
  font-weight: 300;
}

.main_v .main_btn_wrap {
  padding-left: 50px;
}
.main_v .main_btn_wrap .btn_blue::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  background: url(../images/arrow02_blue.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.main_v .main_btn_wrap a + a  { margin-top: 30px; }
@media screen and (max-width: 650px) {
  .main_v {
    height: calc(100vw + 60px);
	height: auto;
	background: none;
	margin-bottom: 0;
  }
  .main_v .outer {
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.6);
  }
  .main_v .inner {
    width: 100%;
    padding: 0 2.5vw;
  }
  .main_v .inner + .inner {
    margin-top: 0;
  }
  .main_v .main_title_wrap {
	padding: 3em 2.5vw;
    background: url(../images/mv_sp.png) no-repeat;
	background-size: cover;
	background-position: center right;
  }
  .main_v .main_title {
	font-size: 5.0vw;
    padding: 0 0.25em 3px;
    margin-bottom: 0;
	}
  .main_v .main_text {
	font-size: 3.5vw;
	font-weight: 400;
	margin-top: 0.75em;
  }
	
  .main_v .main_btn_wrap {
	background: #fef3f5;
	padding: 1.5em 5vw;
	margin: 0 0;
  }
  .main_v .main_btn_wrap a + a {
    margin-top: 20px;
  }
	
  .main_v .main_btn_wrap .btn_blue::after {
    width: 20px;
    height: 20px;
  }
	
  /* bnr_beginner  */
  .main_v + .bnr_beginner {
	  padding: 20px 0;
  }
  .main_v + .bnr_beginner a { display: block; }
	
}



/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/
/*  content01  */
.content01 {
  margin-top: 3.5em;
}

.content01 .bnr_beginner {
    position: absolute;
    top: 3.5em;
    right: 3em;
}
.content01 .bnr_beginner a {
	width: 710px;
    height: 130px;
    display: block;
    cursor: pointer;
	position: relative;
    z-index: 1;
}
.content01 .bnr_beginner a img {
    width: 100%;
	height: auto;
}
@media screen and (max-width: 650px) {
  .content01 {
	margin-top: 2.0em;
  }
}

/* search_area */
.search_area {
	padding-bottom: 3em;
}
.search_area .kantou {
	width: 40%;
    max-width: 480px;
    margin-right: 5em;
}
.search_area .kantou ul {
	height: 23vw;
    background: url(../images/map.png) no-repeat;
    background-size: 363px auto;
    background-position: center top;
}
.search_area .kantou li {
    display: inline-block;
	position: absolute;
    transform: translate(-50%, -50%);
}
.search_area .kantou li.map_1 {
    top: 60%;
    left: 43%;
}
.search_area .kantou li.map_2 {
	top: 77%;
    left: 25%;
}
.search_area .kantou li.map_3 {
    top: 70%;
    right: 3%;
}
.search_area .kantou li.map_4 {
    top: 45%;
    left: 20%;
}
.search_area .kantou li.map_5 {
    top: 30%;
    right: 0%;
}
.search_area .kantou li.map_6 {
    top: 3%;
    left: 55%;
}
.search_area .kantou li.map_7 {
    top: 10%;
    left: 25%;
}

.search_area .kantou li a,
.search_area .kantou li a span { color: #ff90a3; }
.search_area .kantou li a {
    font-size: 18px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #ff90a3;
    width: 90px;
    height: 90px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.search_area .kantou li a span {
	font-size: 13px;
	font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}
@media screen and (max-width: 650px) {
	.search_area {
		padding-bottom: 2em;
	}
	.search_area .kantou {
		display: none;
	}
}
/* 全国から探す */
.search_area .jpn {}
.search_area .jpn .area_title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}
.search_area .jpn ul + .area_title {
    margin-top: 15px;
}
.search_area .jpn ul {
    gap: 10px 0.5em;
}
.search_area .jpn li {}
.search_area .jpn li a {
    color: #000;
    font-size: 14px;
    padding: 0.25em 0.75em;
    background: #eee;
    border-radius: 50px;
    display: inline-block;
}
@media screen and (max-width: 650px) {
	.search_area .jpn .content_title03 {
		display: none;
	}
	.search_area .jpn .area_title {
		font-size: 14px;
	}
	.search_area .jpn li a {
		font-size: 12px;
	}
}

/* 職種＆施設形態から探す */
.content01 .search_type ul {
  gap: 10px 10px;
}
.content01 .search_type li a {
  font-size: 15px;
  line-height: 1.2em;
  height: 50px;
  padding: 0 0.75em;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
}
.content01 .search_type li a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  position: absolute;
  top: 19px;
  right: 0.5em;
}
/* 職種から探す */
.content01 .job {
  width: calc(100% - 33.33% - 50px);
}
.content01 .job li {
  width: calc((100% - 30px) / 4);
}
.content01 .job li a {
  color: #ff90a3;
  border: 1px solid #ff90a3;
}
.content01 .job li a::after {
  background: url(../images/arrow01_pink.png) no-repeat;
  background-size: contain;
}
/* 施設形態から探す */
.content01 .kowdawari1 {
    width: 33.33%;
    max-width: 415px;
}
.content01 .kowdawari1 li {
    width: calc((100% - 10px) / 2);
}
.content01 .kowdawari1 li a {
    color: #02c9fb;
    border: 1px solid #02c9fb;
}
.content01 .kowdawari1 li a::after {
  background: url(../images/arrow01_blue.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 650px) {
  .content01 .search_type li a {
	font-size: 12px;
	height: 40px;
 }
  .content01 .search_type li a::after {
	  top: 14px; 
  }
  /* 職種から探す */
  .content01 .job {
	  width: 100%;
	  margin-bottom: 2em;
  }
  .content01 .job li {
    width: calc((100% - 10px) / 2);
  }
  /* 施設形態から探す */
  .content01 .kowdawari1 { width: 100%; }
	
}


/*  content02  */
.content02 {
}
.content02 li {
}
.content02 li a {
	width: 400px;
	height: 140px;
	display: block;
}
.content02 li a img {
	width: 100%;
}
@media screen and (max-width: 650px) {
  .content02 li a {
    width: 100%;
    height: auto;
  }
}

/*  slick  */
#main-wrapp .slick-prev,
#main-wrapp .slick-next {
    position: absolute;
    display: block;
    height: 50px;
    width: 50px;
	border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    z-index: 3;
    color: transparent;
    background: rgba(0,0,0,0.8);
}
#main-wrapp .slick-prev:before,
#main-wrapp .slick-next:before {
    content: "";
    display: block;
    background: url(../images/slick_arrow.png) no-repeat center center;
    width: 50px;
    height: 50px;
}
#main-wrapp .slick-prev {
	left: -45px;
}
#main-wrapp .slick-next {
	right: -45px;
}
@media screen and (max-width: 650px) {
	#main-wrapp .slick-prev,
	#main-wrapp .slick-next {
		height: 30px;
		width: 30px;
	}
	#main-wrapp .slick-prev:before,
	#main-wrapp .slick-next:before {
		width: 30px;
		height: 30px;
	}
	#main-wrapp .slick-prev {
		left: -15px;
	}
	#main-wrapp .slick-next {
		right: -15px;
	}
	
	/*  slick  */	
	#main-wrapp .slick-prev,
	#main-wrapp .slick-next {
		height: 20px;
		width: 20px;
	}
	#main-wrapp .slick-prev:before,
	#main-wrapp .slick-next:before {
		width: 20px;
		height: 20px;
	}
	#main-wrapp .slick-prev { left: -25px; }
	#main-wrapp .slick-next { right: -25px; }

}



/*  content03  */
.content03 {}
.content03 .kyujin_wrap {
	padding: 0 15px;
}
.content03 .kyujin_wrap a { display: block; }
.content03 .kyujin_wrap figure {
	width: 100%;
	height: 230px;
	margin-bottom: 10px;
}
.content03 .kyujin_wrap figure img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.content03 .kyujin_wrap .tag {
	font-size: 14px;
	font-weight: bold;
    letter-spacing: 0.08em;
    padding: 0.25em 0.75em;
    border-radius: 0 0 8px 8px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 1em;
}
.kyujin_title {
	color: #333;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 400;
}
@media screen and (max-width: 650px) {
  .content03 {}
  .content03 .kyujin_wrap {
    padding: 0 7px;
  }
  .content03 .kyujin_wrap figure {
	height: 30vw;
  }
  .content03 .kyujin_wrap .tag {
	font-size: 12px;
	font-weight: 400;
	padding: 0.25em 0.5em;
	left: 0.5em;
  }
  .kyujin_title {
    font-size: 13px;
    line-height: 1.4em;
  }

}

/*  content04  */
.content04 {
	margin: 5em 0;
    overflow: inherit;
}
.strength_wrap {
    margin-bottom: 3.5em;
}
.strength_wrap .box {
	padding-top: 30px;
	margin-bottom: 60px;
    min-height: 450px;
    position: relative;
}
.strength_wrap .box:last-child {margin-bottom: 0;}
.strength_wrap .box_1 {
    background: url(../images/strength_01.png) no-repeat left top;
    background-size: 52% auto;
}
.strength_wrap .box_2 {
    background: url(../images/strength_02.png) no-repeat right top;
    background-size: 52% auto;
}
.strength_wrap .box_3 {
    background: url(../images/strength_03.png) no-repeat left top;
    background-size: 52% auto;
}
.strength_wrap .box .inner {
	width: 65%;
    max-width: 730px;
    background: rgba(255, 255, 255, 0.8);
    padding: 2em 5em 2em 5em;
    border-radius: 13px;
}
.strength_wrap .box:nth-child(odd) .inner {
    position: absolute;
    right: 0;
}
.strength_wrap .box .title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.strength_wrap .box .title::before {
	content: "";
	font-size: 48px;
	font-weight: 300;
    color: #ccc;
    font-family: "Comfortaa", sans-serif;
}
.strength_wrap .box_1 .title::before {
    content: "01";
}
.strength_wrap .box_2 .title::before {
    content: "02";
}
.strength_wrap .box_3 .title::before {
    content: "03";
}
.strength_wrap .box .title h3 {
	font-size: 24px;
	font-weight: bold;
    text-align: center;
	padding: 0.5em 0.75em;
    margin-bottom: 1.0em;
	position: relative;
}
.strength_wrap .box .title h3::before,
.strength_wrap .box .title h3::after {
    width: 20px;
    height: 20px;
    content: "";
	position: absolute;
}
.strength_wrap .box .title h3::before {
    border-left: 2px solid #555;
    border-top: 2px solid #555;
    top: 0;
    left: 0;
}
.strength_wrap .box .title h3::after {
    border-right: 2px solid #555;
    border-top: 2px solid #555;
    top: 0;
    right: 0;
}
@media screen and (max-width: 650px) {
  .content04 {
	margin: 2.5em 0;
  }
  .strength_wrap {
    margin-bottom: 2.0em;
  }
  .strength_wrap .box {
	padding-top: 63%;
	margin-bottom: 2.5em;
	background-size: contain;
	background-position: center top;
  }
  .strength_wrap .box .inner {
    width: 100%;
    max-width: inherit;
	padding: 1em 1em;
  }
  .strength_wrap .box .title::before {
    font-size: 8vw;
  }
  .strength_wrap .box .title h3 {
    font-size: 5.0vw;
    padding: 0.25em 1.0em;
  }
  .strength_wrap .box .title h3::before,
  .strength_wrap .box .title h3::after {
    width: 3vw;
    height: 3vw;
  }
}


/*  content05  */
.content05 {
	margin: 5em 0;
    overflow: inherit;
}
.content05 ul { gap: 40px; }
.content05 li {
	width: calc((100% - 80px) / 3);
	max-width: 430px;
}
.content05 li figure {
	width: 100%;
	height: 300px;
}
.content05 li .text_box {
	padding: 1em 1em;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 25px 25px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.content05 li .text_box::after {
	content: "";
    display: inline-block;
    width: 12px;
    height: 10px;
    background: url(../images/arrow01_white.png) no-repeat;
    background-position: center right;
    position: absolute;
    top: 42%;
    right: 1.25em;
}
.content05 li .text_box span {
	font-size: 18px;
	letter-spacing: 0.08em;
}
@media screen and (max-width: 650px) {
	.content05 {
		margin: 2.5em 0;
	}
	.content05 ul {
		gap: 20px 15px;
	}
	.content05 li {
		width: calc((100% - 15px) / 2);
		max-width: inherit;
	}
	.content05 li figure { height: auto; }
	.content05 li .text_box {
		padding: 2px 5px 5px;
		border-radius: 0 0 10px 10px;
	}
	.content05 li .text_box::after {
		right: 0.75em;
	}
	.content05 li .text_box span {
		font-size: 12px;
		line-height: 1.0em;
	}
}




/*  content06  */
.content06 {
  padding: 5em 0;
}
.content06 .list-wrap {
    margin-bottom: 3em;
}
.content06 .list-wrap li {
	font-size: 16px;
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #ccc;
}
.content06 .list-wrap li .date {
	min-width: 120px;
    letter-spacing: 0.08em;
}
.content06 .list-wrap li a {
  color: #333;
}
@media screen and (max-width: 650px) {
  .content06 {
    padding: 2.0em 0;
  }
  .content06 .list-wrap {
    margin-bottom: 2.5em;
  }
  .content06 .list-wrap li {
	  font-size: 12px;
	  padding: 10px 5px;
	  flex-direction: column;
	  align-items: flex-start;
   }
  .content06 .list-wrap li .date {
	min-width: inherit;
  }
  .content06 .list-wrap li a {
    font-weight: bold;
  }
}


/*  content07  */
.content07 {
  padding: 3.5em 0;
  background: url("../images/footer_bg.png") no-repeat 85% center / cover;
}
.content07 .logo_wrap {
    width: 355px;
    margin-bottom: 30px;
}
.content07 .inner {
	width: 55%;
    margin: 0;
}
.content07 .title {
    font-size: 24px;
    margin-bottom: 20px;
}

.content07 .btn_wrap {
    width: 55%;
    margin-top: 30px;
    gap: 0 30px;
}
.content07 .btn {
    width: calc((100% - 30px) / 2);
	height: 70px;
    border-radius: 50px;
	display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.content07 .tel_btn {
	font-size: 26px;
	font-family: "Comfortaa", sans-serif;
}
.content07 .tel_btn::before {
	content: "";
	display: inline-block;
	width: 23px;
	height: 26px;
	background: url("../images/footer_tel.png") no-repeat;
	background-size: contain;
	margin-right: 0.25em;
}
.content07 .contact_btn {
	font-size: 17px;
	font-weight: 500;
}
@media screen and (max-width: 650px) {
	.content07 {
		padding: 0 0;
	}
	.content07 .mywidth {
		padding: 2em 3.5vw;
		background: rgba(255,255,255,0.7);
	}
	.content07 .logo_wrap {
		width: 70%;
		margin-bottom: 20px;
	}
	.content07 .inner { width: 100%; }
	.content07 .title {
		font-size: 5.0vw;
		line-height: 1.6em;
		margin-bottom: 10px;
	}
	
	.content07 .btn_wrap {
		width: 100%;
		margin-top: 20px;
		gap: 15px 0;
	}
	.content07 .btn {
		width: 90%;
		height: 50px;
	}
	.content07 .tel_btn {
		font-size: 20px;
	}
	.content07 .contact_btn {
		font-size: 14px;
	}
	
}










