/* object/project/gorilla.css */
/* GoRiLlaページ固有のスタイル */

h2,
.section-heading {
  color: var(--main-text-color) !important;
}

.vision h2,
.about h2,
.feature h2,
.program h2,
.employment-results h2,
.promise h2 {
  margin-bottom: 30px !important;
  padding-top: 50px !important;
}

p {
  color: var(--main-text-color) !important;
}

/* =========================================================
   ファーストビュー (FV)
   サイトを開いたときに一番最初に表示されるメイン画像エリアです。
========================================================= */

/* FVセクションのロゴ中央寄せ */
.FV .fv img {
  margin: 0 auto;
  display: block;
}

.FV {
  background-image: url(../../../images/gorilla/FV.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-top: 100px;
}

.FV .container {
  display: flex;
  justify-content: center;
  height: 840px;
}

.FV .row {
  display: flex;
  align-items: center;
}

.FV .fv {
  align-items: center;
  text-align: center;
}

.FV .col {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  min-width: 350px;
  height: 390px;
}

.FV img {
  width: 150px;
  padding-bottom: 30px;
}

.FV h2 {
  font-size: 30px;
  line-height: 1.5;
}

.fv {
  margin: 0 26px;
}

/* --- FV タブレット対応 (Bootstrap md以下) --- */
@media screen and (max-width: 1280px) {
  .FV {
    padding-top: 60px;
  }

  .FV .container {
    height: 600px;
  }

  .FV .col {
    min-width: 250px;
    height: 260px;
  }

  .FV h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }

  .FV img {
    width: 100px;
  }
}

