/*
Theme Name: sleab-original
Theme URL: https://sleab.jp/
Author: ichi
Author URL: https://sleab.jp/
Description: スリーブ採用サイト専用テーマ
Version: 1.0
*/

body,
html {
  margin: 0;
  padding: 0;
}

/* wordpress管理バー回避 */
body.admin-bar .custom-navbar {
  top: 32px;
  /* 管理バーの高さぶん下げる */
}

body.admin-bar .hero-message {
  margin-top: 32px;
  /* 管理バー分ずらす */
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #27489C;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: underline;
}

a:hover {
  color: #ffd700;
  /* ゴールドなどアクセントカラー */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

.btn-outline-primary {
  color: #27489C;
  border-color: #27489C;
  background-color: #ffffff00;
  border-width: 3px;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #ffffff;
  background-color: #27489C;
  border-color: #27489C;
}

/* ヘッダー */

/* Logo設定 */
.custom-logo {
  width: 100%;
  max-width: 78.13px;
  height: auto;
  position: relative;
  bottom: 7px;
  /* 負の値で下げる／正の値で上げる */
}


.custom-navbar {
  background-color: #27489C !important;
}

.custom-navbar .navbar-nav .nav-link {
  color: #fff;
  font-weight: bold;
}


/*　------------------
    indexページ    
    ヒーローヘッダー

    ------------------　*/


.index-hero-header {
  height: 140vh;
  background-image: url('./images/bg-pc.png');
  /* 画像の場合 */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  /* 垂直中央 */
  justify-content: center;
  /* 横中央（必要なら） */
  color: #fff;
}

.hero-center {
  background-color: #E2E53E;
  padding: 3em 0;
}

.hero-message {
  font-size: 80px;
  font-weight: 700;
}


.hero-catch {
  font-size: 60px;
  font-weight: 700;
  color: #000000;
}


.hero-name-text {
  font-size: 36px;
  font-weight: 700;
}


/* ------------------------
  ヒーローヘッダー
   モバイル用（〜 767.98px）
------------------------ */
@media (max-width: 767.98px) {

  .index-hero-header {
    background-image: url('./images/mobile-bg.png');
    background-size: cover;
    background-position: center center;
  }



  .hero-center {
    background-color: #E2E53E;
    padding: 2em 0;
  }

  .hero-message {
    font-size: 50px;
    font-weight: 700;
    margin-top: 50px;
  }


  .hero-catch {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
  }


  .hero-name-text {
    font-size: 36px;
    font-weight: 700;
  }

}

/* ------------------------
  ヒーローヘッダー
   タブレット用（768px ～ 1024px）
------------------------ */
@media (min-width: 768px) and (max-width: 1024px) {

  .index-hero-header {
    height: 100vh;
    background-image: url('./images/bg-pc.png');
    /* 画像の場合 */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    /* 垂直中央 */
    justify-content: center;
    /* 横中央（必要なら） */
    color: #fff;
  }


  .hero-center {
    background-color: #E2E53E;
    padding: 2em 0;
  }

  .hero-message {
    font-size: 70px;
    font-weight: 700;
    margin-top: 45px;
  }


  .hero-catch {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
  }


  .hero-name-text {
    font-size: 40px;
    font-weight: 700;
  }

}

/* index ヒーローヘッダー ここまで*/

/*　------------------
    採用ページ    
    ヒーローヘッダー

    ------------------　*/

.msg-header-box {
  margin: auto;

  overflow: hidden;
  /* 図形のCSS */
  width: 35vw;
  height: 50vh;
  background: rgba(217, 217, 217, 0.311);
  border-radius: 50%;
}

.header-ellipse {
  top: 10%;
  left: -5%;
}

/*-------------------------
  
  index メインコンテンツ

  ------------------------*/

/* 採用メッセージ */

.top-section {
  padding-top: 4.5rem;
  margin-bottom: 5rem;
}

.message-label {
  top: -1.5rem;
  left: 1.5rem;
  background-color: #F2F7FE;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.parallax-wrapper {
  height: 100%;
  /* デフォルト：PC用 */
}

.parallax-wrapper img {
  object-fit: cover;
  object-position: center center;
}


.message-content {
  background-color: rgba(255, 255, 255, 0.496);
  padding: 1.5rem;
  margin-top: 3rem;
  z-index: 1;
  position: relative;
}

.message-catch {
  color: #000000;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 80px;
}

.message-left {
  max-width: 40%;
}

.message-right {
  max-width: 33%;
  color: #000000;
  line-height: 3.2em;
  font-weight: 600;
  font-size: 21px;
}

/* indexページ 採用メッセージ */
/* ------------------------
   モバイル用（〜 767.98px）
------------------------ */
@media (max-width: 767.98px) {

  .parallax-wrapper {
    height: 50%;
    /* モバイル用：高さを抑える */
  }

  .parallax-wrapper img {
    object-position: right center;
  }

  .message-left {
    max-width: 100%;
  }

  .message-right {
    max-width: 100%;
    color: #000000;
    line-height: 50px;
    font-weight: 600;

  }

  .message-catch {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 40px;
  }

  .message-right p {
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
  }

}

/* ------------------------
   タブレット用（768px ～ 1024px）
------------------------ */
@media (min-width: 768px) and (max-width: 1024px) {
  .message-left {
    max-width: 40%;
  }

  .message-right {
    max-width: 50%;
  }


}

/* 採用メッセージ end */




/* 私達の仕事　 */

.tag-box {
  top: -1.5rem;
  left: 1.5rem;
  background-color: #F2F7FE;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.buz-section {
  margin-bottom: 5rem;
}

.buz-content {
  background-color: rgba(255, 255, 255, 0.496);
  padding: 1.5rem;
  margin-top: 3rem;
  z-index: 1;
  position: relative;
}

.buz-catch {
  font-weight: bold;
  font-size: 40px;
  color: #000000;
  margin-bottom: 1em;

}

.buz-text {
  font-size: 21px;
  color: #000000;
  line-height: 50px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .buz-left img {
    width: 100%;
    height: auto;
  }

  .buz-catch {
    font-size: 23px;
    font-weight: bold;
    margin: 2rem 0;
    line-height: 40px;
  }

  .buz-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
  }
}


