@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}

/* -----------------------------------------------------
container
------------------------------------------------------- */
.container {
  width: 100%;             /* 基本は親要素に合わせて広がる */
  max-width: 350px;        /* ただし350pxで止める */
  padding: 0;              /* 内側の余白を削除 */
  margin-left: auto;       /* 左側の余白を自動（中央寄せ必須） */
  margin-right: auto;      /* 右側の余白を自動（中央寄せ必須） */
}
/* 親要素(.main-content: 400px)いっぱいに広げる設定 */
.container-fluid {
  width: 100%;             /* 親要素の幅(400px)に合わせる */
  max-width: 100%;         /* 制限を解除して親に追従させる */
  padding: 0;              /* 余白なし */
}
@media only screen and (max-width: 1399px) {
  .container{
  max-width: 350px;
  padding: 0;
}}
@media only screen and (max-width: 1199px) {
  .container{
  max-width: 350px;
  padding: 0;
}}
@media only screen and (max-width: 991px) {
  .container{
  max-width: 350px;
  padding: 0;
}}
@media only screen and (max-width: 767px) {
  .container{
  max-width: 350px;
  padding: 0;
}}

/* -----------------------------------------------------
固定背景（左右）
------------------------------------------------------- */
.side-bg-left {
  position: fixed;
  top: 0;
  height: 100vh;
  background-image: url("../images/left.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.side-bg-right {
  position: fixed;
  top: 0;
  height: 100vh;
  background-image: url("../images/right.png");
  background-size: cover;
  background-position: right;
  pointer-events: none;
  z-index: 0;
}


.side-bg-left {
  left: 0;
  width: calc((100vw - 400px) / 2);
}

.side-bg-right {
  right: 0;
  width: calc((100vw - 400px) / 2);
}

/*-----------------------------------------------------
レイアウト
-------------------------------------------------------*/
.layout {
  display: flex;
  justify-content: center;
}

.main-content {
  width: 400px;
  max-width: 100%;
  margin: -1rem auto 0;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 100;
}
@media only screen and (max-width: 992px) {
  .main-content {
  margin: -1rem auto 0;
}}

@media only screen and (max-width: 767px) {
  .main-content {
  margin: -7rem auto 0;
}}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
#Header {
  /* ▼基本設定 */
  width: 100%;
  max-width: 400px; /* メイン幅に合わせる */
  margin: 0 auto;   /* 中央揃え */

  /* ▼固定表示の設定 */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  /* ▼アニメーション設定（重要） */
  transition: transform 0.3s ease !important;

  /* ▼PCでは非表示（初期値） */
  display: none;
}

/* ▼隠すときに付与するクラス（最優先） */
.header-hidden {
  transform: translateY(-100%) !important;
}

/* ▼スマホ（991px以下）の時だけ表示する設定 */
@media (max-width: 991px) {
  #Header {
    display: block; /* スマホで表示 */
  }
  
  /* 固定ヘッダー分の余白を確保 */
  body {
    padding-top: 70px;
  }
}

/* -----------------------------------------------------
ハンバーガーメニュー
------------------------------------------------------ */
.bg-navi{
  background: #ffffffb3;
}
.nav-link{
    color:#050050 !important;
}
.nav-link:focus,.nav-link:hover {
    color:#fff !important;
}
/* 閉じているとき：collapsed が付いている時 → 三本線 */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23002664' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* 開いたとき：collapsed が無い時 → × */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23002664' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e") !important;
}

/* -----------------------------------------------------
PC表示（992px以上）のヘッダーカスタマイズ
------------------------------------------------------- */
@media (min-width: 992px) {
  
  /* 1. ヘッダーを表示し、横幅制限を解除して画面いっぱいに */
  #Header {
    display: block !important; /* 表示させる */
  }

  /* 2. 中身（ロゴ）を中央寄せにする */
  #Header .container-fluid {
    justify-content: center;   /* Flexboxで中央揃え */
  }

  /* 3. ハンバーガーボタンとメニュー中身を非表示にする */
  .navbar-toggler,
  #header_nav {
    display: none !important;
  }
  
  /* 念のためロゴの余白調整 */
  .navbar-brand {
    margin: 0;
  }
}

