@charset "UTF-8";
/*  RESET CSS
------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
::before,
::after {
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html,
body {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

html {
  overflow-y: scroll;
  cursor: default;
}

body {
  line-height: 1;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-print-color-adjust: exact;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
  line-height: 1.4em;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
}

td,
th {
  padding: 0;
}

blockquote {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  cursor: pointer;
}

a:active,
a:hover {
  outline-width: 0;
}

a:focus,
*:focus {
  outline: none;
}

img {
  border-style: none;
  vertical-align: bottom;
}

[type="text"],
[type="tel"],
[type="email"],
[type="date"],
[type="number"],
[type="submit"],
[type="button"],
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

input,
select {
  vertical-align: middle;
}

select {
  border: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* IEのinput要素に出てくるマークを消去 */
input::-ms-clear {
  visibility: hidden;
}

/* IEのinput要素に出てくるマークを消去 */
input::-ms-reveal {
  visibility: hidden;
}

@font-face {
  font-family: "851MkPOP_002";
  src: url("../fonts/851MkPOP_002.eot?") format("oldIE"),
    url("../fonts/851MkPOP_002.woff") format("woff"),
    url("../fonts/851MkPOP_002.ttf") format("truetype");
}

/*  THEME CSS
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #222;
  background-color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meyryo, sans-serif;
  font-size: calc(25 / 750 * 100vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.075em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 801px) {
  body {
    font-size: calc(15 / 1200 * 100vw);
  }
}

@media screen and (min-width: 1200px) {
  body {
    font-size: 1.5em;
  }
}

/*  リンク
-------------------------------------------------------*/
a {
  transition: all 0.3s;
}

a:hover {
  cursor: pointer;
}

a.opacity {
  display: block;
}

a.opacity:hover {
  opacity: 0.7;
}

/*  UTILIS
------------------------------------------------------------------------------*/
/*  配置
-------------------------------------------------------*/
.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .none__sp {
    display: none !important;
  }
  .br__pc {
    display: none;
  }
  .br__sp {
    display: block;
  }
}

@media screen and (min-width: 801px) {
  .none__pc {
    display: none !important;
  }
  .br__pc {
    display: block;
  }
  .br__sp {
    display: none;
  }
}

/* ---------------------------------- 段落 */
.paragraph p {
  margin-bottom: 1.5em;
  line-height: 1.8em;
}

.paragraph p:last-child {
  margin-bottom: 0;
}

/*  画像
-------------------------------------------------------*/
.img__fit {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/*  main
------------------------------------------------------------------------------*/
/*ボタン*/
.hamburger_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  cursor: pointer;
  background-color: #7cb81b;
  z-index: 9999;
}

.hamburger_btn .line {
  position: absolute;
  left: 36px;
  width: 32px;
  height: 2px;
  background: #fff;
  text-align: center;
}

.hamburger_btn .line_01 {
  top: 36px;
  transition: 0.4s ease;
}

.hamburger_btn .line_02 {
  top: 46px;
  transition: 0.4s ease;
}

.hamburger_btn .line_03 {
  top: 56px;
  transition: 0.4s ease;
}

.btn_line01 {
  transform: translateY(10px) rotate(-45deg);
  transition: 0.4s ease;
}

.btn_line02 {
  transition: 0.4s ease;
  opacity: 0;
}

.btn_line03 {
  transform: translateY(-10px) rotate(45deg);
  transition: 0.4s ease;
}

/*サイドバー*/
.menu-enter-active,
.menu-leave-active {
  transition: opacity 0.4s;
}

.menu-enter,
.menu-leave-to {
  opacity: 0;
}

.menu-leave,
.menu-enter-to {
  opacity: 1;
}

.menu {
  background: url(../img/common/menu-bg.png) no-repeat left, #f8faf3;
  background-size: cover;
  z-index: 999;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
}

.menu .menu-header {
  background-color: #fff;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu .menu-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
}

