<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*全体の指定*/
html,
body,
h1,
h2,
h3,
h4,
ul,
li,
p,
dl,
dt,
dd,
span,
nav {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 2rem;
  color: #431717;
  line-height: 1.8;
  margin: 0 auto;
  background: #fff;
  letter-spacing: 0.05em;
  font-weight: 500;
}

h2 {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
}

h3 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 2.1rem;
    line-height: 1.4;
  }
  h3 {
    font-size: 1.8rem;
  }
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*br切り替え*/
.sp_br {
  display: none;
}

.sp_br_w400 {
  display: none;
}

.pc_br {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }

  .pc_br {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .sp_br_w400 {
    display: block;
  }
}

/*画像、コンテンツ切り替え*/
.sp_img,
.sp {
  display: none;
}

.pc_img,
.pc {
  display: block;
}

.pc1024 {
  display: block;
}

.sp1024 {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_img,
  .sp {
    display: block;
  }

  .pc_img,
  .pc {
    display: none;
  }
}

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

  .sp1024 {
    display: block;
  }
}

/*flexや切り替えのクラス指定コピペする*/

/********headerここから********/
#header {
  z-index: 999;
}

.logo {
  width: 80px;
  display: block;
  margin: 0 auto;
  padding-top: 16px;
}

nav {
  width: 100%;
  height: 0;
  position: fixed;
  font-size: 1.6rem;
  z-index: 900;
}

header .entry_btn a img {
  max-width: 240px;
  height: auto;
}

header .entry_btn img:hover {
  filter: hue-rotate(290deg) saturate(1) brightness(1.2);
}

/*ナビゲーション部分*/
.menu ul {
  width: 80%;
  height: 80%;
  max-height: 700px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-around;
}

.menu ul li:not(:last-child) {
  border-bottom: 1px dotted #ccc;
  width: 100%;
}

.menu ul li a {
  display: block;
  font-weight: bold;
  padding: 1.5em;
  text-decoration: none;
}

.menu li:not(:last-child) a:hover {
  color: #55979f;
}

.menu {
  text-align: center;
  transition: 0.5s ease;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%); /*左に隠しておく*/
  height: 100vh;
}

/*OPEN時の動き*/
.menu.open {
  background-color: #ffffff;
  -webkit-transform: translateX(0%);
  transform: translateX(0%); /*中身を表示（右へスライド）*/
}

.Toggle {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
  right: 15px;
  background-color: #55979f;
  border-radius: 6px;
  padding: 10px;
  margin: 10px -5px 0 0;
}

.Toggle span {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: solid 4px #fff;
  border-radius: 6px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.Toggle span:nth-child(1) {
  top: 13px;
}

.Toggle span:nth-child(2) {
  top: 23px;
}

.Toggle span:nth-child(3) {
  top: 33px;
}

.Toggle.active span:nth-child(1) {
  top: 23px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 23px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*PCでのスタイル指定－900px以上*/

@media screen and (min-width: 900px) {
  .logo {
    /* display: none; */
    padding: 3px;
    margin-left: 20px;
  }

  nav {
    width: 100%;
    height: 70px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
  }

  header::after {
    display: none;
  }

  nav {
    display: flex;
  }

  .Toggle {
    display: none;
  }

  .menu {
    width: 100%;
    display: flex;
    margin-top: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    height: 70px;
  }

  /*スクロールするとナビ表示*/
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    transition: 0.2s;
  }

  .menu ul {
    width: 100%;
    height: 70px;
    justify-content: center;
    flex-direction: row;
  }
  .menu ul li:not(:last-child) {
    border-bottom: none;
    width: auto;
  }

  .menu ul li a {
    padding: 0 1em;
  }

  .menu ul li a:hover {
    background-color: transparent;
  }
}

/********headerここまで********/

/*採用TOPページ*/

.rec_container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.back_clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  clip: rect(auto, auto, auto, auto);
}

.rec_contain3 {
  height: 30vh;
}

.rec_text {
  max-width: 400px;
  padding: 20px 0 20px 16px;
  /* background-color: rgba(255, 255, 255, 0.8); */
  color: #431717;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.rec_text p {
  text-align: left;
  width: fit-content;
}

.scroll-title {
  max-width: 500px;
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

/*本社・施設社員ボタン-ここから*/
.rec_btn {
  text-align: center;
}

.rec_btn a {
  border-radius: 60px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1em auto;
  max-width: 450px;
  width: 90%;
  padding: 10px 25px;
  color: #431717;
  transition: 0.3s ease-in-out;
}

.sitter_btn {
  background: #ffc2c2;
}

.office_btn {
  background: #ffc3a5;
}

.rec_btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.sitter_btn:hover {
  /* opacity: 0.7; */
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: shad26 1.5s infinite;
  color: #fff;
  background: #ff9d9d;
}

@keyframes shad26 {
  0% {
    box-shadow: 0 0 0 0 #ff9d9d;
  }
  70% {
    box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);
  }
}

.office_btn:hover {
  /* opacity: 0.7; */
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: shad27 1.5s infinite;
  color: #fff;
  background: #ffa476;
}
@keyframes shad27 {
  0% {
    box-shadow: 0 0 0 0 #ffa476;
  }
  70% {
    box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);
  }
}

