@charset "UTF-8";
/* CSS Document */

/*LP-3　介護募集*/

   body {
      font-family: sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
      color: #333;
    }
/*header部分 */    

html {
  scroll-behavior: smooth;
}

.hero-header {
  background: #f8f9fc;
  padding: 10px 20px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.logo-img img {
  max-width: 350px;
}

.hero-text h1 {
  font-size: 2rem;
  margin: 0;
  line-height: 1.4;
}

.hero-text p {
  font-size: 1.1rem;
  color: #444;
  margin: 0;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.cta-button {
  background-color: #006699;
  color: #fff;
  font-weight: bold;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #0056b3;
  box-shadow: 0 6px 10px rgba(0, 123, 255, 0.3);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-img img {
  max-width: 80%;
    margin: 0 auto;
}
  
  .hero-right {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}








    section {
      padding: 2rem 1rem;
      background: #fff;
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: 1.4rem;
      border-left: 5px solid #006699;
      padding-left: 0.5rem;
      margin-bottom: 1rem;
    }

 .section-title.not {
      font-size: 1.4rem;
      border-left: 0px solid #006699;
      padding-left: 0.5rem;
      margin-bottom: 1rem;
    }

 .section-title.not.white-box {
  font-size: 1.4rem;
  border-left: 0px solid #006699;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
  background-color: white;
  width: 300px;
  margin: 0 auto;
  border-radius: 8px;
   color: black;
    }


    ul {
      padding-left: 1.5rem;
    }
    .faq-item {
      margin-bottom: 1rem;
    }
    .form-section {
      background: #e6f0f5;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
    }
    input, select, button {
      padding: 0.8rem;
      font-size: 1rem;
    }
    button {
      background: #006699;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    button:hover {
      background: #00507f;
    }

/* 見出し　下に三角矢印 */
.allow-box {
  background-color: #003366; /* 紺色の背景 */
  color: #fff; /* 白い文字 */
  text-align: center; /* 文字を中央に */
  padding: 30px 0; /* 上下の余白 */
  font-size: 36px; /* 文字を大きめに */
  position: relative; /* 三角形の突起を作るため */
  width: 100%; /* 画面全体に伸ばす */
  margin: 0; /* 上下のマージンを消す */
}

.allow-box::after {
  content: "";
  position: absolute;
  bottom: -20px; /* 三角形の位置を調整 */
  left: 50%; /* 画面中央に配置 */
  transform: translateX(-50%); /* 完全に中央にする */
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #003366; /* 紺色の三角形 */
}







 /*section2　私たちの強み*/
.strengths-section {
  background: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
}

.strengths-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.strength-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 200px;
  transition: transform 0.3s ease;
}

.strength-box:hover {
  transform: translateY(-5px);
}

.strength-box i {
  font-size: 80px;
  color: #006699;
  margin-bottom: 15px;
}

.strength-box p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}




 /*section3　転職成功者の声*/


.voice-section {
  background: #5DB1B0;
  padding: 40px 20px;
  text-align: center;
  background-image: url("../../lp-3/lp-img/11px White.png");
  background-size: 1300px;
}

.voice-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.voice-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.voice-item:hover {
  transform: translateY(-5px);
}

.voice-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #FFFFFF;
}

.voice-text p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.voice-text span {
  color: #555;
  font-size: 14px;
}

 /*section4　紹介可能な職場*/

.workplaces-section {
  position: relative;
  background-image: url("../lp-img/bg-workplace.jpg"); /* 背景画像をここに設定 */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 0px 0px;
  text-align: center;
}

.workplaces-section .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒オーバーレイ */

  border-radius: 12px;
 
 width: 100%;
  height: 100%;
     padding: 80px 0 ;

}

.workplaces-section .section-title.not {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.workplaces-section ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.workplaces-section li {
  font-size: 18px;
  margin-bottom: 10px;
}

/*section4よくある質問*/

.faq-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.faq-item {
  background: #fff;
  border-left: 5px solid #3498db;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.faq-q {
  font-weight: bold;
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.faq-a {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.faq-q i,
.faq-a i {
  margin-right: 8px;
  color: #3498db;
}








/*
LINE登録ボタン*/
#line-fixed-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #06C755;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: opacity 0.3s ease;
}

#line-fixed-button a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.line-close-btn {
  margin-left: 10px;
  font-size: 20px;
  cursor: pointer;
}

/*==============アクション==============*/

/*フワッと表示遅延あり　スクリプトあり*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