.menu .menu-inner .links {
  display: flex;
  width: 43vw;
  position: relative;
  top: -5vw;
}

.menu .menu-inner .links a:hover {
  opacity: 0.7;
}

.menu .menu-inner .links ul {
  font-size: 16px;
  font-size: 1.6rem;
}

.menu .menu-inner .links ul li {
  display: block;
  margin-bottom: 2vw;
  text-align: left;
}

.menu .menu-inner .links ul li a:hover {
  color: #7cb81b;
  text-decoration: underline;
}

.menu .menu-inner .links .links01 {
  width: 67vw;
  font-weight: 700;
}

.menu .menu-inner .links .links02 {
  width: 33vw;
  font-weight: 500;
}

/* 共通　*/
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-title01 {
  text-align: center;
  margin-bottom: 50px;
}

.section-title01-txt {
  margin-top: 30px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 32px;
  font-size: 3.2rem;
}

.flexbox {
  display: flex;
}

.font2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.font3 {
  font-family: "851MkPOP_002", sans-serif;
}

.lineYellowSide {
  border-right: 6px solid #ffef00;
}

.underLineYellow {
  background: linear-gradient(transparent 80%, #ffef00 80%);
}

button.btn-primary {
  background-color: #42a5d4;
  border-radius: 30px;
  padding: 15px 0;
  transition: all 0.3s;
}

button.btn-primary a {
  vertical-align: bottom;
  font-weight: 600;
  padding: 15px 15px 15px 25px;
  color: #fff;
  transition: all 0.3s;
}

button.btn-primary:hover {
  background-color: #fff;
  transition: all 0.3s;
}

button.btn-primary:hover a {
  color: #42a5d4;
  transition: all 0.3s;
}

button.btn-primary a::after {
  content: "";
  position: relative;
  left: 10px;
  padding-right: 20px;
  border-radius: 40px;
  display: inline-block;
  width: 8px;
  height: 16px;
  background-image: url(../img/common/arrow-2x.png);
  background-size: contain;
  vertical-align: middle;
  transition: all 0.3s;
}

button.btn-primary:hover a::after {
  background-image: url(../img/common/arrow-blue-2x.png);
  position: relative;
  left: 20px;
  transition: all 0.3s;
}

button.secondary {
  background-color: #ef9091;
  border-radius: 10px;
}

button.secondary a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  padding: 2vw;
  line-height: 56px;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

button.secondary a::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 32px;
  height: 25px;
  background-image: url(../img/common/icon-apply-2x.png);
  background-size: contain;
  vertical-align: middle;
  transition: all 0.3s;
}

button.secondary a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.radius01 {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/*  HEADER */
header {
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
}

header .header-logo {
  width: 210px;
  padding-left: 20px;
}

header .header-nav01 ul {
  font-weight: 600;
  position: relative;
  right: 100px;
}

header .header-nav01 ul li {
  display: inline-block;
  margin-right: 50px;
  text-align: center;
}

header .header-nav01 ul li a:hover {
  color: #7cb81b;
}

header .header-nav01 ul img {
  display: block;
  margin: 0 auto;
  width: auto;
  margin-bottom: 4px;
}
header .header-nav01 ul li.menu-appli img {
  margin-bottom: 0;
}

/*  トップページ FV */
.fv {
  display: flex;
  justify-content: flex-end;
}

.fv .fv-left {
  padding: 7vw ;
	z-index:2;
  background-image: url(../img/top/fv-left.png);
  background-position: bottom;
}

.fv .fv-left .fvLogo {
  width: 100%;
  max-width: 148px;
  margin: 0 auto 50px;
}
.fv .fv-left .fv-left-catch{
width: 25vw;
}
.fv .fv-left .fv-left-catch h2 {
  margin: 0 auto;
  font-size: 32px;
  font-size: 3.2rem;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl　;
	-ms-writing-mode: tb-rl　;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	font-weight: 500;
	width:100%;
  max-width: 220px;
  line-height: 6rem;
}

.fv .fv-right {
  background: url(../img/top/mainvisual.jpg) no-repeat center center;
  background-size: cover;
  width: 75vw;
  border-bottom-left-radius: 40px;
}

.fv .main_imgBox {
  z-index: 1;
  width: 100%;
  border-bottom-left-radius: 40px;
  overflow: hidden;
  position: relative;
}

.fv .main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 36s 0s infinite;
}