.rec_btn a:hover:after {
  right: 1.4rem;
}

/*本社・施設社員ボタン-ここまで*/

/*画像固定*/
.fv_sitter {
  position: fixed;
  z-index: -1;
  top: 10%;
  left: 10%;
  max-width: 450px;
  width: 30%;
}

.fv_office {
  position: fixed;
  z-index: -1;
  bottom: -5%;
  right: 10%;
  max-width: 450px;
  width: 30%;
}

.fv_ring {
  position: fixed;
  z-index: -0.5;
  top: 45%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  max-width: 2000px;
  width: 140%;
}

.rec_contain4 {
  max-height: 400px;
  display: none;
  position: relative;
}

.fv_sitter_sp {
  position: absolute;
  top: 0;
  left: 3%;
  max-width: 300px;
  width: 45%;
}

.fv_office_sp {
  position: absolute;
  top: 0;
  right: 1%;
  max-width: 300px;
  width: 45%;
}

/*背景を動かす*/

.float {
  position: fixed;
  z-index: -2;
  top: -10%;
  left: -10%;
  width: 120vw;
  height: 120vh;
}
.target {
  display: block;
  width: 120vw;
  height: 120vh;
}

/* Animation */
.float {
  animation: floating-x 5s ease-in-out infinite alternate-reverse;
}
.target {
  animation: floating-y 3s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
  0% {
    transform: translateX(-8%);
  }
  100% {
    transform: translateX(8%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(8%);
  }
}

/*1200px以下*/
@media screen and (max-width: 1200px) {
  .rec_contain4 {
    display: block;
  }
  .rec_contain3 {
    height: 22vh;
  }

  .rec_contain1 {
    height: 50vh;
  }

  .scroll-title {
    width: 80%;
    top: 20%;
    left: 50%;
    transform: translateY(-20%) translateX(-50%);
    -webkit-transform: translateY(-20%) translateX(-50%);
  }
}

/*768px以下*/
@media screen and (max-width: 767px) {
  .rec_text {
    width: 90%;
    max-width: 310px;
  }

  .rec_contain4 {
    max-height: 230px;
  }

  .rec_contain1 {
    height: 40vh;
  }
}

/*ここまで採用TOPページの記述----------------------------------------------------------------------------*/

/*ここからシッター・施設職員採用ページの記述--------------------------------------------------------------*/
.childcare {
  color: #431717;
}

.fv_border {
  width: 75%;
  height: 97vh;
  /* max-height: 900px;
  max-width: 900px; */
  margin: 0 0 0 auto;
  border-bottom-style: solid;
  border-left-style: solid;
  border-color: #fdf0f0;
  border-radius: 0 0 0 260px;
  border-width: 90px;
  position: relative;
  z-index: 666;
}

.fv_img {
  width: 100%;
  height: 100%;
  background: url(../images/recruit/recruit_fv_pc.png) no-repeat;
  background-position-x: left;
  background-position-y: bottom;
  background-size: contain;
  position: absolute;
  z-index: 555;
  border-radius: 0 0 0 160px;
}

.fv_textbox {
  width: 48%;
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  top: 40%;
  left: 10%;
  z-index: 700;
}

.fv_tag {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;
}

.fv_tag li {
  background-color: #ffa7a7;
  border-radius: 12px;
  font-size: 2.6rem;
  padding: 0.4em 0.8em;
  color: #fff;
  box-shadow: 3px 3px 6px -2px #868686,
    1px 1px 3px rgba(255, 255, 255, 0.8) inset;
}

.fv_tag &gt; .day {
  background-color: #6dabe2;
}
.fv_tag &gt; .nursery {
  background-color: #ffce49;
}

.fv_tag &gt; .office {
  background-color: #dbc499;
}

.fv_tag li:hover {
  background-color: #ff8282;
}

.fv_tag &gt; .day:hover {
  background-color: #66b8ff;
}
.fv_tag &gt; .nursery:hover {
  background-color: #ffbf51;
}

.fv_tag &gt; .office:hover {
  background-color: #cbaf74;
}

.fv_logo {
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  margin: 10px 0 0 20px;
  position: fixed;
  z-index: 999;
}

.fv_logo &gt; a {
  width: 70px;
}

.fv_logo &gt; p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #431717;
  padding-left: 0.5em;
}

.fv_logo &gt; p &gt; span {
  font-size: 2rem;
}

/*fv_btn*/
/*エントリーボタン固定*/
.entry_fix {
  position: fixed;
  right: 3%;
  bottom: 5%;
  max-width: 200px;
  z-index: 889;
  filter: drop-shadow(3px 3px 2px rgb(204, 204, 204));
}

.entry_fix &gt; .btn:hover {
  filter: hue-rotate(290deg) saturate(1) brightness(1.2);
}

/*FV下section*/
.childcare_top {
  padding: 100px 0;
  text-align: center;
  line-height: 2;
}

/*矢印右向き*/
.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #ab9163;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}

