@charset "UTF-8";

/*
Theme Name: lifejob様オリジナルテーマ
Version: 1.9
*/

/* リセット */
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
  font-family: 'Noto Serif JP', serif;
}

main {
  overflow: hidden;
}

h1 {
  font-size: clamp(25px,6.6vw,35px);
  font-family: 'RocknRoll One', sans-serif;
}

.pc_view {
  display: initial;
}

.sp_view {
  display: none;
}

@media (max-width: 900px) {
  .pc_view {
    display: none;
  }

  .sp_view {
    display: initial;
  }
}
/* フェードアニメーション */
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration:0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration:0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ヘッダー */
header .container {
  position: fixed;
  z-index: 999;
  top: 0;
  padding-top: 3%;
  padding-left: 1%;
}

.main-logo {
  width: 380px;
  background-color: #fff;
  color: #000;
  padding: 4% 5% 5% 5%;
  white-space: nowrap;
  border-radius: 10px;
  display: flex;
  text-align: center;
  box-shadow: 1px 1px 2px;
  transition: all 0.5s;
}
@media(max-width:900px) {
  .main-logo {
    width: 280px;
  }
}

.main-logo h1 {
  color: #0c9cb5;
  margin: 6px 0 0 10px;
}
@media(max-width:900px) {
  .main-logo h1 {
    margin: 16px 0 0 10px;
  }
}

.main-logo p {
  text-align: left;
  font-size: clamp(12px,3.23vw,20px);
}

.main-logo .logo-text {
  font-size: clamp(16px,4.13vw,26px);
}

.main-logo.be-small {
  transform: scale(0.7) translateX(-20%) translateY(-5%);
}

@media(max-width:900px) {
  header .container {
    padding-top: 1%;
    padding-left: 1%;
  }

  .main-logo {
    line-height: 1.5;
  }
}

/* パンくずリスト */
.bread {
  list-style: none;
  text-align: left;
  margin-bottom: 60px;
  margin-top: 30px;
  padding-left: 2em;
  font-size: 16px;
}
.home-link {
  position: relative;
  margin-right: 20px;
}
.home-link::before {
  position: absolute;
  width: 30px;
  height: 36px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: "";
  background-image: url(./assets/img/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.bread li{
  display: inline;
}
.bread li a{
  color: inherit;
  text-decoration: none;
}
.bread li + li:before{
  content: ">";
  margin:.5em;
}

@media(max-width:800px) {
  .bread {
    font-size: 12px;
  }
}

.slider-box {
  width: 300px;
  height: auto;
  overflow: hidden;
  margin-right: 10px;
  margin-left: 10px;
  transition: all 0.3s;
}

.result-img-box {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.result-img-box img {
  transition: all .3s;
}

.im-re {
  width: 100% !important;
  max-width: 300px !important;
  height: 190px !important;
}

.im-re img{
  width: 100%;
  height: 100% !important;
}

.slider-box:hover .result-img-box img{
  transform: scale(1.2);
}

/* フッター */
footer {
  background-color: #0c9cb5;
}

footer .container {
  text-align: center;
  padding: 40px 0 175px 0;
}

.life-job {
  font-size: clamp(16px,4.26vw,30px);
  font-weight: normal;
  margin-bottom: 0.8em;
}

.footer-link {
  padding: 0.5em 0.6em 0.4em 0.6em;
  color: #000;
  font-size: clamp(12px,3.2vw,20px);
}

.footer-link:hover {
  color: #fff;
}

.small {
  margin-top: 2em;
}

@media(max-width:740px) {
  .small {
    transform: scale(0.8);
  }
}

/* 検索フォーム */
.search-form-heading {
  font-size: clamp(20px, 5.3vw, 38px);
  text-align: center;
  margin-top: 100px;
}
@media(max-width:900px) {
  .search-form-heading {
    margin-top: 40px;
  }
}

.search-form {
  font-size: 16px;
  padding: 2rem 2em;
  width: 90%;
  flex-wrap: wrap;
  background-color: #0c9cb5;
  gap: 5%;
  margin: 20px auto;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  transition: all 0.5s;
}

select {
  cursor: pointer;
  background-color: #fff;
}
@media(max-width:740px) {
  select {
   width: 90%;
   margin: 0 0 5px;
  }
}

.search-form.bottom,
.search-form-page {
  bottom: 0;
}

.form-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}

input,
select {
    border: #000 1px solid;
    padding: 0.6em  1em 0.6em 1em;
    border-radius: 10px;
    box-shadow: 1px 1px 2px;
    background-color: #fff;
}

.search-submit {
  max-width: 70px;
  text-align: center;
  box-shadow: 1px 1px 2px;
}

.search-submit.none {
  opacity: 0.5;
  pointer-events: none;
}

@media(max-width:900px) {
  .search-form {
      bottom: 0;
      flex-direction: column;
      align-items: center;
      font-size: 16px;
      padding: 20px;
  }

  .form-flex {
      width: 90%;
      margin: 0 auto;
      max-width: 370px;
  }

  input {
    width: 90%;
    max-width: 370px;
}

input,
select {
    margin: 10px 0;
}

.search-form-page {
  bottom: 0;
}
}

/* パンくずリスト */
.breadcrumbs {
  font-size: clamp(14px,3.7vw,20px);
  margin: 10px 0;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  width: 80%;
  max-width: 1200px;
  margin: 10px auto;
}

.breadcrumbs ul li {
  display: inline;
  margin-right: 5px;
  font-size: 14px;
}

.breadcrumbs ul li:last-child {
  margin-right: 0;
}

.breadcrumbs ul li:not(:last-child):after {
  content: " > ";
  margin-left: 8px;
}

/* パンくずリンクのスタイル */
.breadcrumbs a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  opacity: 0.5;
}

.breadcrumbs .separator {
  margin: 0 5px;
  color: #333;
}


.breadcrumbs .current {
  font-weight: bold;
  color: #333;
}

@media(max-width:760px) {
  .breadcrumbs ul {
    width: 90%;
  }

  .breadcrumbs ul li {
    font-size: 12px;
  }
}

/* ページネーション */
.pagination .next,
.pagination .prev {
  font-size: 0;
  position: relative;
}

.pagination .next::before {
  position: absolute;
  top: -0.9em;
  left: 0.5em;
  width: 15px;
  height: 15px;
  content: ">";
  color: #000;
  font-size: 15px;
}

.pagination .prev::before {
  position: absolute;
  top: -0.9em;
  right: 0.5em;
  width: 15px;
  height: 15px;
  content: "<";
  color: #000;
  font-size: 15px;
}

.page-numbers.current {
  color: #0c9cb5;
}

.pagi-bottom {
  margin: 50px auto !important;
  text-align: center !important;
}

/* スライダー */
.rec-box {
  width: 100%;
  margin: 0 auto;
}
.slider {
  border-radius: 10px;
  width: 100%;
  padding: 18px;
}

.slider-box {
  width: 300px;
  height: auto;
  overflow: hidden;
  margin-right: 10px;
  margin-left: 10px;
}

.slider-box:hover {
  opacity: 0.5;
}

.slider-text {
  font-size: 12px;
  line-height: 150%;
  padding: 1em;
  letter-spacing: 0.1em;
}

.slider-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.8em;
}