.fv .main_img:nth-of-type(2) {
  animation-delay: 6s;
}

.fv .main_img:nth-of-type(3) {
  animation-delay: 12s;
}

.fv .main_img:nth-of-type(4) {
  animation-delay: 18s;
}

.fv .main_img:nth-of-type(5) {
  animation-delay: 24s;
}

.fv .main_img:nth-of-type(6) {
  animation-delay: 30s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

/* トップページ serviceType */
.serviceType {
  position: relative;
}

.serviceType .section-body {
  background-color: #f8faf3;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: flex;
  width: calc(1120 / 1200 * 100vw);
  max-width: 1120px;
  margin: 0 auto;
}

.serviceType .section-body .inner {
  padding: 80px 60px;
  position: relative;
  width: 50vw;
}

.serviceType .section-body .inner::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 6px;
  top: 0;
  background-color: #7cb81b;
}

.serviceType .section-body .title01 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-bottom: 40px;
}

.serviceType .section-body .explane01 {
  margin-bottom: 40px;
  font-size: 18px;
  font-size: 1.8rem;
}

.serviceType .section-body .hanikurohaken-img {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 11vw;
  max-width: 120px;
}

.serviceType .section-body .matching-img {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 16vw;
  max-width: 220px;
}

.serviceType .section-body .hanikurohaken::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 560px;
  top: 0;
  left: 100%;
  border-right: dotted 5px #7cb81b;
}

.serviceType .serviceType-reason {
  width: calc(880 / 1000 * 100vw);
  max-width: 880px;
  margin: 160px auto 0;
  position: relative;
  z-index: 1;
  border-radius: 40px;
}

.serviceType .serviceType-reason .serviceType-reason-inner {
  padding: 4vw;
}

.serviceType .serviceType-reason::before,
.serviceType .serviceType-reason::after {
  border-radius: 40px;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}

.serviceType .serviceType-reason::before {
  left: 0;
  top: 0;
  border: solid #7cb81b 3px;
  z-index: -1;
}

.serviceType .serviceType-reason::after {
  background-color: #f6f6f6;
  top: 20px;
  left: 20px;
  z-index: -2;
}

.serviceType .title02 {
  text-align: center;
  margin: 0 auto 2vw;
  color: #7cb81b;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.serviceType .title02::after {
  content: url(../img/common/bee01.png);
  position: absolute;
  top: 40px;
  right: -18px;
}

.serviceType .serviceType-reason-inner-body {
  display: flex;
  justify-content: space-between;
}

.serviceType .serviceType-reason-inner-body .inner-left {
  max-width: 460px;
}

.serviceType .serviceType-reason-inner-body .inner-left p {
  margin-top: 1vw;
}

.serviceType .serviceType-reason-inner-body .inner-left button {
  margin-top: 3vw;
}

.serviceType .title03 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
}

.serviceType:after {
  margin-top: 100px;
  content: "";
  position: absolute;
  border-top: 10vw solid transparent;
  border-right: 50vw solid #fff;
  border-left: 50vw solid #fff;
  transform: rotate(180deg);
}

/* トップページ sitterInterview */
.sitterInterview {
  background: url(../img/top/sitterInterview-bg.png);
}

.sitterInterview .section-title01 p {
  margin-top: 3vw;
  font-size: 18px;
  font-size: 1.8rem;
}

.sitterInterview .section-body {
  width: calc(1120 / 1200 * 100vw);
  max-width: 1000px;
  margin: 0 auto;
}