/*section sitter-job nursery-job day-job*/
.sitter_bg {
  background: #fdf0f0;
}

.nursery_bg {
  background: #fffde3;
}

.day_bg {
  background: #effbff;
}

.sitter_bg h2,
.sitter_bg p b {
  color: #ff7c92;
}

.nursery_bg h2,
.nursery_bg p b {
  color: #ffa64d;
}

.day_bg h2,
.day_bg p b {
  color: #66b8ff;
}

.job_wrap {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding-top: 100px;
}

/* .sitter_bg &gt; .job_wrap {
  padding: 100px 0;
}

.nursery_bg &gt; .job_wrap {
  padding-bottom: 100px;
} */

.nursery_bg .job_wrap .job_left {
  order: 2;
}

.job_right {
  width: 55%;
}

.job_left {
  width: 45%;
  max-width: 650px;
  height: 650px;
  object-fit: cover;
  border-radius: 20px;
}

.nursery_bg .job_left,
.day_bg .job_left {
  object-position: 80% 50%;
}

.job_r_inner {
  width: 90%;
  margin: 0 0 0 auto; /*要素を右寄せ*/
}

/*要素を左寄せ*/
.nursery_bg .job_r_inner {
  margin: 0 auto 0 0;
}

.interview_inner {
  background: #fff;
  padding: 10px 10px 10px 30px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 3px 3px 6px -2px #868686,
    3px 3px 8px rgba(255, 255, 255, 0.8) inset;
}

.interview_wrap &gt; .slash {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
}

.interview_text {
  font-size: 1.8rem;
  padding-right: 0.5em;
  text-align: left;
}

.interview_text span {
  font-size: 2rem;
  padding-left: 0.5em;
  color: #a3844c;
}

.job_text b {
  color: #ff7c92;
}

.open_modalbtn img {
  width: 28%;
  object-fit: contain;
  max-width: 160px;
}

.interview_wrap {
  width: 70%;
  flex-direction: column;
}

.job_text {
  padding: 30px 0 20px;
}

.job_subtext {
  padding-bottom: 50px;
}

.wave_img {
  max-height: 170px;
}

.wave_pink {
  background: #fffde3;
}
.wave_yellow {
  background: #effbff;
}

/* .wave_blue_1 {
  background: #fffde3;
}

.wave_blue_2 {
  background: #fff;
} */

/*slash*/
.slash {
  position: relative;
  display: inline-block;
}

.slash::before,
.slash::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1.4px;
  border-radius: 20px;
  background-color: #431717;
}

.slash::before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: -10%;
}

.slash::after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  right: -8%;
}

/*押した時に動くボタン（hoverとclick）*/
.btn:hover {
  box-shadow: none;
  transform: translateY(3px);
}

.btn:active {
  box-shadow: none;
  transform: translateY(3px);
}

/*button*/
.button a {
  background: #ffa7a7;
  border-radius: 99px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  width: 100%;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  box-shadow: 3px 3px 6px -2px #868686,
    1px 1px 3px rgba(255, 255, 255, 0.8) inset;
}

.button a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.button a:hover {
  background: #ff8282;
  color: #fff;
}

.button a:hover:after {
  right: 1.4rem;
}

.childcare .button {
  padding-bottom: 20px;
}

.nursery_bg .button a {
  background: #ffbf51;
}

.nursery_bg .button a:hover {
  background: #ffa64d;
}

.day_bg .button a {
  background: #6dabe2;
}

.day_bg .button a:hover {
  background: #66b8ff;
}

/*モーダルウィンドウ（インタビュー）*/

.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  align-self: center;
  width: 60%;
  padding: 40px 30px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  overflow-y: auto;
  max-height: 90%;
  border-radius: 6px;
}

.modal_content p {
  padding-top: 0;
}

.close_modalbtn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: translateY(5px);
}

/*モーダルウィンドウを開いた時に背景スクロールをしない*/
html:has(input:checked) {
  overflow: hidden;
}

.open_modalbtn {
  border-radius: 12px;
  padding-right: 6px;
  padding-bottom: 60px;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin-bottom: 1px;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
}

.open_modalbtn:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px); /*下に動く*/
}

/*ラベルホバー時*/
.open_modalbtn:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.modal_inner {
  text-align: center;
}

.modal_inner &gt; .flex {
  justify-content: center;
  max-width: 1000px;
  padding-bottom: 10px;
}

.modal_q {
  padding-bottom: 0.4em;
}

.sitter_bg .modal_q {
  color: #ff7c92;
  font-weight: 700;
}

.nursery_bg .modal_q {
  color: #ffa64d;
  font-weight: 700;
}

.day_bg .modal_q {
  color: #66b8ff;
  font-weight: 700;
}

.modal-text {
  text-align: left;
  padding-top: 30px;
}

.profile_img {
  max-width: 260px;
  width: 40%;
}

.profile_name {
  padding-left: 1em;
  text-align: left;
  line-height: 1.8;
}

.profile_name &gt; span {
  font-size: 2.4rem;
}

/*押した時に動くボタン（hoverとclick）*/
.btn:hover {
  box-shadow: none;
  transform: translateY(3px);
}