/*---------------

社員の一日

------------------------*/

.staff-section {
  margin-bottom: 5rem;
}

.staff-catch {
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1em;
}



@media (max-width: 767.98px) {

  .staff-left img {
    width: 100%;
    height: auto;
  }


}

/*---------------

募集要項

------------------------*/

.recruit-buttons {
  margin-top: 100px;
  margin-left: 50px;
}


@media (max-width: 767.98px) {
  .recruit-buttons {
    padding-top: 4rem;
    /* ← RECRUITラベルの高さ＋余裕分 */

  }
}

/*-------------- 

page-message.php
  
    メッセージページ
  

---------------*/

.msg-text-bg {
  background-color: #F2F7FE;
}


/* --------------------

page-dairy-routine.php
  
    社員の一日ページ

--------------------*/

.hero-bg {
  background-image: url('./images/daily-header-img.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
}

@media (max-width: 767.98px) {
  .hero-bg {
    height: 80vh;
    background-position: center top;
  }

}

/*---------- 
  
  footer フッター
  
  ------------*/

footer {
  font-weight: bold;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  /* ← 縦方向中央揃え */
  gap: 0.5em;
}

.footer-logo-wrapper img.custom-logo {
  position: relative;
  bottom: 7px;
  /* 負の値で下げる／正の値で上げる */
}

.footer-company-name {
  margin: 0;
  /* 余計な余白がある場合にリセット */
  line-height: 1;
  /* フォントによっては調整すると整いやすい */
}

.site-footer ul li {
  margin-bottom: 0.3rem;
  margin: 1.5em 0;
}

.site-footer ul li a:hover {
  text-decoration: underline;
  color: #ffd700;
  /* ホバー時のアクセントカラーなど */
}

.site-rule {
  font-size: x-small
}


/* -----------

 サイトポリシー,
 プライバシーポリシー,
 免責事項
 共通CSS

------------*/
.policy-page {
  padding-bottom: 2rem;
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 800px;
}

.policy-page h2 {
  font-weight: bold;
  color: #27489C;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  font-size: 1.4rem;
  font-weight: bold;
  border-left: 6px solid #27489C;
  color: #27489C;
  padding-left: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.policy-page p,
.policy-page ol,
.policy-page ul {
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
}

.policy-page ol,
.policy-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.policy-page ul li,
.policy-page ol li {
  margin-bottom: 0.5rem;
}