.sitterInterview .section-body .interview-cont {
  text-align: center;
}

.sitterInterview .section-body .interview-cont .interview-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2vw;
}

.sitterInterview .section-body .interview-cont .interview-list article {
  width: 32%;
}

.sitterInterview .section-body .interview-cont .interview-list .interview-img {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.sitterInterview
  .section-body
  .interview-cont
  .interview-list
  .interview-img
  img {
  transition: 0.5s all;
}

.sitterInterview
  .section-body
  .interview-cont
  .interview-list
  .interview-img
  button {
  display: block;
  margin: 0 auto;
}

.sitterInterview .section-body .interview-cont .interview-list a:hover img {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
  border-radius: 40px;
}

.sitterInterview
  .section-body
  .interview-cont
  .interview-list
  .interview-name
  h4 {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 1vw 0 0;
}

.sitterInterview .section-body .interview-cont .interview-list .interview-cat {
  color: #ef9091;
  font-size: 16px;
  font-size: 1.6rem;
}

.sitterInterview .flow {
  padding: 5vw 0 0;
  text-align: center;
}

.sitterInterview .flow .flow-title {
  width: 100%;
  position: relative;
}

.sitterInterview .flow .flow-title::before,
.sitterInterview .flow .flow-title::after {
  position: absolute;
  top: 20px;
  width: 46%;
  content: "";
  border-top: solid 3px #7cb81b;
}

.sitterInterview .flow .flow-title::before {
  left: 0;
}

.sitterInterview .flow .flow-title::after {
  right: 0;
}

.sitterInterview .flow .flow-title h4 {
  font-weight: 500;
  color: #7cb81b;
  font-size: 24px;
  font-size: 2.4rem;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.sitterInterview .flow .flow-title p {
  font-size: 16px;
  font-size: 1.6rem;
}

.sitterInterview .flow-cont {
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
}

.sitterInterview .flow-cont .flow-cont-inner {
  display: flex;
  background-color: #fff;
  border-radius: 40px;
  width: 100vw;
  max-width: 480px;
  vertical-align: middle;
  align-items: center;
}

.sitterInterview .flow-cont .flow-cont-img {
  overflow: hidden;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.sitterInterview .flow-cont .flow-cont-img img {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  transition: 0.5s all;
}

.sitterInterview .flow-cont .flow-cont-txtlink {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 auto;
  transition: 0.5s all;
}

.sitterInterview .flow-cont .flow-cont-txtlink::after {
  content: "";
  margin-left: 10px;
  display: inline-block;
  width: 8px;
  height: 16px;
  background-image: url(../img/common/arrow-blue-2x.png);
  background-size: contain;
  vertical-align: middle;
  transition: 0.5s all;
}

.sitterInterview .flow-cont a:hover .flow-cont-img img {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}

.sitterInterview .flow-cont a:hover .flow-cont-txtlink::after {
  margin-left: 15px;
  transition: 0.5s all;
}

.column .section-body {
  width: calc(1000 / 1120 * 100vw);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 6vw;
  border-bottom: dotted 5px #7cb81b;
}

.column .section-body .column-cont {
  display: flex;
  justify-content: space-around;
  text-align: left;
}

.column .section-body .column-cont article {
  width: 32%;
  max-width: 300px;
  position: relative;
}

.column .section-body .column-cont article .column-date {
  z-index: 999;
  font-size: 8px;
  font-size: 0.8rem;
  color: #fff;
  position: absolute;
  top: -10px;
  left: 20px;
  display: inline-block;
  width: 50px;
  height: 46px;
  text-align: center;
  background: #ef9091;
}

.column .section-body .column-cont article .column-date .month {
  position: relative;
  top: 3px;
}

.column .section-body .column-cont article .column-date .date {
  font-weight: 600;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
}

.column .section-body .column-cont article .column-date::after {
  position: absolute;
  content: "";
  top: 21px;
  left: 0;
  display: block;
  border: 25px solid #ef9091;
  border-bottom-width: 10px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.column .section-body .column-cont article .column-img {
  border-radius: 40px;
  overflow: hidden;
  width: 300px;
  height: 200px;
}

.column .section-body .column-cont article .column-img img {
  transition: 0.5s all;
}

.column .section-body .column-cont article a:hover .column-img img {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}

.column .section-body .column-cont article .column-cat {
  color: #ef9091;
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 1vw;
}

.column .section-body .column-cont article .column-title h4 {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 1vw;
}

.column .section-body .column-cont article .column-txt {
  margin-top: 1vw;
  font-size: 16px;
  font-size: 1.6rem;
}

.column .section-body button {
  margin-top: 3vw;
}

.linkarea {
  width: calc(1000 / 1120 * 100vw);
  max-width: 1000px;
  margin: 0 auto 10vw;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.linkarea a {
  display: flex;
  align-items: center;
}

.linkarea .linkarea-txt {
  margin-left: 2vw;
  vertical-align: middle;
}

.linkarea .linkarea-txt h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 76px;
}

.linkarea .linkarea-txt span {
  font-weight: 700;
  color: #42a5d4;
  padding-top: 3vw;
}

.linkarea .linkarea-txt span::after {
  content: "";
  margin-left: 10px;
  display: inline-block;
  width: 8px;
  height: 16px;
  background-image: url(../img/common/arrow-blue-2x.png);
  background-size: contain;
  vertical-align: middle;
  transition: 0.5s all;
}

.linkarea .linkarea-txt::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 6px;
  top: 0;
  background-color: #7cb81b;
}

.linkarea .linkarea-img {
  overflow: hidden;
}

.linkarea .linkarea-img img {
  transition: 0.5s all;
}

.linkarea a:hover .linkarea-img img {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}

.linkarea a:hover .linkarea-txt span::after {
  margin-left: 15px;
  transition: 0.5s all;
}

.migration {
  display: flex;
}

.migration .toContact {
  background-color: #fcf1f1;
}

.migration .toContact a .migration-inner {
  border-color: #ef9091;
}

.migration .toContact a .migration-inner span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: 2.4rem;
  color: #ef9091;
}

.migration .toContact a .migration-inner span::after {
  content: "";
  margin-left: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow-pink-2x.png);
  background-size: contain;
  vertical-align: middle;
  position: relative;
  transition: 0.5s all;
}

.migration .toContact a:hover .migration-inner span::after {
  transition: 0.5s all;
  margin-left: 20px;
}

.migration .toWork {
  background-color: #f9f9f3;
}

.migration .toWork a .migration-inner {
  border-color: #7cb81b;
}

.migration .toWork a .migration-inner span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: 2.4rem;
  color: #7cb81b;
}