.btn:active {
  box-shadow: none;
  transform: translateY(3px);
}

/*column*/
.column_bg {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
}

.column_bg &gt; p {
  padding: 20px 0 30px;
  line-height: 1.6;
}

/* コラムピックアップ */
.column_wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  width: 85%;
  padding: 50px 2% 30px;
}

.postlists {
  /*  display: flex;
  justify-content: space-between;
  align-items: flex-start; */
  display: grid;
  gap: 30px;
  width: 90%; /*コンテナの余白幅を600pxに指定*/
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  align-items: flex-start;
}

.postlists_item {
  width: 100%;
  padding-bottom: 10px;
}

/*column style.minより*/
.pickUp {
  padding: 30px 0;
}

.pickUp .heading__main {
  font-size: 3em;
}

.pickUp .pickUp__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.pickUp .pickUp__item {
  width: 29%;
  margin: 2%;
}

.pickUp .pickUp .pickUp__item:not(:nth-child(4)) {
  margin-right: 5%;
}

.pickUp .pickUp__item__text {
  margin-top: 8px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .pickUp .pickUp__item:not(:nth-child(4)) {
    margin-right: 2%;
  }

  .pickUp__item {
    display: block;
  }
  .pickUp__item_sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .postlists_item {
    padding-bottom: 20px;
  }
  .news_tittle {
    color: #ff8383;
  }

  .pickUp {
    padding: 30px 0;
  }

  .pickUp .pickUp__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5%;
  }

  .pickUp .pickUp__item {
    width: 100%;
    border-bottom: 0.1px solid #b4b4b4;
    margin-bottom: 2%;
  }

  .pickUp .pickUp .pickUp__item:not(:nth-child(4)) {
    margin-right: 2%;
  }

  .pickUp__item_sp a {
    font-size: 13px;
  }

  .pickUp__item {
    display: none;
  }

  .pickUp__item_sp {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .top_text_item {
    font-size: 3rem;
    padding: 5px;
    line-height: 0.1;
  }

  .top_text {
    left: 5%;
    top: 70%;
  }
}

/* LINE友達追加 */
#contact {
  /* background-color: #F5F0E7; */
  padding: 100px 0 250px;
}

.line_title {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  background-color: #00b900;
  color: #fff;
  border: 1px solid #00b900;
  border-radius: 20px 20px 0 0;
  position: relative; /*h2の下線*/
  font-size: 2.5rem;
}

.line_flex {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 30px 60px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  border: 2px dashed #00b900;
  border-top: none;
  border-radius: 0 0 20px 20px;
}

.line_text {
  width: 80%;
  font-size: 1.8rem;
  line-height: 1.5;
  line-height: 3rem;
}

.line_text p {
  padding-bottom: 15px;
}

.line_text img {
  width: 30%;
  text-align: center;
}

.line_btn {
  text-align: center;
}

.line_qr {
  width: 25%;
}

.line_text span {
  font-weight: 800;
  color: #00b900;
}

/*office-box*/
.office-box {
  margin: 0 auto;
  max-width: 500px;
  width: 70%;
  padding-top: 80px;
  text-align: center;
}

.office-box .button a {
  background-color: #dbc499;
  color: #431717;
}

.office-box .button a:hover {
  background-color: #cbaf74;
}

/* headerナビ */
/********headerここから********/
.date {
  color: #431717;
}

.hamburger {
  display: block;
  padding: 30px;
  top: 0;
  right: 0;
  position: fixed;
  z-index: 999;
  border: none;
  background-color: transparent;
  margin: 10px 20px 0 0;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
  color: #ffa7a7;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger__line {
  display: block;
  height: 4px;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  background-color: #ffbf51;
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: inherit;
}

.hamburger__line:before {
  background-color: #ffa7a7;
  top: -16px;
  border-radius: 3px;
}

.hamburger__line:after {
  background-color: #6dabe2;
  top: 16px;
  border-radius: 3px;
}

.hamburger__text {
  position: absolute;
  bottom: 8px;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hamburger__text::before {
  text-align: center;
  color: #ffbf51;
  font-size: 10px;
  font-weight: 900;
}

.header__nav-area {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 988;
  max-width: 400px;
  width: 80%;
  visibility: hidden;
  transition: 0.2s;
}

/* アニメーション前のメニューの状態 */
.menu {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active {
  pointer-events: auto;
  opacity: 1;
}

.header__nav-area.-active {
  right: 0;
  visibility: visible;
}

.global-navigation {
  background: #fff;
  border-radius: 0px 0px 0px 20px;
  width: 100%;
  height: auto;
  border-bottom-style: solid;
  border-left-style: solid;
  border-color: #d6cebe;
  border-width: 4px;
}

.global-navigation__list {
  padding: 60px 0 50px;
  width: 90%;
  margin: 0 auto;
}

.global-navigation__list &gt; li {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e7e9ee;
}

.global-navigation__list &gt; li a {
  transition: none;
}

.global-navigation__list &gt; li &gt; a:hover {
  opacity: 0.5;
  /*   transition: 0.3s; */
}

.global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #431717;
}

.google-navigation__list &gt; a:hover {
  opacity: 0.5;
  /*   transition: 0.3s; */
}

.global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #431717;
}

