@charset "UTF-8";
/***********************************
* media query
***********************************/
/***********************************
0. reset css
***********************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
html {
  font-size: 20px;
  overflow-x: hidden;
}
body {
  line-height: 1.5;
  letter-spacing: 0;
  color: #444444;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}
b {
  font-size: 0.7rem;
}
@media (min-width: 780px) {
  b {
    font-size: 0.8rem;
  }
}
p {
  font-size: 0.7rem;
  font-weight: normal;
  letter-spacing: 0;
}
@media (min-width: 780px) {
  p {
    font-size: 0.8rem;
  }
}
.fs14 {
  font-size: 0.7rem;
}
@media (min-width: 780px) {
  .fs14 {
    font-size: 0.8rem;
  }
}
.fs16 {
  font-size: 0.8rem;
}
@media (min-width: 780px) {
  .fs16 {
    font-size: 0.9rem;
  }
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
input {
  outline: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  outline: none;
  color: #444444;
  text-decoration: none;
  cursor: pointer;
}
a.decorate {
  text-decoration: underline;
}
a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
img {
  max-width: 100%;
}
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
li {
  list-style: none;
}
button {
  outline: none;
  cursor: pointer;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="search"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.reset {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
.reset::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus,
.reset::focus,
input[type="button"]::focus,
input[type="search"]::focus {
  outline-offset: -2px;
}
/* textareaのフォントをinputに合わせる */
::-webkit-input-placeholder {
  font-family: "Verdana", sans-serif;
}
:-moz-placeholder {
  font-family: "Verdana", sans-serif;
}
.pc-only {
  display: none;
}
@media (min-width: 780px) {
  .pc-only {
    display: block;
  }
}
.sp-only {
  display: block;
}
@media (min-width: 780px) {
  .sp-only {
    display: none;
  }
}
.slick-dots li:only-child {
  display: none;
}
html {
  scroll-behavior: smooth;
}
/***********************************
 Common
***********************************/
#wrapper {
  margin-top: 0.5px;
}
header {
  position: fixed;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 4;
  border-bottom: 1px solid #dddddd;
}
@media (min-width: 780px) {
  header {
    height: 50px;
  }
}
@media (min-width: 1060px) {
  header {
    height: 70px;
  }
}
header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (min-width: 780px) {
  header .inner {
    max-width: 1100px !important;
  }
}
header .logo {
  width: 42%;
  max-width: 250px;
  padding: 8px 0 4px;
  float: left;
}
@media (min-width: 780px) {
  header .logo {
    width: 200px;
    padding-top: 12px;
  }
}
@media (min-width: 1060px) {
  header .logo {
    width: 240px;
    padding: 22px 0 0;
  }
}
header .menu {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 5px;
  float: right;
  margin: 9px 0 6px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1060px) {
  header .menu {
    margin: 15px 0;
  }
}
header .menu span {
  width: 21px;
  height: 2px;
  background: #f35691;
  display: inline-block;
  border-radius: 2px;
  position: relative;
  top: -6px;
  left: 5.3px;
}
header .menu span::before {
  content: "";
  width: 21px;
  height: 2px;
  background: #f35691;
  display: inline-block;
  border-radius: 2px;
  position: absolute;
  top: -6px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header .menu span::after {
  content: "";
  width: 21px;
  height: 2px;
  background: #f35691;
  display: inline-block;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header .menu.open span {
  background: transparent;
}
header .menu.open span::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0px;
}
header .menu.open span::after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 0;
}
.spNone {
  display: none;
}
.pcNone {
  display: block;
}
header .menu-pc {
  clear: both;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1060px) {
  header .menu-pc {
    font-size: 0.65rem;
  }
}
header .menu-pc ul {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .menu-pc ul li {
  width: 25%;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 1px #ddd solid;
}
header .menu-pc ul li:last-child {
  border-right: 1px #ddd solid;
}
header .menu-pc ul li a {
  display: block;
  padding: 26px 0.1em 0.1em;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 20px;
}
header .menu-pc ul li:nth-child(1) a {
  background-image: url(../../img/kindmedical/icon_home.svg);
}
header .menu-pc ul li:nth-child(2) a {
  background-image: url(../../img/kindmedical/icon_search.svg);
}
header .menu-pc ul li:nth-child(3) a {
  background-image: url(../../img/kindmedical/icon_regist.svg);
}
header .menu-pc ul li:last-child a {
  background-image: url(../../img/kindmedical/icon_travel.svg);
}
@media (min-width: 780px) {
  header .menu-pc ul {
    display: block;
  }
  header .menu-pc ul li {
    float: left;
    padding: 8px 10px;
    border-radius: 5px;
    text-align: left;
    width: initial;
    border: none;
  }
  header .menu-pc ul li:last-child {
    border: none;
  }
  header .menu-pc ul li a {
    display: block;
    padding: 0 0 0 22px;
    background-position: top left;
    background-size: auto 16px;
  }
}
@media (min-width: 1060px) {
  header .menu-pc ul li a {
    display: block;
    padding: 0;
    background: none !important;
  }
}
@media (min-width: 780px) {
  header .menu-pc {
    display: block;
    float: right;
    clear: none;
    padding: 8px 0;
    max-width: initial;
  }
  header .menu-pc ul li.current {
    background: none;
  }
}
@media (min-width: 1060px) {
  header .menu-pc ul li.current {
    background: #fff3f8;
  }
  .spNone {
    display: block;
  }
  .pcNone {
    display: none;
  }
  header .menu-pc {
    display: block;
    float: right;
    clear: none;
    padding: 15px 0;
    max-width: initial;
  }
}
header h1 {
  margin-bottom: 25px;
}
header h1::after {
  content: none;
}
ul.header-btn {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 0;
  margin-right: 15px;
}
ul.header-btn li {
  width: 32px;
  height: 32px;
  font-size: 0;
  margin-left: 8px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 93%;
}
ul.header-btn li.btn-search {
  background-image: url(../../img/kindmedical/btn_search.svg);
}
ul.header-btn li.btn-regist {
  background-image: url(../../img/kindmedical/btn_member.svg);
}
ul.header-btn li.btn-charge {
  background-image: url(../../img/kindmedical/btn_charge.svg);
}
ul.header-btn li a {
  display: block;
  width: 32px;
  height: 32px;
}
@media (min-width: 1060px) {
  ul.header-btn {
    padding: 10px 0;
    margin-right: 0;
  }
  ul.header-btn li {
    width: 50px;
    height: 40px;
    border-radius: 6px;
    background-size: auto 93%;
    margin-left: 8px;
  }
  ul.header-btn li a {
    display: block;
    width: 50px;
    height: 40px;
  }
}
.wrap-menu {
  background: #fff;
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  overflow-y: scroll;
  display: none;
  height: 100vh;
  height: 100dvh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 30px;
  z-index: 4;
  scrollbar-gutter: stable;
}
@media (min-width: 780px) {
  .wrap-menu {
    top: 50px;
  }
}
@media (min-width: 1060px) {
  .wrap-menu {
    top: 70px;
  }
}
.wrap-menu .section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.wrap-menu .menu-list .menu-btn {
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 0 10px;
  border-top: 1px solid #fce1eb;
  border-bottom: 1px solid #fce1eb;
}
.wrap-menu .menu-list .menu-btn .btn {
  display: inline-block;
  margin: 0 2.5px 10px;
}
.wrap-menu .menu-list .menu-btn .btn a {
  color: #fff;
  display: block;
  padding: 18px 70px 18px 20px;
  background: #f35691;
  border-radius: 10px;
  position: relative;
}
.wrap-menu .menu-list .menu-btn .btn a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 30%;
  right: 10px;
}
.wrap-menu .menu-list .inner-menu li {
  border-bottom: 1px solid #fce1eb;
}
.wrap-menu .menu-list .inner-menu li a {
  display: block;
  padding: 15px 42px 15px 18px;
  text-decoration: none;
  color: #f35691;
  font-size: 0.9rem;
  font-weight: bold;
  position: relative;
}
@media (min-width: 1060px) {
  .wrap-menu .menu-list .inner-menu li a {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.headTel {
  float: right;
  font-size: 0.6em;
  line-height: 1em;
  margin: 10px 10px 6px 0;
  position: relative;
  z-index: 2;
}
.headTel a {
  color: #fff;
  font-weight: 700;
  padding: 8px 8px 6px 30px;
  display: block;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url(../../img/kindmedical/freetel.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: left 7px center;
  background-color: #f35691;
}
@media (max-width: 340px) {
  .headTel {
    display: none;
  }
}
@media (min-width: 1060px) {
  .headTel {
    font-size: 0.8em;
    margin: 15px 15px 15px 0;
  }
  .headTel a {
    padding: 9px 10px 7px 38px;
    background-size: 24px auto;
    background-position: left 10px center;
  }
}
.wrap-menu .menu-list .inner-menu li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 30%;
  right: 18px;
}
footer .sns {
  font-size: 0.7rem;
  text-align: center;
  padding: 30px 0;
}
@media (min-width: 780px) {
  footer .sns {
    font-size: 0.9rem;
    padding: 40px 0;
  }
}
footer .sns li {
  display: inline-block;
  background: #fff3f8;
  border-radius: 25px;
  padding: 10px 15px;
  line-height: 1;
  margin-left: 18px;
  min-width: 85px;
}
@media (min-width: 1260px) {
  footer .sns li {
    padding: 15px 25px;
    min-width: 108px;
  }
}
footer .sns li:first-of-type {
  margin-left: 0;
}
footer .sns li a {
  color: #f35691;
  cursor: pointer;
}
footer .sns li a i {
  padding-right: 6px;
}
footer .foot-text {
  font-size: 0.5rem;
  padding-bottom: 15px;
  padding: 20px 10px 10px;
  color: #666;
}
@media (min-width: 1260px) {
  footer .foot-text {
    max-width: 1100px !important;
    font-size: 0.6rem;
    margin: 0 auto;
  }
}
footer .foot-menu {
  font-size: 0.6rem;
  text-align: center;
  padding-bottom: 15px;
  padding-top: 40px;
}
@media (min-width: 1260px) {
  footer .foot-menu {
    font-size: 0.7rem;
  }
}
footer .foot-menu li {
  display: inline-block;
  padding: 0 7px;
  border-left: 1px solid #dddddd;
  line-height: 1;
}
footer .foot-menu li:first-of-type {
  border-left: 0;
}
footer .copy {
  font-size: 0.6rem;
  text-align: center;
  padding-bottom: 40px;
}
h1 {
  font-size: 1rem;
  color: #444444;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 780px) {
  h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1260px) {
  h1 {
    margin-bottom: 60px;
  }
}
h1::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background: #f35691;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 4px;
}
@media (min-width: 780px) {
  h1::after {
    width: 78px;
    height: 6px;
  }
}
h1 small {
  font-size: 12px;
  color: #f35691;
  display: block;
  padding-bottom: 10px;
  font-weight: normal;
}
@media (min-width: 780px) {
  h1 small {
    font-size: 0.9rem;
  }
}
h1 small::before {
  content: "＼";
  position: relative;
  width: 1em;
  color: #f35691;
  right: 6px;
}
h1 small::after {
  content: "／";
  position: relative;
  width: 1em;
  color: #f35691;
  left: 6px;
}
.section.spacemin h1 {
  margin-bottom: 20px;
}
@media (min-width: 1260px) {
  .section.spacemin h1 {
    margin-bottom: 20px;
  }
}
h2 {
  font-size: 0.8rem;
  color: #f35691;
  text-align: center;
}
@media (min-width: 780px) {
  h2 {
    font-size: 1rem;
  }
}
h2::before {
  content: "＼";
  position: relative;
  width: 1em;
  color: #f35691;
  right: 6px;
}
h2::after {
  content: "／";
  position: relative;
  width: 1em;
  color: #f35691;
  left: 6px;
}
h2.unset {
  padding-bottom: 1.5rem;
}
h2.unset::before,
h2.unset::after {
  content: none;
}
h3 {
  font-size: 0.8rem;
}
@media (min-width: 780px) {
  h3 {
    font-size: 0.9rem;
  }
}
.color_p {
  color: #f35691;
}
.center {
  text-align: center;
}
.fas {
  color: #f35691;
  padding-right: 0.5em;
}
.btn_area.center {
  text-align: center;
}
.btn_area .btn {
  border: none;
  background: #f35691;
  border-radius: 24px;
  font-size: 0.8rem;
}
@media (min-width: 780px) {
  .btn_area .btn {
    border-radius: 27px;
    font-size: 1rem;
    padding: 0;
  }
}
.btn_area .btn a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 15px 60px 13px;
  position: relative;
}
@media (min-width: 780px) {
  .btn_area .btn a {
    padding: 15px;
    width: 270px;
  }
}
.btn_area .btn a.small {
  padding: 15px 40px 13px;
}
@media (min-width: 780px) {
  .btn_area .btn a.small {
    padding: 15px 10px 13px;
  }
}
.btn_area .btn a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 35%;
  right: 20px;
}
@media (min-width: 780px) {
  .btn_area .btn a::after {
    top: 31%;
  }
}
.btn_area .btn.small-x {
  border-radius: 22px;
  padding: 0;
  min-width: 154px;
}
.btn_area .btn.small-x a {
  padding: 15px 35px 13px;
}
@media (min-width: 780px) {
  .btn_area .btn.small-x a {
    padding: 15px 5px 13px;
  }
}
.btn_area .btn.small-x a::after {
  right: 15px;
}
.btn_area .btn.learge {
  width: 100%;
  max-width: 315px;
}
@media (min-width: 780px) {
  .btn_area .btn.learge {
    /*max-width: 280px;*/
  }
}
.btn_area .btn.bg_wh {
  background: #fff;
}
.btn_area .btn.bg_wh a {
  color: #f35691;
}
.btn_area .btn.bg_wh a::after {
  color: #f35691;
}
@media (min-width: 780px) {
  .btn_area .btn + .btn {
    margin-left: 12px;
  }
}
.banner-area {
  padding: 20px 0 0px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -20px;
}
.banner-area a {
  display: inline-block;
  width: calc(40% - 20px);
  margin-bottom: 10px;
  max-width: 360px;
  margin-left: 20px;
}
.banner-area a:last-child {
  display: none;
}
.wrap-menu .banner-area a:last-child {
  display: inline-block;
}
@media (min-width: 780px) {
  .banner-area a:last-child {
    display: block;
  }
}
.wrap-menu .banner-area a:last-child {
  margin-bottom: 40px;
}
@media (max-width: 1230px) {
  .banner-area a {
    width: calc(50% - 20px);
    margin-bottom: 15px;
  }
}
@media (max-width: 780px) {
  .banner-area {
    display: block;
    margin-left: 0;
  }
  .banner-area a {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 15px;
  }
}
.wrapper {
  margin: 0 auto;
  padding-top: 80px;
  overflow: hidden;
}
@media (min-width: 780px) {
  .wrapper {
    padding-top: 70px;
  }
}
@media (min-width: 1260px) {
  .wrapper.has-side {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (min-width: 1260px) {
  .wrapper.has-side .inner {
    padding: 0;
  }
}
@media (min-width: 1260px) {
  .wrapper.has-side .search-block {
    padding-left: 60px;
    width: 300px;
  }
}
@media (min-width: 1260px) {
  .wrapper.has-side .search-block .search-content {
    padding: 17px 11px 25px;
    border: 1px solid #dddddd;
    border-radius: 0 0 10px 10px;
  }
}
@media (min-width: 1260px) {
  .wrapper.has-side .search-block .search-content.bg_p {
    background: #fff;
  }
}
@media (min-width: 1260px) {
  .wrapper.has-side .search-block .search-content .check-block label {
    font-size: 0.75rem;
  }
}
.wrapper.has-side .search-block .search-content .check-block .search-field {
  border: 1px solid #dddddd;
}
@media (min-width: 1260px) {
  .wrapper.has-side .search-block .search-content .check-block .search-ttl {
    padding: 6px 0 6px;
    margin-bottom: 13px;
  }
}
.wrapper.has-side .bd-b {
  padding-top: 0;
}
@media (min-width: 1260px) {
  .wrapper.has-side .bd-b {
    border-bottom: 0;
  }
}
.inner {
  padding: 0 18px;
  max-width: 750px;
  margin: 0 auto;
}
@media (min-width: 1260px) {
  .inner {
    max-width: 900px;
    padding: 0;
  }
}
@media (min-width: 1260px) {
  .wrap-main {
    width: calc(100% - 360px);
    float: left;
  }
}
@media (min-width: 1260px) {
  .wrap-main .wrap-search {
    display: none;
  }
}
@media (min-width: 1260px) {
  .wrap-side {
    width: 360px;
    float: right;
  }
}
.slick-list .slick-slide {
  padding: 0;
}
.slick-list .slick-slide a {
  display: block;
}
.slick-list .slick-slide img {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
@media (min-width: 1260px) {
  .slick-list .slick-slide img {
    max-width: none;
  }
}
.recruiting .img img {
  margin: 0 auto;
  width: 100%;
  border-radius: 10px;
  height: 125px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 640px) {
  .recruiting .img img {
    max-width: none;
    height: 159px;
  }
}
/*
@media (min-width: 1260px) {
  .recruiting .img img {
    max-width: none;
    max-height: 159px;
  }
}
*/
.slick-slider-top {
  padding-top: 100px;
  position: relative;
}
.slideText {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.slideText img {
  width: 100%;
  height: auto;
}
.slick-slider-top .slick-active.slick-item span {
  overflow: hidden;
  display: block;
}
@media (min-width: 780px) {
  .slick-slider-top {
    padding-top: 50px;
  }
}
@media (min-width: 1060px) {
  .slick-slider-top {
    padding-top: 70px;
  }
  .slick-area:has(.slick-slider-top) {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .slideText {
    top: 70px;
  }
  .slick-slider-top .slick-prev,
  .slick-slider-top .slick-next {
    position: relative;
    width: 1280px;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    padding: 0 calc((100% - 1100px) / 2);
    z-index: 3;
  }
  .slick-slider-top .slick-prev:hover,
  .slick-slider-top .slick-next:hover {
    opacity: 0.6;
    cursor: pointer;
  }
  .slick-slider-top .slick-prev::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "";
    color: #f35691;
    padding-left: 12px;
    font-size: 1.5rem;
    position: absolute;
    z-index: 3;
    top: 160px;
    padding: 0;
    margin-left: -15px;
  }
  .slick-slider-top .slick-next {
    text-align: right;
  }
  .slick-slider-top .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "";
    color: #f35691;
    padding-left: 12px;
    font-size: 1.5rem;
    position: absolute;
    z-index: 3;
    top: -232px;
    padding: 0;
    margin-left: -15px;
  }
}
.slick-slider-top .slick-list .slick-slide:not(.slick-current) {
  position: relative;
}
.slick-slider-top .slick-list .slick-slide:not(.slick-current)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 243, 248, 0.5);
}
.slick-slider-new,
.slick-slider-feature {
  margin-left: 8px;
}
@media (min-width: 780px) {
  .slick-slider-new,
  .slick-slider-feature {
    max-width: 1280px;
    margin: 0 auto;
  }
}
.slick-slider-new .slick-list,
.slick-slider-feature .slick-list {
  padding: 0 40% 0 0;
}
@media (min-width: 780px) {
  .slick-slider-new .slick-list,
  .slick-slider-feature .slick-list {
    padding: 0 4% 0 0;
  }
}
.slick-slider-new .slick-list .slick-slide,
.slick-slider-feature .slick-list .slick-slide {
  padding: 0 0.5rem;
}
@media (min-width: 780px) {
  .slick-slider-new .slick-list .slick-slide,
  .slick-slider-feature .slick-list .slick-slide {
    padding: 0 15px;
  }
}
.slick-slider-new .slick-dots,
.slick-slider-feature .slick-dots {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 1260px) {
  .slick-slider-new .slick-dots,
  .slick-slider-feature .slick-dots {
    padding-top: 25px;
    padding-bottom: 40px;
  }
}
.slick-slider-new .slick-prev,
.slick-slider-feature .slick-prev {
  display: none;
  opacity: 0;
}
.slick-slider-new .slick-next,
.slick-slider-feature .slick-next {
  position: absolute;
  right: 8px;
  top: 37%;
  border: 0;
  background: transparent;
  font-size: 0;
}
.slick-slider-new .slick-next::before,
.slick-slider-feature .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  padding-left: 12px;
  font-size: 20px;
  position: absolute;
  right: 0px;
}
@media (min-width: 1260px) {
  .slick-slider-new .slick-next::before,
  .slick-slider-feature .slick-next::before {
    font-size: 24px;
    right: 5px;
    top: 7px;
  }
}
.slick-dots {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0;
  top: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  width: 100%;
  padding-top: 10px;
}
@media (min-width: 780px) {
  .slick-dots {
    padding-top: 20px;
  }
}
@media (min-width: 1260px) {
  .slick-dots {
    padding-top: 30px;
  }
}
.slick-dots button {
  display: none;
}
.slick-dots li {
  float: left;
  list-style: none;
  background: #fce1eb;
  border-radius: 100%;
  font-size: 0;
  width: 9px;
  height: 9px;
  cursor: pointer;
  display: block;
  margin: 0 5px;
}
@media (min-width: 1260px) {
  .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 7.5px;
  }
}
.slick-dots li.slick-active {
  background: #f35691;
}
.slick-area {
  position: relative;
}
.notion {
  position: absolute;
  width: 13%;
  right: 10px;
  bottom: -70px;
  z-index: 1;
  -webkit-animation: Floating 2.5s infinite ease-in-out alternate;
  animation: Floating 2.5s infinite ease-in-out alternate;
}
@media (min-width: 1060px) {
  .notion {
    width: 13%;
    right: 20px;
    bottom: -80px;
  }
}
.notion a {
  display: block;
}
.notion a:hover {
  opacity: 1;
}
.bg_p {
  background: #fff3f8;
}
.bg_b {
  background: #d8f4ff;
}
.bg_p.pad {
  padding: 24px 11px;
}
.bg_y {
  background: #fcffef;
}
body:has(.wrapper) section.plusBg .helperCornerTitleim {
  margin-bottom: 20px;
}
.backBtn {
  text-align: center;
  font-size: 13px;
  margin: 15px 0 0;
}
.backBtn a {
  font-weight: 700;
  position: relative;
  color: #f35691;
  display: inline-block;
  border: 2px #f35691 solid;
  padding: 0.8em;
  width: 18em;
  max-width: 80%;
  border-radius: 40px;
}
.backBtn a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 2px;
  font-size: 1em;
  display: inline-block;
  margin: auto 0.5em auto 0;
  background-color: #f35691;
  border-radius: 50%;
  text-align: center;
  width: 1.3em;
  height: 1.3em;
  line-height: 1.3em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 780px) {
  .backBtn {
    font-size: 15px;
    margin: 20px 0 0;
  }
}
.searchBtn {
  text-align: center;
  font-size: 18px;
  margin: 10px 0 20px;
}
.searchBtn a {
  font-weight: 700;
  position: relative;
  color: #f35691;
  display: inline-block;
  border: 2px #f35691 solid;
  padding: 0.8em;
  width: 18em;
  max-width: 80%;
  border-radius: 40px;
}
.searchBtn a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 2px;
  font-size: 1em;
  display: inline-block;
  margin: auto 0.5em auto 0;
  background-color: #f35691;
  border-radius: 50%;
  text-align: center;
  width: 1.3em;
  height: 1.3em;
  line-height: 1.3em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 1260px) {
  .bg_y .inner {
    max-width: 1100px !important;
  }
}
@media (min-width: 780px) {
  .bg_y h2.deco {
    text-align: left;
    padding-left: 70px;
  }
}
@media (min-width: 1260px) {
  .bg_y h2.deco {
    padding-left: 200px;
    position: relative;
  }
}
.bg_wh {
  background: #fff;
}
@-webkit-keyframes Floating {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0, -5px) rotate(0deg);
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes Floating {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0, -5px) rotate(0deg);
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
}
.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section.plusBg {
  background-color: #fff3f8;
}
@media (min-width: 780px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1260px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section.bg_p {
  background: #fff3f8;
}
.section.bg_y {
  background: #fcffef;
  border-top: 1px solid #d3ef4d;
  border-bottom: 1px solid #d3ef4d;
}
@media (min-width: 780px) {
  .section.bg_y {
    border-top: 0;
    border-bottom: 0;
    margin: 4rem 0 0;
  }
  .section.plusBg + .section.bg_y {
    margin-top: 0;
  }
}
.section ul {
  padding-left: 1.5em;
}
.section ul li {
  list-style: unset;
}
.pt-none {
  padding-top: 0 !important;
}
.pb-none {
  padding-bottom: 0;
}
.pb-xs {
  padding-bottom: 10px;
}
.pb-s {
  padding-bottom: 20px;
}
.pb-m {
  padding-bottom: 30px;
}
.pb-l {
  padding-bottom: 40px;
}
.pb-xl {
  padding-bottom: 60px;
}
.pb-xxl {
  padding-bottom: 80px;
}
.mb-xs {
  margin-bottom: 10px;
}
.mb-s {
  margin-bottom: 20px;
}
@media (min-width: 780px) {
  .mb-s {
    margin-bottom: 40px;
  }
}
.mb-m {
  margin-bottom: 30px;
}
.mb-l {
  margin-bottom: 40px;
}
.tbl.mb-l {
  margin-bottom: 20px;
}
@media (min-width: 780px) {
  .mb-l {
    margin-bottom: 40px;
  }
}
.mb-xl {
  margin-bottom: 60px;
}
.mb-xxl {
  margin-bottom: 80px;
}
.pt-xs {
  padding-top: 10px;
}
.pt-s {
  padding-top: 20px;
}
.pt-m {
  padding-top: 30px;
}
.pt-l {
  padding-top: 40px;
}
.pt-xl {
  padding-top: 60px;
}
.pt-xxl {
  padding-top: 80px;
}
.mt-xs {
  margin-top: 10px;
}
.mt-s {
  margin-top: 20px;
}
.mt-m {
  margin-top: 30px;
}
.mt-l {
  margin-top: 40px;
}
.mt-xl {
  margin-top: 60px;
}
.mt-xxl {
  margin-top: 80px;
}
.bd-b {
  border-bottom: 1px solid #dddddd;
}
.has-side .wrap_breadcrumb.inner {
  padding-top: 1rem;
}
.wrap_breadcrumb {
  padding-top: 1rem;
}
.wrap_breadcrumb.inner {
  padding-top: 1rem;
}
@media (min-width: 1260px) {
  .wrap_breadcrumb.inner {
    max-width: 1000px;
  }
}
.wrap_breadcrumb #breadcrumb {
  overflow: hidden;
}
.wrap_breadcrumb ul li {
  font-size: 0.7rem;
  float: left;
  list-style: none;
}
.wrap_breadcrumb ul li::after {
  content: "";
  background-image: url(../../img/kindmedical/arrow_bread.png);
  width: 7px;
  height: 9px;
  background-size: 100%;
  display: inline-block;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  vertical-align: top;
  margin-top: 6px;
}
.wrap_breadcrumb ul li:last-of-type span {
  color: #b7b7b7;
}
.wrap_breadcrumb ul li:last-of-type::after {
  display: none;
}
label input[type="checkbox"] + span.occupation {
  margin-right: 10px;
}
@media (min-width: 780px) {
  label input[type="checkbox"] + span.occupation {
    margin-right: 20px;
  }
}
label.label-radio {
  position: relative;
  margin-right: 10px;
}
@media (min-width: 780px) {
  label.label-radio {
    margin-right: 20px;
  }
}
label input[type="radio"] {
  display: none;
}
label input[type="radio"] + span {
  padding-left: 1.3rem;
}
label input[type="radio"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dddddd;
}
@media (min-width: 780px) {
  label input[type="radio"] + span::before {
    width: 18px;
    height: 18px;
  }
}
label input[type="radio"] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 7px;
  height: 7px;
  background: #dddddd;
  border-radius: 50%;
}
@media (min-width: 780px) {
  label input[type="radio"] + span::after {
    width: 10px;
    height: 10px;
  }
}
label input[type="radio"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 7px;
  height: 7px;
  background: #f35691;
  border-radius: 50%;
}
@media (min-width: 780px) {
  label input[type="radio"]:checked + span::after {
    width: 10px;
    height: 10px;
  }
}
.wrap-select {
  position: relative;
  overflow: hidden;
}
.wrap-select::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 0%;
  right: 0;
  border-left: 1px solid #dddddd;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  pointer-events: none;
}
@media (min-width: 1260px) {
  .wrap-select::after {
    padding-top: 13px;
  }
}
.wrap-select select {
  width: 100%;
  outline: none;
  -o-text-overflow: "";
  text-overflow: "";
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.7rem;
  padding: 11px 16px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  background: #fff;
}
.wrap-select select::-ms-expand {
  display: none;
}
.wrap-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}
/*Safari 修正*/
_::-webkit-full-page-media,
_:future,
:root .wrap-select select {
  margin: 0;
}
/*End Safari 修正*/
.wrap-submit {
  width: 179px;
  position: relative;
}
.wrap-submit input[type="submit"],
.wrap-submit input[type="reset"] {
  background: #f35691;
  border-radius: 24px;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 15px 0px 15px 0px;
  margin: 0 auto;
  display: block;
  min-width: 179px;
  font-size: 0.7rem;
}
.wrap-submit .reset {
  background: #f35691;
  border-radius: 24px;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 15px 0px 13px 0px;
  margin: 0 auto;
  display: block;
  min-width: 179px;
  font-size: 0.7rem;
}
.wrap-submit::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 9px;
  right: 20px;
}
.wrap-submit.center {
  margin: 0 auto;
}
.wrap-horizon {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 780px) {
  .wrap-submit::after {
    top: 9px;
  }
}
.wrap-horizon .wrap-submit.wh::after {
  color: #f35691;
}
.wrap-horizon .wrap-submit::after {
  font-size: 0.8em;
}
.wrap-horizon .wrap-submit {
  margin: 0 5px 10px;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 10em;
  max-width: 100%;
  width: inherit;
}
.wrap-horizon .wrap-submit .search-submit {
  min-width: inherit;
  font-size: 0.6rem;
  margin: 0;
  padding-left: 20px;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
.wrap-horizon .wrap-submit::after {
  right: 20px;
  top: 10px;
}
@media (min-width: 780px) {
  .wrap-horizon .wrap-submit::after {
    top: 12px;
  }
}
.wrap-horizon .wrap-submit.stoped {
  max-width: 16em;
  background-color: #fff;
  color: #f35691;
  padding: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  overflow: inherit !important;
}
.wrap-horizon .wrap-submit.stoped::before {
  border-top: 6px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
  top: -6px;
  content: "";
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  width: 0;
}
.wrap-horizon .wrap-submit.stoped p {
  font-size: 0.7rem;
}
.wrap-horizon .wrap-submit.stoped::after {
  content: none;
}
@media (min-width: 780px) {
  .wrap-horizon .wrap-submit .search-submit {
    font-size: 0.8rem;
  }
}
.wrap-horizon .wrap-submit .search-submit.bg_wh {
  background: #fff;
  color: #f35691;
}
@media (min-width: 1260px) {
  .wrap-article {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.wrap-article a {
  display: block;
}
.wrap-article a.pc-only {
  display: none;
}
@media (min-width: 1260px) {
  .wrap-article a {
    float: left;
  }
  .wrap-article a:nth-child(2n) {
    margin-left: 20px;
  }
  .wrap-article a.pc-only {
    display: block;
  }
}
.wrap-article .article {
  overflow: hidden;
  background: #fff3f8;
  padding: 10px 40px 10px 10px;
  margin-bottom: 1rem;
  border-radius: 10px;
}
@media (min-width: 1260px) {
  .wrap-article .article {
    max-width: 377px;
    float: left;
    padding: 13px 50px 13px 13px;
  }
}
.wrap-article .article .img {
  float: left;
  width: 110px;
  overflow: hidden;
  border-radius: 6px;
}
@media (min-width: 1260px) {
  .wrap-article .article .img {
    width: 142px;
  }
}
.wrap-article .article .img img {
  max-width: 100%;
}
.wrap-article .article .content {
  float: left;
  width: calc(100% - 125px);
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 1260px) {
  .wrap-article .article .content {
    padding-left: 20px;
    width: calc(100% - 162px);
  }
}
.wrap-article .article .content .ttl {
  color: #f35691;
  font-size: 0.8rem;
  font-weight: bold;
  padding-bottom: 10px;
}
@media (min-width: 780px) {
  .wrap-article .article .content .ttl {
    font-size: 0.98rem;
  }
}
.wrap-article .article .content .summary {
  color: #444444;
  font-size: 0.6rem;
}
@media (min-width: 780px) {
  .wrap-article .article .content .summary {
    font-size: 0.7rem;
  }
}
.wrap-article.horizon .article {
  position: relative;
}
.wrap-article.horizon .article::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 40%;
  right: 15px;
}
.wrap-search .search-block {
  margin-bottom: 20px;
  border: 2px solid #f35691;
  border-radius: 10px;
}
@media (min-width: 1260px) {
  .wrap-search .search-block {
    margin-bottom: 40px;
  }
}
.wrap-search .search-block .ttl {
  background: #f35691;
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px 8px 8px 8px;
  position: relative;
}
.wrap-search .search-block .searchTitles {
  color: #f35691;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 0;
  margin-bottom: 10px;
  position: relative;
}
.wrap-search .search-block .searchTitles::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.wrap-search .search-block .searchTitles span {
  display: block;
}
.wrap-side .row.search-content.bg_p {
  display: block;
}
.wrap-side .row.search-content.bg_p.opens {
  display: block;
}
@media (max-width: 1259px) {
  .wrap-search .search-block .searchTitles::before {
    content: none;
  }
  .wrap-search .search-block .searchTitles span {
    background-color: #f35691;
    color: #fff;
    font-size: 17px;
    padding: 0.2em 25px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
  }
  .wrap-side .row.search-content.bg_p {
    display: none;
    margin-bottom: 20px;
  }
  .wrap-search .search-block .searchTitles span::after {
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: 900;
    content: "";
    color: #fff;
    padding-left: 12px;
    position: absolute;
    height: 1em;
    top: 0.1em;
    margin: auto;
    right: 20px;
  }
  .wrap-search .search-block .searchTitles span.open::after {
    content: "";
  }
}
@media (min-width: 780px) {
  .wrap-search .search-block .ttl {
    font-size: 0.8rem;
  }
}
.wrap-search .search-block .ttl::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 30%;
  right: 20px;
}
.wrap-search .search-block .ttl.open {
  border-radius: 8px 8px 0px 0px;
}
.wrap-search .search-block .ttl.open::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 30%;
  right: 20px;
}
.wrap-search .search-block .search-content {
  padding: 30px 20px 15px;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.wrap-search .search-block .search-content.none {
  display: none;
}
.wrap-search .search-block .search-content.bg_p {
  background: #fff3f8;
  padding: 30px 20px;
}
.wrap-search .search-block .search-content label {
  width: 33.333%;
  float: left;
  font-size: 0.8rem;
  padding-bottom: 15px;
  position: relative;
}
@media (min-width: 780px) {
  .wrap-search .search-block .search-content label {
    font-size: 0.8rem;
  }
}
@media (min-width: 1260px) {
  .wrap-search .search-block .search-content label {
    width: 16.666%;
  }
}
.wrap-search .search-block .search-content label input[type="radio"] {
  display: none;
}
.wrap-search .search-block .search-content label input[type="radio"] + span {
  padding-left: 1.5rem;
}
.wrap-search .search-block .search-content label input[type="radio"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dddddd;
}
.wrap-search .search-block .search-content label input[type="radio"] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: #dddddd;
  border-radius: 50%;
}
.wrap-search .search-block .search-content label input[type="radio"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: #f35691;
  border-radius: 50%;
}
.wrap-search .search-block .search-content label input[type="checkbox"] {
  display: none;
}
.wrap-search .search-block .search-content label input[type="checkbox"] + span {
  padding-left: 1.5rem;
  font-size: 95%;
}
@media (min-width: 780px) {
  .wrap-search .search-block .search-content label input[type="checkbox"] + span {
    font-size: 90%;
  }
}
.wrap-search .search-block .search-content label input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #f35691;
  border-radius: 5px;
}
@media (min-width: 1260px) {
  .wrap-search .search-block .search-content label input[type="checkbox"] + span::before {
    width: 19px;
    height: 19px;
    top: 0px;
  }
}
.wrap-search .search-block .search-content label input[type="checkbox"] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 50%;
}
.wrap-search .search-block .search-content label input[type="checkbox"]:checked + span::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  border-radius: 50%;
  color: #fff;
  top: 0;
  left: 4px;
  font-size: 0.9em;
}
@media (min-width: 1260px) {
  .wrap-search .search-block .search-content label input[type="checkbox"]:checked + span::after {
    top: 0px;
    left: 3px;
  }
}
.wrap-search .search-block .search-content label input[type="checkbox"]:checked + span::before {
  background: #f35691;
}
.wrap-search .search-block .search-content .check-block {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}
.wrap-search .search-block .search-content .check-block .search-field {
  padding: 14px 16px 13px;
  width: 100%;
  border-radius: 6px;
  font-size: 0.7rem;
}
.wrap-search .search-block .search-content .check-block .search-field::-webkit-input-placeholder {
  color: #dddddd;
}
.wrap-search .search-block .search-content .check-block .search-field::-moz-placeholder {
  color: #dddddd;
}
.wrap-search .search-block .search-content .check-block .search-field:-ms-input-placeholder {
  color: #dddddd;
}
.wrap-search .search-block .search-content .check-block .search-field::-ms-input-placeholder {
  color: #dddddd;
}
.wrap-search .search-block .search-content .check-block .search-field::placeholder {
  color: #dddddd;
}
.wrap-search .search-block .search-content .check-block .search-ttl {
  color: #f35691;
  font-size: 0.7rem;
  text-align: center;
  background: #fce1eb;
  border-radius: 5px;
  line-height: 1;
  padding: 8px 0;
  margin-bottom: 10px;
}
@media (min-width: 780px) {
  .wrap-search .search-block .search-content .check-block .search-ttl {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }
}
.wrap-search .search-block .search-content .check-block label {
  width: 50%;
  padding-bottom: 10px;
  word-break: break-all;
}
.wrap-search .search-block .search-content .check-block label.w100 {
  width: 100%;
}
.wrap-search .search-block .search-content .check-block .salary {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.wrap-search .search-block .search-content .check-block .salary .left {
  float: left;
  width: 60px;
  font-size: 0.7rem;
  top: 12px;
}
.wrap-search .search-block .search-content .check-block .salary .right {
  position: relative;
  float: right;
  width: calc(100% - 75px);
}
.wrap-search .search-block .search-content .check-block .salary .right::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 2px;
  right: 0;
  border-left: 1px solid #dddddd;
  height: 39px;
  padding-top: 8px;
  padding-bottom: 0;
  padding-right: 15px;
  pointer-events: none;
}
@media (min-width: 780px) {
  .wrap-search .search-block .search-content .check-block .salary .right::after {
    top: 0px;
    height: 76%;
    padding-top: 11px;
  }
}
.wrap-search .search-block .search-content .check-block .salary .right select {
  width: 100%;
  outline: none;
  -o-text-overflow: "";
  text-overflow: "";
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.7rem;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  background: #fff;
}
.wrap-search .search-block .search-content .check-block .salary .right select::-ms-expand {
  display: none;
}
.wrap-search .search-block .search-content .check-block .salary .right select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}
.wrap-search .search-block.border-none {
  border: none;
  margin-bottom: 25px;
}
.wrap-search .search-box .search-field {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 20px 10px 35px;
  border: 2px solid #f35691;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (min-width: 1260px) {
  .wrap-search .search-box .search-field {
    margin-bottom: 40px;
  }
}
.wrap-search .search-box .search-field::-webkit-input-placeholder {
  color: #bbbbbb;
}
.wrap-search .search-box .search-field::-moz-placeholder {
  color: #bbbbbb;
}
.wrap-search .search-box .search-field:-ms-input-placeholder {
  color: #bbbbbb;
}
.wrap-search .search-box .search-field::-ms-input-placeholder {
  color: #bbbbbb;
}
.wrap-search .search-box .search-field::placeholder {
  color: #bbbbbb;
}
.wrap-search .search-box .wrap-field {
  position: relative;
}
.wrap-search .search-box .wrap-field::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f35691;
  padding-left: 12px;
  font-size: 0.9em;
  position: absolute;
  top: 17%;
  line-height: 1.6;
}
@media (min-width: 780px) {
  .wrap-search .search-box .wrap-field::before {
    top: 13%;
  }
}
.wrap-search .search-box .wrap-field input {
  line-height: 1.5;
}
.wrap-search .search-box .search-submit {
  background: #f35691;
  border-radius: 24px;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 15px 55px 13px 40px;
  margin: 0 auto;
  display: block;
}
@media (min-width: 780px) {
  .wrap-search .search-box .search-submit {
    font-size: 1rem;
    border-radius: 27px;
    padding: 15px;
    width: 100%;
  }
}
.wrap-search .search-box .wrap-submit {
  position: relative;
  width: 207px;
  margin: 0 auto;
}
@media (min-width: 780px) {
  .wrap-search .search-box .wrap-submit {
    width: 300px;
  }
}
.wrap-search .search-box .wrap-submit::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  bottom: 10px;
  right: 20px;
}
@media (min-width: 780px) {
  .wrap-search .search-box .wrap-submit::after {
    bottom: 15px;
  }
}
.recruiting {
  background: #fff3f8;
  border-radius: 10px;
  padding: 11px;
}
@media (min-width: 1260px) {
  .recruiting {
    padding: 15px 15px 30px;
  }
}
.recruiting .ttl {
  font-size: 0.75rem;
  font-weight: bold;
  padding: 15px 0 10px;
}
@media (min-width: 1260px) {
  .recruiting .ttl {
    font-size: 19px;
  }
}
.recruiting .summary {
  font-size: 0.6rem;
  display: block;
  min-height: 63px;
}
@media (min-width: 1260px) {
  .recruiting .summary {
    font-size: 0.7rem;
  }
}
.site_list {
  margin: 0 -8.5px;
  padding-bottom: 1.5rem;
}
.site_list a {
  text-decoration: none;
  display: block;
}
.site_list {
  display: block;
}
.site_list .col-6 {
  max-width: 100%;
}
.site_list a .site {
  margin: 0 5px 10px;
  padding-right: 20px;
  padding-left: 44px;
}
@media (min-width: 1260px) {
  .site_list .col-6 {
    max-width: 25%;
  }
}
.site_list .site {
  background: #fff;
  color: #f35691;
  font-weight: bold;
  font-size: 0.7rem;
  position: relative;
  padding: 9px 0 9px 41px;
  border: 1px solid #f35691;
  border-radius: 10px;
  margin: 0 8.5px 20px;
}
.site_list .site p {
  font-size: 17px;
  font-weight: bold;
}
.site_list .site p small {
  font-size: 80%;
}
@media (min-width: 780px) {
  .site_list .site p {
    font-size: 17px;
    font-weight: bold;
  }
}
.site_list .site::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 2px;
  font-size: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  background-color: #f35691;
  border-radius: 50%;
  text-align: center;
  width: 1.3em;
  height: 1.3em;
  line-height: 1.3em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 480px) {
  .site_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site_list .col-6 {
    max-width: 50%;
  }
  .site_list a .site {
    margin: 0 8.5px 20px;
  }
  .site_list .site::after {
    color: #f35691;
    padding-left: 12px;
    right: 7px;
    background: none;
    line-height: 1em;
  }
}
@media (min-width: 780px) {
  .site_list .site::before {
    top: 1rem;
  }
}
.site_list .site.site01::before {
  content: "";
  background-image: url(../../img/kindmedical/site01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site02::before {
  content: "";
  background-image: url(../../img/kindmedical/site02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site03::before {
  content: "";
  background-image: url(../../img/kindmedical/site03.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site04::before {
  content: "";
  background-image: url(../../img/kindmedical/site04.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site05::before {
  content: "";
  background-image: url(../../img/kindmedical/site05.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site12::before {
  content: "";
  background-image: url(../../img/kindmedical/site12.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site13::before {
  content: "";
  background-image: url(../../img/kindmedical/site13.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site14::before {
  content: "";
  background-image: url(../../img/kindmedical/site14.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site11::before {
  content: "";
  background-image: url(../../img/kindmedical/site11.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site15::before {
  content: "";
  background-image: url(../../img/kindmedical/site15.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site16::before {
  content: "";
  background-image: url(../../img/kindmedical/site16.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site.site17::before {
  content: "";
  background-image: url(../../img/kindmedical/site17.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 10px;
  display: block;
  position: absolute;
}
.site_list .site small {
  font-weight: normal;
  display: block;
  font-size: 0.55rem;
}
@media (min-width: 780px) {
  .site_list .site small {
    font-size: 13px;
  }
}
.search-num {
  text-align: center;
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
}
.search-num small {
  display: block;
  font-size: 0.65rem;
  margin-top: 5px;
  color: #666;
}
@media (min-width: 780px) {
  .search-num {
    font-size: 19px;
  }
}
.search-num span {
  color: #f35691;
  font-size: 0.8rem;
  font-weight: bold;
}
@media (min-width: 780px) {
  .search-num span {
    font-size: 22px;
  }
}
.target-num {
  text-align: center;
  font-size: 0.8rem;
  width: 100%;
  margin-bottom: 20px;
}
.target-num small {
  display: block;
  font-size: 0.65rem;
  margin-top: 5px;
  color: #666;
}
.target-num span {
  color: #f35691;
  font-weight: bold;
  font-size: 1rem;
}
.search-result.result-col-2 {
  overflow: hidden;
}
@media (min-width: 780px) {
  .search-result.result-col-2 .result {
    width: calc(50% - 20px);
    float: left;
  }
}
@media (min-width: 780px) {
  .search-result.result-col-2 .result:nth-child(2n) {
    margin-left: 40px;
  }
}
.search-result.result-col-3 {
  overflow: hidden;
}
@media (min-width: 780px) {
  .search-result.result-col-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 2rem;
  }
}
.search-result.result-col-3 .result {
  background: none;
}
.search-result.result-col-3 .result .inner-result {
  padding: 0;
}
.search-result.result-col-3 .result .inner-result h2 {
  text-align: left;
  font-size: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.5rem;
}
.search-result.result-col-3 .result .inner-result h2::before,
.search-result.result-col-3 .result .inner-result h2::after {
  display: none;
}
.search-result.result-col-3 .result .inner-result a {
  font-size: 0.8rem;
}
.search-result.result-col-3 .result .inner-result a::before {
  content: "・";
  position: relative;
  width: 1em;
  right: 6px;
}
@media (min-width: 780px) {
  .search-result.result-col-3 .result {
    width: calc(33% - 40px);
    float: left;
    margin-right: 40px;
  }
}
@media (min-width: 780px) {
  .search-result.result-col-3 .result:nth-child(3n) {
    margin-right: 0;
  }
}
.search-result .result {
  background: #fff3f8;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (min-width: 780px) {
  .search-result .result {
    margin-bottom: 40px;
  }
}
.search-result .result .inner-result {
  padding: 10px;
}
@media (min-width: 780px) {
  .search-result .result .inner-result {
    padding: 21px;
  }
}
.search-result .result .inner-result a {
  display: block;
}
.search-result .result .inner-result .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 10px;
  padding: 0;
}
.search-result .result .inner-result .col-5 {
  max-width: 120px;
  width: 120px;
  padding: 75px 0 0;
  margin: 0 12px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
@media (min-width: 780px) {
  .search-result .result .inner-result .col-5 {
    max-width: 150px;
    width: 150px;
    padding: 94px 0 0;
    margin: 0 15px 0 0;
    border-radius: 10px;
  }
}
.search-result .result .inner-result .col-7 {
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
}
.search-result .result .inner-result .col-5 img {
  width: 100%;
  height: 100%;
  line-height: 0;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.search-result .result .inner-result .content {
  margin: 0;
  padding: 0;
  width: 100%;
}
.search-result .result .inner-result .content .ttl {
  font-size: 0.75rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
}
@media (min-width: 780px) {
  .search-result .result .inner-result .content .ttl {
    font-size: 1rem;
  }
}
.search-result .result .inner-result .content .summary {
  font-size: 0.6rem;
}
@media (min-width: 780px) {
  .search-result .result .inner-result .content .summary {
    font-size: 0.8rem;
  }
}
.search-result .result .inner-result .detail {
  font-size: 0.7rem;
  border-top: 1px solid #fce1eb;
  padding: 10px 2.5rem 10px 0;
  position: relative;
  line-height: 2;
}
.search-result .result .inner-result .detail p.notlisted {
  font-size: 0.6rem;
  line-height: 1.4em;
  margin-top: 8px;
  padding: 5px 10px;
  color: #f35691;
  background-color: #fff;
  border-radius: 3px;
  position: relative;
}
.search-result .result .inner-result .detail p.notlisted:after {
  border-top: 10px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
  top: -10px;
  content: "";
  display: block;
  left: 4em;
  position: absolute;
  width: 0;
}
@media (min-width: 780px) {
  .search-result .result .inner-result .detail {
    font-size: 0.8rem;
  }
}
.search-result .result .inner-result .detail::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  right: 0;
  top: 35%;
}
@media (min-width: 780px) {
  .search-result .result .inner-result .detail::after {
    right: 20px;
  }
}
.search-result .result .inner-result .detail span {
  margin-right: 5px;
  display: inline-block;
  font-size: 90%;
}
.search-result .result .inner-result .detail span.tag {
  background: #f35691;
  border-radius: 3px;
  color: #fff;
  padding: 4px 8px;
  line-height: 1;
}
.search-result .result .inner-result .detail span.employment {
  background: #fff;
  border-radius: 3px;
  color: #f35691;
  padding: 4px 8px;
  line-height: 1;
  -webkit-box-shadow: 0 0 0 1px #f35691;
  box-shadow: 0 0 0 1px #f35691;
}
@media (max-width: 520px) {
  .search-result .result .inner-result .detail span.job_city {
    display: block;
  }
}
.search-result .result .remove-list {
  border-top: 1px solid #fce1eb;
  padding: 10px 10px 10px 10px;
  text-align: right;
  font-size: 0.6rem;
}
@media (min-width: 780px) {
  .search-result .result .remove-list {
    font-size: 0.7rem;
    padding: 15px;
  }
}
.search-result .result .remove-list a {
  color: #f35691;
  position: relative;
  text-decoration: underline;
}
.search-result .result .remove-list a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  left: -1.5rem;
  top: 0;
}
@media (min-width: 780px) {
  .search-result .result .remove-list a::before {
    top: -2px;
  }
}
.search-result .result.result-list .inner-result {
  padding: 10px 10px 0;
}
@media (min-width: 780px) {
  .search-result .result.result-list .inner-result {
    padding: 21px 21px 0;
  }
}
.site-name {
  border: 1px solid #f35691;
  border-radius: 10px;
  font-size: 0.7rem;
  color: #f35691;
  font-weight: bold;
  text-align: center;
  padding: 12px 0;
  margin-bottom: 20px;
}
@media (min-width: 780px) {
  .site-name {
    font-size: 0.9rem;
  }
}
@media (min-width: 1260px) {
  .site-name {
    width: calc(100% - 360px);
    margin-bottom: 30px;
  }
}
.site-name span {
  position: relative;
}
.site-name span::before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  width: 23px;
  height: 23px;
  top: -2px;
  left: -2em;
  display: block;
  position: absolute;
}
.site-name.site01 span::before {
  content: "";
  background-image: url(../../img/kindmedical/site01.png);
}
.site-name.site02 span::before {
  background-image: url(../../img/kindmedical/site02.png);
}
.site-name.site03 span::before {
  background-image: url(../../img/kindmedical/site03.png);
}
.site-name.site04 span::before {
  background-image: url(../../img/kindmedical/site04.png);
}
.site-name.site05 span::before {
  background-image: url(../../img/kindmedical/site05.png);
}
.site-name.site11 span::before {
  background-image: url(../../img/kindmedical/site11.png);
}
.site-name.site12 span::before {
  background-image: url(../../img/kindmedical/site12.png);
}
.site-name.site13 span::before {
  background-image: url(../../img/kindmedical/site13.png);
}
.site-name.site14 span::before {
  background-image: url(../../img/kindmedical/site14.png);
}
.site-name.site15 span::before {
  background-image: url(../../img/kindmedical/site15.png);
}
.site-name.site16 span::before {
  background-image: url(../../img/kindmedical/site16.png);
}
.site-name.site17 span::before {
  background-image: url(../../img/kindmedical/site17.png);
}
.pagination {
  text-align: center;
}
.pagination .page-links {
  position: relative;
}
.pagination .page-links .current {
  color: #f35691;
  font-weight: bold;
}
.pagination .page-links a {
  text-decoration: underline;
}
.pagination .page-links .page-numbers {
  display: inline-block;
  padding: 0 10px;
  font-size: 0.8rem;
}
@media (min-width: 780px) {
  .pagination .page-links .page-numbers {
    padding: 0 8px;
  }
}
@media (min-width: 780px) {
  .pagination .page-links .page-numbers i {
    font-size: 1rem;
  }
}
.pagination .page-links .next {
  position: absolute;
  right: 0;
  padding-right: 0;
  top: 3.5px;
}
.pagination .page-links .prev {
  position: absolute;
  left: 0;
  padding-left: 0;
  top: 3.5px;
}
.fa-chevron-circle-left {
  position: absolute;
  left: 0;
  padding-left: 0;
  top: 3.5px;
  font-size: 0.8rem;
}
@media (min-width: 780px) {
  .fa-chevron-circle-left {
    font-size: 1rem;
  }
}
.box-border {
  border: 1px solid #f35691;
  border-radius: 10px;
  padding: 14px 13px;
}
@media (min-width: 780px) {
  .box-border {
    padding: 20px 20px;
  }
}
.box-border b {
  display: block;
}
.box-corner {
  border-radius: 10px;
  padding: 13px 13px 17px;
}
@media (min-width: 780px) {
  .box-corner {
    padding: 50px;
  }
}
.box-corner form {
  font-size: 0.7rem;
}
@media (min-width: 780px) {
  .box-corner form {
    font-size: 0.8rem;
  }
}
.box-corner form dl dt {
  border-left: 4px solid #f35691;
  padding-left: 0.5rem;
  margin-bottom: 12px;
}
@media (min-width: 780px) {
  .box-corner form dl dt {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 15px;
    margin-bottom: 20px;
  }
}
.box-corner form dl dt span {
  background: #fce1eb;
  border-radius: 3px;
  color: #f35691;
  padding: 4px 10px;
  margin-left: 12px;
  display: inline-block;
  line-height: 1;
}
.box-corner form dl dd {
  margin-bottom: 15px;
}
@media (min-width: 780px) {
  .box-corner form dl dd {
    margin-bottom: 30px;
  }
}
.box-corner form dl dd.txt-r {
  text-align: right;
}
.box-corner form dl dd div:not(.wrap-select) {
  border-radius: 6px;
  border: none;
  width: calc(100% - 30px);
  padding: 15px;
  background: #fff;
  text-align: left;
}
.box-corner form input[type="text"] {
  border-radius: 6px;
  border: none;
  width: calc(100% - 30px);
  padding: 15px;
}
@media (min-width: 780px) {
  .box-corner form input[type="text"] {
    padding: 20px;
    width: calc(100% - 40px);
    line-height: 1rem;
  }
}
.box-corner form textarea {
  width: calc(100% - 30px);
  border: none;
  padding: 15px;
  border-radius: 6px;
  height: 200px;
  outline: none;
}
.box-corner form ::-webkit-input-placeholder {
  color: #dddddd;
}
.box-corner form ::-moz-placeholder {
  color: #dddddd;
}
.box-corner form :-ms-input-placeholder {
  color: #dddddd;
}
.box-corner form ::-ms-input-placeholder {
  color: #dddddd;
}
.box-corner form ::placeholder {
  color: #dddddd;
}
@media (min-width: 780px) {
  .box-corner form ::-webkit-input-placeholder {
    font-size: 0.8rem;
  }
  .box-corner form ::-moz-placeholder {
    font-size: 0.8rem;
  }
  .box-corner form :-ms-input-placeholder {
    font-size: 0.8rem;
  }
  .box-corner form ::-ms-input-placeholder {
    font-size: 0.8rem;
  }
  .box-corner form ::placeholder {
    font-size: 0.8rem;
  }
}
.box-corner form small {
  font-size: 0.6rem;
  padding: 7px 0 5px;
  display: inline-block;
}
@media (min-width: 780px) {
  .box-corner form small {
    font-size: 0.7rem;
  }
}
.box-corner form .btn_area {
  text-align: center;
}
.box-corner form .btn_area span {
  position: relative;
}
.box-corner form .btn_area span::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #fff;
  padding-left: 12px;
  font-size: 1em;
  position: absolute;
  top: 0%;
  right: 20px;
}
.box-corner form .btn_area span.bg_wh::after {
  color: #f35691;
}
@media (min-width: 780px) {
  .box-corner form .btn_area span + span {
    margin-left: 12px;
  }
}
.box-corner form .btn_area input[type="submit"] {
  background: #f35691;
  border-radius: 22px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  width: 154px;
  margin: 0 auto;
  padding: 13px;
}
@media (min-width: 780px) {
  .box-corner form .btn_area input[type="submit"] {
    font-size: 0.8rem;
    width: 200px;
  }
}
.box-corner form .btn_area input[name="submitBack"] {
  background: #fff;
  color: #f35691;
}
.box-corner form.confirm label {
  pointer-events: none;
}
.box-step {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  margin-bottom: 2.5rem;
}
@media (min-width: 780px) {
  .box-step {
    padding: 30px 40px 40px;
  }
}
.box-step:last-of-type::after {
  display: none;
}
.box-step::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  font-size: 1em;
  position: absolute;
  left: 48%;
  bottom: -40px;
}
@media (min-width: 780px) {
  .box-step::after {
    bottom: -48px;
    font-size: 1.5rem;
  }
}
.box-step:last-of-slick-next {
  margin-bottom: 0;
}
.box-step:last-of-slick-next::after {
  content: none;
}
@media (min-width: 780px) {
  .box-step .num {
    padding: 0 0 10px;
  }
}
.box-step .ttl {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 12px;
}
@media (min-width: 780px) {
  .box-step .ttl {
    font-size: 1rem;
  }
}
.detail-info {
  background: #fff3f8;
  padding: 24px 11px;
}
@media (min-width: 780px) {
  .detail-info {
    padding: 40px;
  }
}
@media (min-width: 1260px) {
  .detail-info {
    padding: 60px;
  }
}
.detail-info h3 {
  margin-bottom: 12px;
}
@media (min-width: 780px) {
  .detail-info h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.detail-info .ttl-block {
  font-size: 0.9rem;
  font-weight: bold;
  border-left: 4px solid #f35691;
  padding-left: 10px;
  margin-bottom: 15px;
}
.detail-info .ttl-block .recruitmentstopped {
  margin-bottom: 5px;
}
.detail-info .ttl-block .recruitmentstopped span {
  display: inline-block;
  background-color: #aaa;
  font-size: 0.8rem;
  line-height: 1em;
  padding: 7px 10px 5px;
  position: relative;
  color: #fff;
}
.detail-info .ttl-block .recruitmentstopped span::after {
  border-top: 6px solid transparent;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid transparent;
  border-top-color: #aaa;
  border-bottom-width: 0;
  bottom: -6px;
  content: "";
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  width: 0;
}
@media (min-width: 780px) {
  .detail-info .ttl-block {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}
.detail-info .ttl-block small {
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
}
@media (min-width: 780px) {
  .detail-info .ttl-block small {
    font-size: 0.9rem;
  }
}
.detail-info .pr-block {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (min-width: 780px) {
  .detail-info .pr-block {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}
.detail-info .pr-block small {
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
}
@media (min-width: 780px) {
  .detail-info .pr-block small {
    font-size: 0.9rem;
  }
}
.detail-info .img-detail {
  margin-bottom: 1.5rem;
}
@media (min-width: 780px) {
  .detail-info .img-detail {
    margin-bottom: 2rem;
  }
}
.detail-info .img-detail img {
  width: 100%;
  display: block;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 780px) {
  .detail-info .img-detail img {
    max-width: 60%;
  }
}
.detail-info .pr {
  margin-bottom: 30px;
}
.detail-info .pr div {
  max-width: calc(50% - 10px);
  margin-bottom: 10px;
}
@media (min-width: 780px) {
  .detail-info .pr div {
    max-width: calc(20% - 10px);
    padding-left: 10px;
  }
}
.detail-info .pr div:nth-child(2n) {
  padding-left: 20px;
}
@media (min-width: 780px) {
  .detail-info .pr div:nth-child(2n) {
    padding-left: 10px;
  }
}
@media (min-width: 780px) {
  .detail-info .pr div:nth-child(5n + 1) {
    padding-left: 0px;
  }
}
.detail-info .pr div img {
  display: block;
}
.tbl {
  font-size: 0.7rem;
}
@media (min-width: 780px) {
  .tbl {
    font-size: 0.8rem;
  }
}
.tbl dl {
  border-bottom: 1px solid #fff3f8;
}
.tbl dl dt {
  background: #fce1eb;
  padding: 5px 10px;
  display: block;
  font-weight: 600;
}
.tbl dl dd {
  padding: 13px 10px 30px;
  background: #fff;
  word-break: break-all;
}
.tbl dl dt br {
  display: none;
}
@media (min-width: 780px) {
  .tbl dl {
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
  }
  .tbl dl dt {
    float: left;
    width: calc(29.245% - 20px);
    padding: 18px 20px;
  }
  .tbl dl dd {
    float: left;
    width: calc(100% - 29.245% - 20px);
    padding: 18px 15px;
  }
  .tbl dl dt br {
    display: block;
  }
}
.tbl-vertical {
  font-size: 0.8rem;
  border: 1px solid #fce1eb;
}
.tbl-vertical dl {
  border-bottom: 1px solid #fce1eb;
}
.tbl-vertical dl:last-of-slick-next {
  border-bottom: 0;
}
.tbl-vertical dl dt {
  background: #fff3f8;
  padding: 15px 0;
  border-bottom: 1px solid #fce1eb;
}
.tbl-vertical dl dd {
  padding: 15px 0;
}
.wrap-faq {
  margin-bottom: 2rem;
}
@media (min-width: 780px) {
  .wrap-faq {
    margin-bottom: 3rem;
  }
}
.wrap-faq .box-faq {
  font-size: 0.7rem;
  border-radius: 10px;
  border: 1px solid #f35691;
  margin-bottom: 1.5rem;
}
@media (min-width: 780px) {
  .wrap-faq .box-faq {
    font-size: 0.8rem;
  }
}
.wrap-faq .box-faq .ques {
  /*border-bottom: 1px solid #F35691;*/
  color: #f35691;
  padding: 15px 30px 15px 10px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 780px) {
  .wrap-faq .box-faq .ques {
    padding: 20px 40px 20px 20px;
  }
}
.wrap-faq .box-faq .ques dd {
  position: relative;
}
.wrap-faq .box-faq .ques dd::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #f35691;
  font-size: 1.375em;
  position: absolute;
  right: -25px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.wrap-faq .box-faq .ans {
  background: #fff3f8;
  border-radius: 0 0 12px 12px;
  border-radius: 0 0 12px 12px;
  padding: 15px 10px;
  overflow: hidden;
  display: none;
  border-top: 1px solid #f35691;
}
@media (min-width: 780px) {
  .wrap-faq .box-faq .ans {
    padding: 20px;
  }
}
.wrap-faq .box-faq dt {
  font-weight: bold;
  float: left;
  width: 20px;
}
@media (min-width: 780px) {
  .wrap-faq .box-faq dt {
    width: 30px;
  }
}
.wrap-faq .box-faq dd {
  float: left;
  width: calc(100% - 20px);
}
@media (min-width: 780px) {
  .wrap-faq .box-faq dd {
    width: calc(100% - 30px);
  }
}
.wrap-faq .box-faq.open .ques dd::after {
  -webkit-transform: rotateZ(180deg) translate(20%, 50%);
  -ms-transform: rotate(180deg) translate(20%, 50%);
  transform: rotateZ(180deg) translate(20%, 50%);
}
.box-page {
  padding: 24px 12px;
  border-radius: 10px;
}
.box-page p {
  padding-left: 7px;
  padding-right: 7px;
}
@media (min-width: 1260px) {
  .box-page .btn_area:first-of-type {
    padding-top: 15px;
  }
}
@media (min-width: 780px) {
  .cp_contxt {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
  }
  .cp_contxt.mb-l {
    margin: 0 auto 60px;
  }
}
iframe {
  max-width: 100%;
}
@media (min-width: 780px) {
  iframe {
    width: 100%;
  }
}
/***********************************
 For Top
***********************************/
.top header {
  border-bottom: 0;
}
@media (min-width: 1060px) {
  .top header {
    border-bottom: 1px solid #dddddd;
  }
}
@media (min-width: 1260px) {
  .top .inner {
    max-width: 900px;
  }
}
.top .section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1260px) {
  .top .section {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.top .section.bg_y {
  border-top: 0;
  border-bottom: 0;
}
.top .wrapper {
  padding-top: 0;
}
@media (min-width: 780px) {
  .top .wrap-search .search-block .ttl {
    font-size: 0.9rem;
  }
}
@media (min-width: 780px) {
  .top .wrap-search .search-block .search-content label {
    font-size: 0.9rem;
  }
}
@media all and (-ms-high-contrast: none) {
  /** IE11 **/
  .slick-dots {
    left: 50%;
  }
}
/* markdown */
#mde > h1 {
  font-size: 2em;
  margin: 0.67em 0;
  text-align: initial;
  position: initial;
}
#mde > h1:after {
  content: none;
}
#mde > h2 {
  text-align: initial;
  font-size: 1.5em;
  color: #444444;
}
#mde > h2:before {
  content: none;
}
#mde > h2:after {
  content: none;
}
/* Popularity 20210915追加 */
.section.topspacezero {
  padding-top: 0;
}
.section.topspace30 {
  padding-top: 30px;
  margin-bottom: 20px;
}
.section.topspace40 {
  padding-top: 40px;
  margin-bottom: 20px;
}
.section.topspace60 {
  padding-top: 60px;
}
.section.bottomspacexero {
  padding-bottom: 0;
}
.section.bottomspace30 {
  padding-bottom: 30px;
}
.topspace40 + .btn_area.center {
  margin-bottom: 20px;
}
.wrap-popularity {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  padding: 0 !important;
  line-height: 1;
}
.wrap-popularity li {
  width: calc(25% - 10px);
  margin-left: 10px;
}
@media (max-width: 780px) {
  .wrap-popularity li {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }
}
/* 20220901追加（お問い合わせ（ご採用担当者様専用）） */
.form-block span {
  display: inline-block;
  position: relative;
  margin: 0.5em 1em 0.5em 0;
  cursor: pointer;
}
@media (min-width: 1260px) {
  .form-block label {
    font-size: 0.75rem;
  }
}
.form-block label input[type="checkbox"] {
  display: none;
}
.form-block label input[type="checkbox"] + span {
  padding-left: 1.5rem;
}
.form-block label input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #f35691;
  border-radius: 5px;
}
@media (min-width: 1260px) {
  .form-block label input[type="checkbox"] + span::before {
    width: 19px;
    height: 19px;
    top: 0px;
  }
}
.form-block label input[type="checkbox"] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 50%;
}
.form-block label input[type="checkbox"]:checked + span::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  border-radius: 50%;
  color: #fff;
  top: 0;
  left: 4px;
  font-size: 0.9em;
}
@media (min-width: 1260px) {
  .form-block label input[type="checkbox"]:checked + span::after {
    top: 0px;
    left: 3px;
  }
}
.form-block label input[type="checkbox"]:checked + span::before {
  background: #f35691;
}
.check-block.form-block {
  width: 100%;
  margin-bottom: 20px;
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
  overflow: hidden;
}
.check-block.form-block label {
  width: 50%;
  padding-bottom: 10px;
  word-break: break-all;
}
.box-corner form.confirm .form-block label input[type="checkbox"] + span::before {
  border-color: #ddd;
}
.box-corner form.confirm .form-block label input[type="checkbox"]:checked + span::before {
  border-color: #f35691;
}
/* 20221022追加（スマートフォンフッターボタン） */
footer .footerBtnEntry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-animation: fbanime 0.6s ease 1s 1 normal both;
  animation: fbanime 0.6s ease 1s 1 normal both;
}
@-webkit-keyframes fbanime {
  0% {
    opacity: 0;
    bottom: -100px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes fbanime {
  0% {
    opacity: 0;
    bottom: -100px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
footer .footerBtnEntry a {
  width: 100%;
}
footer .footerBtnEntry .btnEntry {
  width: 96%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f35691;
  color: #fff;
  margin: 8px auto;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
}
/*
footer .footerBtnEntry a:last-child .btnEntry {
  background-color: #7bbb00;
}
*/
.freeText2 .fas {
  color: #fff;
}
@media screen and (min-width: 780px) {
  footer .footerBtnEntry .btnEntry {
    font-size: 18px;
    display: none;
  }
}
footer {
  padding-bottom: 30px;
}
@media (min-width: 780px) {
  footer {
    padding-bottom: 0;
  }
}
.firstSlide {
  position: relative;
}
.widthMiddle {
  max-width: 1080px;
  margin: -20px auto 0;
  position: relative;
}
.widthMiddleInner {
  background: #fff3f8;
  padding: 0 50px;
  position: relative;
  border-radius: 16px;
}
.widthMiddle h1 {
  margin: 0;
  padding: 25px 0 0;
  font-size: 1em;
  color: #444;
}
.widthMiddle h1::after {
  content: none;
}
.widthMiddle h1 span {
  display: inline-block;
}
.widthMiddle h1 span::before {
  content: "＼";
  position: relative;
  width: 1em;
  color: #444;
  right: 6px;
}
.widthMiddle h1 span::after {
  content: "／";
  position: relative;
  width: 1em;
  color: #444;
  left: 6px;
}
.slick-slider-osusume .slick-item {
  width: 33.3333%;
}
.slick-slider-osusume .slick-item a {
  display: block;
}
.osusumeCell {
  padding: 15px;
}
.osusumeCellImg {
  overflow: hidden;
  margin-bottom: 15px;
}
.osusumeCellImg img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.osusumeCell .ttl,
.periodBoxCell .ttl {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: bold;
  color: #f35691;
  margin-bottom: 0.4em;
}
.periodBoxCell .ttl {
  color: #fff;
  margin-bottom: 0;
}
.osusumeCell p {
  font-size: 0.7rem;
  line-height: 1.4em;
}
.osusumeCell .ttl::before,
.periodBoxCell .ttl::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 0.2em;
}
.slick-slider-osusume .slick-prev,
.slick-slider-osusume .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: block;
  z-index: 1;
  width: 35px;
  height: 35px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 20% auto;
  background-color: #fff;
  border-radius: 50%;
  background-position: center;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.slick-slider-osusume .slick-prev {
  left: -35px;
  background-image: url(../../img/kindmedical/slide_prev.svg);
}
.slick-slider-osusume .slick-next {
  right: -35px;
  background-image: url(../../img/kindmedical/slide_next.svg);
}
.slick-slider-osusume ul.slick-dots {
  padding: 0;
  position: relative;
  bottom: -25px;
}
.periodSection {
  padding-bottom: 0;
}
.periodBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -20px;
}
.periodBoxCell {
  width: 18%;
  min-width: 200px;
  margin-left: 20px;
  background-color: #7bbb00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px;
  position: relative;
}
.periodBoxCell::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: block;
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 16px;
  z-index: -1;
}
.periodBoxCell a {
  display: block;
  padding: 15px;
}
.periodBoxCellImg {
  width: 70%;
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  border: 3px #fff solid;
}
.periodBoxCellImg img {
  vertical-align: bottom;
}
@media screen and (max-width: 780px) {
  .periodBoxOuter {
    margin: 0 20px;
  }
  .periodBox {
    margin-left: -20px;
  }
  .periodBoxCell {
    width: calc(33.3333% - 20px);
    min-width: initial;
    margin-left: 20px;
  }
}
@media (max-width: 580px) {
  .slick-slider-osusume .slick-prev,
  .slick-slider-osusume .slick-next {
    display: none !important;
  }
  .osusumeCell {
    padding: 10px;
  }
  .widthMiddleInner {
    padding: 0 10px;
    border-radius: 0;
  }
  .topspace40 {
    padding-top: 20px !important;
  }
  .osusumeCell .ttl,
  .periodBoxCell .ttl {
    font-size: 0.8rem;
  }
  .periodBox {
    margin-left: -10px;
  }
  .periodBoxCell {
    margin-left: 10px;
    width: calc(33.3333% - 10px);
    border-radius: 12px;
  }
  .periodBoxCell a {
    padding: 10px;
  }
  .periodBoxCellImg {
    width: 80%;
  }
  .periodBoxCell::after {
    left: 4px;
    top: 4px;
    border-radius: 12px;
  }
  .periodBoxCell .ttl {
    font-size: 0.7rem;
  }
}
.section.bg_p .search-content {
  padding: 15px 20px 5px;
}
.section.bg_p .input.select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 0 -20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.section.bg_p .input.select label {
  margin: 0 0 10px 20px;
  padding: 0;
  width: auto;
}
.wrap-side .wrap-search form {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .section.bg_p .input.select {
    margin: 0 0 0 -20px;
  }
  .section.bg_p .input.select label {
    width: calc(50% - 10px);
    margin-left: 10px;
  }
}
.section.bg_p .wrap-search .search-block .search-content label input[type="checkbox"]:checked + span::after {
  top: 2px;
}
.scrollfixed {
  height: 100vh;
  overflow: clip;
  scrollbar-gutter: stable;
}
.scrollfixed::-webkit-scrollbar {
  background-color: transparent;
}
.scrollfixed header.UpMove,
.scrollfixed header.DownMove {
  -webkit-animation: none;
  animation: none;
}
.medicalAppropriatenessCertification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f5f5f5;
  margin: 30px auto;
  padding: 15px;
  max-width: 1100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.macMark {
  max-width: 70px;
  min-width: 70px;
}
.macMark img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.macText {
  margin-left: 15px;
}
.macText p {
  font-size: 0.6rem;
  line-height: 1.7em;
  margin-bottom: 0.6em;
}
.macText p:last-child {
  margin-bottom: 0;
}
.macText p small {
  font-size: 80%;
  line-height: 1.5em;
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
.macText p a {
  text-decoration: underline;
  font-weight: bold;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: anywhere;
}
.nhkText {
  text-align: center;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.5em;
  font-weight: bold;
}
.nhkText span {
  display: inline-block;
  position: relative;
  padding: 0 25px;
}
.nhkText span::before,
.nhkText span::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #444;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.nhkText span::before {
  left: 0;
}
.nhkText span::after {
  right: 0;
}
.section:has(.iconPlus) {
  background-color: #f5f5f5;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  border-bottom: 1px #fff solid;
}
.iconPlus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -20px;
}
.iconPlus .article {
  background: none;
  margin: 0;
  border-radius: 0;
  padding: 0;
}
.iconPlus a {
  background: #fff;
  display: block;
  margin-bottom: 0.7rem;
  border-radius: 0 10px 10px 0;
  width: calc(100% - 20px);
  margin-left: 20px;
  padding: 10px;
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.05);
  border-left: 4px #48c6ff solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.iconPlus .article .img {
  width: 30px;
  border-radius: 0;
  margin: 0 8px 0 0 !important;
  padding: 0 !important;
  float: none;
}
.iconPlus .article .img img {
  vertical-align: bottom;
}
.iconPlus .article .ttl {
  font-size: 0.8rem;
  line-height: 1.4em;
  font-weight: bold;
  text-align: left;
  color: #48c6ff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 0.3em;
}
.articleTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 8px;
}
.iconPlus .article p.summary {
  font-size: 0.65rem;
  line-height: 1.6em;
  padding-right: 20px;
}
.iconPlus .article p.summary::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  bottom: 15px;
  right: 16px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.iconPlus .article p.summary::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #f35691;
  border-radius: 50%;
}
@media (min-width: 780px) {
  .iconPlus a {
    width: calc(50% - 20px);
  }
  .iconPlus a {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1060px) {
  .iconPlus a {
    width: calc(25% - 20px);
  }
  .iconPlus .article .ttl {
    margin-top: 0.4em;
  }
  .iconPlus .article .img {
    width: 32px;
    margin: 0 8px 0 0 !important;
  }
  .iconPlus a {
    margin-bottom: 1rem;
  }
}
@media (min-width: 780px) {
  .nhkText {
    margin: -20px 0 15px;
    font-size: 20px;
  }
}
@media (min-width: 780px) {
  .macMark {
    max-width: 90px;
    min-width: 90px;
  }
  .macText p {
    font-size: 0.7rem;
  }
  .macText p small {
    font-size: 90%;
  }
}