.migration .toWork a .migration-inner span::after {
  content: "";
  margin-left: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow-green-2x.png);
  background-size: contain;
  vertical-align: middle;
  position: relative;
  transition: 0.5s all;
}

.migration .toWork a:hover .migration-inner span::after {
  transition: 0.5s all;
  margin-left: 20px;
}

.migration .migration-inner img {
  display: block;
  margin: 0 auto 1vw;
}

.migration > div {
  width: 50%;
  padding: 2vw 0;
  max-height: 300px;
}

.migration > div > a .migration-inner {
  width: calc(100% - 4vw);
  height: calc(300px - 4vw);
  margin: 0 auto;
  border-radius: 40px;
  border-style: solid;
  border-width: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  font-size: 14px;
  font-size: 1.4rem;
}

footer a:hover {
  color: #7cb81b;
  text-decoration: underline;
}

footer .sitemap01 {
  display: flex;
  justify-content: space-between;
  width: calc(1120 / 1220 * 100vw);
  max-width: 1120px;
  margin: 3vw auto;
}

footer .sitemap01 dl dt {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}

footer .sitemap01 dl dd {
  display: block;
  margin: 1em 2em;
}

footer .sitemap01 dt::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 20px;
  height: 23px;
  background-image: url(../img/common/arrow-green-2x.png);
  background-size: contain;
  vertical-align: middle;
}