.global-navigation__list &gt; li &gt; a {
  position: relative;
}

.google-navigation__list &gt; a {
  position: relative;
}

.global-navigation__list &gt; li &gt; a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}

.google-navigation__list &gt; a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}

.global-navigation__list &gt; li &gt; a:hover:after {
  right: 0.4rem;
}

.sitter-joblink {
  color: #ff7c92;
  font-weight: 600;
}

.nursery-joblink {
  color: #ffa64d;
  font-weight: 600;
}

.day-joblink {
  color: #66b8ff;
  font-weight: 600;
}

.office-joblink {
  color: #8f7745;
  font-weight: 600;
}

.navilink_child {
  padding-left: 1em;
  color: #431717;
}

/********headerここまで********/

@media screen and (max-width: 1450px) {
  .fv_border {
    height: 80vh;
  }
}

@media screen and (max-width: 1300px) {
  .fv_textbox {
    width: 70%;
    font-size: 3.4rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 10%;
  }

  .fv_tag li {
    font-size: 2.2rem;
  }

  .entry_fix {
    right: 2%;
    bottom: 2%;
    max-width: 150px;
  }

  .modal_content {
    width: 80%;
  }
}

@media screen and (max-width: 1200px) {
  .fv_border {
    width: 90%;
    height: 76vh;
    border-width: 40px;
    border-radius: 0 0 0 200px;
  }
}