/* --- FV モバイル対応 (Bootstrap sm以下) --- */
@media screen and (max-width: 540px) {
  .FV {
    background-image: url("../../../images/gorilla/mb_fv.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding-top: 60px;
  }

  .FV .container {
    height: 100vh;
  }
}

/* =========================================================
   「GoRiLlaの想い」セクション
   サイトのメッセージやビジョンを伝えるエリアです。
========================================================= */

.vision h2 {
  text-align: left;
  margin-bottom: 60px;
}

.vision .row {
  display: flex;
  justify-content: center;
  margin: 0;
}

.vision .text {
  max-width: 573px;
  flex-direction: column;
  padding: 20px 0;
}

.vision .text p {
  line-height: 180%;
}

.vision .v_pc_img {
  display: flex;
  align-items: end;
  width: auto;
  height: 280px;
  margin-top: auto;
  margin-left: 60px;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.vision .v_mb_img {
  display: none;
}

.vision span {
  border-bottom: solid 1px var(--main-text-color);
}

/* --- 想いセクション タブレット・モバイル対応 (Bootstrap md以下) --- */
@media screen and (max-width: 1280px) {
  .vision h2 {
    text-align: center;
  }

  .vision .v_pc_img {
    display: none;
  }

  .vision .v_mb_img {
    display: block;
    height: 250px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
  }
}

/* =========================================================
   「GoRiLlaとは」セクション
   サービスの特徴や概要について説明するエリアです。
========================================================= */
.about {
  margin-bottom: 0;
  padding-bottom: 120px;
  background-image: url(../../../images/gorilla/asirai.png), url(../../../images/gorilla/asirai2.png);
  background-repeat: no-repeat;
  background-size: 427px, 483px;
  background-position: left 0 bottom 0, right 0 top 0px;
}

.about h2 {
  margin-bottom: 30px;
  padding-top: 50px;
}

.about h4 {
  margin-bottom: 30px;
  color: #BBA460;
}

.about p {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.about .row {
  justify-content: space-around;
}

.about .box {
  text-align: center;
  width: 510px;
  height: 510px;
  border: solid 2px #D4C390;
  border-radius: 50%;
  padding: 0 64px;
  margin-bottom: 10px;
}

.about .box p {
  line-height: 150%;
  padding: 0 28px;
}

.about img {
  width: 63px;
  margin: 55px auto 30px;
}

/* --- 「とは」セクション モバイル対応 (Bootstrap sm以下) --- */
@media screen and (max-width: 767.98px) {
  .about {
    background-image: url(../../../images/gorilla/asirai.png), url(../../../images/gorilla/asirai2.png);
    background-repeat: no-repeat;
    background-size: 220px, 270px;
    background-position: left 0 bottom 0, right 0 top 100px;
  }

  .about .box {
    width: 100vw;
    height: auto;
    border: none;
    border-radius: 0;
    padding: 120px 10vw;
    margin-left: calc(50% - 50vw);
    background-image: url(../../../images/gorilla/mb_program_circle.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }

  .about img {
    margin: 0 auto 30px;
  }

  .about .box p {
    line-height: 150%;
    padding: 0 28px;
  }

  .about p {
    margin-bottom: 0;
  }

  .about h2 + p {
    margin-bottom: 30px;
  }
}

/* =========================================================
   「GoRiLlaの特徴」セクション
   サービスのメリットや強みを紹介するエリアです。
========================================================= */
.feature .row {
  margin: 0 6rem;
}

.feature .content {
  display: flex;
  align-items: center;
}

.feature h3 {
  font-size: 23px;
  display: inline-block;
  border-bottom: solid 1px var(--main-text-color);
  margin-bottom: 0;
}

.feature h4 {
  display: block;
  font-size: 48px;
  color: #94BB84;
}

.feature .text-group {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 50px;
  margin-top: 50px;
  width: 100%;
  padding: 0;
}

.feature .text {
  padding-left: 52px;
  background-image: url(../../../images/gorilla/asirai3.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: auto 100%;
}

.feature p {
  margin-left: 26px;
}

/* --- 特徴セクション タブレット対応 (Bootstrap md以下) --- */
@media screen and (max-width: 991.98px) {
  .feature .container {
    padding: 0;
  }

  .feature .text {
    padding: 0;
  }

  .feature h3 {
    font-size: 16px;
    margin: 0 10px;
  }

  .feature .content {
    padding: 0 10px;
  }
}

/* --- 特徴セクション モバイル対応 (Bootstrap sm以下) --- */
@media screen and (max-width: 767.98px) {
  .feature .row {
    margin: 0;
  }

  .feature .text {
    padding: 0 20px;
  }

  .feature h3 {
    font-size: 18px;
    font-weight: 700;
  }

  .feature p {
    font-size: 14px;
    color: var(--main-text-color);
  }
}

/* =========================================================
   「プログラム」セクション
   提供しているメニューやコース内容を表示するエリアです。
========================================================= */
.program {
  margin-bottom: 0;
  padding-bottom: 50px;
}

.program .container {
  height: 860px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  margin-bottom: 200px;
}

.program .row {
  align-items: center;
  margin-left: 10%;
}

.program .box {
  width: auto;
  padding-top: 60px;
}

.program .text {
  margin-bottom: 20px;
  max-width: 530px;
}

.program h2 {
  text-align: left;
  margin-bottom: 40px;
}

.program h4 {
  text-align: left;
  margin-bottom: 30px;
  color: #BBA460;
}

.program h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* --- 一日のスケジュール表 --- */
.plans {
  position: absolute;
  left: 50%;
  width: auto;
  background-image: url(../../../images/cotori/pc_program_circle.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 0 right -130%;
}

.plan {
  display: flex;
  align-items: center;
  margin: 40px 0;
}

.time {
  color: var(--main-text-color);
  background-color: #CDDEC6;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
}

/* 短い予定枠（送迎・終礼） */
.t1 .todo,
.t7 .todo {
  width: 180px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 長い予定枠（ミーティング・作業・昼食など） */
.t2 .todo,
.t3 .todo,
.t4 .todo,
.t5 .todo,
.t6 .todo {
  max-width: 280px;
  min-width: 200px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スケジュール表の段差レイアウト */
.t2,
.t6 {
  margin-left: 110px;
}

.t3,
.t5 {
  margin-left: 170px;
}

.t4 {
  margin-left: 190px;
}

.program img {
  position: absolute;
  z-index: 1;
  width: 60%;
}

/* 吹き出し風のスケジュール枠 */
.todo {
  position: relative;
  margin-left: 50px;
  color: var(--main-text-color);
  font-size: 16px;
  background: #f4f4f4;
  border-radius: 20px;
}

.todo:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 20px solid #f4f4f4;
}

.todo p {
  text-align: center;
  padding: 0;
}

/* --- プログラム タブレット対応 (Bootstrap md以下) --- */
@media screen and (max-width: 1280px) {
  .program .container {
    margin-bottom: 0;
    padding-bottom: 50px;
    background-image: none;
    height: auto;
    padding-top: 0;
  }

  .program h2,
  .program h4 {
    text-align: center;
  }

  .program .row {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }

  .program .text {
    margin-bottom: 20px;
    max-width: 800px;
  }

  .program .box {
    position: static;
    padding-top: 0;
  }

  .plans {
    background-image: url(../../../images/cotori/pc_program_circle.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom 0 left -340px;
    position: static;
    width: auto;
    padding-left: 180px;
  }
}

/* --- プログラム モバイル対応 (Bootstrap sm以下) --- */
@media screen and (max-width: 767.98px) {
  .program .container {
    padding: 0;
    margin-bottom: 0;
    padding-top: 0px;
  }

  .program h4 {
    font-size: 20px;
    font-weight: 700;
  }

  .program span {
    display: none;
  }

  .program .text {
    margin-bottom: 30px;
  }

  .plans {
    margin-top: 20px;
    width: auto;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: none;
    background: linear-gradient(90deg,
        transparent 60px,
        #f3eed1 60px,
        #f3eed1 62px,
        transparent 62px);
    padding: 0 32px;
  }

  .program .box {
    width: auto;
  }

  .program img {
    display: none;
  }

  .t1 .todo,
  .t7 .todo {
    width: 200px;
  }

  .todo {
    margin: 0;
    margin-left: 2rem;
  }

  .todo span {
    font-size: 12px;
  }

  .t1,
  .t2,
  .t3,
  .t4,
  .t5,
  .t6,
  .t7 {
    margin: 0px;
  }
}

/* =========================================================
   ご利用者の特徴
========================================================= */
.user-features {
  padding: 0;
  background-color: #fff;
}

.section-heading {
  font-family: "Poppins", "Noto Sans JP";
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.user-features-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.user-features-intro p {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.user-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.user-label {
  font-family: "Poppins", "Noto Sans JP";
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
}

.user-number {
  font-weight: 700;
  font-size: 1.1rem;
}

.user-icon-circle {
  width: 100px;
  height: 100px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.user-stat-label {
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.user-stat-value {
  font-family: "Poppins", "Noto Sans JP";
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.stat-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.user-stat-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666;
  text-align: left;
}

/* =========================================================
   就労実績
========================================================= */
.employment-results {
  padding: 0;
  background-color: #fff;
}

.employment-img {
  border-radius: 0;
  width: 100%;
}

.employment-subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.employment-heading {
  font-family: "Noto Sans JP";
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.employment-list {
  border-top: 1px solid #eee;
}

.employment-row {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
  gap: 1.5rem;
}

.employment-category {
  font-weight: 600;
  color: #333;
  min-width: 100px;
  font-size: 0.95rem;
}

.employment-divider {
  color: #ccc;
  font-size: 1.2rem;
}

.employment-detail {
  color: #555;
  font-size: 0.95rem;
}

/* =========================================================
   卒業生の声（わたしたちの約束）
========================================================= */
.graduate-voices {
  margin-bottom: 0;
  padding-bottom: 120px;
  background-color: #fff;
  background-image:
    url(../../../images/gorilla/wood.png),
    url(../../../images/gorilla/human.png);
  background-repeat: no-repeat;
  background-position:
    left 10% bottom 0,
    right 15% bottom 0;
  background-size:
    200px,
    240px;
}

.graduate-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.graduate-intro p {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.voice-list {
  max-width: 800px;
  margin: 0 auto;
}

.voice-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eee;
  gap: 1.5rem;
}

.voice-item:first-child {
  border-top: 1px solid #eee;
}

.voice-check {
  flex-shrink: 0;
}

.voice-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* --- 就労実績・卒業生の声 モバイル対応 (Bootstrap sm以下) --- */
@media (max-width: 767.98px) {
  .employment-results {
    padding-bottom: 0;
  }

  h2,
  .section-heading {
    font-size: 1.8rem;
  }

  .employment-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .employment-category {
    min-width: 80px;
  }

  .employment-detail {
    flex-basis: 100%;
    width: 100%;
    margin-top: 0.25rem;
  }

  .voice-item {
    padding: 1rem;
    gap: 1rem;
  }

  .voice-check svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================================
   「お問い合わせ」セクション
   連絡先や問い合わせフォームへのリンクを配置するエリアです。
========================================================= */
.contact {
  margin-bottom: 0;
  padding-bottom: 120px;
  background-image: url(../../../images/gorilla/contact_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact .row {
  justify-content: center;
}

.text_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.details {
  display: flex;
  justify-content: center;
}

.contact img {
  width: 164px;
  margin: auto;
  padding-bottom: 30px;
}

.contact h3 {
  font-weight: bold;
}

.contact button {
  background-color: #D4C390;
  border-radius: 10px;
  border: none;
  width: 280px;
  height: 60px;
  margin-left: 12px;
  margin-right: 12px;
}

.contact button p {
  padding: 0;
  color: var(--main-text-color);
  font-size: 24px;
  text-align: center;
}

.contact .deta p {
  text-align: center;
}

.deta_box {
  text-align: center;
}

/* --- お問い合わせ タブレット対応 (Bootstrap md以下) --- */
@media screen and (max-width: 1280px) {
  .contact h3 {
    font-size: 20px;
  }

  .details {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }

  .text_box {
    justify-content: center;
    align-items: start;
  }
}

/* --- お問い合わせ モバイル対応 (Bootstrap sm以下) --- */
@media screen and (max-width: 540px) {
  .contact {
    background-image: url(../../../images/gorilla/mb_contact_bg.png);
    background-size: cover;
    padding-bottom: 60px;
  }

  .contact h3 {
    text-align: center;
  }

  .contact p {
    text-align: center;
  }

  .contact .row {
    flex-direction: column;
  }

  .contact .deta {
    margin: auto;
  }

  .contact img {
    width: 150px;
  }

  .contact button {
    margin: 8px 0;
  }

  .contact button p {
    font-size: 18px;
  }

  .text_box {
    margin-bottom: 50px;
    align-items: center;
  }

  .deta_box {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .fixed-contact-btn {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .graduate-voices {
    padding-bottom: 60px;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
      url(../../../images/gorilla/wood.png),
      url(../../../images/gorilla/human.png);
    background-position: center, left -10% bottom 0, right 10% bottom 0;
    background-size: 100% 100%, 150px, 140px;
  }
}

.voice-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eee;
  gap: 1.5rem;
}

.voice-item:first-child {
  border-top: 1px solid #eee;
}

.voice-check {
  flex-shrink: 0;
}

.voice-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* --- 就労実績・卒業生の声 モバイル対応 (Bootstrap sm以下) --- */
@media (max-width: 767.98px) {
  .employment-results {
    padding-bottom: 0;
  }

  h2,
  .section-heading {
    font-size: 1.8rem;
  }

  .employment-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .employment-category {
    min-width: 80px;
  }

  .employment-detail {
    flex-basis: 100%;
    width: 100%;
    margin-top: 0.25rem;
  }

  .voice-item {
    padding: 1rem;
    gap: 1rem;
  }

  .voice-check svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================================
   「お問い合わせ」セクション
   連絡先や問い合わせフォームへのリンクを配置するエリアです。
========================================================= */
.contact {
  margin-bottom: 0;
  padding-bottom: 120px;
  background-image: url(../../../images/gorilla/contact_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact .row {
  justify-content: center;
}

.text_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.details {
  display: flex;
  justify-content: center;
}

.contact img {
  width: 164px;
  margin: auto;
  padding-bottom: 30px;
}

.contact h3 {
  font-weight: bold;
}

.contact button {
  background-color: #D4C390;
  border-radius: 10px;
  border: none;
  width: 280px;
  height: 60px;
  margin-left: 12px;
  margin-right: 12px;
}

.contact button p {
  padding: 0;
  color: var(--main-text-color);
  font-size: 24px;
  text-align: center;
}

.contact .deta p {
  text-align: center;
}

.deta_box {
  text-align: center;
}

/* --- お問い合わせ タブレット対応 (Bootstrap md以下) --- */
@media screen and (max-width: 1280px) {
  .contact h3 {
    font-size: 20px;
  }

  .details {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }

  .text_box {
    justify-content: center;
    align-items: start;
  }
}

/* --- お問い合わせ モバイル対応 (Bootstrap sm以下) --- */
@media screen and (max-width: 540px) {
  .contact {
    background-image: url(../../../images/gorilla/mb_contact_bg.png);
    background-size: cover;
    padding-bottom: 60px;
  }

  .contact h3 {
    text-align: center;
  }

  .contact p {
    text-align: center;
  }

  .contact .row {
    flex-direction: column;
  }

  .contact .deta {
    margin: auto;
  }

  .contact img {
    width: 150px;
  }

  .contact button {
    margin: 8px 0;
  }

  .contact button p {
    font-size: 18px;
  }

  .text_box {
    margin-bottom: 50px;
    align-items: center;
  }

  .deta_box {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .fixed-contact-btn {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .graduate-voices {
    padding-bottom: 60px;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
      url(../../../images/gorilla/wood.png),
      url(../../../images/gorilla/human.png);
    background-position: center, left -10% bottom 0, right 10% bottom 0;
    background-size: 100% 100%, 150px, 140px;
  }
}

.fixed-contact-btn {
  background-color: #D4C390 !important;
}

.fixed-contact-btn:hover {
  background-color: #D4C390 !important;
  opacity: 1 !important;
}

/* ゴリラページの追従お問い合わせボタンの文字色 */
.fixed-contact-btn .fixed-contact-btn-text {
  color: #2B2A32 !important;
}

/* =========================================================
   午後プログラム詳細セクション
========================================================= */

.afternoon-program-box {
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.afternoon-program-left {
  flex: 1;
}

.afternoon-program-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--main-text-color);
}

.afternoon-program-note {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 0;
}

.afternoon-program-right {
  flex: 1;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.afternoon-schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.afternoon-schedule-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.afternoon-schedule-list li:last-child {
  margin-bottom: 0;
}

.day-label {
  font-weight: 700;
  width: 40px;
  display: inline-block;
  color: var(--main-text-color);
}

.program-name {
  color: var(--main-text-color);
}

/* レスポンシブ対応 */
@media screen and (max-width: 767.98px) {
  .afternoon-details {
    padding-bottom: 40px;
  }

  .afternoon-program-box {
    flex-direction: column;
    padding: 30px 20px;
    align-items: stretch;
    gap: 20px;
  }

  .afternoon-program-title {
    font-size: 1.15rem;
  }

  .afternoon-program-right {
    padding: 20px;
  }
}