@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
/* -------------------------------------------------------
name : base.css
version : 1.0
viewport : sp -599,tb 600-1366 pc 1366-
--------------------------------------------------------- */

/* var
---------------------------------------------------------------- */
:root {
  /* basic color */
  --black: #61584e;
  --black-sub: #3c3228;
  --white: #fdfcfa;
  --white-rgb: 253, 252, 250;
  --white-sub: #fffef9;
  --beige: #f9f7f1;
  --gray: #f2f2f2;
  --border-gray: #eeeeee;
  --light-txt: #f6f9e8;
  --hero-bg: #fffef9;
  --light-green: #def2c8;
  --dashed-green: #cfdcaf;
  --line-green: #def2c8;

  --nry-main: #ffc000; /* 保育園 */
  --cpn-main: #00930f; /* 法人 */
  --rmt-main: #7cc8ff; /* 採用 */
  --usr-main: #91c425; /* 利用者 */

  /* layout */
  --base-width: 1366px;
  --wrapper-width: 94.14348462664715vw;
  --contents-width: 1000px;
  --header-height: 44px;
  --hamburger-width: 40px;
}
@media only screen and (max-width: 1024px) {
  :root {
    --wrapper-width: 90vw;
  }
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 599px) {
  :root {
    --wrapper-width: 94vw;
  }
  html {
    font-size: 12px;
  }
}

/* 画面サイズ 600px 未満 */
@media (width < 600px) {
  /* スタイルルール */
}

/* 画面サイズ 600px 以上 1200px 未満 */
@media (600px <= width < 1200px) {
  /* スタイルルール */
}

/* 画面サイズ 1200px 以上 */
@media (1200px <= width) {
  /* スタイルルール */
}

/* unit
---------------------------------------------------------------- */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
a,
a:hover {
  text-decoration: none;
  color: inherit;
}
p {
  margin-bottom: 0;
}
.main-cl {
  color: var(--cpn-main);
}
/* フォント
---------------------------------------------------------------- */
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../webfonts/ZenKakuGothicNew-Black.woff') format('woff');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../webfonts/ZenKakuGothicNew-Bold.woff') format('woff');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../webfonts/ZenKakuGothicNew-Light.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../webfonts/ZenKakuGothicNew-Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('../webfonts/ZenKakuGothicNew-Bold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}
/* list
---------------------------------------------------------------- */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
li {
  list-style: none;
}
/* flex box
---------------------------------------------------------------- */
.base-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.base-flex-sb {
  display: flex;
  justify-content: space-between;
}
.base-flex-colum {
  display: flex;
  flex-direction: column;
}
.base-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.base-flex-row {
  display: flex;
  flex-direction: row;
}
.base-flex-right {
  flex-grow: 1;
}
.base-flex-end {
  display: flex;
  justify-content: end;
}
/* margin
---------------------------------------------------------------- */
.m-zr {
  margin: 0 !important;
}
.m-center {
  margin-inline: auto !important;
}
.m-bottom {
  margin-top: auto !important;
}
.m-btm20 {
  margin-bottom: 23.5px !important;
}
.m-t80{
  margin-top: 5rem;
}
/* padding
---------------------------------------------------------------- */
.p-zr {
  padding: 0 !important;
}
.p-btm20 {
  padding-bottom: 20px !important;
}
/* パンくずリスト
---------------------------------------------------------------- */
.page-breadcrumb {
  padding: 0 2rem 1rem;
  border-bottom: 2px solid var(--usr-main);
  /* margin-inline: -2rem;
  margin-top: -1rem; */
}
.breadcrumb-list {
  width: var(--wrapper-width);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  padding: 0;
  margin: 0;
}
.breadcrumb-list .home {
  color: var(--usr-main);
}
.breadcrumb-arrow {
  width: 0.5rem;
  margin-inline: 1rem;
}
.breadcrumb-list > li{
  position: relative;
  margin-right: 1rem;
}
.breadcrumb-list > li::after{
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: url("../img/breadcrumb_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top:50%;
  right: -1rem;
  transform: translateY(-50%);
}
.breadcrumb-list > li:last-child::after{
  content: "";
  display: none;
}
.breadcrumb-list > li:first-child > a > span{
  color: var(--usr-main);
}

/* animation
---------------------------------------------------------------- */
.top-ani-1 {
  animation: text-up 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.top-ani-2 {
  animation: text-up 1s 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.top-ani-3 {
  animation: text-up 1s 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.top-ani-4 {
  animation: fade-in 1.5s 1.5s ease-in-out both;
}
.top-ani-5 {
  animation: fade-in 1s 2s ease-in both;
}
@keyframes top-slide {
  from {
    opacity: 0;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes text-up {
  from {
    opacity: 0;
    transform: translate3d(0, 90%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-in {
  from {
    transform: translateY(-109px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