@media screen and (max-width: 1024px) {
  .job_wrap {
    flex-direction: column;
  }

  .job_right {
    width: 100%;
    max-width: 700px;
  }

  .job_left {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .job_r_inner {
    width: 100%;
  }

  .nursery_bg .job_wrap .job_right {
    order: 2;
  }

  .job_wrap {
    padding-top: 0;
  }

  .sp1024 {
    padding-top: 70px;
  }

  .job_subtext {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .fv_logo {
    margin: 10px 0 0 10px;
  }

  .fv_logo &gt; a {
    width: 55px;
  }

  .fv_logo &gt; p {
    font-size: 1.2rem;
  }

  .fv_logo &gt; p &gt; span {
    font-size: 1.6rem;
  }

  .interview_wrap &gt; .slash {
    font-size: 1.4rem;
  }

  .interview_text {
    font-size: 1.4rem;
  }

  .interview_text span {
    font-size: 1.7rem;
    padding-left: 0;
  }

  .interview_text p:first-child {
    padding-bottom: 0.2em;
  }

  .profile_name &gt; span {
    font-size: 1.8rem;
  }

  .fv_textbox {
    width: 95%;
    font-size: 2rem;
    position: static; /*ポジション解除*/
    padding: 40px 0px 0px 10%;
    margin: 0 auto;
  }

  .fv_textbox p {
    line-height: 1.5;
  }

  .fv_tag li {
    font-size: 1.6rem;
  }

  .fv_tag {
    row-gap: 10px;
    column-gap: 10px;
  }

  .childcare_top {
    padding: 40px 0;
    text-align: left;
    width: 85%;
    margin: 0 auto;
  }

  .fv_border {
    height: 52vh;
  }

  .line_qr {
    display: none;
  }

  .line_flex {
    padding: 20px 0;
  }

  .line_text {
    width: 70%;
    margin: 0 auto;
    font-size: 1.6rem;
  }

  .line_title {
    font-size: 2rem;
  }

  .line_text img {
    width: 45%;
  }

  .office-box {
    padding-top: 50px;
  }

  .column_bg {
    padding-top: 60px;
  }

  .hamburger {
    margin: 10px 10px 0 0;
    padding: 25px;
  }

  .hamburger__line {
    height: 3.6px;
    width: 50px;
  }

  .hamburger__line:before {
    top: -14px;
  }

  .hamburger__line:after {
    top: 14px;
  }

  .header__nav-area {
    width: 100%;
    max-width: none;
  }

  .global-navigation__list {
    padding: 60px 0 30px;
  }

  .postlists {
    display: block;
    width: 85%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 540px) {
  .entry_fix {
    max-width: 100px;
    right: 4%;
    bottom: 4%;
  }

  .interview_inner {
    padding: 10px;
  }

  .slash::before,
  .slash::after {
    width: 16px;
    height: 1.4px;
  }

  .slash::before {
    left: -8%;
  }

  .slash::after {
    right: -6%;
  }

  .modal_content {
    padding: 20px 5px 20px 15px;
  }

  .modal_content {
    width: 90%;
  }

  .modal-text {
    padding-top: 15px;
  }

  .open_modalbtn {
    padding-bottom: 30px;
  }

  .fv_border {
    width: 96%;
    border-width: 20px;
    border-radius: 0 0 0 100px;
  }

  .fv_img {
    background: url(../images/recruit/recruit_fv_sp.png) no-repeat;
    background-position-x: left;
    background-position-y: bottom;
    background-size: contain;
    border-radius: 0 0 0 80px;
  }

  .line_text {
    width: 80%;
  }

  .line_text p {
    font-size: 1.6rem;
  }

  .postlists {
    flex-direction: column;
    align-items: center;
  }

  .postlists_item:last-child {
    padding-bottom: 20px;
  }

  #contact {
    padding: 60px 0 290px;
  }
}

@media screen and (max-width: 500px) {
  .fv_border {
    height: 46vh;
  }
}

/*FV-ipad縦向きのみ適用 minは768の方が良い？*/
@media only screen and (min-device-width: 540px) and (max-device-width: 1024px) and (orientation: portrait) {
  .entry_fix {
    right: 2%;
    bottom: 2%;
    max-width: 150px;
  }

  .fv_border {
    height: 50vh;
    width: 95%;
    border-radius: 0 0 0 200px;
    border-width: 40px;
  }

  .fv_img {
    background: url(../images/recruit/recruit_fv_pc.png) no-repeat;
    background-position-x: left;
    background-position-y: bottom;
    background-size: contain;
  }

  .fv_textbox {
    width: 95%;
    font-size: 2.6rem;
    position: static; /*ポジション解除*/
    padding: 40px 0px 0px 10%;
    margin: 0 auto;
  }

  .childcare_top {
    padding: 40px 0;
  }
}
.cook_box {
  max-width: 120px;
  text-align: center;
  margin: 20px auto 0;
}
.cook_service {
  max-width: 100%;
  text-align: center;
  margin-top: 30px;
}

.recruit_box {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}
.recruit_service {
  max-width: 100%;
  text-align: center;
  margin-top: 30px;
}

.margin-over {
  margin-top: 30px;
}

#pageTop {
  display: none;
}

.thintop {
  display: none;
}

.side-content {
  display: none /* !important*/;
}

@media screen and (max-width: 767px) {
  .recruit__banner {
    width: 240px;
    margin-top: 10px;
  }

  .cook {
    margin-top: 10px;
  }

  .cook_service .cook {
    width: 248px;
  }

  .cook_box .cook {
    width: 120px;
  }
}

.site_map {
  max-width: 1000px;
  /* height: 330px; */
  margin: 0 auto;
  position: relative;
}

.bottom_navi {
  display: flex;
}

.bottom_navi &gt; li {
  padding-right: 1em;
}

.map_detail {
  width: 200px;
}

.sns_content {
  width: 50%;
  margin: 50px 0 0 700px;
  position: absolute;
  top: 85px;
}

.sns_content_sp {
  display: none;
}

.title {
  font-size: 17px;
  font-weight: bold;
}

.map_detail &gt; li {
  font-size: 13px;
  margin: 10px 0;
}

.yokohama_detail {
  margin-top: 10px;
}

.site_map_sp {
  display: none;
}

.footer__banner h3 {
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .site_map {
    display: none;
  }
  .site_map_sp {
    display: block;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    position: relative;
  }

  .title_sp {
    position: relative; /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 3% 3% 3% 50px;
    transition: all 0.5s ease;
  }

  /*アイコンの＋と×*/
  .title_sp::before,
  .title_sp::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background-color: #ffba00;
  }
  .title_sp::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);
  }
  .title_sp::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);
  }

  .title_sp.close::before {
    transform: rotate(45deg);
  }

  .title_sp.close::after {
    transform: rotate(-45deg);
  }

  .map_detail_sp {
    display: none;
    padding: 0 3% 3% 3%;
  }

  .map_detail_sp p {
    border-top: 1px solid rgb(207, 207, 207);
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
  }

  .map_detail_sp p:last-of-type {
    border-bottom: 1px solid rgb(207, 207, 207);
  }

  .sns_content_sp {
    display: block;
    margin-top: 30px;
  }
}

/*footer-style.min.cssからコピペ ここまで*/

/* フッターの記述 instructorより */

.footer_frame_inner {
  /* background: url(../images/footer_frame.png) no-repeat; */
  background-image: none;
  /* background-size: 100%;
  background-position: bottom; */
  /*  min-height: 160px; */
  position: relative;
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer_box {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  font-size: 14px;
  background-color: #fdf0f0;
}

.footer_logo img {
  width: 90px;
}

.company_info {
  color: #431717;
  padding: 10px 20px 0;
  font-weight: 500;
  line-height: 1.5;
}

.company_info a {
  display: inline;
}

.footer_bottom {
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  background-color: #b4a484;
}

@media screen and (max-width: 900px) {
  #footer {
    z-index: 890;
  }

  .footer_box {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    font-size: 12px;
  }

  .company_info {
    padding: 10px 5px 0;
  }

  .hp_link {
    width: 100%;
    position: absolute;
    bottom: 300px;
    padding: 10px 0 10px;
  }

  .hp_link &gt; a {
    max-width: 200px;
  }
}

/* @media screen and (max-width: 768px) {
  .footer_frame_inner {
    min-height: 200px;
  }
}
 */
@media screen and (max-width: 450px) {
  .hp_link {
    bottom: 300px;
  }
}

/*----------------------------
scroll_up ｜下から上へ出現　スクロールすると要素がふわっと出現
----------------------------*/
/* .scroll_up
{
  transition: 0.8s ease-in-out;
  transform: translateY(-80px);
  opacity: 0;
}

.scroll_up.on
{
  transform: translateY(0px);
  opacity: 1;
}

 */
