@charset "UTF-8";
/*---------------------------------
  basic
---------------------------------*/
html {
	font-size: 62.5%;
  /*scroll-behavior: smooth;*/
}

body {
	color: #414141;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: 1.6em;
  font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5 {
  font-family: 'Kosugi Maru', sans-serif;
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
	margin: 5px;
}

table {
  width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #fbe4ee;
}

::-moz-selection {
	background: #fbe4ee;
}

@media screen and (max-width: 896px) {	
	body {
		font-size: 1.4em;
		min-width: 300px;
	}
}

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*---------------------------------
  link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #414141;
	text-decoration: none;
}

/* icon forward */
.hvr-icon-forward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.1s;
}

.hvr-icon-forward:before {
	content: "\f105";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before,
.hvr-icon-forward:focus:before,
.hvr-icon-forward:active:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.hvr-icon-forward:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* icon back */
.hvr-icon-back {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-icon-back:before {
	content: "\f104";
	position: absolute;
	left: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before,
.hvr-icon-back:focus:before,
.hvr-icon-back:active:before {
	-webkit-transform: translateX(-4px);
	transform: translateX(-4px);
}

/* zoom img */
.zoom_img img {
	width: 100%;
	display: block;
	transition: 0.3s;
}

.zoom_img img:hover {
	transform: scale(1.1);
	transition: 0.3s;
}

/*---------------------------------
  hidden
---------------------------------*/
@media screen and (min-width: 896px) {
	.pc_hidden {
		display: none;
	}
}

@media screen and (max-width: 896px) {
	.tab_hidden {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.sp_hidden {
		display: none;
	}
}

/*---------------------------------
  common
---------------------------------*/
.wrapper {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 10px;
}

.content_wrap {
  padding: 4em 0;
}

.title_wrap {
  color: #35b7ed;
  font-size: 2.4rem;
  background-color: #e1f4fc;
  background-image: url("images/top/bg_rainbow.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
  margin-bottom: 2em;
  padding: 3em 0;
  z-index: -10;
}

.text_box p:nth-child(n+2) {
  padding-top: 1em;
}

.title {
  position: relative;
  padding-left: 3em;
}

.title:before,
.title:after {
  content: "";
  position: absolute;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.title:before {
  background: #54c2f0;
  left: 0;
}

.title:after {
  background: #fcd25b;
  left: 10px;
}

.title h3 {
  color: #eb6ea5;
  font-size: 2.8rem;
  line-height: 1.8em;
  margin-bottom: 2em;
}

.title h3:before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ea6da4;
  display: block;
}

.subtitle {
  color: #eb6ea5;
  font-size: 2.4rem;
  line-height: 1.8em;
  margin: 3em 0 2em 0;
  text-indent: -1em;
  padding-left: 1em;
}

.subtitle:before {
  content: "●";
}

.content_wrap .title:nth-of-type(n+2) {
  margin-top: 5em;
}

@media print, screen and (max-width: 896px) {
  .content_wrap {
    padding: 3em 0;
  }
  
  .title_wrap {
    font-size: 1.6rem;
    text-align: center;
    background-position: bottom left;
    margin-bottom: 1em;
  }

  .title h3 {
    font-size: 2.1rem;
  }
  
  .title:before,
  .title:after,
  .title h3:before {
    top: 15px;
  }
  
  .subtitle {
    font-size: 1.8rem;
  }
}

@media print, screen and (max-width: 480px) {
  .content_wrap {
    padding: 2em 0;
  }
  
  .title_wrap {
    font-size: 1.4rem;
    text-align: center;
    background-position: bottom left;
    margin-bottom: 1em;
  }

  .title h3 {
    font-size: 1.8rem;
  }
  
  .title:before,
  .title:after,
  .title h3:before {
    top: 10px;
  }
  
  .subtitle {
    font-size: 1.6rem;
  }
}

/*---------------------------------
  header
---------------------------------*/
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 1em 1em 1em 2em;
}

/*
header h1 {
  width: 330px;
}
*/

header h1 a {
  display: inline-block;
}

header h1 img {
  width: auto;
  height: 60px;
  margin-right: 1em;
}

header h1:hover {
  opacity: 0.8;
  transition: 0.3s;
}

header ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-weight: 500;
}

header ul li {
  margin: 0 1em;
}

/*
header ul li:first-child a {
  color: #fff;
  font-size: 1.4rem;
  border-radius: 2em;
  background: #35b7ed;
  padding: 0.3em 1.5em;
  display: block;
}

header ul li:first-child a:hover {
  background: #16acea;
  transition: 0.3s;
}
*/

header ul li:first-child {
  font-size: 2.4rem;
}

header ul li:first-child:before {
  width: 30px;
  height: 30px;
  line-height: 30px;
	content: "\f095";
  color: #fff;
	font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background: #35b7ed;
  display: inline-block;
  vertical-align: bottom;
  transform: scale(-1, 1);
  margin-right: 10px;
}

header ul li:first-child span {
  font-size: 2.1rem;
}

header ul li:nth-of-type(n+2) {
  font-size: 3rem;
  margin: 0 0.3em;
}

header ul li:nth-of-type(n+2) a {
  color: #999999;
}

header ul li:nth-of-type(2) a:hover,
header ul li:nth-of-type(3) a:hover {
  color: #333;
  transition: 0.3s;
}

header ul li:last-child a:hover {
  color: #08bf5b;
  transition: 0.3s;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5em;
}

header nav li a {
  font-weight: 600;
  margin-left: 2em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0.5em 0;
  margin: 0.5em 1em;
}

header nav li:not(:last-child) a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #54c2f0;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

header nav li:not(:last-child) a:hover:before,
header nav li:not(:last-child) a:focus:before,
header nav li:not(:last-child) a:active:before {
  right: 0;
}

.h_contact_mail a {
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 500;
  border-radius: 28px;
  background: #ea6da4;
  display: block;
  padding: 0 1.5em;
}

.h_contact_mail a:hover {
  background: #e85e9b;
  transition: 0.3s;
}

.h_contact_mail a i {
  font-size: 2.1rem !important;
}

@media print, screen and (max-width: 1325px) {
  header {
    padding: 2em 4%;
    /*padding-left: 1em;*/
  }

/*
  header h1 {
    width: 300px;
  }
*/

  header h1 img {
    height: 45px;
  }
  
  .header_content {
    display: none;
  }
}

@media print, screen and (max-width: 480px) {
/*
  header h1 {
    width: 210px;
  }
*/
  
  header h1 img {
    height: 30px;
  }
}

@media screen and (min-width: 1326px) {
	.burger_area {
		display: none;
	}
}

/*---------------------------------
  burger menu
---------------------------------*/
.burger_area {
	position: absolute;
	top: 10px;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  z-index: 20;
  position: relative;
  width: 30px;
  height: 60px;
	display: block;
  cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #35b7ed;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  top: 22px;
}

.btn_burger a p {
  color: #93d8f5;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
  background: rgba(53,183,237,0.9);
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 10px;
}

.burger_menu li a {
  color: #fff !important;
}

@media print, screen and (max-width: 480px) {
  .burger_area {
    top: 0px;
  }
  
  .btn_burger a {
    height: 53px;
  }
}

/*---------------------------------
  inidex
---------------------------------*/
/* index common */
.index_wrap h3 {
  color: #ea6da4;
  font-size: 4.2rem;
  text-align: center;
  margin-bottom: 3em;
  position: relative;
}

.index_wrap h3 span {
  color: #ea6da4;
  font-size: 1.6rem;
  margin-bottom: 2em;
  display: block;
}

.index_wrap h3:before {
  content: "";
  position: absolute;
  bottom: -50px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ea6da4;
  border-radius: 2px;
}

@media print, screen and (max-width: 896px) {
  .index_wrap h3 {
    font-size: 2.8rem;
  }
  
  .index_wrap h3 span {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
  
  .index_wrap h3:before {
    bottom: -40px;
  }
}

@media print, screen and (max-width: 896px) {
  .index_wrap h3 {
    font-size: 2.4rem;
  }
  
  .index_wrap h3 span {
    font-size: 1.2rem;
  }
  
  .index_wrap h3:before {
    bottom: -30px;
  }
}

/* hero */
.hero_wrap {
  height: 700px;
  background: url("images/top/hero.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 5% 0 0 8%; 
}

.hero_content h2 {
  color: #ea6da4;
  font-size: 4.2rem;
  line-height: 1.8em;
  letter-spacing: 0.2em;
  text-shadow:  2px  2px 10px #fff,
  -2px  2px 10px #fff,
  2px -2px 10px #fff,
  -2px -2px 10px #fff;
}

@media print, screen and (max-width: 896px) {
  .hero_wrap {
    height: 500px;
    padding: 8% 0 0 5%;
  }
  
  .hero_content h2 {
    font-size: 2.6rem;
  }
}

@media print, screen and (max-width: 480px) {
  .hero_content h2 {
    font-size: 2.1rem;
  }
}

/* concept */
.concept_wrap {
  background-color: #e1f4fc;
  background-image: url("images/top/bg_rainbow.png");
  background-repeat: no-repeat;
  background-position: 80%;
  background-size: contain;
  position: relative;
  margin-bottom: 3em;
  padding: 5em 0;
  z-index: -10;
}

.bg_concept_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  top: 0;
}

.bg_concept_wrap div {
  width: 14%;
}

.concept_content {
  color: #35b7ed;
  text-align: center;
  font-weight: 600;
}

.concept_content > p:first-child {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  border-top: solid 1px #54c2f0;
  border-bottom: solid 1px #54c2f0;
  margin-bottom: 3em;
  padding: 0.5em 1em;
  display: inline-block;
}

.concept_content h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5em;
}

.concept_content .text_box {
  line-height: 2.5em;
}

@media print, screen and (max-width: 896px) {
  .concept_wrap {
    background-size: cover;
  }
  
  .bg_concept_wrap div {
    width: 20%;
  }

  .concept_content > p:first-child {
    font-size: 1.6rem;
  }
  
  .concept_content h2 {
    font-size: 2.4rem;
  }
  
  .concept_content .text_box {
    text-align: left;
  }
  
  .concept_content .text_box br {
    display: none;
  }
}

@media print, screen and (max-width: 480px) {
  .concept_content > p:first-child {
    font-size: 1.4rem;
  }
  
  .concept_content h2 {
    font-size: 1.8rem;
  }
}

/* 訪問看護サービスとは */
.whats_wrap .wrapper {
  max-width: 950px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.whats_title {
  width: 30%;
  position: relative;
}

.whats_title:after {
  content: "";
  width: 90%;
  height: 2px;
  background: #eb6ea5;
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: -10;
}

.whats_title h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5em;
  border-radius: 50%;
  background: #eb6ea5;
  position: relative;
}

.whats_wrap p {
  width: 65%;
  line-height: 2.5em;
}

@media print, screen and (max-width: 896px) {
  .whats_wrap .wrapper {
    flex-direction: column;
  }
  
  .whats_title {
    width: 100%;
    margin-bottom: 80px;
  }
  
  .whats_title h3 {
    margin: 0 auto;
  }
  
  .whats_title:after {
    width: 2px;
    height: 100px;
    top: 100px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  
  .whats_wrap p {
    width: 80%;
  }
}

@media print, screen and (max-width: 480px) {
  .whats_title h3 {
    width: 130px;
    height: 130px;
    font-size: 1.6rem;
  }
  
  .whats_title:after {
    height: 80px;
  }
  
  .whats_wrap p {
    width: 90%;
  }
}

/* ポイント */
.point_wrap {
	background-color: #fffbf1;
	background-image:
	 radial-gradient(#fcd25b 1px, transparent 1px);
	background-size: 20px 20px;
  margin-top: 2em;
  padding: 7em 0;
}

.point_box {
  position: relative;
  margin-top: 6em;
  padding-top: 4em;
}

.point_box_img {
  width: 70%;
  border-radius: 20px;
}

.point_box_img img {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  z-index: 10;
}

.point_box:nth-child(odd) .point_box_img img {
  right: 2em;
}

.point_box:nth-child(even) .point_box_img img {
  left: 2em;
}

.point_box_1 .point_box_img {
  min-height: 400px;
  background: url("images/top/point_1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-left: 30%;
}

.point_box_1 h4 {
  color: #009fe8;
}

.point_box_2 .point_box_img {
  min-height: 400px;
  background: url("images/top/point_2.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 30%;
}

.point_box_2 h4 {
  color: #f7ba56;
}

.point_box_3 .point_box_img {
  min-height: 400px;
  background: url("images/top/point_3.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-left: 30%;
}

.point_box_3 h4 {
  color: #ea6da4;
}

.point_box_4 .point_box_img {
  min-height: 400px;
  background: url("images/top/point_4.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 30%;
}

.point_box_4 h4 {
  color: #3db270;
}

.point_box_5 .point_box_img {
  min-height: 400px;
  background: url("images/top/point_5.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-left: 30%;
}

.point_box_5 h4 {
  color: #ef834a;
}

.point_box_6 .point_box_img {
  min-height: 400px;
  background: url("images/top/point_6.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 30%;
}

.point_box_6 h4 {
  color: #8e79b5;
}

.point_box_content {
  width: 50%;
  min-height: 300px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);box-shadow: 0 1px 8px rgba(0,0,0,0.1);
  position: absolute;
  top: 0;
  padding: 3em 2em;
}

.point_box:nth-child(odd) .point_box_content {
  left: 0;
}

.point_box:nth-child(even) .point_box_content {
  right: 0;
}

.point_box_content h4 {
  font-size: 3.2rem;
  display: inline-block;
}

.point_box_content h4 span {
  font-size: 1.8rem;
  letter-spacing: normal;
  display: inline-block;
  margin-top: 1em;
}

.point_box_content p {
  margin-top: 2em;
}

@media print, screen and (max-width: 896px) {
  .point_wrap {
    margin-top: 1em;
    padding: 5em 0;
  }
  
  .point_box {
    margin-top: 3em;
    padding-top: 3em;
}
  .point_box_img img {
    width: 100px;
    height: 100px;
  }

  .point_box_img {
    width: 100%;
    min-height: 300px !important;
    border-radius: 20px 20px 0 0;
    margin-left: 0 !important;
  }
  
  .point_box_content {
    width: 100%;
    min-height: inherit;
    border-radius: 0 0 20px 20px;
    padding: 2em;
    position: relative;
  }
  
  .point_box_content h4 {
    font-size: 2.4rem;
  }
  
  .point_box_content h4 span {
    font-size: 1.6rem;
    line-height: 1.5em;
    display: block;
  }
  
  .point_box_content p {
    margin-top: 1em;
  }
}

@media print, screen and (max-width: 480px) {
  .point_box {
    padding-top: 2em;
  }
  
  .point_box_img img {
    width: 80px;
    height: 80px;
  }

  .point_box_img {
    width: 100%;
    min-height: 200px !important;
    border-radius: 20px 20px 0 0;
    margin-left: 0 !important;
  }
  
  .point_box_content h4 {
    font-size: 2.1rem;
  }
  
  .point_box_content h4 span {
    font-size: 1.4rem;
  }
}

/* 業務内容 */
.t_service_wrap {
  padding: 7em 0;
}

.t_service_wrap h3+p {
  text-align: center;
}

.t_service_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5em;
}

.t_service_wrap ul li {
  width: 48%;
}

.t_service_wrap ul li:nth-child(n+3) {
  margin-top: 2em;
}

.t_service_wrap ul li a {
  color: #fff;
  height: 70px;
  line-height: 70px;
  border-radius: 35px;
  background: #35b7ed;
  display: block;
  padding: 0 2em;
  position: relative;
}

.t_service_wrap ul li a:after {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
  font-size: 2.1rem;
  font-weight: 600;
  position: absolute;
  right: 1em;
  top: 0;
}

.t_service_wrap ul li a:hover {
  background: #25b1ec;
  transition: 0.3s;
}

.t_service_wrap ul li a:hover:after {
  right: 0.8em;
  transition: 0.3s;
}

.t_service_wrap ul li h4 {
  font-size: 1.8rem;
  font-weight: 500;
}

@media print, screen and (max-width: 896px) {
  .t_service_wrap ul {
    flex-direction: column;
  }
  
  .t_service_wrap ul li {
    width: 100%;
  }
  
  .t_service_wrap ul li:nth-child(n+2) {
    margin-top: 2em;
  }
  
  .t_service_wrap ul li a:after {
    font-size: 1.8rem;
  }
  
  .t_service_wrap ul li h4 {
    font-size: 1.6rem;
  }
}

@media print, screen and (max-width: 480px) {
  .t_service_wrap {
    padding: 5em 0;
  }
  
  .t_service_wrap ul {
    margin-top: 3em;
  }
  
  .t_service_wrap ul li h4 {
    font-size: 1.4rem;
  }
  
  .t_service_wrap ul li a {
    height: inherit;
    line-height: 1.8em;
    border-radius: 5em;
    padding: 1.5em 3em 1.5em 1.5em;
  }
  
  .t_service_wrap ul li a:after {
    top: 32%;
  }
}

/* 求人案内 */
.t_recruit_wrap {
  text-align: center;
  background-image: url("images/top/bg_recruit.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  padding: 8em 0;
  position: relative;
}

.t_recruit_wrap:before {
  content: "";
  background-color: rgba(247,186,86,.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.t_recruit_wrap h3 {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
  z-index: 10;
  position: relative;
}

.t_recruit_wrap h3 span {
  color: #fff;
}

.t_recruit_wrap h3:before {
  background: #fff;
}

.t_recruit_wrap p {
  color: #fff;
  font-weight: 600;
  line-height: 2.5em;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
  z-index: 10;
  position: relative;
}

.recruit_message {
  font-weight: 600;
  text-align: center;
}

.t_recruit_wrap a {
  max-width: 350px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 35px;
  background: #ea6da4;
  display: block;
  margin: 3em auto 0 auto;
  z-index: 10;
  position: relative;
}

.t_recruit_wrap a:after {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
  font-size: 2.1rem;
  font-weight: 600;
  position: absolute;
  right: 1em;
  top: 0;
}

.t_recruit_wrap a:hover {
  background: #e85e9b;
  transition: 0.3s;
}

.t_recruit_wrap a:hover:after {
  right: 0.8em;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .t_recruit_wrap {
    background-attachment: inherit;
    padding: 6em 0;
  }
  
  .t_recruit_wrap a {
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
  }
  
  .t_recruit_wrap a:after {
    font-size: 1.8rem;
  }
}

@media print, screen and (max-width: 896px) {
  .t_recruit_wrap a {
    width: 90%;
    font-size: 1.4rem;
  }
}

/* スタッフの声 */
.staffvoice_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.staffvoice_content:nth-of-type(n+2) {
  margin-top: 5em;
}

.staffvoice_img {
  width: 30%;
  max-width: 300px;
  margin: 0 auto;
}

.staffvoice_img div {
  box-shadow: 3px 1px 12px rgba(0,0,0,0.2);
  padding: 25px 15px 10px 15px;
  position: relative;
  transform: rotate(-5deg);
  margin: 2em 2em 2em 0;
}

.staffvoice_img div:first-child:before {
  content: "";
  width: 100px;
  height: 30px;
  background: rgba(53, 183, 237, 0.8);
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}

.staffvoice_box {
  width: 65%;
}

.staffvoice_box h4 {
  color: #fff;
  font-size: 21px;
  border-radius: 0.2em;
  background: #eb6ea5;
  padding: 1em;
}

.staffvoice_box h5 {
  color: #54c2f0;
  font-size: 21px;
  margin: 2em 0 1em 0;
}

@media print, screen and (max-width: 896px) {
  .staffvoice_content {
    flex-direction: column;
  }
  
  .staffvoice_img {
    width: 250px;
    margin: 0 auto 2em auto;
  }
  
  .staffvoice_box {
    width: 100%;
  }
  
  .staffvoice_box h4 {
    font-size: 18px;
    padding: 0.5em 1em;
  }
  
  .staffvoice_box h5 {
    font-size: 16px;
  }
}

/* お問い合わせ */
.contactus_wrap {
  margin-top: 7em;
  margin-bottom: 5em;
}

.contactus_wrap .wrapper {
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 2em;
}

.contactus_wrap .wrapper:before {
  content: "";
  border: solid 10px #f5f5f5;
  border-radius: 20px;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 2em auto 0 auto;
  z-index: -10;
}

.contactus_wrap h3 {
  max-width: 500px;
  color: #fff;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 2.1rem;
  line-height: 2em;
  border-radius: 10px;
  background: #35b7ed;
  position: relative;
  margin: 0 auto 3em auto;
  padding: 0.7em;
}

.contactus_wrap h3:after {
	content: "";
	position: absolute;
	bottom: -10px;
  left: 50%;
	margin-left: -10px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #35b7ed transparent transparent transparent;
}

.contactus_wrap h3+p {
  line-height: 2.5em;
}

.contactus_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin: 3em 0;
}

.btn_phone,
.btn_mail a {
  min-width: 400px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  border-radius: 35px;
  display: block;
}

.btn_phone i,
.btn_mail a i {
  margin-right: 0.5em;
}

.btn_phone {
  font-size: 2.4rem;
  /*background: #35b7ed;*/
  color: #ea6da4;
  border: solid 3px #ea6da4;
  background: #fff;
}

.btn_phone a {
  color: #ea6da4 !important;
}

.btn_mail a {
  background: #ea6da4;
}

.btn_mail a:hover {
  background: #e85e9b;
  transition: 0.3s;
}

.btn_mail a i {
  font-size: 2.4rem !important;
  vertical-align: sub;
}

.btn_entry {
  width: 85%;
  margin: 0 auto 3em auto;
  display: block;
}

.contactus_guide {
  max-width: 550px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

.contactus_guide p:last-child {
  color: #35b7ed;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  border-top:  solid 2px #35b7ed;
  border-bottom:  solid 2px #35b7ed;
  padding: 1em 0.5em;
  display: inline-block;
}

@media print, screen and (max-width: 896px) {
  .contactus_wrap {
    margin-top: 6em;
    margin-bottom: 3em;
  }
  
  .contactus_wrap .wrapper:before {
    border: solid 8px #f5f5f5;
    width: 75%;
  }

  .contactus_wrap h3 {
    max-width: 300px;
    font-size: 1.8rem;
  }
  
  .contactus_content {
    flex-direction: column;
  }
  
  .btn_phone,
  .btn_mail a {
    min-width: inherit;
    width: 80% !important;
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
    margin: 0 auto;
  }
  
  .btn_phone {
    font-size: 2.1rem;
  }
  
  .btn_mail a {
    margin-top: 2em;
  }
  
  .btn_entry {
    width: 100%;
  }
  
  .contactus_guide {
    width: 100% !important;
    flex-direction: column;
  }
  
  .contactus_guide p:last-child {
    font-size: 1.8rem;
    margin-top: 1em;
    padding: 0.5em 1em;
  }
}

@media print, screen and (max-width: 480px) {
  .contactus_wrap .wrapper:before {
    border: solid 5px #f5f5f5;
  }
  
  .contactus_wrap h3 {
    max-width: 220px;
    font-size: 1.6rem;
  }
  
  .contactus_wrap h3+p {
    line-height: 1.8em;
  }
  
  .btn_phone,
  .btn_mail a {
    width: 90% !important;
  }
  
  .btn_phone {
    font-size: 1.8rem;
  }
  
  .btn_mail a {
    font-size: 1.4rem;
  }
  
  .btn_mail a i {
    font-size: 2.1rem !important;
  }
}

/* 当ステーションは */
.institution_wrap p {
  min-width: 70%;
  color: #ea6da4;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: solid 3px #ea6da4;
  border-radius: 10px;
  margin: 0 auto;
  padding: 1em 1.5em;
}

@media print, screen and (max-width: 896px) {
  .institution_wrap p {
    font-size: 1.4rem;
  }
}

/* 訪問地域 */
.area_wrap .wrapper {
  display: flex;
  justify-content: center;
}

.area_wrap p {
  min-width: 70%;
  color: #fff;
  text-align: center;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 10px;
  background: #35b7ed;
  display: inline-block;
  margin: 0 auto;
  padding: 1em 1.5em;
}

.area_wrap p span:last-child {
  font-size: 1.2rem;
  letter-spacing: normal;
  display: block;
}

@media print, screen and (max-width: 896px) {
  .area_wrap p {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: normal;
  }
  
  .area_wrap p span:first-child {
    display: block;
  }
}

/*---------------------------------
  会社案内
---------------------------------*/
/* ごあいさつ */
.greeting_content {
  color: #35b7ed;
  font-family: 'Kosugi Maru', sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 20px;
  background: #e1f4fc;
  padding: 3em;
}

.greeting_photo {
  width: 30%;
}

.greeting_photo ul {
  margin-top: 1em;
}

.greeting_photo ul li {
  font-size: 1.4rem;
  text-indent: -1.7em;
  padding-left: 1.7em;
}

.greeting_photo ul li:before {
  content: "\f111";
	font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  margin-right: 10px;
}

.greeting_content .text_box {
  width: 60%;
  font-weight: 600;
  line-height: 2.3em;
}

.greeting_content .text_box p a {
  color: #35b7ed;
  text-decoration: underline;
}

@media print, screen and (max-width: 896px) {
  .greeting_content {
    flex-direction: column;
  }
  
  .greeting_photo,
  .greeting_content .text_box {
    width: 100%;
  }
  
  .greeting_photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .greeting_photo img {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .greeting_content .text_box {
    margin-top: 3em;
  }
}

@media print, screen and (max-width: 480px) {
  .greeting_content {
    padding: 2em;
  }
  
  .greeting_photo img {
    max-width: 200px;
  }
}

/* 会社案内 */
.about_content dl {
  display: flex;
  flex-wrap: wrap;
}

.about_content dt,
.about_content dd {
  border-bottom: solid 1px #dfe1e5;
  padding: 2em 1em;
}

.about_content dt {
  width: 300px;
  font-weight: 600;
}

.about_content dd {
  width: calc(100% - 300px);
}

.about_content dd ul li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.about_content dd ul li:nth-child(n+2) {
  margin-top: 1em;
}

.about_content dd ul li:before {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
  color: #35b7ed;
  font-weight: 600;
  margin-right: 0.5em;
}

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

@media print, screen and (max-width: 896px) {
  .about_content dt {
    width: 100px;
  }
  
  .about_content dd {
    width: calc(100% - 100px);
  }
}

@media print, screen and (max-width: 480px) {
  .about_content dl {
    flex-direction: column;
    border-top: solid 1px #ccc;
  }
  
  .about_content dt,
  .about_content dd {
    width: 100%;
  }
  
  .about_content dt {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .about_content dd {
    padding-top: 0.5em;
  }
}

/*---------------------------------
  業務内容
---------------------------------*/
.service_content {
  margin-top: 4em;
}

.service_content h4 {
  width: 90%;
  color: #fff;
  font-size: 2.1rem;
  background: #54c2f0;
  position: relative;
  padding: 1em 1em 1em 2em;
}

.service_content h4:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #16aceb;
}

.service_content .text_box {
  border-radius: 0 20px 20px 20px;
  background: #fef7e0;
  margin-top: -2em;
  margin-left: 20px;
  padding: 5em 3em 3em 3em;
}

.service_content .text_box ul li {
  text-indent: -1.6em;
  padding-left: 1.6em;
}

.service_content .text_box ul li:nth-child(n+2) {
  margin-top: 1em;
}

.service_content .text_box ul li:before {
  content: "\f111";
	font-family: 'Font Awesome 5 Free';
  color: #eb6ea5;
  font-weight: 600;
  margin-right: 10px;
}

.service_example {
  margin-top: 2em;
}

.service_example p {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  background: #eb6ea5;
  padding: 0.5em 2em;
}

.service_example dl {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.1);
  background: #fff;
  padding: 1.5em 2em;
}

.service_example dl dt,
.service_example dl dd {
  padding: 0.5em 0;
}

.service_example dl dt {
  width: 200px;
  font-weight: 600;
  position: relative;
}

.service_example dl dt:after {
  content: "";
  width: 100px;
  height: 1px;
  background: #ccc;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 20px;
}

.service_example dl dd {
  width: calc(100% - 200px);
  padding-left: 2em;
}

.flow_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flow_img {
  width: 40%;
}

.flow_content .text_box {
  width: 50%;
}

@media print, screen and (max-width: 896px) {
  .service_content {
    margin-top: 3em;
  }
  
  .service_content h4 {
    font-size: 1.6rem;
    padding: 0.8em 1em 0.8em 1.5em;
  }
  
  .service_content h4:before {
    border-bottom: solid 10px transparent;
    border-right: solid 15px #16aceb;
  }
  
  .service_content .text_box {
    margin-left: 15px;
    padding: 4em 1.5em 2em 1.5em;
  }
  
  .service_example dl {
    flex-direction: column;
  }
  
  .service_example dl dt {
    width: 100%;
  }
  
  .service_example dl dt:after {
    display: none;
  }
  
  .service_example dl dd {
    width: 100%;
    padding-top: 0;
    padding-left: 0.8em;
  }

  .flow_content {
    flex-direction: column;
  }
  
  .flow_img {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 3em auto;
  }
  
  .flow_content .text_box {
    width: 100%;
  }
}

@media print, screen and (max-width: 480px) {
  .flow_img {
    width: 100%;
  }
}

/*---------------------------------
  料金表
---------------------------------*/
/* 月額料金 介護保険 */
.price_wrap .title_wrap .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.price_wrap .title_wrap p {
  font-size: 1.6rem;
  font-weight: 600;
  margin-left: 2em;
}

.nursing_one_wrap h4 {
  margin: 2em 0 1em 0;
}

.nursing_one_wrap p:last-of-type {
  font-weight: 600;
  margin-top: 2em;
}

.burden_table {
  width: 45% !important;
}

.burden_table tr td:nth-child(2) {
  text-align: center;
}

.onemonth_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.onemonth_content table {
  width: 45% !important;
  text-align: center;
}

/*
.nursing_one_wrap a {
  color: #fff;
  font-family: 'Kosugi Maru', sans-serif;
  border-radius: 2em;
  background: #ea6da4;
  display: inline-block;
  margin-top: 3em;
  padding: 0.8em 2.5em;
}

.nursing_one_wrap a:hover {
  background: #e85e9b;
  transition: 0.3s;
}
*/

.nursing_one_wrap .price_btn {
  margin-top: 2em;
}

.price_btn {
  color: #fff !important;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: clamp(14px, 1.5vw, 21px);
  border-radius: 2em;
  background: #ea6da4;
  display: inline-block;
  padding: 0.8em 2.5em;
}

.price_btn:hover {
  background: #e85e9b;
  transition: 0.3s;
}

.medical_basic_price {
  width: 100%;
}

@media print, screen and (max-width: 896px) {
  .price_wrap .title_wrap .wrapper {
    flex-direction: column;
  }
  
  .price_wrap .title_wrap p {
    font-size: 1.2rem;
    margin-left: 0;
    margin-top: 0.5em;
  }
  
  .burden_table {
    width: 100% !important;
  }
  
  .onemonth_content {
    display: block;
  }
  
  .onemonth_content table {
    width: 100% !important;
  }
  
  .onemonth_content table:last-child {
    margin-top: 2em;
  }
}

/* 料金表 */
.page_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5em;
}

.page_link li a {
  height: 60px;
  line-height: 60px;
  color: #35b7ed;
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 600;
  border: solid 1px #35b7ed;
  border-radius: 30px;
  padding: 0 2em;
  display: block;
  position: relative;
}

.page_link li a:after {
	content: "\f078";
	font-family: 'Font Awesome 5 Free';
  font-size: 1.8rem;
  font-weight: 600;
  position: absolute;
  right: 1em;
  top: 0;
}

.price_wrap .page_link li,
.recruit_wrap .page_link li {
  width: 48%;
}

.price_wrap .page_link li:nth-child(n+3) {
  margin-top: 2em;
}

.price_wrap .page_link li a:hover {
  color: #fff;
  background: #35b7ed;
  transition: 0.3s;
}

.price_wrap h4 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}

.price_wrap h4+p {
  margin-bottom: 2em;
}

.price_caution+h4 {
  margin-top: 4em;
}

.nursing_table table,
.medical_table table {
  min-width: 1100px;
}

.price_wrap table th,
.price_wrap table td {
  font-size: 1.4rem;
  font-weight: 500;
  border: solid 1px #ccc;
  padding: 0.5em;
}

.price_head {
  text-align: center;
  background: #e1f4fc;
}

.price_box th {
  text-align: left;
}

.price_box td:nth-child(n+2) {
  text-align: center;
}

.price_box td:last-child {
  max-width: 200px;
  text-align: left;
}

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

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

.nursing_table table+table th {
  background: #e1f4fc;
  border-top: none;
}

.price_caution {
  margin-top: 2em;
}

.price_caution p {
  font-size: 1.4rem;
}

.medical_table {
  text-align: center;  
}

.counseling_price a {
  max-width: 350px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 35px;
  background: #ea6da4;
  display: block;
  margin-top: 2em;
  z-index: 10;
  position: relative;
}

.counseling_price a:after {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
  font-size: 2.1rem;
  font-weight: 600;
  position: absolute;
  right: 1em;
  top: 0;
}

.counseling_price a:hover {
  background: #e85e9b;
  transition: 0.3s;
}

.counseling_price a:hover:after {
  right: 0.8em;
  transition: 0.3s;
}

@media print, screen and (max-width: 981px) {
  .price_wrap .page_link {
    flex-direction: column;
  }
  
  .price_wrap .page_link li {
    width: 100%;
  }
  
  .price_wrap .page_link li:nth-child(n+2) {
    margin-top: 2em;
  }
}

@media print, screen and (max-width: 896px) {
  .nursing_table table,
  .medical_table table {
    min-width: 800px;
  }
  
  .price_table {
    overflow-x: auto;
  }
  
  .price_wrap table th,
  .price_wrap table td {
    font-size: 1.2rem !important;
  }
  
  .price_wrap h4 {
    font-size: 1.6rem;
  }
  
  .price_caution+h4 {
    margin-top: 2em;
  }
  
  .counseling_price a {
    max-width: 300px;
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
  }
  
  .counseling_price a:after {
    font-size: 1.6rem;
  }
}

@media print, screen and (max-width: 480px) {
  .page_link {
    margin-bottom: 4em;
  }
  
  .price_wrap .page_link li {
    font-size: 1.2rem;
  }
  
  .price_wrap .page_link li a {
    padding: 0 1.5em;
  }
  
  .page_link li a:after {
    font-size: 1.2em;
  }
  
  .counseling_price a {
    max-width: inherit;
    width: 90%;
    height: 55px;
    line-height: 55px;
    font-size: 1.4rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .counseling_price a:after {
    font-size: 1.4rem;
  }
}

@media print, screen and (max-width: 896px) {
  .price_wrap th,
  .price_wrap td {
    font-size: 1.4rem !important;
    -webkit-text-size-adjust:100%;
  }
}

.scroll_text {
  color: #eb6ea5;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1em;
}

@media print, screen and (min-width: 1100px) {
  .scroll_text {
    display: none;
  }
}

/*---------------------------------
  求人案内
---------------------------------*/
.recruit_overview {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5em;
}

.recruit_overview > dt,
.recruit_overview > dd {
  border-bottom: solid 1px #dfe1e5;
  padding: 2em 1em;
}

.recruit_overview > dt {
  width: 300px;
  font-weight: 600;
}

.recruit_overview > dd {
  width: calc(100% - 300px);
}

.recruit_overview > dt i {
  color: #35b7ed;
  font-size: 2.1rem;
  vertical-align: middle;
  margin-right: 0.5em;
}

.recruit_overview > dd {
  width: calc(100% - 300px);
}

.recruit_list {
  margin: -0.5em 0;
}

.recruit_list li {
  color: #eb6ea5;
  font-weight: 600;
  border: solid 1px #eb6ea5;
  border-radius: 3px;
  display: inline-block;
  margin: 0.5em;
  padding: 0 0.5em;
}

.recruit_category {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.recruit_category div {
  width: 90px;
}

.recruit_category div p {
  color: #35b7ed;
  font-weight: 600;
  border: solid 1px #35b7ed;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
}

.recruit_category dl {
  width: calc(100% - 90px);
  padding-left: 2em;
}

.recruit_category dt {
  color: #35b7ed;
  font-weight: 600;
}

.recruit_category:nth-of-type(n+2) {
  border-top: solid 1px #dfe1e5;
  margin-top: 2em;
  padding-top: 2em;
}

.recruit_category:nth-of-type(n+2),
.recruit_category dt:nth-of-type(n+2) {
  margin-top: 1.5em;
}

.recruit_wrap .contactus_content {
  margin-bottom: 0;
}

@media print, screen and (max-width: 896px) {
  .recruit_overview {
    flex-direction: column;
    border-top: solid 1px #ccc;
  }
  
  .recruit_overview > dt,
  .recruit_overview > dd {
    width: 100%;
  }
  
  .recruit_overview > dt {
    border-bottom: none;
    padding-bottom: 0.5em;
  }
  
  .recruit_overview > dd {
    padding-top: 0.8em;
  }
  
  .recruit_category {
    flex-direction: column;
  }
  
  .recruit_category div {
    width: 100%;
    margin-bottom: 0.5em;
  }
  
  .recruit_category dl {
    width: 100%;
    padding-left: 0;
  }
}

/*---------------------------------
  お問い合わせ
---------------------------------*/
.mailform_phone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 600;
  margin-top: 2em;
}

.mailform_phone p {
  margin-right: 2em;
}

.mailform_phone > p:first-child {
  color: #fff;
  border-radius: 5px;
  background: #eb6ea5;
  position: relative;
  padding: 0.5em 2em;
  margin-right: 3em;
}

.mailform_phone > p:first-child:after {
	content: "";
	position: absolute;
	top: 50%;
  right: -8px;
	margin-top: -8px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent #eb6ea5;
}

.mailform_phone_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mailform_phone_content p span {
  display: block;
}

.mailform_phone_content p:last-child {
  color: #ea6da4;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  display: block;
}

.mailform_phone_content p:last-child i {
  font-size: 2.4rem;
  vertical-align: baseline;
  margin-right: 0.5em;
}

.mailform_phone_content p:last-child a {
  color: #ea6da4 !important;
}

@media print, screen and (max-width: 896px) {
  .mailform_phone_content {
    flex-direction: column;
  }
  
  .mailform_phone_content p {
    margin-right: 0;
  }
  
  .mailform_phone_content p:last-child {
    font-size: 2.4rem;
    margin-top: 0.3em;
  }
  
  .mailform_phone_content p:last-child i {
    font-size: 2.1rem;
  }
}

@media print, screen and (max-width: 480px) {
  .mailform_phone {
    flex-direction: column;
  }
  
  .mailform_phone > p:first-child {
    margin-right: 0;
    margin-bottom: 2em;
  }
  
  .mailform_phone p:first-child:after {
    top: inherit;
    bottom: -8px;
    right: 0;
    left: 0;
    margin-top: 0;
    border-width: 8px 8px 0 8px;
    border-color: #eb6ea5 transparent transparent transparent;
    margin: 0 auto;
  }
}

/*
.mailform {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-top: solid 1px #dfe1e5;
  margin-top: 4em;
	margin-bottom: 2.5em;
}

.mailform dt,
.mailform dd {
	border-bottom: 1px solid #dfe1e5;
	padding: 2em 1em;
}

.mailform dt {
	width: 30%;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.mailform dd {
	width: 70%;
}

.required,
.optional {
	width: 35px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 0.7em;
	font-weight: 600;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
}

.required {
	background: #eb6ea5;
}

.optional {
  color: #999;
  border: solid 1px #ccc;
}

.contact_category {
	display: flex;
	flex-wrap: wrap;
}

.contact_category label {
	width: 50%;
}

.contact_category label:nth-child(n+3) {
	margin-top: 15px;
}

.privacy > h5 {
	font-size: 1.2rem;
	margin: 15px 0 5px 0;
}

.privacy p,
.privacy li  {
	font-size: 1.2rem;
	line-height: 1.5em;
}

li.privacy > ul {
	margin-top: 10px;
}

li.privacy ul li {
  padding-left: 1em;
  text-indent: -1em;
	list-style: decimal inside;
}

.button:after {
  content: "\f055";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 1.8rem;
  position: absolute;
  right: 15px;
}

.button.active:after {
  content: "\f056";
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
}

.mailform+div {
	display: flex;
	justify-content: space-around;
}

@media print, screen and (max-width: 896px) {
  .mailform {
    flex-direction: column;
  }
  
	.mailform dt {
    border-bottom: none;
    padding-bottom: 0;
	}
	
	.mailform dd {
		padding-top: 1.5em;
	}
	
	.mailform dt,
	.mailform dd {
		width: 100%;
	}
	
	.required,
	.optional {
		height: 20px;
		line-height: 20px;
	}
}
*/

@media print, screen and (max-width: 480px) {
  .contact_category label {
    width: 100%;
  }
  
  .contact_category label:nth-child(n+2) {
    margin-top: 15px;
  }
  
  .mailform+div {
    flex-direction: column;
  }
}

/*---------------------------------
  form
---------------------------------*/
/*
button,
input,
select,
textarea {
	font-size: 100%;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
}

input,
select,
textarea {
	border: solid 1px #dfe1e5;
	border-radius: 5px;
	-webkit-appearance: none;
	box-sizing: border-box;
}

input,
select {
	padding: 5px 10px;
}

textarea {
	max-width: 100%;
	min-width: 70%;
	min-height: 150px;
	padding: 10px;
}

.input_wide,
.mf {
	width: 70% !important;
}

.input_middle {
	width: 30% !important;
}

.postcord,
input[type="submit"],
input[type="reset"]  {
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

input[type="submit"],
input[type="reset"]  {
	width: 30%;
	height: 60px;
	line-height: 60px;
	text-align: center;
  border-radius: 30px;
	padding: 0;
}

input[type="submit"] {
	background: #eb6ea5;
}

.postcord {
  color: #35b7ed;
  border: solid 1px #35b7ed;
  background: #fff;
}

input[type="reset"] {
	background: #dfe1e5;
}

.postcord:hover,
input[type="reset"]:hover,
.button:hover  {
	opacity: 0.8;
	transition: 0.3s;
}


input[type="submit"]:hover {
  background: #e85e9b;
  transition: 0.3;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-size: 1.4rem;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

.label_list label {
	position: relative;
	display: block;
	word-break: break-all;
}

.label_list label input[type="checkbox"] + span,
.label_list label input[type="radio"] + span {
	position: relative;
	padding-left: 35px;
}

label {
	cursor: pointer;
}

.checkbox {
	margin-top: 5px;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"] + span::before {
	border-color: #dfe1e5;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"]:checked + span::before {
	border-color: #414141;
}

.checkbox label input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.checkbox label input[type="checkbox"] + span::before, .checkbox label input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}

.checkbox label input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: transparent;
	width: 25px;
	height: 25px;
	border: 3px #dfe1e5 solid;
	border-radius: 5px;
}

.checkbox label input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 2px 8px;
	width: 10px;
	height: 15px;
}

.checkbox label input[type="checkbox"] + span::after {
	border: 4px solid #dfe1e5;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

.checkbox label input[type="checkbox"]:checked + span::after {
	border: 4px solid #eb6ea5;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

.radio .label_list:nth-of-type(1) label input[type="radio"] + span::before {
	border-color: #dfe1e5;
}

.radio label span,
.checkbox label span {
	display: inline-block;
}

.radio label input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio label input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 25px;
}

.radio label input[type="radio"] + span::before {
	width: 25px;
	height: 25px;
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	border: solid 2px #dfe1e5;
}

.radio label input[type="radio"] + span::before {
	border-width: 8px;
	background: #fff;
	border-color: #dfe1e5 !important;
}

.radio label input[type="radio"]:checked + span::before {
	border-width: 8px;
	border-color: #eb6ea5 !important;
}

.selectbox {
  width: 70%;
  position: relative;
}

.selectbox select {
  width: 100%;
}

.selectbox::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 40%;
  border-bottom: #414141 2px solid;
  border-right: #414141 2px solid;
  transform: rotate(45deg)translateY(-30%);
}

.accordion {
  width: 100%;
  margin-bottom: 20px !important;
}

.button {
  width: 100%;
  color: #35b7ed;
	font-weight: 600;
	border: solid 1px #35b7ed;
	border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  padding: 10px 15px;
}

.accordion_contents {
	border-left: solid 1px #dfe1e5;
	border-right: solid 1px #dfe1e5;
	border-bottom: solid 1px #dfe1e5;
	background: #fff;
	padding: 15px;
}

@media screen and (max-width: 896px) {
	input,
  select {
		font-size: 16px;
		padding: 10px;
	}
	
  .selectbox,
	.input_wide,
	.mf {
		width: 100% !important;
	}
	
	.input_middle {
		width: 50% !important;
	}
	
	textarea {
	  min-width: 100%;
		font-size: 16px;
	}
	
	input[type="submit"],
	input[type="reset"]  {
		width: 48%;
		font-size: 1.4rem;
	}
}

@media print, screen and (max-width: 480px) {
  input[type="submit"],
  input[type="reset"]  {
    width: 90%;
    margin: 1em auto 0 auto;
  }
}
*/

/*---------------------------------
  thanks
---------------------------------*/
.thanks p {
	padding: 10px 0;
}

.thanks p:nth-last-child(2)	{
	font-size: 2.4rem;
	font-weight: 600;
}

.thanks p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  transform: scale(-1, 1);
  display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

/*---------------------------------
  footer
---------------------------------*/
.sitemap_wrap {
  background: #35b7ed;
  margin-top: 5em;
  padding: 2em;
}

.sitemap_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 1.4rem;
}

.sitemap_wrap li:before {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
  color: #fff;
  font-weight: 600;
  margin-right: 0.5em;
}

.sitemap_wrap li a {
  color: #fff;
}

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

footer {
  color: #35b7ed;
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: #e1f4fc;
  padding: 0 0 4em 0;
}

.f_about_content {
  text-align: center;
  line-height: 2em;
}

.f_about_content img {
  max-width: 400px;
  margin-bottom: 3em;
}

/*
.f_about_content p:first-of-type {
  font-size: 2.4rem;
}
*/

.f_about_content dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.f_about_content dl:nth-of-type(n+2) {
  margin-top: 1em;
}

.f_about_content dl dt {
  width: 100%;
  font-size: clamp(16px, 3vw, 24px);
}

.f_about_content dl dd ul li {
  text-align: left;
}

.f_about_content p:first-of-type {
  max-width: 360px;
  border-top: solid 1px #35b7ed;
  border-bottom: solid 1px #35b7ed;
  margin: 0.8em auto 1em auto;
  padding: 0.3em 0;
  display: block;
}

.f_about_content a {
  color: #35b7ed !important;
}

@media print, screen and (max-width: 896px) {
  .sitemap_wrap ul {
    justify-content: flex-start;
  }
  
  .sitemap_wrap li {
    width: 33%;
  }
  
  .sitemap_wrap li:nth-child(n+4) {
    margin-top: 0.5em;
  }
  
  .f_about_content img {
    width: 300px;
  }

/*
  .f_about_content p:first-of-type {
    font-size: 2.1rem;
  }
*/
}

@media print, screen and (max-width: 480px) {
  .sitemap_wrap {
    margin-top: 3em;
  }
  
  .sitemap_wrap li {
    width: 48%;
    font-size: 1.2rem;
  }
  
  .sitemap_wrap li:nth-child(n+3) {
    margin-top: 0.5em;
  }
  
  footer {
    padding: 0 0 2em 0;
  }
  
  .f_about_content img {
    width: 200px;
  }

/*
  .f_about_content p:first-of-type {
    font-size: 1.6rem;
  }
*/
  
  .f_about_content p:nth-of-type(2),
  .f_about_content p:nth-of-type(3),
  .f_about_content p:nth-of-type(4) {
    font-size: 1.2rem;
  }
}

address {
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
  margin-top: 4em;
}

/*---------------------------------
  pagetop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 3.6rem;
	text-align: center;
	background: rgba(234,109,164,0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
  background: #e85e9b;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 40px;
		font-size: 2.8rem;
		right: 10px;
		bottom: 10px;
	}
}

/*---------------------------------
  index ボタン
---------------------------------*/
.index_btn_wrap {
  margin-bottom: 4em;
}

.index_btn_wrap ul {
  display: flex;
  flex-wrap: wrap;
}

.index_btn_wrap ul li {
  width: calc(100% / 2 - 2em);
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 1.8rem;
  margin: 0.5em 1em;
}

.index_btn_wrap ul li a {
  width: 100%;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 5em;
  background: #ef834a;
  display: block;
  position: relative;
}

.index_btn_wrap ul li a:after {
  content: "\f1c1";
  font-family: 'Font Awesome 5 Free';
  font-size: 2.1rem;
  position: absolute;
  right: 1em;
  top: 0;
}

.index_btn_wrap ul li a:hover {
  background: #eb6124;
  transition: 0.3s;
}

.index_btn_wrap ul li a:hover:after {
  right: 0.8em;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .index_btn_wrap ul li {
    width: 100%;
    font-size: 1.6rem;
  }
}

@media print, screen and (max-width: 480px) {
  .index_btn_wrap ul li {
    font-size: 1.4rem;
  }
  
  .index_btn_wrap ul li a {
    height: 60px;
    line-height: 60px;
  }
  
  .index_btn_wrap ul li a:after {
    font-size: 1.8rem;
  }
}