footer .sitemap01 .sitemap-salary {
  width: 17vw;
}

footer .sitemap01 .sitemap-salary dt::before {
  background-image: url(../img/common/sitemap-salary-2x.png);
}

footer .sitemap01 .sitemap-childcare {
  width: 41vw;
}

footer .sitemap01 .sitemap-childcare dt::before {
  background-image: url(../img/common/sitemap-childcare-2x.png);
}

footer .sitemap01 .sitemap-appli {
  width: 42vw;
}

footer .sitemap01 .sitemap-appli dt::before {
  background-image: url(../img/common/sitemap-appli-2x.png);
}

footer .sitemap02 {
  border-top: #f9f9f3 solid 2px;
  padding: 2vw 2vw 1vw 2vw;
}

footer .sitemap02 ul li {
  font-weight: 700;
  margin-right: 1vw;
  display: inline-block;
}

footer .sitemap03 {
  padding: 0 2vw 2vw 2vw;
}

footer .sitemap03 ul li {
  margin-right: 1vw;
  display: inline-block;
}

footer .footer-bottom {
  background-color: #333333;
  color: #aaaaaa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw;
}

footer .footer-bottom p {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
}

footer .footer-bottom .sns ul {
  display: flex;
}

footer .footer-bottom .sns ul li {
  margin-left: 2vw;
}