.bk_img {
  background: url(../images/recruit_column/column_bg.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 270px;
  min-height: 100vh; /*コンテンツが少ない場合footer下部固定*/
}

@media screen and (max-width: 769px) {
  .bk_img {
    padding-bottom: 300px;
  }
}

@media screen and (max-width: 500px) {
  .bk_img {
    padding-top: 100px;
  }
}
/********headerここから********/
/********headerここから********/
.date {
  color: #431717;
  text-align: right;
}
.all_content {
  margin: 0 auto;
  max-width: 1200px;
  width: 85%;
}

/* .main_bk {
  background-color: #fff;
} */

.main_bk {
  padding: 90px 0 90px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .all_content {
    width: 90%;
  }
  .main_bk {
    border-radius: 10px;
    padding: 40px 0 20px;
  }

  .column_wrap {
    width: 90%;
    padding: 30px 0;
  }
}
.main_area {
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

#mainvisual img {
  width: 100%;
  max-width: 1920px;
  object-fit: cover;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  #mainvisual img {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 540px) {
  .main_area {
    width: 100%;
    padding: 0px;
  }
}
/* ------------------------category_btn-------------------------- */

.p-news__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-news__category .p-news__categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.press__categoryList {
  display: flex;
}

.p-news__category .p-news__category__text {
  font-size: 18px;
  font-weight: 500;
  width: 170px;
}

.p-news__category .p-news__category__textInner {
  border-left: 2px solid #ffd051;
  padding-left: 20px;
}

.p-news__category .p-news__category__item {
  margin: 2px 10px 3px 0;
}

.p-news__category .p-news__category__item:last-child {
  margin: 2px 0 3px 0;
}

.p-news__category .p-news__category__item input[type="radio"] {
  display: none;
}

.p-news__category .p-news__category__item label {
  display: block;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 12px;
  line-height: 1.2;
  border: 1px solid #ffd051;
  background: #fff;
  color: #ffd051;
  border-radius: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
}

.p-news__category .p-news__category__item input:checked + label {
  color: #fff;
  background: #ffd051;
}

.p-news__category .p-news__category__item.current label {
  border: 1px solid #ffd051;
  background: #ffd051;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-news__category {
    display: block;
  }
  .p-news__category .p-news__categoryList {
    margin-bottom: 20px;
  }
  .p-news__category .p-news__category__text {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .p-news__category .p-news__category__item {
    margin: 2px 8px 3px 0;
  }
  .p-news__category .p-news__category__item label {
    font-size: 12px;
    padding: 8px;
  }
}

.p-news__content .c-news__unordered {
  margin-bottom: 50px;
}

.p-news__content .c-article__item {
  width: 31%;
}

@media screen and (min-width: 768px) {
  .p-news__content .c-article__item:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .p-news__content .c-article__item:nth-child(n + 4) {
    margin-top: 2%;
  }
}

@media screen and (max-width: 767px) {
  .p-news__content {
    margin-top: 30px;
  }
  .p-news__content .c-article__item {
    width: 47%;
  }
  .p-news__content .c-article__item:not(:nth-child(2n)) {
    margin-right: 2%;
  }
  .p-news__content .c-article__item:nth-child(n + 3) {
    margin-top: 2%;
  }
}
/* ------------------------category_btn-------------------------- */

.column-title {
  font-size: 32px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
  color: #431717;
}
.post-area {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.post-preview {
  background: #eee;
  transition: all 0.3s;
  position: relative;
  width: 31%;
  margin: 0 2% 2% 0;
  max-width: 270px;
}
.post-title {
  font-size: 25px;
  margin: 0 auto;
  padding-bottom: 80px;
  color: #431717;
  overflow-wrap: break-word;
}

.post-meta {
  color: #431717;
  line-height: 2rem;
  letter-spacing: 0.09em;
  font-size: 20px;
  padding-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .post-title {
    font-size: 20px;
    padding-bottom: 30px;
  }
  .post-meta {
    font-size: 15px;
    line-height: 1.5rem;
    padding: 0 0px 30px 2px;
  }
}
.wrapper {
  max-width: 960px;
  margin: 0 auto 100px auto;
  font-size: 15px;
  padding: 0.4%;
}
#about li:first-child {
  margin-bottom: 30px;
}
#about ul {
  margin-bottom: 30px;
}
#about {
  text-align: justify;
}
#Work ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#Work img {
  width: 95%;
  margin-bottom: 23px;
}
#news dl {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #8c8c8c;
  margin-bottom: 20px;
}
#news dt {
  width: 20%;
  border-bottom: solid 1px #8c8c8c;
  padding: 15px;
}
#news dd {
  width: 80%;
  border-bottom: solid 1px #8c8c8c;
  padding: 15px;
}
#contact dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#contact dt {
  width: 15%;
  margin-bottom: 15px;
}
#contact dd {
  width: 85%;
  margin-bottom: 10px;
}
#contact dd input {
  width: 100%;
  border: solid 1px #8c8c8c;
  padding: 10px;
}
#contact .button {
  text-align: center;
}
#contact .button input {
  width: 200px;
  background-color: #000;
  color: white;
  margin: 0 auto;
  padding: 15px 0;
}
#contact dd textarea {
  width: 100%;
  height: 200px;
  border: solid 1px #8c8c8c;
  padding: 10px;
}