/* -----------------------------------------------------
中央400pxを基準に左右メニューを中央揃えにする
------------------------------------------------------ */

/* 左メニューの位置調整 */
.side-menu.left .pc_menu {
  position: fixed;
  top: 50%;
  left: calc((100vw - 400px) / 2 - 285px); /* ←メニュー幅の半分に置換 */
  transform: translateY(-50%);
  z-index: 10;
}

/* 右メニューの位置調整 */
.side-menu.right .pc_menu {
  position: fixed;
  top: 50%;
  right: calc((100vw - 400px) / 2 - 125px);
  transform: translateY(-50%);
  z-index: 10;
}


/* スマホ非表示 */
@media (max-width: 991px) {
  .side-menu {
    display: none;
  }
}
.side-menu ul{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menu_logo{
  width: 95%;
}
.side-menu_text{
  font-size: 1.2rem;
  color: #1d1045;
  font-weight: 600;
  padding: 0.25rem 0 0;
}
.side-menu a {
  color: #1d1045
}
.side-menu a:hover {
  color: #443474;
}
/*------------CTAボタン-------------*/
a.navi_btn-tel-color {
  color: #ffffff; /*CTAの文字色*/
  background-color: #ff8400; /*CTAボタン色*/
  border-bottom: 5px solid #ce6b00; /*CTAボタンの影色*/
}

a.navi_btn-tel-color:hover {
  margin-top: 3px;
  color: #fff; /*CTAがホバーされた時の文字色*/
  background: #f58f22; /*CTAがホバーされた時のボタン色*/
  border-bottom: 2px solid #f58f22; /*CTAがホバーされた時のボタンの影色*/
}
.navi_cta_btn,a.navi_cta_btn,button.navi_cta_btn {
  font-size:1.25rem;
  font-weight:bold;
  padding:0.8rem .5rem;
  width: 14rem;
  border-radius: 50vw;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.navi_cta_smalltext{
  font-size: 1rem;
}


/*-----------------------------------------------------
共通
-------------------------------------------------------*/
section {
  padding: 2rem 0;
}
a {
  text-decoration-line: none;
}
.w-90{
  width: 90%;
}
p {
  font-size: 14px;
  line-height: 1.8;
}
li {
  font-size: 14px;
}
.alpha:hover{
  opacity: 0.7;
}
/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold{
  font-weight: bold;
}
.text-bold02{
  font-weight: 900;
}
.text-blue{
  color: #0056b7;
}
.text-white{
  color: #fff;
}
.text-red{
  color: #ff000c;
}
.text-orange{
  color: #ff6c00;
}
.text-yellow{
  color: rgb(255, 217, 0);
}
.yellow-marker{
  background: linear-gradient(transparent 60%, #f5dca0 60%);
}

/*-----------------------------------------------------
背景
-------------------------------------------------------*/
.yellow-bg{
  background-color: #fffde8;
}
.bg-blue{
  background-color: #0096cd;
}
.bg-green{
  background-color: #00b5b3;
}
.bg-red{
  background-color: #ff0000;
}
.bg-gray{
  background-color: #fffae1;
}
.bg-white{
  background-color: #fffae1;
}

/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.ttl{
  color: #1d1045;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px #1d1045;/*上線*/
  border-bottom: solid 3px #1d1045;/*下線*/
  text-align: center;
  font-weight: 900;
  margin-bottom: 2rem;
}
.ttl_small{
  font-size: 25px;
}

/*-----------------------------------------------------
CTA
-------------------------------------------------------*/
.cta{
  background-color: #0021b0;
}
.cta_ttl {
    display: flex;
    justify-content: center;
    position: relative;
    width: 21rem;
    padding: 0.8rem 0.5rem;
    line-height: 1.5;
    border-radius: 50vw;
    background-color: #333333;;
    margin-top: -7rem;
    margin-bottom: 2rem;
}

.cta_ttl::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #333333;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.cta-box{
  border-radius: 30px;
  padding: 3rem 1rem 1rem;
  flex-direction: column;
}

/*--------------------ctaボタン----------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  width: 90% !important;
  height: 2rem;
}

a.btn-flat {
  overflow: hidden;
  padding: 0.8rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-80%) translateY(-25px);
  transform: translateX(-80%) translateY(-25px);
  border-radius: 50%;
}

a.btn-flat:hover:before {
  width: 400px;
  height: 400px;

  -webkit-transform: translateX(-1%) translateY(-175px);

  transform: translateX(-1%) translateY(-175px);
  color: #fff;
}

.cta-tel{
  background-color: #fff;
  border: 3px solid #ff7800;
}
a.cta-tel:before{
  background: #ff7800;
}
a.cta-tel:hover {
  color: #fff;
  border: 3px solid #ff7800;
}

.cta-form{
  background-color: #fff;
  border: 3px solid #e90000;
}
a.cta-form:before{
  background: #e90000;
}
a.cta-form:hover {
  color: #fff;
  border: 3px solid #e90000;
}
/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  padding-top: 0;
}
@media only screen and (max-width: 991px) {
  .fv {
  padding-top: 0;
}}

/*-----------------------------------------------------
働きやすさに全振りした会社です
-------------------------------------------------------*/
.point{
  background-image: url(../images/point_bg.png);
}
.point_main_ttl{
  -webkit-text-stroke: 4px white;
  paint-order: stroke fill; 
}

/*-----------------------------------------------------
日給例
-------------------------------------------------------*/
.salary{
  background-color: #9dc2ff;
}
/* カード全体の枠組み */
  .salary_content {
    background-color: white;
    width: 320px; /* カードの幅 */
    /* 濃い紺色の影（右に10px、下に10px、ぼかし0） */
    box-shadow: 10px 10px 0 #1a237e; 
    margin: 20px; /* 余白 */
  }

  /* ヘッダー部分（青い帯） */
  .salary_ttl {
    background-color: #0078b9; 
    padding: 0.5rem 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  /* 勤務行*/
  .salary_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem; 
    padding: 0.5rem;
  }

  /* 丸いアイコン（昼勤務・夜勤務） */
  .circle-icon {
    background-color: #0078b9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex; /* 文字を上下左右中央に */
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* 幅が縮まないようにする */
  }

  /* 金額エリア */
  .price-area {
    text-align: right;
    color: #444;
    line-height: 1;
  }

  /* 数字 */
  .price-num {
    font-size: 3.4rem;
    letter-spacing: -1px;
  }

  /* 「円」の文字 */
  .price-unit {
    font-size: 1.5rem;
  }

  /* (最低) の文字 */
  .price-note {
    font-size: 1rem;
    margin-top: 5px;
    display: block;
  }

/*-----------------------------------------------------
福利厚生
-------------------------------------------------------*/
.benefits{
  background-color: #9dc2ff;
}
.benefits_box{
  border-radius: 15px;
  width: 36%;
}
.benefits_img{
  width: 2.3rem;
}

/*-----------------------------------------------------
スケージュール
-------------------------------------------------------*/
.schedule{
  background-color: #3d80c4;
  padding-bottom: 0;
}

/*-----------------------------------------------------
インタビュー
-------------------------------------------------------*/
.voice{
  padding-bottom: 4rem;
}
.voice_ttl{
  position: relative;
}
.voice_ttl_bg{
  position: absolute;
  font-size: 4rem;
  font-weight: 900;
  color: #eaf4ff;
  top:-1.5rem;
  z-index:-1;
}

/* 全体の枠組み */
.voice-accordion {
  width: 100%;
  max-width: 500px;
  margin-bottom: 10px;
  border-radius: 15px;
  background-color: #3d80c4;
  overflow: hidden;
  transition: all 0.3s;
}

/* Summary (Q部分) */
.voice-summary {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
  cursor: pointer;
  position: relative;
  list-style: none;
}

.voice-summary::-webkit-details-marker {
  display: none;
}

/* 矢印アイコン */
.voice-summary::after {
  content: '';
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s;
  transform-origin: center center;
}

.voice-accordion[open] .voice-summary::after {
  transform: rotate(225deg);
  top: 2.2em;
}
/*  Content (A部分) */
.voice-content {
  overflow: hidden;
}
.voice-body {
  display: flex;
  align-items: flex-start;
  align-items: center;
  padding: 0 0.75em 0.75em;
  
  /* ★ここをプラスの値に変更（下から出てくる動き） */
  transform: translateY(10px);
  
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.voice-accordion[open] .voice-body {
  transform: none;
  opacity: 1;
}
.voice-answer {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
  background-color: #fff;
  padding: 1rem;
  border-radius: 15px;
}

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

/*-----------------------------------------------------
よくある質問
-------------------------------------------------------*/
.question{
  background-color: #cdf4ff;
}
/* 全体の枠組み */
.qa-accordion {
  width: 100%;
  max-width: 500px;
  margin-bottom: 10px;
  border: 2px solid #0097b5;
  border-radius: 25px;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s;
}

/* Summary (Q部分) */
.qa-summary {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
  cursor: pointer;
  position: relative;
  list-style: none;
}

.qa-summary::-webkit-details-marker {
  display: none;
}

/* 矢印アイコン */
.qa-summary::after {
  content: '';
  position: absolute;
  top: 1.8em;
  right: 1.5em;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #0097b5;
  border-right: 2px solid #0097b5;
  transform: rotate(45deg);
  transition: transform 0.3s;
  transform-origin: center center;
}

.qa-accordion[open] .qa-summary::after {
  transform: rotate(225deg);
  top: 2.2em;
}

/* アイコン共通設定 */
.qa-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  margin-top: 2px;
  margin-bottom: 0;
}

.qa-icon.-q { background-color: #0097b5; }
.qa-icon.-a { background-color: #f29f00; }

/* 質問テキスト */
.qa-question {
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  padding-right: 1.25rem;
}

/*  Content (A部分) */
.qa-content {
  overflow: hidden;
}
.qa-body {
  display: flex;
  align-items: flex-start;
  align-items: center;
  padding: 0 0.75em 0.75em;
  
  /* ★ここをプラスの値に変更（下から出てくる動き） */
  transform: translateY(10px);
  
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.qa-accordion[open] .qa-body {
  transform: none;
  opacity: 1;
}
.qa-answer {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.qa-answer p {
  margin-bottom: 1em;
}
.qa-answer p:last-child {
  margin-bottom: 0;
}

/*-----------------------------------------------------
募集要項
-------------------------------------------------------*/
.recruit_blue_bg{
  background-color: #3676b9;
}
.recruit-list {
    display: inline-block;
    text-align: left;
    list-style: none; 
    padding: 0;
  }
.recruitment-border{
  border: 2px solid #3676b9;
}
/*-----------------------------------------------------
フォーム
-------------------------------------------------------*/
.form{
  background-color: #0277b9;
}
.badge{
  border-radius: 0px;
  font-size: 1rem;
}
.text-bg-danger{
  background-color: #0277b9 !important;
}
.form-text{
  font-size: 1rem;
}
.btn{
  width: 80% !important;
}
.form-control{
  width: 92% !important;
}
/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer{
  color: #fff;
  background-color: #3b5991;
  padding: 0 2em 7em;
}
#Footer p{
  font-size: 0.8rem;
}
#Footer a{
  color: #fff;
}

/*-----------------------------------------------------
scroll-up
-------------------------------------------------------*/
  .scroll-up{
    bottom: 125px;
}

/*-----------------------------------------------------
固定CTA
-------------------------------------------------------*/
.fix-navi_sp{
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  color: #fff;
  transition: opacity 0.3s ease;
  margin-bottom: 0;
}
.fix-navi_sp a{
  color: #fff;
}
.fix-navi_sp ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none; 
}
.fix-navi_sp li {
  padding: 1rem;
  width: 50%; 
  box-sizing: border-box; 
  display: flex;
  justify-content: center;
  align-items: center; 
}
.fix_form{
  background-color: #ff1e00;
}
.fix_tel{
  background-color: #ff8400;
}

.fix_form:hover {
  opacity: 0.6; /* 半透明 */
}
.fix_tel:hover {
  opacity: 0.6; /* 半透明 */
}

.fix_form .fix_box{
  background-color: #ff5640;
  border: 2px solid #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.fix_tel .fix_box{
  background-color: #ff992d;
  border: 2px solid #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}