@media screen and (max-width: 800px) {
  header {
    background: #fff;
  }
  header .header-nav01 ul li a {
    font-size: 16px;
    font-size: 1.4rem;
  }
  .fv {
    margin-top: 100px;
  }
  .serviceType .section-body .hanikurohaken-img {
    position: relative;
    margin: 5vw auto 0;
    top: auto;
    right: auto;
  }
  .serviceType .section-body .matching-img {
    position: relative;
    margin: 5vw auto 0;
    top: auto;
    right: auto;
  }
  .serviceType .section-body .hanikurohaken::after {
    height: 90vw;
  }
  .serviceType .section-body .inner {
    padding: 7vw;
  }
  .serviceType .serviceType-reason .serviceType-reason-inner {
    padding: 8vw;
  }
  .serviceType .serviceType-reason-inner-body {
    display: block;
  }
  .serviceType .serviceType-reason-inner-body .inner-left {
    max-width: 100%;
  }
  .serviceType .serviceType-reason-inner-body .inner-right {
    max-width: 300px;
    margin: 5vw auto 0;
  }
  .serviceType .serviceType-reason-inner-body .inner-left p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .serviceType .title02::after {
    top: -13vw;
  }
  .sitterInterview .flow-cont {
    display: block;
  }
  .sitterInterview .flow-cont .flow-cont-inner {
    max-width: 100%;
    margin-top: 5vw;
  }
  .linkarea {
    display: block;
  }
  .linkarea .toTraining {
    margin-bottom: 5vw;
  }
  footer .sitemap01 {
    flex-wrap: wrap;
  }
  footer .sitemap01 .sitemap-salary {
    width: 30vw;
  }
  footer .sitemap01 .sitemap-childcare {
    width: 60vw;
  }
  footer .sitemap01 .sitemap-appli {
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  button.btn-primary {
    font-size: 1.5em;
    width: 100%;
  }
  header {
    height: 20vw;
  }
  header .header-nav01 ul {
    right: 20vw;
  }
  header .header-nav01 ul li {
    margin-right: 5vw;
  }
  .hamburger_btn {
    width: 20vw;
    height: 20vw;
  }
  .hamburger_btn .line {
    left: 6vw;
  }
  .hamburger_btn .line_01 {
    top: 6vw;
  }
  .hamburger_btn .line_02 {
    top: 9vw;
  }
  .hamburger_btn .line_03 {
    top: 12vw;
  }
  .fv {
    margin-top: 20vw;
    display: block;
  }
.fv .fv-left .fv-left-catch{
width: 100%;
}
  .fv .main_imgBox {
    width: 100%;
    height: 50vh;
  }
  .serviceType .section-body .title01 {
    margin-bottom: 5vw;
}
.serviceType .section-body .explane01 {
  margin-bottom: 5vw;
}
  .serviceType .section-body {
    display: block;
  }
  .serviceType .section-body .inner {
    width: 100%;
    padding: 10vw;
  }
  .serviceType .section-body .hanikurohaken-img {
    width: 100vw;
  }
  .serviceType .section-body .matching-img {
    width: 100vw;
    width: 100%;
  }
  .section-title01-txt {
    font-size: 8vw;
    padding: 0px;
  }
  .serviceType .section-body .title01 {
    font-size: 8vw;
  }
  .serviceType .section-body .hanikurohaken::after {
    content: none;
  }
  .serviceType .serviceType-reason .serviceType-reason-inner {
    padding: 10vw;
  }
  .serviceType .title02::after {
    top: -23vw;
  }
  .serviceType .serviceType-reason::after {
    top: 3vw;
    left: 3vw;
  }
  .serviceType .title03 {
    margin: 8vw auto;
  }
  .sitterInterview .section-body .interview-cont .interview-list article {
    width: 100%;
    margin-bottom: 8vw;
  }
  .sitterInterview .section-body .interview-cont .interview-list {
    flex-wrap: wrap;
  }
  .sitterInterview .flow {
    padding: 24vw 0 0;
  }
  .sitterInterview .flow .flow-title::before,
  .sitterInterview .flow .flow-title::after {
    width: 40%;
  }
  .sitterInterview .flow-cont .flow-cont-img {
    width: 50%;
  }
  .column .section-body .column-cont {
    flex-wrap: wrap;
  }
  .column .section-body .column-cont article {
    width: 100%;
    margin-bottom: 10vw;
  }
  .column .section-body {
    padding-bottom: 20vw;
  }
  .linkarea .linkarea-img {
    width: 30%;
  }
  .linkarea .linkarea-txt h4 {
    font-size: 5vw;
  }
  .linkarea .linkarea-txt {
    margin-left: 4vw;
  }
  .linkarea .toFlow {
    position: relative;
  }
  .migration {
    flex-wrap: wrap;
  }
  .migration > div {
    width: 100%;
  }
  footer .sitemap01,
  footer .sitemap02,
  footer .sitemap03 {
    display: none;
  }
  footer .footer-bottom .sns ul li {
    margin-left: 5vw;
  }
  footer .footer-bottom .sns ul li a img {
    vertical-align: middle;
  }
  header .header-logo {
    display: none;
  }
  .menu{
    background-image: none;
  }
  .menu .menu-header {
    height: 20vw;
  }
  #hamburger .menu-header ul {
    right: -10vw;
  }
  #hamburger .menu-inner ul {
    right: -10vw;
  }
  .menu .header-nav01 ul li {
    margin-right: 1em;
  }
  .menu .menu-inner .links {
    display: block;
    width: 100%;
  }
  .menu .menu-inner {
    align-items: flex-start;
  }
  .menu .menu-inner .links .links01 {
    width: 100%;
  }
  .menu .menu-inner .links .links02 {
    width: 100%;
  }
  header .menu-inner ul li a {
    font-size: 4vw;
  }
  .menu .menu-inner {
    top: 20vw;
    position: relative;
  }
  .menu .menu-inner .links ul li {
    margin-bottom: 4vw;
  }
  .menu .menu-inner .links .links02 button {
    width: 80vw;
  }
  .menu .menu-inner .links .links02 button a {
    width: 100%;
  }
  .menu {
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