.page-numbers {
  text-align: center;
  padding-top: 40px;
}

.pagination {
  display: inline-block;
}

.pagination a {
  color: #431717;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  margin: 0 4px;
}

.pagination span {
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  border-radius: 4px;
  margin: 0 4px;
  background-color: #ff7c92;
  color: white;
  border: 1px solid #ff7c92;
}

/* -----------------------temp-recruit_column.
php ここまで------------------------- */
/* -----------------------single-recruit_column.
phpここから------------------------- */

.recruit_main_bk {
  padding: 30px 30px 100px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  max-width: 1200px;
  width: 85%;
  margin: 0 auto 110px;
}
@media screen and (max-width: 600px) {
  .recruit_main_bk {
    padding: 20px 10px 100px;
    width: 90%;
  }
}
.recruit_main_area {
  padding-top: 30px;
  border-radius: 20px;
  max-width: 1000px;
  width: 85%;
  margin: 0 auto;
}

.big_inner-lg {
  width: 100%;
  max-width: 1000px;
  object-fit: cover;
  margin-bottom: 30px;
}

.small_inner-lg {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  margin: 0 auto 30px;
}
@media screen and (max-width: 750px) {
  .recruit_main_area {
    width: 100%;
  }
  .big_inner-lg {
    margin-bottom: 20px;
  }
  .small_inner-lg {
    margin-bottom: 20px;
  }
}

.recruit_column-title {
  font-size: 32px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
  color: #431717;
}

.recruit_column-heading &gt; h3 {
  text-align: left;
  font-size: 25px;
  padding-bottom: 0.5rem;
  color: #431717;
  margin-bottom: 1em;
  border-bottom: 1.8px solid #431717;
}

.recruit_column-text &gt; p {
  color: #431717;
  line-height: 3rem;
  letter-spacing: 0.15em;
  font-size: 18px;
  padding-bottom: 2em;
  word-break: break-all;
}
@media screen and (max-width: 600px) {
  .recruit_column-title {
    font-size: 20px;
    padding-bottom: 30px;
  }
  .recruit_column-heading &gt; h3 {
    font-size: 18px;
  }
  .recruit_column-text &gt; p {
    font-size: 15px;
    line-height: 2.5rem;
    padding: 0 0px 2em 0.2em;
    display: block;
    letter-spacing: 0.1em;
  }
}
.recruit_wrapper {
  max-width: 960px;
  margin: 0 auto 100px auto;
  font-size: 15px;
  padding: 0.4%;
}

.component-button a {
  background: #ffa7a7;
  border-radius: 99px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 500px;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  box-shadow: 3px 3px 6px -2px #868686,
    1px 1px 3px rgba(255, 255, 255, 0.8) inset;
}

.content_title {
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
  color: #431717;
}
@media screen and (max-width: 600px) {
  .content_title {
    font-size: 16px;
  }
}
/* -----------------------single-recruit_column.
phpここまで------------------------- */

/*コラム縦画像サイズ変更 divで囲む*/
.length_img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

/* -----------------------------------------------column_button-------------------------------------------- */
.column_all_button {
  width: 98%;
  margin: 0 auto;
}

.column_all_button a {
  position: relative;
  text-align: center;
  margin: 0 0 0 auto;
  border: none;
  border-bottom: 1px solid #666;
  width: 200px;
  max-width: 90%;
  font-size: 0.9em;
}

.column_all_button a:hover {
  opacity: 0.5;
}
.column_all_button a:active {
  opacity: 0.5;
}

.column_all_button a::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #666;
  rotate: 40deg;
  position: absolute;
  right: -3px;
  bottom: 9px;
}

@media screen and (max-width: 600px) {
  .column_all_button a {
    width: 160px;
    margin-right: 20px;
  }
}

/*コラム準備中-投稿したら削除*/
.pre {
  text-align: center;
  margin: 0 auto;
  color: #856060;
}

/* ------------------------------------------------breadcrumb--------------------------------- */
.breadcrumb__list {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb__single {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
.breadcrumb {
  width: 100%;
  padding: 25px 0;
}

.breadcrumb-content {
  max-width: 1000px;
  text-align: center;
}

.breadcrumb__item {
  display: inline;
  font-size: 14px;
}

.breadcrumb__item:not(:first-child) {
  position: relative;
  margin-left: 20px;
}

.breadcrumb__item:not(:first-child):before {
  content: "";
  position: absolute;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  left: -14px;
  top: 9px;
}

@media screen and (min-width: 768px) {
  .breadcrumb__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 600px) {
  .breadcrumb__single {
    flex-direction: column;
  }
  .breadcrumb__item {
    font-size: 10px;
  }
}
/* ------------------------------------------------breadcrumb--------------------------------- */
</pre></body></html>