.slick-slide img {
  margin: 0 auto;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}

.slick-dots li button {
  font-size: 0;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: "";
  width: 10px;
  height: 10px;
  background-color: gray;
  border-radius: 100px;
}

.slick-dots li.slick-active button:before {
  background-color: #0c9cb5  !important;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;/*絶対配置にする*/
  top: 50%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 5px solid #0c9cb5;/*矢印の色*/
  border-right: 5px solid #0c9cb5;/*矢印の色*/
  height: 15px;
  width: 15px;
}
.slick-prev {/*戻る矢印の位置と形状*/
  left: 1%;
  transform: rotate(-135deg);
  z-index: 5;
}
.slick-next {/*次へ矢印の位置と形状*/
  right: 1%;
  transform: rotate(45deg);
  z-index: 5;
}

.money,
.access,
.place {
  font-size: 14px;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
  text-align: left;
}

.money::before,
.place::before {
  position: absolute;
  content: "";
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.money::before {
  background-image: url(./assets/img/money.svg);
}

.place::before {
  background-image: url(./assets/img/place.svg);
}

@media(max-width:900px) {
  .slick-dots {
      gap: 15px;
  }
}

.result-texts {
  width: 50%;
}

.result-row {
  position: relative;
}

.pagination {
  width: 50%;
  margin: 30px auto;
  text-align: right;
}
@media(max-width:900px) {
  .pagination {
    width: 100%;
  }
}

.pagination .page-numbers {
  border: 1px solid #000;
  padding: 0.5em 0.7em;
}

.pagination .next, .pagination .prev,
.page-numbers.dots {
  border: none;
}

.page-numbers.current {
  color: #000;
  background-color: #0c9cb5;
}

#page-home a img {
  width: auto;
  height: 60px;
}

@media(max-width:800px) {
  #page-home a img {
    width: 60px;
    height: auto;
  }
}

.return-to-list a {
  font-size: 20px;
  background-color: #0c9cb5;
  border: 1px solid #0c9cb5;
  color: #000;
  border-radius: 10px;
  padding: 1em 0.8em 0.8em 0.8em;
  box-shadow: 1px 1px 2px;
  display: block;
  width: 300px;
  margin: 20px auto;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}

/* お知らせ */
.news {
  margin-bottom: 120px;
}

.news-list {
  max-width: 860px;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
}
@media(max-width:900px) {
  .news-list {
    margin: 20px auto;
    display: block;
  }
}

.news-item {
  background-color: #0e9fb927;
  margin: 10px;
  width: calc((100% - 60px) / 3);
}
@media(max-width:900px) {
  .news-item {
    width:95%;
    margin: 0 auto 20px;
  }
}

.news-link {
  display: block;
  padding: 10px;
  font-size: 16px;
}
.news-link img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.news-link small {
  display: block;
  font-size: 16px;
  margin-right: 20px;
  color: #4c4b4b;
}